/* BASE TOKENS & RESET */
:root {
    /* Color Palette - Vibrant Dark Mode */
    --bg-main: #0a0a0f;
    --bg-surface: rgba(20, 20, 30, 0.4);
    --bg-card: rgba(255, 255, 255, 0.03);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --accent-blue: #00f0ff;
    --accent-purple: #8a2be2;
    --accent-pink: #ff007f;
    --accent-orange: #ff7300;
    --accent-green: #00fa9a;

    --border-glass: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1320px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100vw;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    /* Prevent accidental text selection highlight */
    -webkit-tap-highlight-color: transparent;
}

/* BACKGROUND EFFECTS */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.2;
    pointer-events: none;
}

.glow-bg.top-left {
    top: -100px;
    left: -200px;
    background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.glow-bg.bottom-right {
    bottom: 20%;
    right: -200px;
    background: radial-gradient(circle, var(--accent-blue), transparent 70%);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}

.text-animated {
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

/* UTILITIES */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(67, 100, 247, 0.25);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.glow-btn {
    position: relative;
    z-index: 1;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.glow-btn:hover::before {
    opacity: 0.8;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--accent-blue);
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.logo-text .highlight {
    color: var(--text-muted);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* DROPDOWN MENU */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1.5rem;
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    z-index: 100;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}
.dropdown-item {
    font-family: var(--font-body);
    padding: 0.8rem 1.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-decoration: none;
}
.dropdown-item:hover {
    color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.8rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.4rem;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tech-icons {
    display: flex;
    gap: 1.5rem;
    opacity: 0.7;
}

/* HERO GRAPHIC (Abstract AI Representation) */
.hero-graphic {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-orb {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(138, 43, 226, 0.2)), url('/assets/images/hero-ai-web.png') center/cover no-repeat;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2), inset 0 0 40px rgba(138, 43, 226, 0.2);
}

.glass-card {
    position: absolute;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    color: var(--accent-blue);
}

.floating-1 {
    top: 10%;
    right: 10%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.floating-2 {
    bottom: 20%;
    left: 0;
    animation: float 7s ease-in-out infinite 1s;
}

.floating-3 {
    bottom: 10%;
    right: 20%;
    animation: float 6s ease-in-out infinite 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* SERVICES SECTION */
.services {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.neon-blue {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-blue);
}

.neon-purple {
    background: rgba(138, 43, 226, 0.1);
    color: var(--accent-purple);
}

.neon-orange {
    background: rgba(255, 115, 0, 0.1);
    color: var(--accent-orange);
}

.neon-green {
    background: rgba(0, 250, 154, 0.1);
    color: var(--accent-green);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.service-features i {
    color: var(--accent-blue);
    width: 16px;
    height: 16px;
}

.featured-service {
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* WHY US SECTION */
.why-us {
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid var(--border-glass);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.why-content a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.why-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.stat-item h3 i {
    color: var(--accent-purple);
}

.stat-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-graphic {
    padding: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.4), rgba(138, 43, 226, 0.05));
    border-color: rgba(138, 43, 226, 0.2);
}

.accent-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.why-graphic h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.why-graphic p {
    color: var(--text-muted);
}

/* FAQ SECTION */
.faq-section {
    padding: 6rem 0 2rem;
    position: relative;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 1rem;
    background: var(--bg-card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* CTA SECTION */
.cta-section {
    padding: 4rem 0 6rem;
}

.cta-banner {
    padding: 5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    gap: 2rem;
}

.cta-button {
    flex-shrink: 0;
}

.cta-button .btn {
    white-space: nowrap;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem;
    background: rgba(5, 5, 8, 0.8);
}

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

.footer-logo {
    height: 48px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-contact p {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1440px) {
    .container {
        max-width: 1140px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .tech-stack {
        align-items: center;
    }

    .hero-graphic {
        margin-top: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    /* ── Burger Menu on Tablet (≤1024px) ── */
    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--border-glass);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 99;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Mobile Dropdown Overrides */
    .nav-dropdown {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        display: none;
    }
    .dropdown-menu::before {
        display: none;
    }
    .dropdown-menu.mobile-open {
        display: flex;
        opacity: 1;
        visibility: visible;
        margin-bottom: 1rem;
        animation: fadeIn 0.3s ease;
    }
    /* Disable hover interference on mobile */
    .nav-dropdown:hover .dropdown-menu:not(.mobile-open) {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
    .dropdown-item {
        padding: 0.75rem 0 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-wrapper {
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        padding: 0.5rem;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        cursor: pointer;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        color: #ffffff !important;
    }

    .mobile-menu-btn svg,
    .mobile-menu-btn i {
        width: 32px !important;
        height: 32px !important;
        color: #f8fafc !important;
        stroke: #f8fafc !important;
        fill: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--border-glass);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 99;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-cta {
        display: none;
    }

    .nav-wrapper {
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        padding: 0.5rem;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        cursor: pointer;
        /* Firefox strict flex constraints */
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        color: #ffffff !important;
    }

    .mobile-menu-btn svg,
    .mobile-menu-btn i {
        width: 32px !important;
        height: 32px !important;
        color: #f8fafc !important;
        stroke: #f8fafc !important;
        fill: none !important;
        overflow: visible !important;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    /* Hero: compact height, hide large decorative graphic on mobile */
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-graphic {
        display: none;
    }

    .hero-desc {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
    }

    .tech-stack {
        align-items: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        white-space: nowrap;
        justify-content: center;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
    }

    /* Why Us Section */
    .why-us {
        padding: 3.5rem 0;
    }

    .why-content p {
        font-size: 1rem;
    }

    .why-stats {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .why-graphic {
        padding: 2rem 1.5rem;
    }

    /* FAQ */
    .faq-section {
        padding: 3.5rem 0 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem 1.25rem;
    }

    .faq-question i {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0;
    }

    .faq-answer p {
        padding: 0 1.25rem;
        font-size: 0.92rem;
    }

    .faq-item {
        margin-bottom: 0.65rem;
    }

    /* CTA */
    .cta-section {
        padding: 2rem 0 4rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    /* Section headers */
    .section-title {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }
}