:root {
    --bg-primary: #f5efe2;
    --bg-secondary: #ede5d2;
    --bg-card: #ffffff;
    --bg-dark: #1f1b14;
    --bg-darker: #14110b;
    --accent: #00c853;
    --accent-2: #2ce070;
    --accent-dim: rgba(0, 200, 83, 0.14);
    --accent-glow: rgba(0, 200, 83, 0.42);
    --accent-mark: rgba(0, 200, 83, 0.75);
    --headline: #2d2114;
    --gold: #c89a3a;
    --gold-deep: #a67a1e;
    --gold-dim: rgba(200, 154, 58, 0.15);
    --text-primary: #1f1b14;
    --text-secondary: #5c544a;
    --text-muted: #8a8070;
    --text-on-dark: rgba(255, 255, 255, 0.78);
    --text-on-dark-muted: rgba(255, 255, 255, 0.52);
    --border: rgba(31, 27, 20, 0.1);
    --border-strong: rgba(31, 27, 20, 0.18);
    --border-on-dark: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ───── NAV ───── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-primary);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.nav.scrolled {
    border-bottom-color: var(--border);
}
.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { width: 34px; height: 34px; border-radius: 8px; }
.nav-logo-text { font-weight: 800; font-size: 16px; letter-spacing: -0.3px; color: var(--headline); }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.18s;
}
.nav-links a:hover { color: var(--headline); }
.nav-cta {
    padding: 10px 22px;
    background: var(--headline);
    color: #fff !important;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(31, 27, 20, 0.18); color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

@media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-primary); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 28px; gap: 18px; align-items: flex-start; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .nav-toggle svg { width: 24px; height: 24px; stroke: var(--headline); }
}

/* ───── HERO ───── */
.hero {
    position: relative;
    padding: 100px 24px 120px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    filter: saturate(1.4) contrast(1.05);
    pointer-events: none;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        rgba(245, 239, 226, 0.85) 6%,
        rgba(245, 239, 226, 0.4) 14%,
        rgba(245, 239, 226, 0.15) 30%,
        rgba(245, 239, 226, 0.15) 60%,
        rgba(245, 239, 226, 0.55) 85%,
        var(--bg-primary) 100%
    );
}
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.hero-decor::before, .hero-decor::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}
.hero-decor::before {
    top: -120px;
    left: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.45) 0%, transparent 70%);
}
.hero-decor::after {
    bottom: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 154, 58, 0.4) 0%, transparent 70%);
}
.hero-decor svg.curve {
    position: absolute;
    width: 640px;
    height: 640px;
    opacity: 0.22;
}
.hero-decor svg.curve.left { top: 0%; left: -160px; }
.hero-decor svg.curve.right { bottom: 0%; right: -160px; transform: scaleX(-1); }
.hero-decor .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(31, 27, 20, 0.07) 1px, transparent 1.4px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 60%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 60%, #000 30%, transparent 80%);
    opacity: 0.5;
}
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.hero-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}
.hero-trust-bar .trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1.5px solid var(--gold-deep);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--headline);
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.4);
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}
.hero h1 {
    font-size: clamp(34px, 5.4vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--headline);
    margin-bottom: 26px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .mark {
    background-image: linear-gradient(180deg, transparent 0%, transparent 65%, var(--accent-mark) 65%, var(--accent-mark) 96%, transparent 96%);
    padding: 0 4px;
}
.hero-sub {
    font-size: clamp(17px, 1.6vw, 22px);
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 38px;
    line-height: 1.55;
}
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }

/* ───── BUTTONS ───── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 0;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    text-align: center;
    line-height: 1;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 38px rgba(0, 200, 83, 0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(0, 200, 83, 0.5); background: #00b34a; }
.btn-secondary {
    background: var(--headline);
    color: #fff;
}
.btn-secondary:hover { transform: translateY(-2px); background: #1a130a; }
.btn-ghost {
    background: transparent;
    color: var(--headline);
    border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--headline); }
.btn-on-dark-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn-on-dark-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.4); }
.btn-lg { padding: 19px 38px; font-size: 17px; }

/* ───── SECTIONS ───── */
.section { padding: 110px 24px; position: relative; overflow: hidden; }
.section-alt { background: transparent; }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark .section-eyebrow { color: var(--accent-2); }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: var(--text-on-dark); }
.section-darker { background: var(--bg-dark); color: #fff; }

/* Universal green glow per section — variable position via .glow-* classes */
.section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 55% 40% at var(--glow-x, 50%) var(--glow-y, -10%),
        rgba(0, 200, 83, 0.14) 0%,
        transparent 62%
    );
}
.section.section-dark::before {
    background: radial-gradient(
        ellipse 60% 45% at var(--glow-x, 50%) var(--glow-y, -10%),
        rgba(0, 200, 83, 0.22) 0%,
        transparent 65%
    );
}
.section > .container,
.section > .container-narrow,
.section > .container-wide { position: relative; z-index: 1; }

/* Glow position variants */
.glow-top    { --glow-x: 50%;  --glow-y: -10%; }
.glow-tr     { --glow-x: 88%;  --glow-y:  12%; }
.glow-tl     { --glow-x: 12%;  --glow-y:  12%; }
.glow-right  { --glow-x: 100%; --glow-y:  50%; }
.glow-left   { --glow-x: 0%;   --glow-y:  50%; }
.glow-br     { --glow-x: 88%;  --glow-y:  88%; }
.glow-bl     { --glow-x: 12%;  --glow-y:  88%; }
.glow-bottom { --glow-x: 50%;  --glow-y: 110%; }

/* Section decoration layer (gold curved lines, injected via JS) */
.section-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.section-decor svg {
    width: 100%;
    height: 100%;
    display: block;
}
.section-decor.v-flip svg { transform: scaleX(-1); }
.section-decor.v-rotate svg { transform: rotate(180deg); }
.section-decor.v-tilt svg { transform: rotate(-8deg) scale(1.2); }
.section-decor.v-mirror svg { transform: scale(-1, -1); }

/* Mobile hides the SVG decorative layer (Gaussian blur causes jank on mobile GPUs) */
@media (max-width: 768px) {
    .section-decor { display: none; }
}

/* Soft dot pattern overlay on cream sections (very subtle) */
.section:not(.section-dark):not(.section-darker)::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(31, 27, 20, 0.05) 1px, transparent 1.4px);
    background-size: 28px 28px;
    background-position: 0 0;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
    opacity: 0.65;
}
.section.section-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.4px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.section-title {
    font-size: clamp(30px, 4.2vw, 56px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.08;
    color: var(--headline);
    margin-bottom: 20px;
}
.section-title .accent { color: var(--accent); }
.section-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-secondary);
    max-width: 680px;
    line-height: 1.65;
    margin-bottom: 0;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ───── 2-COLUMN ───── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reverse > :first-child { order: 0; }
}

/* ───── PILLAR CARDS (homepage) ───── */
.pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 42px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(31, 27, 20, 0.12);
    border-color: var(--accent);
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
}
.pillar-card .pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 10px 28px var(--accent-glow);
    position: relative;
    z-index: 1;
}
.pillar-card .pillar-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2.2; }
.pillar-card h3 {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 800;
    color: var(--headline);
    margin-bottom: 16px;
    letter-spacing: -0.6px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}
.pillar-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.pillar-card .pillar-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
    position: relative;
    z-index: 1;
    transition: gap 0.2s;
}
.pillar-card .pillar-link:hover { gap: 12px; }

@media (max-width: 800px) {
    .pillar-grid { grid-template-columns: 1fr; gap: 18px; }
    .pillar-card { padding: 36px 28px; }
}

/* ───── INDUSTRY GRID ───── */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 26px;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 18px 40px rgba(31, 27, 20, 0.08);
}
.industry-card .ind-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-dim);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.industry-card .ind-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2.2; }
.industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--headline);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.industry-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

@media (max-width: 1000px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .industry-grid { grid-template-columns: 1fr; }
}

/* ───── FEATURE LIST ───── */
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.55;
}
.feature-list li .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin-top: 2px;
}
.section-dark .feature-list li { color: var(--text-on-dark); }
.section-dark .feature-list li strong { color: #fff; }

/* ───── STAT CARDS ───── */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
}
.stat-card .stat-num {
    font-size: clamp(46px, 6vw, 76px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px;
}
.stat-card .stat-num span { font-size: 0.55em; vertical-align: super; }
.stat-card .stat-label { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

@media (max-width: 800px) {
    .stat-row { grid-template-columns: 1fr; }
}

/* ───── BIG VISUAL CARD (used to replace Megalodon's GIFs) ───── */
.visual-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0e0a04 100%);
    border-radius: 28px;
    padding: 60px 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.visual-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.42) 0%, transparent 70%);
    filter: blur(40px);
}
.visual-card::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 154, 58, 0.28) 0%, transparent 70%);
    filter: blur(40px);
}
.visual-card-inner { position: relative; z-index: 2; }
.visual-card .vc-stat {
    font-size: clamp(60px, 9vw, 130px);
    font-weight: 900;
    color: var(--accent-2);
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 18px;
}
.visual-card .vc-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 8px;
}
.visual-card .vc-text {
    font-size: 18px;
    color: var(--text-on-dark);
    line-height: 1.6;
    max-width: 460px;
}

/* ───── STRATEGY CARD (named strategies, like Hammer Them) ───── */
.strategy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 56px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.strategy-card.dark {
    background: var(--bg-dark);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}
.strategy-card.dark h3 { color: #fff; }
.strategy-card.dark p { color: var(--text-on-dark); }
.strategy-card .strategy-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-dim);
    color: var(--accent);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.strategy-card.dark .strategy-tag { background: rgba(0, 200, 83, 0.22); color: var(--accent-2); }
.strategy-card h3 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--headline);
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
    max-width: 780px;
}
.strategy-card p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 780px;
}
.strategy-card p + p { margin-top: 14px; }

@media (max-width: 700px) {
    .strategy-card { padding: 36px 28px; }
}

/* ───── PROCESS / TIMELINE STEP ───── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    counter-reset: step;
}
.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 32px;
    align-items: flex-start;
    transition: transform 0.22s, box-shadow 0.22s;
}
.step:hover { transform: translateX(4px); box-shadow: 0 18px 40px rgba(31, 27, 20, 0.08); }
.step .step-num {
    counter-increment: step;
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: var(--headline);
    color: var(--accent-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
}
.step .step-num::before { content: counter(step); }
.step h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    color: var(--headline);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.step p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 12px;
}
.step p strong { color: var(--headline); }

@media (max-width: 700px) {
    .step { grid-template-columns: 1fr; padding: 32px 26px; gap: 18px; }
    .step .step-num { width: 64px; height: 64px; font-size: 26px; border-radius: 16px; }
}

/* ───── CTA STRIP ───── */
.cta-strip {
    background: var(--bg-dark);
    color: #fff;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 200, 83, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.cta-strip-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-strip h2 {
    font-size: clamp(30px, 4.4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #fff;
}
.cta-strip h2 .accent { color: var(--accent-2); }
.cta-strip p {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-on-dark);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* ───── FOOTER ───── */
.footer {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 80px 24px 40px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-brand img { width: 44px; border-radius: 10px; margin-bottom: 18px; }
.footer-brand .footer-logo-text {
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.footer-brand .footer-logo-text span { color: var(--accent-2); }
.footer-brand p { font-size: 14px; color: var(--text-on-dark-muted); line-height: 1.6; max-width: 320px; }
.footer h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
    font-size: 14px;
    color: var(--text-on-dark);
    transition: color 0.18s;
}
.footer ul a:hover { color: var(--accent-2); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-on-dark-muted);
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ───── SUBPAGE HERO ───── */
.subpage-hero {
    padding: 90px 24px 80px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.subpage-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(0, 200, 83, 0.22) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.subpage-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(31, 27, 20, 0.06) 1px, transparent 1.4px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 60%, #000 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 60%, #000 20%, transparent 80%);
    opacity: 0.65;
}
.subpage-hero .subpage-hero-inner { position: relative; z-index: 2; }
.subpage-hero-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.subpage-hero-decor svg.curve-side {
    position: absolute;
    width: 540px;
    height: 540px;
    opacity: 0.22;
}
.subpage-hero-decor svg.curve-side.left { top: 5%; left: -160px; }
.subpage-hero-decor svg.curve-side.right { bottom: 5%; right: -160px; transform: scaleX(-1); }
@media (max-width: 768px) {
    .subpage-hero-decor { display: none; }
}
.subpage-hero-inner { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; }
.subpage-hero h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: var(--headline);
    margin-bottom: 22px;
}
.subpage-hero h1 .accent { color: var(--accent); }
.subpage-hero p {
    font-size: clamp(17px, 1.5vw, 21px);
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 760px;
    margin: 0 auto 32px;
}

/* ───── PRICING ───── */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px 38px;
    position: relative;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 200, 83, 0.18);
}
.price-card.featured::before {
    content: 'Más popular';
    position: absolute;
    top: -14px;
    left: 38px;
    padding: 6px 14px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border-radius: 100px;
}
.price-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--headline);
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}
.price-card .price-tag {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    color: var(--headline);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 4px;
}
.price-card .price-tag .currency { font-size: 0.5em; vertical-align: super; color: var(--text-secondary); }
.price-card .price-period { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.price-card .price-annual {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold-dim);
    color: var(--gold-deep);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
}
.price-card .price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-card .price-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--text-primary);
    line-height: 1.5;
}
.price-card .price-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-dim);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%2300c853' d='M6.4 11.4 3 8l1.4-1.4L6.4 8.6l5.2-5.2L13 4.8z'/></svg>");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    margin-top: 2px;
}
.price-card .btn { width: 100%; }

@media (max-width: 800px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ───── DECORATIVE SVG CURVES ───── */
.swirl {
    position: absolute;
    pointer-events: none;
    opacity: 0.18;
    z-index: 0;
}

/* ───── UTILITY ───── */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.mb-lg { margin-bottom: 48px; }
