/* ============================================================
   EVOLVE22 — Shared Styles
   ============================================================ */

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

:root {
    --ink: #0a0a0f;
    --chalk: #fafaf9;
    --warm: #f5f0eb;
    --accent: #c45d3e;
    --accent-light: #e8705a;
    --accent-dark: #a84d32;
    --muted: #6b6b6b;
    --border: #e0dcd7;
    --glass: rgba(255,255,255,0.03);
    --success: #2e7d4f;
    --success-light: rgba(46,125,79,0.15);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--chalk);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,15,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--chalk);
    text-decoration: none;
    flex-shrink: 0;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(250,250,249,0.6);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--chalk);
    background: rgba(255,255,255,0.06);
}

.nav-links a.active {
    color: var(--accent-light);
}

.nav-cta {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--chalk);
    background: var(--accent);
    border: none;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--chalk);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- SECTION HELPERS ---- */
.section-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    max-width: 900px;
    margin-bottom: 2rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.25rem;
    color: rgba(250,250,249,0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--chalk);
    background: var(--accent);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-bottom: 3rem;
}

.hero-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,93,62,0.3);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---- GRADIENT ORB ---- */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,93,62,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---- SERVICE CARDS (homepage) ---- */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--ink) 0%, #0f0f14 100%);
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.services-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
}

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.service-card:hover {
    border-color: rgba(196,93,62,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(196,93,62,0.1);
}

.service-card .card-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(196,93,62,0.1);
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    align-self: flex-start;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.service-card .card-desc {
    font-size: 0.95rem;
    color: rgba(250,250,249,0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .card-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.service-card .card-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(250,250,249,0.5);
}

.service-card .card-detail svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.service-card .card-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--chalk);
    margin-bottom: 1.25rem;
}

.service-card .card-price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-light);
    transition: gap 0.2s;
}

.card-link:hover {
    gap: 0.75rem;
}

.card-link svg {
    width: 16px;
    height: 16px;
}

/* ---- BUNDLE OFFER ---- */
.bundle {
    padding: 4rem 2rem 6rem;
    background: #0f0f14;
}

.bundle-inner {
    max-width: 900px;
    margin: 0 auto;
}

.bundle-card {
    background: linear-gradient(135deg, rgba(196,93,62,0.08) 0%, rgba(196,93,62,0.02) 100%);
    border: 2px solid rgba(196,93,62,0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196,93,62,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bundle-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--chalk);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    position: relative;
}

.bundle-card h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    position: relative;
}

.bundle-desc {
    font-size: 1.05rem;
    color: rgba(250,250,249,0.6);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
}

.bundle-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.bundle-original {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: line-through;
}

.bundle-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
}

.bundle-savings {
    display: inline-block;
    background: var(--success-light);
    color: var(--success);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 100px;
}

.bundle-items {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    position: relative;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(250,250,249,0.7);
}

.bundle-item svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

.bundle-item.free {
    color: var(--accent-light);
    font-weight: 600;
}

.bundle-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--chalk);
    background: var(--accent);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    position: relative;
}

.bundle-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,93,62,0.3);
}

.bundle-cta svg {
    width: 18px;
    height: 18px;
}

/* ---- PROBLEM ---- */
.problem {
    background: linear-gradient(180deg, var(--ink) 0%, #0f0f14 100%);
    padding: 6rem 2rem;
}

.problem-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.problem-text {
    color: rgba(250,250,249,0.6);
    font-size: 1.1rem;
    line-height: 1.8;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.problem-card .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    min-width: 60px;
}

.problem-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ---- METHOD / TIMELINE ---- */
.method {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 3.5rem;
    max-width: 700px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(196,93,62,0.1) 100%);
}

.tl-item {
    position: relative;
    padding: 0 1.5rem;
    padding-top: 3.5rem;
}

.tl-item::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 1.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--ink);
}

.tl-day {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tl-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.tl-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ---- TEAM ---- */
.team {
    padding: 6rem 2rem;
    background: #0f0f14;
}

.team-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.team h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.team-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s;
}

.team-card:hover {
    border-color: rgba(196,93,62,0.3);
}

.team-card .role-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(196,93,62,0.1);
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
}

.team-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.team-card .focus-areas {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-card .focus-areas span {
    font-size: 0.75rem;
    color: rgba(250,250,249,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
}

/* ---- DELIVERABLES ---- */
.deliverables {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverables h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
}

.del-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.del-item {
    padding: 2rem;
    border-left: 2px solid var(--accent);
    background: rgba(255,255,255,0.02);
    border-radius: 0 12px 12px 0;
}

.del-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.del-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ---- INVESTMENT / PIPELINE ---- */
.investment {
    padding: 6rem 2rem;
    position: relative;
}

.investment-inner {
    max-width: 800px;
    margin: 0 auto;
}

.investment h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    text-align: center;
}

.investment-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.pipeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
}

.pipeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pipeline-step:hover {
    border-color: rgba(196,93,62,0.3);
    box-shadow: 0 4px 20px rgba(196,93,62,0.08);
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--chalk);
    margin-top: 2px;
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.step-highlight {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.4rem 1rem;
    background: rgba(196,93,62,0.1);
    border: 1px solid rgba(196,93,62,0.25);
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
}

.pipeline-connector {
    width: 2px;
    height: 28px;
    background: rgba(196,93,62,0.25);
    margin-left: 3.7rem;
}

.payment-schedule {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem 2.25rem;
}

.payment-schedule h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250,250,249,0.5);
    margin-bottom: 1.25rem;
}

.payment-items {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

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

.payment-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--chalk);
}

.payment-desc {
    font-size: 0.9rem;
    color: var(--muted);
}

.payment-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.25rem 0;
}

.payment-total .payment-label {
    font-size: 1.25rem;
    color: var(--accent-light);
}

.payment-total .payment-desc {
    font-weight: 600;
    color: rgba(250,250,249,0.7);
}

/* ---- INTAKE FORM ---- */
.intake {
    padding: 6rem 2rem;
    background: #0f0f14;
    position: relative;
}

.intake::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(196,93,62,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.intake-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.intake h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    text-align: center;
}

.intake-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.intake-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250,250,249,0.7);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--chalk);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196,93,62,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250,250,249,0.25);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10L6 8z' fill='%236b6b6b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--ink);
    color: var(--chalk);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--chalk);
    background: var(--accent);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,93,62,0.3);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-submit svg {
    width: 18px;
    height: 18px;
}

.form-footer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.visible {
    display: block;
}

.form-success .check-icon {
    width: 64px;
    height: 64px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.form-success .check-icon svg {
    width: 32px;
    height: 32px;
    color: var(--success);
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Error state */
.form-error {
    display: none;
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.3);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    color: #ff6b7a;
    font-size: 0.9rem;
}

.form-error.visible {
    display: block;
}

/* ---- CLOSING ---- */
.closing {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.closing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,93,62,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.closing h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.closing p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

/* ---- FOOTER ---- */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    font-size: 0.8rem;
    color: var(--muted);
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

/* ---- SERVICE PAGE HERO (smaller) ---- */
.page-hero {
    padding: 10rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,93,62,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.page-hero .hero-sub {
    font-size: 1.15rem;
    color: rgba(250,250,249,0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.page-hero .price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--chalk);
    margin-bottom: 2rem;
}

.page-hero .price-tag small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
}

/* ---- SERVICE DETAIL SECTIONS ---- */
.service-detail {
    padding: 5rem 2rem;
}

.service-detail.alt {
    background: #0f0f14;
}

.service-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 1rem;
    color: rgba(250,250,249,0.7);
    line-height: 1.6;
}

.detail-list li svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text {
    font-size: 1.05rem;
    color: rgba(250,250,249,0.6);
    line-height: 1.8;
}

.detail-text p {
    margin-bottom: 1.25rem;
}

.followon-note {
    background: rgba(196,93,62,0.06);
    border: 1px solid rgba(196,93,62,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.followon-note h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.followon-note p {
    font-size: 0.9rem;
    color: rgba(250,250,249,0.5);
    line-height: 1.6;
}

/* ---- PATHWAY LINK ---- */
.pathway {
    padding: 4rem 2rem;
    text-align: center;
}

.pathway-inner {
    max-width: 700px;
    margin: 0 auto;
}

.pathway h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pathway p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pathway-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-light);
    border: 1px solid rgba(196,93,62,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: background 0.2s, gap 0.2s;
}

.pathway-link:hover {
    background: rgba(196,93,62,0.08);
    gap: 0.75rem;
}

.pathway-link svg {
    width: 16px;
    height: 16px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #f5f5f5;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        z-index: 105;
        padding: 1rem 0;
        border-top: 1px solid #e0e0e0;
        overflow-y: auto;
    }

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

    .nav-links a {
        font-size: 1rem !important;
        padding: 1rem 1.5rem;
        width: 100%;
        color: #333 !important;
        border-bottom: 1px solid #e8e8e8;
        transition: background-color 0.2s, color 0.2s;
        white-space: nowrap;
        display: block;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background-color: #f0f0f0;
        color: var(--accent);
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .problem-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .method, .deliverables, .team-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .timeline::before { display: none; }
    .timeline { gap: 1rem; }
    .tl-item { padding-top: 0; padding-left: 2.5rem; padding-bottom: 1.5rem; border-left: 2px solid rgba(196,93,62,0.2); }
    .tl-item::before { top: 0; left: -8px; }
    .team-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 1.8rem; }
    .closing { padding: 5rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .intake-form { padding: 1.75rem; }
    .intake { padding: 4rem 1.5rem; }
    .investment { padding: 4rem 1.5rem; }
    .pipeline-step { padding: 1.25rem 1.25rem; gap: 1rem; }
    .pipeline-connector { margin-left: 2.6rem; }
    .payment-schedule { padding: 1.5rem; }
    .payment-item { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
    .payment-total { flex-direction: row; align-items: center; }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .bundle-card {
        padding: 2rem;
    }

    .bundle-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }

    .bundle-items {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .services {
        padding: 4rem 1.5rem;
    }

    .bundle {
        padding: 2rem 1.5rem 4rem;
    }
}
