/* ───── DARK SLATE THEME ───── */
:root {
    --teal: #0ea5a4;
    --teal-dark: #0c8b8a;
    --teal-light: #1a3a3a;
    --navy: #020617;
    --navy-dark: #000000;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --border: #1e293b;
    --card-bg: #0f172a;
    --bg-surface: #020617;
    --bg-elevated: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background: #020617;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* ── Scroll progress ── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5a4, #5eead4);
    z-index: 9999;
    width: 0%;
    transition: width .1s linear;
}

/* ── Nav ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .4s ease;
    padding: 0 5%;
}

nav.scrolled {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, .5);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--teal);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0ea5a4, #0f766e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    transition: all .2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
    background: rgba(14, 165, 164, 0.15);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--teal);
    text-decoration: none;
    transition: all .2s;
}

.btn-ghost:hover {
    background: rgba(14, 165, 164, 0.15);
}

.btn-primary {
    padding: 9px 22px;
    border-radius: 8px;
    background: var(--teal);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: all .25s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 164, .45);
    background: #0d9488;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Mobile nav */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 99px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1e293b;
    padding: 20px 5%;
    z-index: 999;
}

#mobile-nav.open {
    display: block;
}

#mobile-nav a {
    display: block;
    padding: 12px 0;
    font-weight: 500;
    color: #e2e8f0;
    text-decoration: none;
    border-bottom: 1px solid #1e293b;
    transition: color .2s;
}

#mobile-nav a:hover {
    color: var(--teal);
}

/* ── Fade in animation ── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #111827 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14, 165, 164, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: 99px;
    padding: 5px 14px 5px 8px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.hero-badge span.dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, #5eead4, #0ea5a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-secondary {
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    color: #ffffff;
    border: 2px solid #0ea5a4;
    text-decoration: none;
    transition: all .25s;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(14, 165, 164, 0.2);
    border-color: #5eead4;
}

.btn-primary-lg {
    padding: 13px 28px;
    border-radius: 10px;
    background: #0ea5a4;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(14, 165, 164, .45);
    background: #0d9488;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-trust-faces {
    display: flex;
}

.hero-trust-faces img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    margin-left: -8px;
    object-fit: cover;
}

.hero-trust-faces img:first-child {
    margin-left: 0;
}

.hero-trust-text {
    font-size: .85rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-trust-text strong {
    color: var(--teal);
    font-weight: 700;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-card {
    background: #111827;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
    overflow: hidden;
    border: 1px solid #1e293b;
}

.hero-card-header {
    background: #020617;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card-dots {
    display: flex;
    gap: 6px;
}

.hero-card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.hero-card-title {
    font-size: .85rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-left: 4px;
}

.hero-card-body {
    padding: 20px;
}

.appt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: #0f172a;
    border: 1px solid #1e293b;
    transition: all .2s;
}

.appt-row:hover {
    background: #1a2744;
    border-color: #0ea5a4;
}

.appt-avatar {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0ea5a4, #5eead4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.appt-info {
    flex: 1;
    margin: 0 12px;
}

.appt-info strong {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #f1f5f9;
}

.appt-info span {
    font-size: .75rem;
    color: #94a3b8;
}

.appt-badge {
    font-size: .7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
}

.badge-confirmed {
    background: #064e3b;
    color: #34d399;
}

.badge-pending {
    background: #78350f;
    color: #fbbf24;
}

.badge-new {
    background: #1e3a8a;
    color: #60a5fa;
}

/* Floating stat cards */
.stat-card {
    position: absolute;
    background: #111827;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
    border: 1px solid #1e293b;
}

.stat-card.top-right {
    top: -20px;
    right: -30px;
    animation: float1 4s ease-in-out infinite;
}

.stat-card.bottom-left {
    bottom: 10px;
    left: -35px;
    animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: .72rem;
    color: #94a3b8;
    font-weight: 500;
}

.stat-icon {
    font-size: 1.1rem;
    color: var(--teal);
    margin-bottom: 4px;
}

/* ── Section commons ── */
.section {
    padding: 90px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 560px;
    line-height: 1.7;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-sub {
    margin: 0 auto;
}

/* ── Features ── */
.features-bg {
    background: #0f172a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.feature-card {
    padding: 30px;
    border-radius: 18px;
    border: 1.5px solid #1e293b;
    background: #111827;
    transition: all .3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 164, 0.1), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.feature-card:hover {
    border-color: #0ea5a4;
    box-shadow: 0 20px 50px rgba(14, 165, 164, .15);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.icon-teal {
    background: linear-gradient(135deg, rgba(14, 165, 164, 0.25), rgba(5, 150, 105, 0.15));
    color: var(--teal);
}

.icon-blue {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    color: #818cf8;
}

.icon-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.1));
    color: #fbbf24;
}

.icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(239, 68, 68, 0.1));
    color: #f87171;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: .9rem;
    color: #94a3b8;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(14, 165, 164, 0.15);
    padding: 4px 10px;
    border-radius: 99px;
    position: relative;
    z-index: 1;
}

/* ── Pricing ── */
.pricing-bg {
    background: linear-gradient(135deg, #0a0f1f 0%, #020617 100%);
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px 0 48px;
    flex-wrap: wrap;
}

.toggle-label {
    font-size: .9rem;
    font-weight: 600;
    color: #94a3b8;
    transition: color .2s;
}

.toggle-label.active {
    color: #ffffff;
}

.toggle-track {
    width: 48px;
    height: 26px;
    background: #1e293b;
    border-radius: 99px;
    position: relative;
    cursor: pointer;
    transition: background .3s;
}

.toggle-track.on {
    background: var(--teal);
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    transition: transform .3s;
}

.toggle-track.on .toggle-thumb {
    transform: translateX(22px);
}

.save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 48px;
    
}

.plan-card {
    background: #111827;
    border-radius: 20px;
    padding: 34px 30px;
    border: 1.5px solid #1e293b;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    transform: translateY(-3px);
    border-color: #0ea5a4;
}

.plan-card.popular {
    border-color: #0ea5a4;
    box-shadow: 0 16px 50px rgba(14, 165, 164, .25);
    transform: scale(1.03);
}

.plan-card.popular:hover {
    transform: scale(1.03) translateY(-3px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #0ea5a4;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 0 0 12px 12px;
    letter-spacing: .04em;
    white-space: nowrap;
}

.plan-name {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 8px;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
}

.plan-price .amount {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.plan-price .currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.plan-price .period {
    font-size: .85rem;
    color: #94a3b8;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: .85rem;
    color: #94a3b8;
    margin-bottom: 26px;
}

.plan-divider {
    height: 1px;
    background: #1e293b;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: .875rem;
    color: #cbd5e1;
}

.plan-features li i {
    color: var(--teal);
    font-size: .8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.plan-features li.no i {
    color: #334155;
}

.plan-features li.no span {
    color: #64748b;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .25s;
    border: none;
}

.plan-btn-outline {
    background: transparent;
    border: 2px solid #1e293b !important;
    color: #e2e8f0;
}

.plan-btn-outline:hover {
    border-color: var(--teal) !important;
    color: var(--teal);
    background: rgba(14, 165, 164, 0.1);
}

.plan-btn-fill {
    background: #0ea5a4;
    color: #fff;
}

.plan-btn-fill:hover {
    background: #0d9488;
    transform: translateY(-2px);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: .85rem;
    color: #94a3b8;
    font-weight: 500;
}

.guarantee-badge i {
    color: #0ea5a4;
}

/* ── How it works ── */
.hiw-bg {
    background: #0f172a;
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
    position: relative;
}

.hiw-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 16.67%;
    right: 16.67%;
    height: 2px;
    background: #0ea5a4;
    z-index: 0;
}

.hiw-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hiw-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0ea5a4;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(14, 165, 164, .4);
}

.hiw-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.hiw-step p {
    font-size: .875rem;
    color: #94a3b8;
    line-height: 1.65;
    max-width: 220px;
    margin: 0 auto;
}

/* ── Testimonials ── */
.testi-bg {
    background: linear-gradient(135deg, #0a0f1f 0%, #0f172a 100%);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 52px;
}

.testi-card {
    background: #111827;
    border-radius: 20px;
    padding: 28px;
    border: 1.5px solid #1e293b;
    transition: all .3s;
    position: relative;
}

.testi-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    transform: translateY(-3px);
    border-color: #0ea5a4;
}

.testi-quote-icon {
    font-size: 1.6rem;
    color: #0ea5a4;
    opacity: 0.3;
    position: absolute;
    top: 18px;
    right: 20px;
}

.testi-stars {
    color: #fbbf24;
    font-size: .85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: .9rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0ea5a4;
}

.testi-name {
    font-weight: 700;
    font-size: .9rem;
    color: #ffffff;
}

.testi-role {
    font-size: .78rem;
    color: #94a3b8;
}

/* ── CTA ── */
.cta-section {
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0ea5a4 0%, #0f766e 60%, #064e3b 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.cta-inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-white {
    padding: 13px 30px;
    border-radius: 10px;
    background: #fff;
    color: #0ea5a4;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
}

.btn-outline-white {
    padding: 13px 30px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.trust-badge i {
    font-size: .85rem;
    color: rgba(255, 255, 255, .9);
}

/* ── Footer ── */
footer {
    background: #020617;
    color: #94a3b8;
    padding: 70px 5% 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: .875rem;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 300px;
    color: #94a3b8;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0ea5a4, #0d9488);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter {
    margin-top: 22px;
}

.footer-newsletter p {
    font-size: .82rem;
    margin-bottom: 10px;
    color: #94a3b8;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid #1e293b;
    background: #0f172a;
    color: #fff;
    font-size: .85rem;
    outline: none;
    transition: border .2s;
}

.footer-newsletter-form input:focus {
    border-color: var(--teal);
}

.footer-newsletter-form button {
    padding: 9px 16px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: .82rem;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    background: var(--teal-dark);
}

footer h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #e2e8f0;
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    font-size: .875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s;
}

footer ul li a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: .9rem;
    transition: all .2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--teal);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: .8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: #cbd5e1;
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: .9rem;
    box-shadow: 0 4px 14px rgba(14, 165, 164, .5);
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .hiw-steps::before {
        display: none;
    }
    
    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links,
    .nav-cta .btn-ghost {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 4%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}