/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: radial-gradient(ellipse at center, #2d0a3d 0%, #1a0520 50%, #0d0318 100%);
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 3, 24, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    overflow: hidden;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 80px;
    overflow: visible;
}

.nav-logo .logo {
    height: 150px;
    width: auto;
    filter: brightness(1.3);
    transition: all 0.3s ease;
    transform: translateY(-10px);
}

.nav-logo .logo:hover {
    transform: translateY(-10px) scale(1.05);
    filter: brightness(1.5);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    height: 80px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #ffffff;
}

.btn-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Landing Page */
.landing {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* Light Effect */
.light-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at 85% 50%, rgba(255, 105, 180, 0.4) 0%, rgba(186, 85, 211, 0.3) 20%, rgba(138, 43, 226, 0.3) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: lightPulse 4s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Particle Effects */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 105, 180, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(2n) {
    background: rgba(255, 192, 203, 0.4);
    animation-duration: 8s;
    animation-delay: -2s;
}

.particle:nth-child(3n) {
    background: rgba(138, 43, 226, 0.4);
    animation-duration: 10s;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
}

/* Main Content */
.landing-content {
    z-index: 2;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
}

/* Content Container */
.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    gap: 60px;
}

/* Company Information - Left Side */
.company-info {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.brand-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.company-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.company-intro strong {
    color: rgba(255, 105, 180, 0.9);
    font-weight: 700;
}

.products-section {
    margin-top: 2rem;
}

.products-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.product-item {
    margin-bottom: 2rem;
}

.product-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 105, 180, 0.9);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.005em;
}

.product-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Phone Mockups Container - Right Side */
.phone-mockups-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 500px;
}

/* Base Phone Mockup Styles */
.phone-mockup {
    position: relative;
    width: 180px;
    height: 360px;
    background: #0d0318;
    border-radius: 25px;
    padding: 3px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-content {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    color: white;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

/* Individual Phone Positions - Side by Side */
.phone-left {
    transform: rotate(-3deg);
    z-index: 3;
}

.phone-right {
    transform: rotate(3deg);
    z-index: 2;
}

/* Phone Hover Effects */
.phone-mockup:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.5);
    transition: all 0.3s ease;
}

.phone-left:hover {
    transform: scale(1.05) rotate(-1deg);
}

.phone-right:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Floating Animation */
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.phone-left {
    animation: phoneFloat 6s ease-in-out infinite;
    animation-delay: 0s;
}

.phone-right {
    animation: phoneFloat 6s ease-in-out infinite;
    animation-delay: -3s;
}


/* Search Container */
.search-container {
    position: relative;
    max-width: 650px;
    margin: 0 auto 6rem;
    z-index: 3;
}

.search-input {
    width: 100%;
    padding: 20px 70px 20px 30px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    color: white;
    font-size: 1.2rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    border-color: rgba(255, 105, 180, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15), 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
}

.search-button:hover {
    background: rgba(255, 105, 180, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

/* Bottom Content */
.bottom-content {
    position: relative;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 50px 50px 0;
    z-index: 3;
}

.bottom-left {
    flex: 0 0 auto;
}

.scroll-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.bottom-center {
    flex: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bottom-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Section Divider */
.section-divider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    z-index: 2;
}

.divider-line {
    width: 75%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(138, 43, 226, 0.8) 20%, 
        rgba(255, 105, 180, 0.9) 50%, 
        rgba(138, 43, 226, 0.8) 80%, 
        transparent 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

/* Features Section */
.features-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0318 0%, #1a0520 50%, #2d0a3d 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.features-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.feature-phone {
    margin-bottom: 2rem;
    position: relative;
}

.feature-phone-mockup {
    width: 180px;
    height: 360px;
    background: #0d0318;
    border-radius: 25px;
    padding: 3px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-phone-mockup:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.5);
}

.feature-app-header h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 105, 180, 0.9);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-content {
    max-width: 280px;
}

.feature-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
    line-height: 1.5;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgba(255, 105, 180, 0.8);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Floating Animation for Feature Phones */
@keyframes featureFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.feature-phone-mockup {
    animation: featureFloat 6s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-phone-mockup {
    animation-delay: 0s;
}

.feature-card:nth-child(2) .feature-phone-mockup {
    animation-delay: -2s;
}

.feature-card:nth-child(3) .feature-phone-mockup {
    animation-delay: -4s;
}

.feature-card:nth-child(4) .feature-phone-mockup {
    animation-delay: -6s;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0210 0%, #0d0318 50%, #1a0520 100%);
    padding: 80px 0 40px;
    border-top: 3px solid rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 105, 180, 0.8) 20%, 
        rgba(138, 43, 226, 1) 50%, 
        rgba(255, 105, 180, 0.8) 80%, 
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-contact {
    margin: 1rem 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.footer-contact a {
    color: rgba(255, 105, 180, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: rgba(255, 105, 180, 1);
    text-decoration: underline;
}

.footer-downloads {
    text-align: center;
}

.downloads-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
}

.store-logo {
    height: 60px;
    width: 160px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background: transparent;
    padding: 0;
}

.footer-links {
    text-align: right;
}

.links-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: rgba(255, 105, 180, 0.9);
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: rgba(255, 105, 180, 0.8);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 105, 180, 0.2);
    padding-top: 30px;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 105, 180, 0.8) 50%, 
        transparent 100%
    );
}

.copyright {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .landing-content {
        padding: 100px 20px 60px;
        min-height: 100vh;
    }
    
    .content-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .company-info {
        max-width: 100%;
        text-align: center;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .company-intro {
        font-size: 1.1rem;
    }
    
    .products-title {
        font-size: 1.5rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .phone-mockups-container {
        flex-direction: column;
        gap: 20px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
        padding: 10px;
    }
    
    .phone-left,
    .phone-right {
        transform: rotate(0deg);
    }
    
    .bottom-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 20px;
        text-align: center;
    }
    
    .bottom-left {
        order: 2;
    }
    
    .bottom-center {
        order: 1;
    }
    
    .bottom-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .divider-line {
        width: 85%;
        height: 2px;
    }
    
    .features-section {
        padding: 60px 20px;
    }
    
    .features-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer {
        padding: 60px 0 30px;
        margin-top: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .downloads-title,
    .links-title {
        font-size: 1.2rem;
    }
    
    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .store-logo {
        height: 55px;
        width: 140px;
        object-fit: cover;
    }
    
    .feature-phone-mockup {
        width: 140px;
        height: 280px;
        padding: 10px;
    }
    
    .feature-content {
        max-width: 100%;
    }
    
    .feature-name {
        font-size: 1.2rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 50px 0 25px;
        margin-top: 30px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .downloads-title,
    .links-title {
        font-size: 1.1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .store-logo {
        height: 50px;
        width: 130px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 8rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: #0d0318;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 64, 129, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-preview {
    text-align: center;
    color: white;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.app-icon i {
    font-size: 2rem;
}

.app-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #0d0318;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 64, 129, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 64, 129, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 64, 129, 0.4);
    box-shadow: 0 12px 35px rgba(255, 64, 129, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: #ff4081;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #1a0520;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 64, 129, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 64, 129, 0.2);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 64, 129, 0.2);
    border-color: rgba(255, 64, 129, 0.4);
}

.product-card.featured {
    border: 2px solid #ff4081;
    position: relative;
}

.product-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #ff4081, #e91e63);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.product-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: #10b981;
    color: white;
}

.product-status.coming-soon {
    background: #f59e0b;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(255, 64, 129, 0.2);
    color: #ff4081;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 64, 129, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #0d0318;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #ff4081;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: rgba(255, 64, 129, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 64, 129, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 64, 129, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4081;
    box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: #1a0520;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 64, 129, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 64, 129, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mission-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 64, 129, 0.4);
    box-shadow: 0 12px 35px rgba(255, 64, 129, 0.2);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4081, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 1.5rem;
    color: white;
}

.mission-item h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.mission-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0a0210;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 64, 129, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff4081;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff4081;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 64, 129, 0.2);
    border: 1px solid rgba(255, 64, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff4081, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 64, 129, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(45, 27, 105, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        position: relative;
        transform: none;
        left: auto;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-screens {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .screen-mockup {
        transform: none !important;
        width: 300px;
    }
    
    .company-logos {
        gap: 1.5rem;
    }
    
    .logo-item {
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .product-card,
    .feature {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure proper scrolling between sections */
body {
    scroll-behavior: smooth;
}

/* Page Content Styles */
.page-content {
    min-height: 100vh;
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d0318 0%, #1a0520 50%, #2d0a3d 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0520 0%, #0d0318 100%);
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #0d0318 0%, #1a0520 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.section-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 180, 0.4);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.value-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Team Stats */
.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 105, 180, 0.9);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Solution Sections */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0520 0%, #0d0318 100%);
}

.solution-section.alt-bg {
    background: linear-gradient(135deg, #0d0318 0%, #1a0520 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.solution-text {
    padding: 2rem 0;
}

.solution-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.solution-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 105, 180, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.solution-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.solution-features li i {
    position: absolute;
    left: 0;
    color: rgba(255, 105, 180, 0.8);
    font-size: 1.1rem;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-image-frame {
    width: min(420px, 100%);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 105, 180, 0.06);
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.solution-image-frame:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 180, 0.35);
    box-shadow: 0 30px 70px rgba(255, 105, 180, 0.16);
}

.solution-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
}

/* AlwaysThere Gallery */
.at-action-layout {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 420px) 1fr;
    gap: 26px;
    margin-top: 3rem;
    align-items: start;
}

.at-stack {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.at-stack--left {
    align-items: flex-end;
}

.at-stack--right {
    align-items: flex-start;
}

.at-action-layout .at-card {
    width: 100%;
    max-width: 420px;
    justify-self: stretch;
}

.at-action-center {
    text-align: center;
    align-self: center;
    padding: 0 10px;
}

.at-action-center .section-title {
    margin-top: 0;
}

.at-action-center .section-text {
    margin-bottom: 0;
}

.at-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 3rem;
}

.at-card {
    background: rgba(255, 105, 180, 0.08);
    border: 1px solid rgba(255, 105, 180, 0.18);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    max-width: 560px;
    justify-self: center;
    transition: all 0.3s ease;
}

.at-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 180, 0.35);
    box-shadow: 0 18px 45px rgba(255, 105, 180, 0.18);
}

.at-media {
    position: relative;
    width: 100%;
    height: clamp(180px, 18vw, 260px);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.22), rgba(138, 43, 226, 0.16));
}

.at-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.at-image--contain {
    object-fit: contain;
    background: rgba(13, 3, 24, 0.8);
}

.at-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.at-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.at-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.solution-phone {
    width: 200px;
    height: 400px;
    background: #0d0318;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.solution-phone:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.5);
}

.app-header {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 105, 180, 0.9);
    text-align: center;
    padding: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Integration Features */
.integration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.integration-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 180, 0.4);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

.integration-item i {
    font-size: 2.5rem;
    color: rgba(255, 105, 180, 0.9);
    margin-bottom: 1rem;
}

.integration-item h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.integration-item p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* News Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.news-card {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 180, 0.4);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.news-category {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 105, 180, 0.9);
    background: rgba(255, 105, 180, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.news-excerpt {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 105, 180, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: rgba(255, 105, 180, 1);
    transform: translateX(5px);
}

.news-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* Updates List */
.updates-list {
    margin-top: 3rem;
}

.update-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    flex-shrink: 0;
    text-align: center;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 15px;
    padding: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.update-day {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.update-month {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 105, 180, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-content {
    flex: 1;
}

.update-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.update-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Press List */
.press-list {
    margin-top: 3rem;
}

.press-item {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.press-item:hover {
    border-color: rgba(255, 105, 180, 0.4);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

.press-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.press-date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 105, 180, 0.9);
    margin-bottom: 1rem;
}

.press-summary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.press-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 105, 180, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.press-link:hover {
    color: rgba(255, 105, 180, 1);
    transform: translateX(5px);
}

.press-link i {
    margin-left: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form {
    margin-top: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: rgba(255, 105, 180, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

.newsletter-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

/* Active Navigation Link */
.nav-link.active {
    color: rgba(255, 105, 180, 0.9);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff69b4, #8a2be2);
    border-radius: 1px;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-visual {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation-delay: 0.2s;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .solution-content.reverse {
        grid-template-columns: 1fr;
    }

    .at-gallery {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .at-action-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .at-action-center {
        order: 1;
    }

    .at-stack--left {
        order: 2;
        align-items: stretch;
    }

    .at-stack--right {
        order: 3;
        align-items: stretch;
    }

    .at-action-layout .at-card {
        max-width: none;
    }

    .at-card {
        max-width: none;
        width: 100%;
        justify-self: stretch;
    }

    .at-media {
        height: clamp(170px, 44vw, 240px);
    }

    .solution-image {
        max-height: 420px;
    }
    
    .solution-title {
        font-size: 2rem;
    }
    
    .solution-phone {
        width: 180px;
        height: 360px;
    }
    
    .integration-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .update-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .update-date {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .solution-title {
        font-size: 1.8rem;
    }
    
    .solution-phone {
        width: 160px;
        height: 320px;
    }

    .at-media {
        height: clamp(150px, 52vw, 210px);
    }

    .solution-image {
        max-height: 340px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .news-card {
        margin-bottom: 1rem;
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .press-item {
        padding: 1.5rem;
    }
    
    .press-title {
        font-size: 1.1rem;
    }
}
