/* ============================================
   Smart Squad - Reskin (Option C - Dark)
   Based on ui-mockup-3.html
   ============================================ */
:root {
    /* Primary - Teal */
    --color-primary: #0d9488;
    --color-primary-light: #14b8a6;
    --color-primary-dark: #0f766e;
    --color-primary-50: rgba(13,148,136,0.1);
    --color-primary-100: rgba(13,148,136,0.15);

    /* Accent - Warm amber for CTAs */
    --color-accent: #f59e0b;
    --color-accent-dark: #d97706;
    --color-accent-light: rgba(245,158,11,0.15);

    /* Dark surfaces */
    --surface-base: #0f172a;
    --surface-raised: #1e293b;
    --surface-overlay: #334155;
    --surface-card: rgba(255,255,255,0.04);
    --surface-card-hover: rgba(255,255,255,0.06);
    --surface-card-border: rgba(255,255,255,0.08);

    /* Text on dark */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-faint: #475569;

    /* Semantic */
    --color-success: #22c55e;
    --color-success-muted: rgba(34,197,94,0.15);
    --color-success-text: #4ade80;
    --color-danger: #ef4444;
    --color-danger-muted: rgba(239,68,68,0.15);
    --color-danger-text: #f87171;
    --color-warning: #f97316;
    --color-warning-muted: rgba(249,115,22,0.15);
    --color-warning-text: #fb923c;
    --color-info: #38bdf8;
    --color-info-muted: rgba(56,189,248,0.15);
    --color-info-text: #7dd3fc;

    /* Layout */
    --nav-height: 56px;
    --content-max-width: 1100px;
    --card-max-width: 680px;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.3);

    /* Type */
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--surface-base);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   NAVIGATION
   ============================================ */
.topbar {
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--surface-card-border);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.topbar-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 0.8rem;
}

.topbar-brand .divider {
    width: 1px;
    height: 20px;
    background: var(--text-faint);
    margin: 0 0.25rem;
}

.topbar-brand .app-name {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.topbar-nav a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 150ms ease;
}

.topbar-nav a:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

.topbar-nav a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.topbar-nav li { position: relative; }

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-actions .icon-btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 150ms ease;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.topbar-actions .icon-btn:hover {
    background: rgba(255,255,255,0.08);
    color: white;
}

/* ============================================
   TEST ENV STRIP
   ============================================ */
.env-strip {
    background: var(--color-accent);
    color: white;
    text-align: center;
    padding: 0.3rem 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================
   PAGE SHELL
   ============================================ */
.page-shell {
    flex: 1;
    max-width: var(--content-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.page-shell--narrow {
    max-width: var(--card-max-width);
}

/* ============================================
   PAGE TITLE BAR
   ============================================ */
.page-title-bar {
    margin-bottom: 1.5rem;
}

.page-title-bar .crumbs {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.page-title-bar .crumbs a {
    color: var(--color-primary-light);
    text-decoration: none;
}

.page-title-bar .crumbs a:hover { text-decoration: underline; }

.page-title-bar .title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-title-bar h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.page-title-bar .subtitle {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.125rem;
}

/* ============================================
   CARDS - Dark glass style
   ============================================ */
.card {
    background: var(--surface-card);
    border: 1px solid var(--surface-card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card + .card {
    margin-top: 1rem;
}

.card-head {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--surface-card-border);
}

.card-head h2 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-head h2 .icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 0.75rem;
}

.card-head h2 .icon--teal {
    background: var(--color-primary-50);
    color: var(--color-primary-light);
}

.card-head h2 .icon--green {
    background: var(--color-success-muted);
    color: var(--color-success-text);
}

.card-inner {
    padding: 1.25rem 1.5rem;
}

.card-foot {
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--surface-card-border);
}

/* ============================================
   BADGES / TAGS
   ============================================ */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tag--success {
    background: var(--color-success-muted);
    color: var(--color-success-text);
    border-left: 3px solid var(--color-success);
}

.tag--danger {
    background: var(--color-danger-muted);
    color: var(--color-danger-text);
    border-left: 3px solid var(--color-danger);
}

.tag--warning {
    background: var(--color-warning-muted);
    color: var(--color-warning-text);
    border-left: 3px solid var(--color-warning);
}

.tag--info {
    background: var(--color-info-muted);
    color: var(--color-info-text);
    border-left: 3px solid var(--color-info);
}

/* ============================================
   DATA ROWS
   ============================================ */
.info-grid {
    display: grid;
    gap: 0;
}

.info-row {
    display: flex;
    align-items: baseline;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
}

.info-row:nth-child(odd) {
    background: rgba(255,255,255,0.03);
}

.info-label {
    width: 150px;
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.info-value {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.info-value--emphasis {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-value--mono {
    font-family: 'SFMono-Regular', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.8125rem;
    background: rgba(255,255,255,0.06);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    color: var(--color-primary-light);
}

/* ============================================
   SECTION LABEL
   ============================================ */
.section-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.75rem 0.75rem 0.25rem;
}

/* ============================================
   ALERTS / NOTICES
   ============================================ */
.notice {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.notice--success {
    background: var(--color-success-muted);
    border-color: var(--color-success);
    color: var(--color-success-text);
}

.notice--danger {
    background: var(--color-danger-muted);
    border-color: var(--color-danger);
    color: var(--color-danger-text);
}

.notice--warning {
    background: var(--color-warning-muted);
    border-color: var(--color-warning);
    color: var(--color-warning-text);
}

.notice--info {
    background: var(--color-info-muted);
    border-color: var(--color-info);
    color: var(--color-info-text);
}

.notice strong { color: inherit; }

.notice-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.125rem;
    border-radius: 9999px;
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 150ms ease;
    min-width: 110px;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 4px 16px rgba(13,148,136,0.4);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.btn-accent {
    background: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 4px 16px rgba(245,158,11,0.4);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.btn-success {
    background: var(--color-success);
    color: white;
}

.btn-success:hover {
    background: #16a34a;
    box-shadow: 0 4px 16px rgba(34,197,94,0.4);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    border-color: rgba(255,255,255,0.12);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--text-primary);
    text-decoration: none;
}

.btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    min-width: 150px;
}

.btn-block { width: 100%; justify-content: center; }

.btn-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-row .btn { flex: 1; min-width: 140px; }

/* ============================================
   FORMS
   ============================================ */
.field {
    margin-bottom: 1.25rem;
}

.field-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
}

.field-label .req {
    color: var(--color-danger-text);
}

.field-input {
    width: 100%;
    padding: 0.6rem 0.875rem;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.875rem;
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
    transition: all 150ms ease;
    outline: none;
}

.field-input::placeholder { color: var(--text-muted); }

.field-input:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.2);
    background: rgba(255,255,255,0.07);
}

.field-group { display: flex; }

.field-group .field-input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.field-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Pill tabs */
.pill-tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.06);
    border-radius: 9999px;
    padding: 3px;
    gap: 2px;
}

.pill-tab {
    padding: 0.375rem 1rem;
    border: none;
    border-radius: 9999px;
    background: transparent;
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 150ms ease;
}

.pill-tab.active {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.pill-tab:hover:not(.active) { color: var(--text-primary); }

/* ============================================
   DESCRIPTION BLOCK
   ============================================ */
.desc-block {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    border-left: 3px solid var(--text-faint);
}

/* ============================================
   RECEIPT TABLE
   ============================================ */
.receipt {
    width: 100%;
    border-collapse: collapse;
}

.receipt tr + tr {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.receipt td {
    padding: 0.625rem 0.25rem;
    font-size: 0.8125rem;
    color: var(--text-primary);
}

.receipt td:first-child { color: var(--text-muted); }

.receipt td:last-child {
    text-align: right;
    font-weight: 600;
}

.receipt .row-total td {
    padding-top: 0.875rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 2px solid rgba(255,255,255,0.15);
}

.receipt .row-discount td { color: var(--color-success-text) !important; }

/* ============================================
   INSTRUCTIONS CALLOUT
   ============================================ */
.callout {
    background: var(--color-primary-50);
    border: 1px solid var(--color-primary-100);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.callout-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary-100);
    color: var(--color-primary-light);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.callout ol {
    margin: 0;
    padding-left: 1.125rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.callout ol li { margin-bottom: 0.125rem; }
.callout ol strong { color: var(--text-primary); }

.callout .hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

/* reCAPTCHA placeholder */
.recaptcha-wrapper {
    margin-bottom: 1.25rem;
}

/* ============================================
   HERO - Dark split layout
   ============================================ */
.hero-b {
    background: var(--surface-base);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-b-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-b-text h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-b-text h1 span {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-b-text p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 440px;
}

.hero-b-visual {
    display: flex;
    justify-content: center;
}

.hero-b-card {
    background: var(--surface-card);
    border: 1px solid var(--surface-card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 380px;
}

.hero-b-card .stat {
    text-align: center;
    padding: 1rem 0;
}

.hero-b-card .stat + .stat {
    border-top: 1px solid var(--surface-card-border);
}

.hero-b-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

.hero-b-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

/* Dots pattern */
.hero-b::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.how-it-works-label {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.how-it-works-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.step-number--teal {
    background: var(--color-primary-50);
    color: var(--color-primary-light);
    border: 2px solid rgba(13,148,136,0.25);
}

.step-number--amber {
    background: var(--color-accent-light);
    color: var(--color-accent);
    border: 2px solid rgba(245,158,11,0.25);
}

.step-number--green {
    background: var(--color-success-muted);
    color: var(--color-success-text);
    border: 2px solid rgba(34,197,94,0.25);
}

.step h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.step p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto;
}

/* Connector lines */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.06));
    z-index: 0;
}

/* ============================================
   FEATURE STRIPS
   ============================================ */
.feature-strip {
    max-width: var(--content-max-width);
    margin: -2rem auto 0;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.feature-strip--two {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-strip .fcard,
.feature-strip--two .fcard {
    background: var(--surface-raised);
    border: 1px solid var(--surface-card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-strip .fcard:hover,
.feature-strip--two .fcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-primary-100);
}

.fcard-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.fcard-icon--teal { background: var(--color-primary-50); color: var(--color-primary-light); }
.fcard-icon--amber { background: var(--color-accent-light); color: var(--color-accent); }
.fcard-icon--slate { background: rgba(255,255,255,0.06); color: var(--text-secondary); }

.fcard h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.fcard p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   AGENCY CTA BANNER
   ============================================ */
.agency-cta {
    max-width: var(--content-max-width);
    margin: 2.5rem auto 3rem;
    padding: 0 1.5rem;
}

.agency-cta-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(13,148,136,0.12) 0%, rgba(245,158,11,0.08) 100%);
    border: 1px solid rgba(13,148,136,0.2);
}

.agency-cta-inner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(13,148,136,0.06);
    pointer-events: none;
}

.agency-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(245,158,11,0.04);
    pointer-events: none;
}

.agency-cta-text { position: relative; z-index: 1; }

.agency-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--color-primary-50);
    color: var(--color-primary-light);
    border: 1px solid rgba(13,148,136,0.2);
    margin-bottom: 0.75rem;
}

.agency-cta-text h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.agency-cta-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
}

.agency-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-b {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--surface-card-border);
    color: var(--text-muted);
    padding: 1.25rem 1.5rem;
    margin-top: auto;
    font-size: 0.6875rem;
    font-family: var(--font);
}

.footer-b-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-b a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-b a:hover { color: white; }

/* ============================================
   STRIPE ENV DEV BADGE
   ============================================ */
.stripe-env-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--color-danger-muted);
    color: var(--color-danger-text);
    border: 1px solid rgba(239,68,68,0.2);
    margin-bottom: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .topbar-nav { display: none; }
    .hero-b-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-b-text p { max-width: none; }
    .hero-b-visual { display: none; }
    .feature-strip { grid-template-columns: 1fr; }
    .feature-strip--two { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 2rem; }
    .step:not(:last-child)::after { display: none; }
    .agency-cta-inner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
    .agency-cta-text p { max-width: none; }
    .agency-cta-actions { flex-direction: column; width: 100%; }
    .agency-cta-actions .btn { width: 100%; }
    .info-row { flex-direction: column; gap: 0.125rem; }
    .info-label { width: auto; }
    .btn-row { flex-direction: column; }
    .footer-b-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
