:root {
    /* Brand Colors */
    --navy: #0d3b5c;
    --deep-teal: #0d4f6e;
    --teal: #1a7fa8;
    --cyan: #4fc3e8;
    --light-cyan: #b3e5fc;
    --bg-color: #f4f9fc;
    --text-primary: #0d3b5c;
    --text-secondary: #4a7a94;
    --card-bg: rgba(255, 255, 255, 0.85);
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    --card-gradient: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--teal);
    top: 40%;
    left: -200px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--light-cyan);
    bottom: 10%;
    right: 10%;
}

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

/* Navbar */
.navbar {
    padding: 24px 0;
    position: relative;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.logo ion-icon {
    color: var(--teal);
    font-size: 28px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: var(--teal);
}

.nav-btn {
    background: var(--teal);
    color: white !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(26, 127, 168, 0.3);
    font-size: 14px;
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 127, 168, 0.4);
}

.lang-btn {
    background: rgba(79, 195, 232, 0.12);
    color: var(--teal);
    border: 1.5px solid rgba(26, 127, 168, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 127, 168, 0.3);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 60px 24px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 195, 232, 0.15);
    color: var(--teal);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.badge-live {
    background: rgba(13, 150, 104, 0.15);
    color: #0d9668;
    border: 1.5px solid rgba(13, 150, 104, 0.3);
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 150, 104, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(13, 150, 104, 0); }
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.highlight {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--hero-gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(26, 127, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 127, 168, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.playstore-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 16px;
    background: rgba(13, 59, 92, 0.06);
    border: 1px solid rgba(13, 59, 92, 0.1);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.playstore-badge ion-icon {
    color: #01875f;
    font-size: 20px;
}

.trust-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #01875f;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Phone Mockup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.glass-phone {
    width: 320px;
    height: 650px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 24px 64px rgba(13, 59, 92, 0.15), inset 0 0 0 8px #ffffff;
    transform: rotateY(-15deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(-15deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(-15deg) rotateX(5deg); }
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 30px;
    margin-top: 20px;
}

.phone-header ion-icon {
    color: var(--teal);
}

.skeleton-line {
    height: 60px;
    background: var(--hero-gradient);
    border-radius: 16px;
    margin-bottom: 24px;
}

.skeleton-card {
    background: white;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Features */
.features {
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(13, 59, 92, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

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

.bg-blue { background: #e8f6fd; color: var(--teal); }
.bg-green { background: #e6f7f0; color: #0d9668; }
.bg-red { background: #fdf0ee; color: #c0392b; }
.bg-cyan { background: #e0f7fa; color: #00bcd4; }

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--navy);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* About */
.about {
    padding: 60px 24px 120px;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    backdrop-filter: blur(20px);
    border: 1px solid white;
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(13, 59, 92, 0.08);
}

.glass-panel h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 20px;
}

.glass-panel p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
}

.owner-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(26, 127, 168, 0.1);
    color: var(--navy);
    border-radius: 100px;
    font-weight: 600;
}

.owner-tag p {
    margin: 0;
    font-size: 14px;
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    padding: 80px 24px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-on-dark-muted);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.link-group h4 {
    margin-bottom: 20px;
    color: var(--cyan);
}

.link-group a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 12px;
    transition: opacity 0.2s;
}

.link-group a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 60px;
        gap: 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero p {
        margin: 0 auto 32px;
        font-size: 17px;
    }

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

    .hero-visual {
        display: none;
    }
}

/* ============================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
    .navbar {
        padding: 16px 0;
    }

    .logo {
        font-size: 16px;
        gap: 7px;
    }

    .logo ion-icon {
        font-size: 22px;
    }

    /* Make nav-btn smaller so it fits beside the logo */
    .nav-btn {
        padding: 8px 14px;
        font-size: 12px;
        letter-spacing: -0.2px;
    }

    .hero {
        padding: 28px 16px 50px;
        gap: 28px;
    }

    .badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .trust-strip {
        font-size: 11px;
        justify-content: center;
        gap: 6px;
        line-height: 1.7;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    .features {
        padding: 50px 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .glass-panel {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .glass-panel h2 {
        font-size: 24px;
    }

    .glass-panel p {
        font-size: 15px;
    }

    .about {
        padding: 30px 16px 60px;
    }

    footer {
        padding: 50px 16px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 28px;
        margin-bottom: 36px;
    }

    .footer-links {
        gap: 28px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 24px;
    }

    /* Reduce background blur shapes so they don't cause horizontal scroll */
    .shape-1, .shape-2, .shape-3 {
        opacity: 0.25;
    }

    .shape-1 {
        width: 220px;
        height: 220px;
        right: -60px;
        top: -60px;
    }

    .shape-2 {
        width: 260px;
        height: 260px;
        left: -100px;
    }

    .shape-3 {
        width: 160px;
        height: 160px;
    }
}

/* ============================================
   RESPONSIVE — Small phones (≤ 400px)
   ============================================ */
@media (max-width: 400px) {
    .logo span {
        /* Shorten text so it doesn't crowd nav-btn */
        font-size: 14px;
    }

    .nav-btn {
        padding: 7px 11px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .btn {
        padding: 13px 20px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .glass-panel h2 {
        font-size: 20px;
    }

    .owner-tag {
        padding: 8px 14px;
    }

    .owner-tag p {
        font-size: 12px;
    }
}

/* ============================================
   INTERACTIVE SHOWCASE & ROADMAP STYLES
   ============================================ */
.showcase-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-color) 0%, #e8f4f8 100%);
}

.showcase-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.showcase-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-tab {
    background: var(--card-bg);
    border: 1px solid rgba(13, 59, 92, 0.1);
    padding: 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.showcase-tab:hover {
    transform: translateX(10px);
    background: white;
    border-color: var(--teal);
}

.showcase-tab.active {
    background: white;
    border-color: var(--teal);
    box-shadow: 0 12px 32px rgba(26, 127, 168, 0.15);
    border-left: 6px solid var(--teal);
}

.showcase-tab-icon {
    font-size: 28px;
    color: var(--teal);
    background: rgba(26, 127, 168, 0.1);
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-tab-content h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 6px;
}

.showcase-tab-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.showcase-display {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 19.5;
    background: #0d3b5c;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 24px 64px rgba(13, 59, 92, 0.25), inset 0 0 0 4px #2a5a7b;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #f4f9fc;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: opacity 0.4s ease-in-out;
}

/* Roadmap / Upcoming Features */
.roadmap-section {
    padding: 100px 24px;
    background: var(--bg-color);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.roadmap-card {
    background: white;
    border: 1px dashed var(--teal);
    padding: 32px;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s;
}

.roadmap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 127, 168, 0.12);
    border-style: solid;
}

.roadmap-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(26, 127, 168, 0.1);
    color: var(--teal);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

/* Tester Section */
.tester-section {
    margin: 40px auto 60px;
}

.tester-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
    padding: 48px;
    border-radius: 32px;
    text-align: left;
    box-shadow: 0 20px 48px rgba(16, 185, 129, 0.15);
}

.tester-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tester-header .play-icon {
    font-size: 36px;
    color: #059669;
}

.tester-header h2 {
    font-size: 28px;
    color: #065f46;
    margin: 0;
}

.tester-card p {
    font-size: 16px;
    color: #047857;
    margin-bottom: 32px;
    max-width: 800px;
}

/* Tester Steps Layout */
.tester-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.tester-step-item {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.tester-step-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 36px;
    height: 36px;
    background: #10b981;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-content h3 {
    font-size: 18px;
    color: #065f46;
    margin-bottom: 12px;
    margin-top: 4px;
    font-weight: 700;
}

.step-content p {
    font-size: 14px !important;
    color: #047857;
    margin-bottom: 24px !important;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-step {
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: white;
    color: #047857;
    border: 1px solid #10b981;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.btn-step:hover {
    background: #059669;
    color: white;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.btn-primary-step {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.btn-primary-step:hover {
    background: #059669;
    color: white;
    border-color: #059669;
}


.tester-footer p {
    font-size: 14px;
    color: #065f46;
    margin: 0;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 20px;
    border-radius: 12px;
    border-left: 4px solid #059669;
}

.security-notice {
    margin-top: 16px;
    font-size: 12px;
    color: var(--light-cyan);
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* ── Hamburger Menu ─────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Social Links ────────────────────────────────────────────── */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: rgba(255,255,255,0.25);
    color: white;
    transform: translateY(-3px);
}

.footer-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9) !important;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.2s ease;
    margin-top: 8px;
    white-space: nowrap;
}

.footer-play-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* ── Logo as link ────────────────────────────────────────────── */
a.logo { text-decoration: none; }

/* ── Carousel ────────────────────────────────────────────────── */
.carousel-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 24px 60px;
}

.carousel-slide .phone-frame {
    /* Inherits responsive sizing from .phone-frame — no override needed */
    max-width: 220px;
}

.slide-caption {
    text-align: center;
    max-width: 480px;
}

.slide-caption h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.slide-caption p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.carousel-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(26,127,168,0.2);
    color: var(--teal);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26,127,168,0.25);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--teal);
    width: 28px;
    border-radius: 8px;
}

/* ── Existing showcase compatibility ─────────────────────────── */
@media (max-width: 900px) {
    .showcase-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* ════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Full Breakpoints
   ════════════════════════════════════════════════════════════ */

@media (max-width: 992px) {

    /* Navbar */
    .hamburger { display: flex; }

    .desktop-nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(244, 249, 252, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 150;
        padding: 24px;
    }

    .desktop-nav.open {
        display: flex;
    }

    .desktop-nav a:not(.nav-btn) {
        font-size: 22px;
        font-weight: 600;
        color: var(--navy);
        text-align: center;
        padding: 8px 0;
    }

    /* Nav button overrides inside open overlay */
    .desktop-nav .lang-btn,
    .desktop-nav .nav-btn {
        font-size: 16px;
        padding: 16px 24px;
        width: 100%;
        max-width: 260px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 40px 20px 48px;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 28px;
    }

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

    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .trust-strip {
        justify-content: center;
        font-size: 12px;
    }

    .hero-visual {
        width: 100%;
    }

    .glass-phone {
        width: 240px;
        height: 480px;
        transform: rotateY(-8deg) rotateX(3deg);
        margin: 0 auto;
    }

    /* Sections */
    .features { padding: 60px 20px; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 15px; }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Tester section */
    .tester-card { padding: 28px 18px; }
    .tester-header h2 { font-size: 20px; }

    .tester-steps {
        flex-direction: column;
        gap: 20px;
    }

    .tester-step-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    /* Carousel — phone-frame fills slide width responsively */
    .carousel-slide {
        padding: 20px 16px 60px;
        gap: 16px;
    }

    .carousel-slide .phone-frame {
        max-width: 180px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .carousel-prev { left: 6px; }
    .carousel-next { right: 6px; }

    .slide-caption h3 { font-size: 18px; }
    .slide-caption p { font-size: 14px; }

    /* Roadmap */
    .roadmap-section { padding: 60px 20px; }
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* About */
    .about { padding: 40px 20px; }
    .glass-panel { padding: 32px 20px; }
    .glass-panel h2 { font-size: 24px; }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 36px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .social-links { justify-content: center; }

    .footer-bottom { padding: 20px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .badge { font-size: 12px; padding: 5px 12px; }
    .container { padding: 0 16px; }
    .navbar { padding: 12px 0; }
    .nav-content { padding: 0 16px; }

    .phone-frame { width: 200px; }
    .phone-screen img { width: 100%; }

    .tester-header h2 { font-size: 18px; }
    .step-content h3 { font-size: 16px; }
    .btn-step { padding: 12px 18px; font-size: 13px; }

    .section-header h2 { font-size: 22px; }
    .roadmap-card { padding: 24px 18px; }
    .roadmap-card h3 { font-size: 17px; }

    .social-link { width: 36px; height: 36px; font-size: 18px; }
}

/* ── FAQ Accordion ───────────────────────────────────────────── */
.faq-section {
    padding: 80px 24px;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(13, 59, 92, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 59, 92, 0.04);
    border-color: rgba(26, 127, 168, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    outline: none;
}

.faq-question ion-icon {
    font-size: 20px;
    color: var(--teal);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section { padding: 50px 16px; }
    .faq-question { padding: 18px 20px; font-size: 16px; }
    .faq-answer { padding: 0 20px; }
}


/* ── Interactive Phone Mockup ── */
.phone-screen-container {
    height: calc(100% - 140px);
    background: #fdfdfd;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.mock-screen {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    padding: 16px;
    background: #f4f9fc;
}

.mock-screen.active {
    opacity: 1;
    visibility: visible;
}

.mock-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    border-bottom: 1.5px solid rgba(13, 59, 92, 0.08);
    padding-bottom: 6px;
}

.mock-scroll-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.grounding-card {
    background: white;
    border-left: 4px solid var(--teal);
    padding: 10px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.card-tag {
    font-size: 9px;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.mock-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.menu-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-item:hover {
    transform: translateY(-1px);
    border-color: var(--teal);
}

.menu-item ion-icon {
    font-size: 18px;
    color: var(--teal);
}

/* AI Chat Screen */
.mock-chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    font-size: 10px;
}

.msg {
    max-width: 85%;
    padding: 8px 10px;
    border-radius: 12px;
    line-height: 1.3;
}

.msg.bot {
    background: white;
    color: var(--navy);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(13, 59, 92, 0.05);
}

.msg.user {
    background: var(--teal);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

/* Guides Screen */
.guide-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid rgba(13, 59, 92, 0.2);
}

.guide-item.active {
    border-left-color: var(--teal);
}

.guide-item h4 {
    font-size: 11px;
    margin-bottom: 4px;
    color: var(--navy);
}

.guide-item p {
    font-size: 9px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.phone-navbar-mock {
    height: 48px;
    border-top: 1px solid rgba(13, 59, 92, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    margin-top: 12px;
    border-radius: 10px;
}

.phone-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-secondary);
    transition: all 0.2s;
    padding: 6px;
    display: flex;
}

.phone-nav-btn.active {
    color: var(--teal);
}

/* ── AI Chat Simulator Widget ── */
.ai-simulator-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(26,127,168,0.03) 100%);
}

.simulator-container {
    max-width: 860px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(13, 59, 92, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(13, 59, 92, 0.06);
}

.sim-header {
    background: var(--navy);
    color: white;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sim-header-info h3 {
    font-size: 16px;
    font-weight: 600;
}

.sim-header-info span {
    font-size: 12px;
    opacity: 0.8;
}

.sim-chat-window {
    height: 320px;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255,255,255,0.4);
}

.sim-msg {
    max-width: 75%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.sim-msg.bot {
    background: white;
    color: var(--navy);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 12px rgba(13, 59, 92, 0.03);
}

.sim-msg.user {
    background: var(--teal);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: white;
    align-self: flex-start;
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    box-shadow: 0 4px 12px rgba(13,59,92,0.03);
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.sim-options-panel {
    padding: 20px 24px;
    background: white;
    border-top: 1px solid rgba(13,59,92,0.06);
}

.sim-options-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sim-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sim-option-btn {
    background: rgba(26,127,168,0.06);
    color: var(--teal);
    border: 1px solid rgba(26,127,168,0.12);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.sim-option-btn:hover {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
    transform: translateY(-1px);
}

/* ── Legal Self-Assessment Wizard ── */
.wizard-section {
    padding: 80px 24px;
}

.wizard-card {
    max-width: 860px;
    margin: 0 auto;
}

.wizard-steps-container {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.wizard-btn {
    background: white;
    border: 1px solid rgba(13,59,92,0.1);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wizard-btn:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 24px rgba(26,127,168,0.06);
    transform: translateY(-2px);
}

.wizard-btn h4 {
    color: var(--navy);
    font-size: 16px;
    font-weight: 600;
}

.wizard-btn p {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Result Timeline styling */
.wizard-timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid rgba(26,127,168,0.15);
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -31px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid white;
}

.timeline-item h4 {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ── Sticky Conversion Bottom Bar ── */
.sticky-bar {
    position: fixed;
    bottom: -120px;
    left: 24px; right: 24px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(13,59,92,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 16px 24px;
    border-radius: 16px;
}

.sticky-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bar-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.sticky-bar-text h4 {
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
}

.sticky-bar-text p {
    font-size: 12px;
    color: var(--text-secondary);
}

.sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bar-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-secondary);
    padding: 4px;
    display: flex;
}
