:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #eef2f9;
    --ink: #0f1b2e;
    --navy: #0b1730;
    --navy-soft: #12224a;
    --text: #101728;
    --muted: #5b6b84;
    --muted-soft: #8794aa;
    --primary: #3255d7;
    --primary-dark: #1c2f8a;
    --primary-light: #7b93ff;
    --teal: #5468ea;
    --green: #16a34a;
    --border: rgba(15, 23, 42, 0.09);
    --border-strong: rgba(15, 23, 42, 0.16);
    --shadow-sm: 0 8px 22px rgba(16, 30, 60, 0.06);
    --shadow-md: 0 20px 48px rgba(16, 30, 60, 0.10);
    --shadow-lg: 0 34px 80px rgba(16, 30, 60, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1180px;
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1100;
    background: transparent;
    pointer-events: none;
}

.scroll-progress i {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--primary));
    transition: width 0.08s linear;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.astravex-nav {
    min-height: 76px;
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.25s ease, background 0.25s ease, min-height 0.25s ease;
}

.astravex-nav.is-scrolled {
    min-height: 66px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
    font-weight: 900;
}

.footer-brand {
    color: #fff;
}

.brand-mark {
    display: inline-grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 26px rgba(50, 85, 215, 0.28);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-toggler {
    color: var(--ink);
    border: 1px solid var(--border-strong);
}

.nav-link {
    position: relative;
    color: var(--muted);
    font-weight: 700;
    margin: 0 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.25rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--teal);
    transition: transform 0.22s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

/* Buttons */
.btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    background: radial-gradient(120px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.35), transparent 60%);
    transition: opacity 0.2s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.is-pressing,
.filter-btn.is-pressing,
.flow-step.is-pressing {
    transform: translateY(1px) scale(0.98);
}

.btn-primary-glow {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: 0 16px 34px rgba(50, 85, 215, 0.26);
}

.btn-primary-glow:hover,
.btn-primary-glow:focus {
    color: #fff;
    box-shadow: 0 20px 44px rgba(84, 104, 234, 0.28);
}

.btn-ghost {
    color: var(--ink);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
    border-color: var(--primary-light);
}

/* Hero */
.hero-section {
    position: relative;
    padding: 108px 0 64px;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-blobs {
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
}

.hero-blobs i {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.38;
    transition: transform 0.35s ease-out;
}

.hero-blobs i:nth-child(1) {
    width: 420px;
    height: 420px;
    left: 6%;
    top: 8%;
    background: radial-gradient(circle, var(--primary-light), transparent 70%);
    transform: translate3d(calc(var(--mx, 0) * 1px), calc(var(--my, 0) * 1px), 0);
}

.hero-blobs i:nth-child(2) {
    width: 380px;
    height: 380px;
    right: 4%;
    top: 2%;
    background: radial-gradient(circle, var(--teal), transparent 70%);
    transform: translate3d(calc(var(--mx, 0) * -1.4px), calc(var(--my, 0) * -1.4px), 0);
}

.hero-blobs i:nth-child(3) {
    width: 320px;
    height: 320px;
    left: 32%;
    bottom: -8%;
    background: radial-gradient(circle, #a7d8ff, transparent 70%);
    transform: translate3d(calc(var(--mx, 0) * 0.8px), calc(var(--my, 0) * -0.8px), 0);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(15, 27, 46, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 27, 46, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 55% at 30% 30%, #000 0%, transparent 75%);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-badge,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary-dark);
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(50, 85, 215, 0.18);
    border-radius: 999px;
    background: rgba(50, 85, 215, 0.07);
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-copy h1 {
    max-width: 560px;
    margin: 1rem 0;
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 500px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
    margin-top: 1.8rem;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.trust-badges i {
    color: var(--green);
}

.category-card,
.benefit-card,
.site-card,
.plan-card,
.testimonial-card,
.flow-step,
.trust-strip-inner,
.why-node,
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.mockup-stage {
    position: relative;
    z-index: 2;
}

.hero-banner-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(16, 30, 60, 0.28);
}

.phone-mockup,
.orbit-card {
    position: absolute;
    border: 1px solid var(--border);
    background: var(--navy);
    box-shadow: 0 30px 80px rgba(16, 30, 60, 0.28);
    transform-style: preserve-3d;
    will-change: transform;
}

.orbit-card {
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.site-preview-top {
    display: flex;
    gap: 0.45rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.site-preview-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted-soft);
    opacity: 0.5;
}

.phone-screen i,
.preview-bars i {
    display: block;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.preview-bars i {
    background: var(--surface-soft);
}

.phone-mockup {
    right: 0;
    bottom: 24px;
    width: 188px;
    min-height: 340px;
    border-radius: 32px;
    padding: 0.8rem;
    transition: transform 0.2s ease-out;
}

.phone-speaker {
    width: 58px;
    height: 5px;
    margin: 0 auto 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
}

.phone-screen {
    height: 295px;
    padding: 1rem;
    border-radius: 23px;
    background: linear-gradient(180deg, #16233f, #0b1730);
}

.phone-screen span,
.phone-screen strong {
    display: block;
}

.phone-screen span {
    color: var(--teal);
    font-size: 0.68rem;
    font-weight: 800;
}

.phone-screen strong {
    margin: 1.1rem 0;
    font-size: 1.4rem;
    line-height: 1.05;
    color: #fff;
}

.phone-screen i {
    height: 52px;
    margin-top: 0.7rem;
}

.orbit-card {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 900;
    color: var(--ink);
}

.orbit-card i {
    color: var(--primary);
}

.orbit-one {
    left: -14px;
    bottom: 34px;
}

.orbit-two {
    right: -10px;
    top: 22px;
}

.floating-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

.floating-fast {
    animation: floatFast 4.8s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -14px; }
}

@keyframes floatFast {
    0%, 100% { margin-top: 0; }
    50% { margin-top: 12px; }
}

/* Trust strip */
.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -46px;
    padding-bottom: 40px;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.3rem 1.4rem;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item i {
    display: inline-grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    font-size: 1rem;
}

.trust-item strong {
    display: block;
    font-size: 1rem;
    color: var(--ink);
}

.trust-item small {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 0.15rem;
}

/* Sections */
.section-pad {
    padding: 96px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-heading.text-start {
    margin-left: 0;
}

.section-heading h2 {
    margin: 1rem 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 900;
    color: var(--ink);
}

.section-heading p {
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.category-grid,
.benefit-grid,
.plans-grid,
.testimonial-grid {
    display: grid;
    gap: 1.1rem;
}

.category-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.9rem;
}

.benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.85rem;
}

.benefit-card,
.plan-card,
.testimonial-card {
    position: relative;
    min-height: 100%;
    padding: 1.35rem;
    border-radius: 22px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem;
    border-radius: 16px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 45%, var(--border-strong));
}

.category-card:hover,
.plan-card:hover,
.testimonial-card:hover,
.site-card:hover {
    border-color: rgba(50, 85, 215, 0.28);
    box-shadow: var(--shadow-md);
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 1.15rem 1.15rem 0;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.category-preview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    margin: 1rem -1.15rem 0;
    padding: 1rem 1.15rem;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 55%, var(--navy)), color-mix(in srgb, var(--accent) 20%, var(--navy)));
}

.category-preview i {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.category-preview i:nth-child(1) { width: 70%; }
.category-preview i:nth-child(2) { width: 45%; opacity: 0.75; }
.category-preview i:nth-child(3) { width: 55%; opacity: 0.55; }

.category-icon,
.benefit-icon {
    position: relative;
    display: inline-grid;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    color: var(--accent, var(--primary));
    background: color-mix(in srgb, var(--accent, var(--primary)) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent, var(--primary)) 30%, transparent);
    font-size: 0.98rem;
    transition: transform 0.2s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08) rotate(-4deg);
}

.category-card h3,
.benefit-card h3,
.site-card h3,
.plan-card h3 {
    position: relative;
    margin: 1rem 0 0.6rem;
    font-size: 1.12rem;
    font-weight: 900;
    color: var(--ink);
}

.category-card h3 {
    margin: 0.85rem 0 0.35rem;
    font-size: 0.98rem;
}

.benefit-copy {
    min-width: 0;
}

.benefit-card h3 {
    margin: 0 0 0.3rem;
    font-size: 0.98rem;
}

.benefit-card p {
    font-size: 0.82rem;
    line-height: 1.5;
}

.category-card p {
    flex: 1;
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.category-card p,
.benefit-card p,
.site-card p,
.plan-card p,
.testimonial-card p {
    position: relative;
    color: var(--muted);
    line-height: 1.65;
}

.how-section {
    background: var(--surface-soft);
}

.how-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-top: 1rem;
}

.how-flow-line {
    position: absolute;
    top: 38px;
    left: 6%;
    right: 6%;
    height: 2px;
    z-index: 0;
    background-image: linear-gradient(90deg, var(--border-strong) 0, var(--border-strong) 60%, transparent 60%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
}

.how-flow-line i {
    display: block;
    height: 100%;
    width: 8%;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    transition: width 0.6s ease;
}

.flow-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.25rem;
    color: var(--ink);
    text-align: left;
    font-family: inherit;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.flow-step:hover,
.flow-step.is-active {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--flow-color, var(--primary)) 40%, var(--border-strong));
}

.flow-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.flow-number {
    display: inline-grid;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    font-size: 0.86rem;
    background: var(--flow-color, var(--primary));
    box-shadow: 0 8px 18px color-mix(in srgb, var(--flow-color, var(--primary)) 45%, transparent);
    transition: transform 0.25s ease;
}

.flow-step:hover .flow-number,
.flow-step.is-active .flow-number {
    transform: scale(1.12);
}

.flow-icon {
    display: inline-grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--flow-color, var(--primary));
    background: color-mix(in srgb, var(--flow-color, var(--primary)) 14%, transparent);
}

.flow-step strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
    font-weight: 800;
}

.flow-step small {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.examples-section {
    background: var(--surface);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.filter-btn {
    color: var(--muted);
    padding: 0.72rem 1rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: var(--surface);
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-color: transparent;
}

.site-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.site-card {
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.site-card.is-hidden {
    display: none;
}

.site-preview {
    margin: 1rem 1rem 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--navy);
    overflow: hidden;
}

.site-preview-body {
    min-height: 170px;
    padding: 1rem;
    color: #fff;
}

.preview-pill {
    display: inline-flex;
    color: var(--teal);
    font-size: 0.74rem;
    font-weight: 900;
}

.site-preview-body strong,
.site-preview-body small {
    display: block;
}

.site-preview-body strong {
    margin: 0.55rem 0 0.25rem;
    font-size: 1.15rem;
}

.site-preview-body small {
    color: rgba(255, 255, 255, 0.65);
}

.site-preview-body .preview-bars i {
    background: rgba(255, 255, 255, 0.14);
}

.preview-bars {
    margin-top: 1rem;
}

.preview-bars i {
    height: 14px;
    margin-top: 0.6rem;
}

.preview-bars i:nth-child(1) { width: 90%; }
.preview-bars i:nth-child(2) { width: 68%; }
.preview-bars i:nth-child(3) { width: 78%; }

.site-card-content {
    padding: 1.15rem;
}

.site-card-content span {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.site-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.site-card-footer strong {
    color: var(--green);
}

.site-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    background: var(--surface-soft);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-card-cta i {
    transition: transform 0.2s ease;
}

.site-card-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
}

.site-card-cta:hover i {
    transform: translateX(2px);
}

.stars {
    color: var(--primary);
}

/* Why Astravex */
.why-section {
    background: var(--surface-soft);
}

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

.why-list {
    display: grid;
    gap: 1.1rem;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.5;
}

.why-item i {
    flex: 0 0 auto;
    display: inline-grid;
    width: 30px;
    height: 30px;
    margin-top: 0.1rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    font-size: 0.8rem;
}

.why-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 380px;
}

.why-ring {
    position: relative;
    width: 300px;
    height: 300px;
    border: 1.5px dashed var(--border-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.why-hub {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg);
}

.why-hub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.why-node i {
    color: var(--primary);
}

.why-node-1 { top: -14px; left: 50%; transform: translateX(-50%); }
.why-node-2 { right: -30px; top: 50%; transform: translateY(-50%); }
.why-node-3 { bottom: -14px; left: 50%; transform: translateX(-50%); }
.why-node-4 { left: -30px; top: 50%; transform: translateY(-50%); }

.plans-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.plan-card {
    padding: 1.5rem;
}

.plan-card.is-popular {
    border-color: rgba(84, 104, 234, 0.4);
    background: linear-gradient(180deg, rgba(50, 85, 215, 0.05), var(--surface) 40%);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.popular-badge {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    color: #fff;
    background: var(--teal);
    font-weight: 900;
    font-size: 0.8rem;
}

.plan-price {
    margin: 1.2rem 0;
    font-size: 3rem;
    font-weight: 900;
    color: var(--ink);
}

.plan-price span,
.plan-price small {
    color: var(--muted);
    font-size: 1rem;
}

.plan-card ul {
    display: grid;
    gap: 0.72rem;
    min-height: 210px;
    padding: 0;
    margin: 0 0 1.4rem;
    list-style: none;
}

.plan-card li {
    display: flex;
    gap: 0.65rem;
    color: var(--text);
}

.plan-card li i {
    color: var(--green);
    margin-top: 0.22rem;
}

.btn-plan {
    width: 100%;
    color: var(--ink);
    border: 1px solid var(--border-strong);
    background: var(--surface-soft);
}

.plan-card.is-popular .btn-plan {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
}

/* Testimonials carousel */
.testimonials-section {
    background: var(--surface-soft);
}

.testimonial-carousel {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    min-height: 260px;
    touch-action: pan-y;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    padding: 2.2rem;
    border-radius: 24px;
    text-align: center;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-card.is-active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-card .stars {
    justify-content: center;
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.9rem;
}

.testimonial-card p {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--ink);
}

.testimonial-author {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.3rem;
}

.testimonial-author span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    font-weight: 900;
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author small {
    color: var(--muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 1.6rem;
}

.carousel-arrow {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--border-strong);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    transform: translateY(-2px);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--border-strong);
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots button.active {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    transform: scale(1.3);
}

/* FAQ */
.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.accordion-item {
    color: var(--ink);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    font-weight: 900;
}

.accordion-body {
    color: var(--muted);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 0;
}

.final-cta-inner {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 9vw, 6.5rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 15%, rgba(123, 147, 255, 0.5), transparent 42%),
        radial-gradient(circle at 85% 85%, rgba(84, 104, 234, 0.45), transparent 42%),
        linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.final-cta-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 0%, transparent 78%);
}

.final-cta-orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.final-cta-orbs i {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    animation: ctaOrbPulse 7s ease-in-out infinite;
}

.final-cta-orbs i:nth-child(1) {
    width: 380px;
    height: 380px;
    left: -6%;
    top: -20%;
    background: radial-gradient(circle, var(--primary-light), transparent 70%);
}

.final-cta-orbs i:nth-child(2) {
    width: 340px;
    height: 340px;
    right: -4%;
    bottom: -25%;
    background: radial-gradient(circle, var(--teal), transparent 70%);
    animation-delay: 1.4s;
}

@keyframes ctaOrbPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.75; }
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
}

.final-cta-copy span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a8e6e2;
    font-weight: 900;
}

.final-cta-copy > span {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
}

.final-cta-copy h2 {
    margin: 1.1rem 0 1rem;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
}

.final-cta-highlight {
    background: linear-gradient(135deg, #8ab4ff, #6ee7c9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.final-cta-copy p {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.btn-ghost-dark {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost-dark:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
}

.final-cta-copy .trust-badges {
    margin-top: 1.9rem;
}

.final-cta-copy .trust-badges span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.final-cta-copy .trust-badges i {
    color: #6ee7c9;
}

.final-cta-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.final-cta-phone .phone-mockup {
    position: relative;
    inset: auto;
    width: 200px;
    min-height: 350px;
    border-color: rgba(255, 255, 255, 0.14);
}

.final-cta-badge {
    position: absolute;
    right: 4%;
    top: 6%;
    color: var(--ink);
}

/* Footer */
.footer {
    padding: 54px 0 32px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
    gap: 2rem;
}

.footer p,
.footer a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.62);
}

.footer strong,
.footer a {
    display: block;
    margin-bottom: 0.65rem;
}

.footer strong {
    color: #fff;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
    display: flex;
    gap: 1rem;
}

.footer-bottom a {
    margin-bottom: 0;
}

/* Floating controls */
.floating-controls {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}

.floating-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-contact.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-top {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.floating-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-top:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem 0 1.25rem;
    }

    .hero-section {
        padding-top: 68px;
    }

    .orbit-card {
        display: none;
    }

    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-grid,
    .site-grid,
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-flow-line {
        display: none;
    }

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

    .why-visual {
        order: -1;
        min-height: 300px;
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .final-cta-phone {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
        padding: 54px 0 64px;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-flow,
    .benefit-grid,
    .site-grid,
    .plans-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: 0;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .final-cta-phone .phone-mockup {
        width: 154px;
        min-height: 286px;
    }

    .final-cta-phone .phone-screen {
        height: 244px;
    }

    .section-pad {
        padding: 66px 0;
    }

    .filter-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.4rem;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .plan-card.is-popular {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-controls {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-banner-img,
    .phone-mockup,
    .category-card,
    .site-card,
    .plan-card,
    .flow-step {
        transform: none !important;
    }
}
