/* ═══════════════════════════════════════════
   PriceHound — Landing Page
   Font: Plus Jakarta Sans | Monochrome | Hyper-converting
   ═══════════════════════════════════════════ */

:root {
    --white: #ffffff;
    --off-white: #f7f7f5;
    --sand: #eeece7;
    --ink: #0a0a0a;
    --ink-soft: #333;
    --ink-muted: #666;
    --ink-faint: #999;
    --ink-ghost: #bbb;
    --border: #e8e8e5;
    --border-dark: #d5d5d0;
    --green: #16a34a;
    --green-bg: #f0fdf4;
    --red: #dc2626;
    --red-bg: #fef2f2;
    --radius: 10px;
    --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ═══════════════════════════════════════════
   TUBELIGHT NAVBAR
   ═══════════════════════════════════════════ */

#navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 100px;
    padding: 4px;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--ink-muted);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.nav-icon { display: flex; align-items: center; }
.nav-icon svg { width: 15px; height: 15px; }

.nav-item:hover { color: var(--ink); }

.nav-item.active {
    color: var(--white);
}

/* Tubelight sliding indicator */
.nav-glow {
    position: absolute;
    top: 4px;
    height: calc(100% - 8px);
    background: var(--ink);
    border-radius: 100px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Fixed logo */
.fixed-logo {
    position: fixed;
    top: 24px;
    left: 32px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
    padding: 160px 32px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* ─── Hero background ─── */
.hero-bg {
    position: absolute;
    inset: -100px -200px;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border-dark) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.45;
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 35%, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 60% 50% at 50% 35%, black 20%, transparent 70%);
}

.hero-shimmer {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: shimmer-float 14s ease-in-out infinite;
}

.hero-shimmer-1 {
    width: 420px;
    height: 420px;
    background: rgba(200, 180, 255, 0.06);
    top: 5%;
    left: 20%;
    animation-delay: 0s;
}

.hero-shimmer-2 {
    width: 350px;
    height: 350px;
    background: rgba(180, 220, 255, 0.05);
    top: 15%;
    right: 15%;
    animation-delay: -5s;
}

.hero-shimmer-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 200, 180, 0.04);
    bottom: 20%;
    left: 40%;
    animation-delay: -9s;
}

@keyframes shimmer-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(25px, -15px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.6;
    }
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-pill {
    display: inline-block;
    background: var(--off-white);
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

/* ─── Animated text cycle ─── */
.text-cycle-wrap {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    height: 1.1em;
    width: auto;
}

.text-cycle {
    display: flex;
    flex-direction: column;
    animation: cycleUp 10s ease-in-out infinite;
}

.cycle-word {
    display: block;
    height: 1.1em;
    line-height: 1.1;
    color: var(--ink);
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes cycleUp {
    0%, 16%   { transform: translateY(0); }
    20%, 36%  { transform: translateY(-20%); }
    40%, 56%  { transform: translateY(-40%); }
    60%, 76%  { transform: translateY(-60%); }
    80%, 96%  { transform: translateY(-80%); }
    100%      { transform: translateY(-80%); }
}

.hero-sub {
    font-size: 17px;
    color: var(--ink-muted);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary:hover { background: #1a1a1a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-invert { background: var(--white); color: var(--ink); }
.btn-invert:hover { background: var(--sand); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.1); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    color: var(--ink-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    transition: all 0.2s;
    background: transparent;
}
.btn-ghost:hover { border-color: var(--ink-muted); color: var(--ink); }

/* ─── Scroll-triggered 3D mockup ─── */
.hero-mockup-wrap {
    margin-top: 64px;
    perspective: 1200px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: sticky;
    top: 100px;
    z-index: 1;
    padding-bottom: 120px;
}

.hero-mockup {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.04);
    overflow: hidden;
    transform-origin: center top;
    will-change: transform, opacity;
    transition: transform 0.08s linear, opacity 0.08s linear;
}

.mock-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); }

.mock-title {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-ghost);
}

.mock-body { padding: 4px 0; }

.mock-row {
    display: grid;
    grid-template-columns: 28px 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.mock-row:last-child { border-bottom: none; }

.mr { width: 28px; height: 28px; border-radius: 7px; background: var(--sand); }
.mn { font-size: 12px; font-weight: 600; color: var(--ink); }
.mu { font-size: 10px; color: var(--ink-ghost); }
.mp { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500; color: var(--ink); }
.mc { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; padding: 2px 7px; border-radius: 5px; text-align: center; }
.mc.down { color: var(--green); background: var(--green-bg); }
.mc.up { color: var(--red); background: var(--red-bg); }
.mc.neutral { color: var(--ink-ghost); background: var(--off-white); }

/* ═══════════════════════════════════════════
   LOGO CLOUD
   ═══════════════════════════════════════════ */

.logo-cloud {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0 28px;
    text-align: center;
    overflow: hidden;
}

.logo-cloud-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-ghost);
    margin-bottom: 20px;
}

.logo-cloud-track {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-cloud-scroll {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: logo-scroll 20s linear infinite;
}

@keyframes logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20%); }
}

/* ═══════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════ */

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-ghost);
    margin-bottom: 8px;
    text-align: center;
}

.section-sub {
    font-size: 16px;
    color: var(--ink-muted);
    max-width: 440px;
    margin: 0 auto 48px;
    text-align: center;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */

.how-section {
    padding: 120px 0;
    text-align: center;
}

.how-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    text-align: left;
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.step-card:hover { border-color: var(--border-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

.step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-ghost);
    margin-bottom: 16px;
    display: block;
}

.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   FEATURES BENTO
   ═══════════════════════════════════════════ */

.features-section {
    padding: 0 0 80px;
    text-align: center;
}

.features-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 32px;
}

.feat-bento {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feat-big {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    transition: all 0.2s;
}

.feat-big:hover { border-color: var(--border-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

.feat-visual {
    position: relative;
}

.feat-chart {
    width: 100%;
    height: 80px;
}

.feat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-big-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.feat-big-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--green);
    background: var(--green-bg);
}

.feat-big h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.feat-big p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feat-small {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: left;
    transition: all 0.2s;
}

.feat-small:hover { border-color: var(--border-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

.feat-ico {
    width: 36px;
    height: 36px;
    background: var(--off-white);
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    color: var(--ink);
}

.feat-ico svg { width: 18px; height: 18px; }

.feat-small h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feat-small p { font-size: 12px; color: var(--ink-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   GRADIENT BUTTON — exact serafim/gradient-button
   ═══════════════════════════════════════════ */

@property --pos-x {
    syntax: '<percentage>';
    initial-value: 11.14%;
    inherits: false;
}

@property --pos-y {
    syntax: '<percentage>';
    initial-value: 140%;
    inherits: false;
}

@property --spread-x {
    syntax: '<percentage>';
    initial-value: 150%;
    inherits: false;
}

@property --spread-y {
    syntax: '<percentage>';
    initial-value: 180.06%;
    inherits: false;
}

@property --gbc1 { syntax: '<color>'; initial-value: #000; inherits: false; }
@property --gbc2 { syntax: '<color>'; initial-value: #08012c; inherits: false; }
@property --gbc3 { syntax: '<color>'; initial-value: #4e1e40; inherits: false; }
@property --gbc4 { syntax: '<color>'; initial-value: #70464e; inherits: false; }
@property --gbc5 { syntax: '<color>'; initial-value: #88394c; inherits: false; }

@property --border-angle {
    syntax: '<angle>';
    initial-value: 20deg;
    inherits: true;
}

@property --border-color-1 { syntax: '<color>'; initial-value: hsla(340, 75%, 60%, 0.2); inherits: true; }
@property --border-color-2 { syntax: '<color>'; initial-value: hsla(340, 75%, 40%, 0.75); inherits: true; }

@property --stop-1 { syntax: '<percentage>'; initial-value: 37.35%; inherits: false; }
@property --stop-2 { syntax: '<percentage>'; initial-value: 61.36%; inherits: false; }
@property --stop-3 { syntax: '<percentage>'; initial-value: 78.42%; inherits: false; }
@property --stop-4 { syntax: '<percentage>'; initial-value: 89.52%; inherits: false; }
@property --stop-5 { syntax: '<percentage>'; initial-value: 100%; inherits: false; }

.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 14px 36px;
    border: none;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    appearance: none;
    background: radial-gradient(
        var(--spread-x) var(--spread-y) at var(--pos-x) var(--pos-y),
        var(--gbc1) var(--stop-1),
        var(--gbc2) var(--stop-2),
        var(--gbc3) var(--stop-3),
        var(--gbc4) var(--stop-4),
        var(--gbc5) var(--stop-5)
    );
    transition:
        --pos-x 0.5s, --pos-y 0.5s,
        --spread-x 0.5s, --spread-y 0.5s,
        --gbc1 0.5s, --gbc2 0.5s, --gbc3 0.5s, --gbc4 0.5s, --gbc5 0.5s,
        --border-angle 0.5s, --border-color-1 0.5s, --border-color-2 0.5s,
        --stop-1 0.5s, --stop-2 0.5s, --stop-3 0.5s, --stop-4 0.5s, --stop-5 0.5s,
        transform 0.2s, box-shadow 0.3s;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        var(--border-angle),
        var(--border-color-1),
        var(--border-color-2)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-gradient:hover {
    --pos-x: 0%;
    --pos-y: 91.51%;
    --spread-x: 120.24%;
    --spread-y: 103.18%;
    --gbc1: #c96287;
    --gbc2: #c66c64;
    --gbc3: #cc7d23;
    --gbc4: #37140a;
    --gbc5: #000;
    --border-angle: 190deg;
    --border-color-1: hsla(340, 78%, 90%, 0.1);
    --border-color-2: hsla(340, 75%, 90%, 0.6);
    --stop-1: 0%;
    --stop-2: 8.8%;
    --stop-3: 21.44%;
    --stop-4: 71.34%;
    --stop-5: 85.76%;
    transform: translateY(-2px);
}

.btn-gradient-lg {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 14px;
}

/* ═══════════════════════════════════════════
   INTERACTIVE HOVER BUTTON (Navbar login)
   ═══════════════════════════════════════════ */

.btn-hover-expand {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--border-dark);
    background: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
    white-space: nowrap;
    transition: border-color 0.3s;
}

.btn-hover-expand .bh-text {
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
}

.btn-hover-expand .bh-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 2;
}

.btn-hover-expand .bh-hover svg {
    width: 14px;
    height: 14px;
}

.btn-hover-expand .bh-bg {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink);
    left: 20%;
    top: 40%;
    transform: scale(0);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-hover-expand:hover .bh-text {
    transform: translateX(-150%);
    opacity: 0;
}

.btn-hover-expand:hover .bh-hover {
    transform: translateX(0);
    opacity: 1;
}

.btn-hover-expand:hover .bh-bg {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    transform: scale(1.5);
}

.btn-hover-expand:hover {
    border-color: var(--ink);
}

/* ═══════════════════════════════════════════
   LOGO CLOUD — brand wordmarks
   ═══════════════════════════════════════════ */

.cl {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    white-space: nowrap;
}

.cl:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */

.pricing-section {
    padding: 120px 0;
    background: var(--off-white);
    text-align: center;
}

.pricing-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: left;
    transition: all 0.2s;
    position: relative;
}

.price-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }

.price-card.featured {
    border-color: var(--ink);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: scale(1.04);
    z-index: 2;
}

.price-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-tier {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    margin-bottom: 12px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 4px;
}

.price-currency { font-size: 24px; vertical-align: top; margin-right: 2px; }
.price-period { font-size: 16px; font-weight: 500; color: var(--ink-faint); }
.price-amount-custom { font-size: 28px; padding: 10px 0; }

.price-desc {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

.price-features li {
    font-size: 14px;
    color: var(--ink-soft);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--border-dark);
}

.price-features li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 15px;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid var(--ink-muted);
    border-bottom: 1.5px solid var(--ink-muted);
    transform: rotate(-45deg);
}

.btn-price {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid var(--border-dark);
    color: var(--ink);
    background: var(--white);
    transition: all 0.15s;
    cursor: pointer;
}

.btn-price:hover { border-color: var(--ink); }

.btn-price-gradient {
    border: none;
    color: #fff;
    position: relative;
    appearance: none;
    background: radial-gradient(
        var(--spread-x) var(--spread-y) at var(--pos-x) var(--pos-y),
        var(--gbc1) var(--stop-1),
        var(--gbc2) var(--stop-2),
        var(--gbc3) var(--stop-3),
        var(--gbc4) var(--stop-4),
        var(--gbc5) var(--stop-5)
    );
    transition:
        --pos-x 0.5s, --pos-y 0.5s,
        --spread-x 0.5s, --spread-y 0.5s,
        --gbc1 0.5s, --gbc2 0.5s, --gbc3 0.5s, --gbc4 0.5s, --gbc5 0.5s,
        --border-angle 0.5s, --border-color-1 0.5s, --border-color-2 0.5s,
        --stop-1 0.5s, --stop-2 0.5s, --stop-3 0.5s, --stop-4 0.5s, --stop-5 0.5s,
        transform 0.2s;
}

.btn-price-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        var(--border-angle),
        var(--border-color-1),
        var(--border-color-2)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-price-gradient:hover {
    --pos-x: 0%;
    --pos-y: 91.51%;
    --spread-x: 120.24%;
    --spread-y: 103.18%;
    --gbc1: #c96287;
    --gbc2: #c66c64;
    --gbc3: #cc7d23;
    --gbc4: #37140a;
    --gbc5: #000;
    --border-angle: 190deg;
    --border-color-1: hsla(340, 78%, 90%, 0.1);
    --border-color-2: hsla(340, 75%, 90%, 0.6);
    --stop-1: 0%;
    --stop-2: 8.8%;
    --stop-3: 21.44%;
    --stop-4: 71.34%;
    --stop-5: 85.76%;
    transform: translateY(-2px);
}

/* Blue gradient variant */
.btn-price-blue {
    --gbc1: #000022;
    --gbc2: #0a1a3d;
    --gbc3: #1f3f6d;
    --gbc4: #469396;
    --gbc5: #f1ffa5;
    --border-angle: 200deg;
    --border-color-1: hsla(320, 75%, 90%, 0.6);
    --border-color-2: hsla(320, 50%, 90%, 0.15);
}

.btn-price-blue:hover {
    --pos-x: 0%;
    --pos-y: 95.51%;
    --spread-x: 110.24%;
    --spread-y: 110.2%;
    --gbc1: #000020;
    --gbc2: #1f3f6d;
    --gbc3: #469396;
    --gbc4: #f1ffa5;
    --gbc5: #1f3f6d;
    --border-angle: 210deg;
    --border-color-1: hsla(320, 75%, 90%, 0.2);
    --border-color-2: hsla(320, 50%, 90%, 0.75);
    --stop-1: 0%;
    --stop-2: 8.8%;
    --stop-3: 21.44%;
    --stop-4: 71.34%;
    --stop-5: 85.76%;
    transform: translateY(-2px);
}

.pricing-note {
    margin-top: 32px;
    font-size: 13px;
    color: var(--ink-ghost);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials-section {
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.testimonials-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 48px;
}

.testimonials-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    max-height: 480px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scroll-testimonials var(--speed, 25s) linear infinite;
}

@keyframes scroll-testimonials {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.tcard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: left;
    flex-shrink: 0;
}

.tcard p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tauthor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tavatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sand);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-muted);
    flex-shrink: 0;
}

.tauthor strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.tauthor span {
    font-size: 11px;
    color: var(--ink-ghost);
}

/* ═══════════════════════════════════════════
   COMPARISON
   ═══════════════════════════════════════════ */

.compare-section {
    padding: 100px 0;
    background: var(--off-white);
}

.compare-section h2 {
    text-align: center;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    margin-bottom: 40px;
}

.compare-table {
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.compare-header, .compare-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
}

.compare-header {
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.compare-header > div, .compare-row > div {
    padding: 13px 18px;
}

.compare-row {
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.compare-row:last-child { border-bottom: none; }
.compare-row > div:first-child { font-weight: 600; color: var(--ink); }
.compare-row > div:nth-child(2) { color: var(--ink-faint); }
.cph { color: var(--ink); font-weight: 700; }

/* ═══════════════════════════════════════════
   FINAL CTA — animated gradient
   ═══════════════════════════════════════════ */

.final-cta { padding: 100px 0; }

.cta-card {
    position: relative;
    background: var(--ink);
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
    overflow: hidden;
}

.cta-gradient-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    filter: blur(60px);
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    will-change: transform;
}

.cta-blob-1 {
    width: 45%;
    height: 120%;
    background: #4e1e40;
    top: -30%;
    left: -5%;
    animation: blob-drift 14s ease-in-out infinite;
}

.cta-blob-2 {
    width: 50%;
    height: 100%;
    background: #1f3f6d;
    top: -20%;
    right: -10%;
    animation: blob-drift 18s ease-in-out infinite reverse;
}

.cta-blob-3 {
    width: 35%;
    height: 90%;
    background: #88394c;
    bottom: -25%;
    left: 30%;
    animation: blob-drift 12s ease-in-out infinite;
    animation-delay: -4s;
}

.cta-blob-4 {
    width: 40%;
    height: 80%;
    background: #469396;
    top: 10%;
    right: 20%;
    opacity: 0.2;
    animation: blob-drift 16s ease-in-out infinite reverse;
    animation-delay: -6s;
}

.cta-blob-5 {
    width: 30%;
    height: 70%;
    background: #cc7d23;
    bottom: -10%;
    left: 5%;
    opacity: 0.15;
    animation: blob-drift 20s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes blob-drift {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    20% {
        transform: translate(8%, -12%) scale(1.15) rotate(5deg);
    }
    40% {
        transform: translate(-6%, 8%) scale(0.9) rotate(-3deg);
    }
    60% {
        transform: translate(12%, 5%) scale(1.1) rotate(8deg);
    }
    80% {
        transform: translate(-10%, -8%) scale(0.95) rotate(-5deg);
    }
}

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

.cta-card h2 {
    color: var(--white);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.cta-card p {
    color: rgba(255,255,255,0.55);
    font-size: 17px;
    margin-bottom: 36px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

footer {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }
.footer-copy { font-size: 12px; color: var(--ink-ghost); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 960px) {
    .steps-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .feat-big { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card.featured { transform: none; }
    .testimonials-wrap { grid-template-columns: 1fr 1fr; }
    .testimonials-col:nth-child(3) { display: none; }
    .nav-text { display: none; }
    .nav-item { padding: 8px 12px; }
}

@media (max-width: 640px) {
    .fixed-logo { top: auto; bottom: 80px; left: 20px; font-size: 14px; }
    #navbar { top: auto; bottom: 16px; }
    .hero { padding: 120px 20px 32px; }
    .hero h1 { font-size: 34px; }
    .section-inner { padding: 0 20px; }
    .how-section { padding: 80px 0; }
    .feat-grid { grid-template-columns: 1fr; }
    .features-section { padding: 0 0 80px; }
    .pricing-section { padding: 80px 0; }
    .testimonials-section { padding: 80px 0; }
    .compare-section { padding: 64px 0; }
    .compare-header > div, .compare-row > div { padding: 10px 12px; font-size: 11px; }
    .cta-card { padding: 56px 20px; border-radius: 16px; }
    .footer-inner { flex-direction: column; gap: 6px; text-align: center; }
    .testimonials-wrap { grid-template-columns: 1fr; }
    .testimonials-col:nth-child(2) { display: none; }
}
