/**
 * Corporate Gifting page (Task 2).
 *
 * Visual direction: editorial monochrome. Strong typographic hierarchy,
 * generous whitespace, thin rules, numbered sections. Accent color is the
 * WhatsApp green (#25D366) — used only on conversion CTAs (foreshadows Task 6).
 *
 * Loaded only when templates/page-corporate-gifting.php is active.
 */

/* --- Local tokens (page-scoped) ----------------------------------------
 * Palette is mono (black + white + neutrals), matching the site's
 * design tokens in css/tokens.css. WhatsApp green is reserved for
 * WhatsApp-specific CTAs ONLY — not used as a generic accent.
 */
.cg-page {
    --cg-ink:        #000000;        /* matches --cjw-color-primary */
    --cg-ink-soft:   #111111;        /* matches --cjw-color-primary-soft */
    --cg-ink-alt:    #1a1a1a;        /* matches --cjw-color-primary-alt */
    --cg-paper:      #ffffff;
    --cg-paper-alt:  #fafafa;
    --cg-rule:       #EBEBEB;        /* matches --cjw-color-border */
    --cg-rule-strong:#dee2e6;        /* matches --cjw-color-border-strong */
    --cg-mute:       #555555;        /* matches --cjw-color-text-muted */
    --cg-mute-soft:  #888888;        /* matches --cjw-color-text-soft-ish */
    --cg-on-dark:        #ffffff;
    --cg-on-dark-mute:   rgba(255,255,255,0.72);
    --cg-on-dark-soft:   rgba(255,255,255,0.55);
    --cg-on-dark-rule:   rgba(255,255,255,0.12);

    --cg-wa:         #25D366;        /* WhatsApp green — only for WhatsApp CTAs */
    --cg-wa-press:   #1DA851;

    --cg-pad-x:  clamp(20px, 4vw, 64px);   /* matches home --gutter */
    --cg-pad-y:  clamp(48px, 7vw, 80px);   /* reduced — was 56/9vw/92 */
    --cg-max:    1280px;

    --cg-display: 'Jost', 'Segoe UI', Tahoma, sans-serif;
    --cg-mono:    ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

.cg-page,
.cg-page *,
.cg-page *::before,
.cg-page *::after {
    box-sizing: border-box;
}

.cg-page {
    font-family: var(--cg-display);
    color: var(--cg-ink);
    background: var(--cg-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reset parent-theme h1/h2/h3 margins; do NOT force a global text color
   here — sections paint their own headings (light on dark vs dark on light).
   Earlier version reset color globally and cascaded into the dark hero. */
.cg-page h1,
.cg-page h2,
.cg-page h3 {
    margin: 0;
    letter-spacing: -0.01em;
}

.cg-page p {
    margin: 0;
    color: var(--cg-mute);
    line-height: 1.6;
}

.cg-page a {
    color: inherit;
}

.cg-eyebrow {
    font-family: var(--cg-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cg-mute-soft);
    margin: 0 0 16px;
}

/* --- Buttons -----------------------------------------------------------
 * Spec mirrors the home-page .btn so corporate-gifting CTAs sit in the
 * same visual family (pill, 13/26 padding, 14px / 500 weight).
 */
.cg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-family: var(--cg-display);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

/* Primary CTA: mono. White-on-black on dark surfaces, black-on-white on light
   surfaces (handled by the surrounding section via .cg-hero / .cg-form). */
.cg-btn--primary {
    background: var(--cg-ink);
    color: #fff;
    border-color: var(--cg-ink);
}
.cg-btn--primary:hover,
.cg-btn--primary:focus-visible {
    background: #fff;
    color: var(--cg-ink);
    border-color: #fff;
}
/* On dark backgrounds, invert: white pill, black text. */
.cg-hero .cg-btn--primary,
.cg-quote .cg-btn--primary {
    background: #fff;
    color: var(--cg-ink);
    border-color: #fff;
}
.cg-hero .cg-btn--primary:hover,
.cg-hero .cg-btn--primary:focus-visible,
.cg-quote .cg-btn--primary:hover,
.cg-quote .cg-btn--primary:focus-visible {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* WhatsApp-only CTA: brand green. Reserve for WhatsApp link/icon contexts. */
.cg-btn--whatsapp {
    background: var(--cg-wa);
    color: #fff;
    border-color: var(--cg-wa);
}
.cg-btn--whatsapp:hover,
.cg-btn--whatsapp:focus-visible {
    background: var(--cg-wa-press);
    border-color: var(--cg-wa-press);
}

/* Ghost: outline. Auto-inverts on dark vs light surface. */
.cg-btn--ghost {
    background: transparent;
    color: var(--cg-ink);
    border-color: var(--cg-rule-strong);
}
.cg-btn--ghost:hover,
.cg-btn--ghost:focus-visible {
    border-color: var(--cg-ink);
    background: var(--cg-paper-alt);
}
.cg-hero .cg-btn--ghost,
.cg-quote .cg-btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    background: transparent;
}
.cg-hero .cg-btn--ghost:hover,
.cg-hero .cg-btn--ghost:focus-visible,
.cg-quote .cg-btn--ghost:hover,
.cg-quote .cg-btn--ghost:focus-visible {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

.cg-btn--lg {
    padding: 16px 34px;
    font-size: 15px;
}

.cg-btn__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.cg-btn[disabled],
.cg-btn[aria-busy="true"] {
    cursor: progress;
    opacity: 0.85;
}

.cg-btn__spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cg-spin 0.7s linear infinite;
}
.cg-btn[aria-busy="true"] .cg-btn__spinner { display: inline-block; }
.cg-btn[aria-busy="true"] .cg-btn__label { opacity: 0.7; }

@keyframes cg-spin { to { transform: rotate(360deg); } }

/* --- 1. Hero -----------------------------------------------------------
 * Mirrors the home hero: charcoal canvas, radial spotlight, faint blue
 * accent in the lower-left, and an SVG film-grain overlay (no motion).
 * Padding and type scale follow the home spec exactly.
 */
.cg-hero {
    color: #fff;
    padding: clamp(80px, 14vw, 180px) var(--cg-pad-x) clamp(64px, 10vw, 120px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #131313;
}
.cg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 90% 60% at 70% 20%, rgba(255,255,255,0.08), transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 90%, rgba(26,94,221,0.10), transparent 70%),
        linear-gradient(180deg, #1f1f1f 0%, #131313 100%);
    pointer-events: none;
}
.cg-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.6;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.cg-hero__inner {
    position: relative;
    max-width: var(--cg-max);
    margin: 0 auto;
}

.cg-page .cg-hero .cg-eyebrow {
    color: var(--cg-on-dark-soft);
    margin-bottom: 28px;
}

/* Defeat parent theme h1{color: var(--global-palette3)} cascade.
   Type scale + weight matches home .hero-title for visual parity. */
.cg-page .cg-hero .cg-hero__title {
    font-size: clamp(34px, 5.6vw, 76px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.01em;
    color: #fff;
    max-width: 26ch;
    margin: 0 0 28px;
}
.cg-page .cg-hero .cg-hero__title em {
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    letter-spacing: -0.01em;
}

.cg-page .cg-hero .cg-hero__lead {
    font-size: clamp(22px, 3.2vw, 44px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.9);
    max-width: 32ch;
    margin: 0 0 24px;
}
.cg-page .cg-hero .cg-hero__lead em {
    font-style: italic;
    color: rgba(255,255,255,0.78);
}

.cg-page .cg-hero .cg-hero__subtitle {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.65;
    color: var(--cg-on-dark-mute);
    max-width: 58ch;
    margin: 0 0 40px;
}

.cg-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.cg-hero__rule {
    position: absolute;
    left: var(--cg-pad-x);
    right: var(--cg-pad-x);
    bottom: 0;
    height: 1px;
    background: var(--cg-on-dark-rule);
}

/* --- 2. Trust strip ---------------------------------------------------- */
.cg-trust {
    background: var(--cg-ink);
    color: #fff;
    border-top: 1px solid var(--cg-on-dark-rule);
}
.cg-trust__inner {
    max-width: var(--cg-max);
    margin: 0 auto;
    padding: 28px var(--cg-pad-x);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.cg-trust__cell {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 6px 24px 6px 0;
    border-right: 1px solid var(--cg-on-dark-rule);
}
.cg-trust__cell:last-child { border-right: none; }
.cg-trust__num {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.01em;
}
.cg-trust__label {
    font-size: 13px;
    color: var(--cg-on-dark-mute);
    line-height: 1.35;
}

/* --- Section scaffolding ---------------------------------------------- */
.cg-section {
    max-width: var(--cg-max);
    margin: 0 auto;
    padding: var(--cg-pad-y) var(--cg-pad-x);
}

.cg-section__head {
    margin-bottom: clamp(32px, 5vw, 56px);
    max-width: 64ch;
}

.cg-page .cg-section__title {
    font-size: clamp(28px, 4.2vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--cg-ink);
}

.cg-section__lede {
    margin-top: 14px;
    font-size: 16px;
    color: var(--cg-mute);
}
.cg-section__lede a {
    color: var(--cg-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- 3. What makes us different --------------------------------------- */
.cg-diff__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--cg-rule);
}
.cg-diff__card {
    padding: 36px 28px 36px 0;
    border-right: 1px solid var(--cg-rule);
    border-bottom: 1px solid var(--cg-rule);
}
.cg-diff__card:nth-child(3n) { border-right: none; padding-right: 0; }
.cg-diff__card:not(:first-child) { padding-left: 28px; }

.cg-diff__num {
    font-family: var(--cg-mono);
    font-size: 13px;
    color: var(--cg-mute-soft);
    letter-spacing: 0.1em;
}

.cg-page .cg-diff__card h3 {
    margin-top: 14px;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--cg-ink);
    max-width: 22ch;
}

.cg-diff__proof {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--cg-mute);
}

/* --- 4. Use cases table ----------------------------------------------- */
.cg-table-wrap {
    border-top: 1px solid var(--cg-ink);
    border-bottom: 1px solid var(--cg-ink);
    overflow-x: auto;
}

.cg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: var(--cg-paper);
    color: var(--cg-ink);
}

.cg-table thead th {
    font-family: var(--cg-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cg-mute-soft);
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--cg-rule-strong);
    background: var(--cg-paper-alt);
    font-weight: 500;
}

.cg-table tbody th,
.cg-table tbody td {
    padding: 22px 20px;
    border-bottom: 1px solid var(--cg-rule);
    vertical-align: top;
    text-align: left;
}
.cg-table tbody tr:last-child th,
.cg-table tbody tr:last-child td {
    border-bottom: none;
}

.cg-table th:nth-child(1),
.cg-table tbody tr > *:nth-child(1) { width: 22%; }
.cg-table th:nth-child(2),
.cg-table tbody tr > *:nth-child(2) { width: 42%; }
.cg-table th:nth-child(3),
.cg-table tbody tr > *:nth-child(3) { width: 20%; }
.cg-table th:nth-child(4),
.cg-table tbody tr > *:nth-child(4) { width: 16%; }

.cg-table tbody th {
    font-weight: 600;
    color: var(--cg-ink);
}

.cg-table tbody td {
    color: var(--cg-mute);
}
.cg-table tbody td:nth-child(3) {
    font-family: var(--cg-mono);
    color: var(--cg-ink);
    white-space: nowrap;
}
.cg-table tbody td:nth-child(4) {
    font-family: var(--cg-mono);
    font-size: 13px;
    color: var(--cg-mute);
    white-space: nowrap;
}

.cg-table tbody tr:hover {
    background: var(--cg-paper-alt);
}

/* --- 5. How it works -------------------------------------------------- */
.cg-how__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--cg-rule);
}
.cg-how__step {
    padding: 32px 24px 32px 0;
    border-right: 1px solid var(--cg-rule);
    border-bottom: 1px solid var(--cg-rule);
}
.cg-how__step:nth-child(4n) { border-right: none; padding-right: 0; }
.cg-how__step:not(:first-child) { padding-left: 24px; }

.cg-how__num {
    font-family: var(--cg-mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--cg-mute-soft);
    font-weight: 600;
}

.cg-page .cg-how__step h3 {
    margin-top: 14px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cg-ink);
    max-width: 22ch;
}

.cg-how__step p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--cg-mute);
}

/* --- 6. Featured Google review ---------------------------------------- */
.cg-quote {
    background: var(--cg-ink);
    color: #fff;
    padding: var(--cg-pad-y) var(--cg-pad-x);
    position: relative;
    overflow: hidden;
}
.cg-quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 480px at 50% 0%, rgba(255,255,255,0.05), transparent 60%);
    pointer-events: none;
}
.cg-quote__inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    text-align: left;
}
.cg-quote__mark {
    display: block;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(80px, 12vw, 140px);
    line-height: 0.6;
    color: rgba(255,255,255,0.18);
    margin-bottom: 24px;
}
.cg-quote__body {
    margin: 0;
    padding: 0;
    border: none;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    font-style: italic;
}
.cg-quote__attr {
    margin-top: 28px;
    font-family: var(--cg-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* --- 7. FAQ ----------------------------------------------------------- */
.cg-faq__list {
    border-top: 1px solid var(--cg-rule);
}
.cg-faq__item {
    border-bottom: 1px solid var(--cg-rule);
}
.cg-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 56px 24px 0;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 600;
    color: var(--cg-ink);
    position: relative;
    transition: color 0.18s ease;
}
.cg-faq__item summary::-webkit-details-marker { display: none; }
.cg-faq__item summary::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background:
        linear-gradient(currentColor, currentColor) center/100% 1.5px no-repeat,
        linear-gradient(currentColor, currentColor) center/1.5px 100% no-repeat;
    transition: transform 0.2s ease;
}
.cg-faq__item[open] summary::after {
    background: linear-gradient(currentColor, currentColor) center/100% 1.5px no-repeat;
}
.cg-faq__item summary:hover { color: var(--cg-ink-soft); }
.cg-faq__item[open] summary { color: var(--cg-ink); }
.cg-faq__item p {
    padding: 0 56px 24px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--cg-mute);
    max-width: 70ch;
}

/* --- 8. Form ---------------------------------------------------------- */
.cg-form-section {
    background: var(--cg-paper-alt);
    max-width: none;
    border-top: 1px solid var(--cg-rule);
    padding: var(--cg-pad-y) var(--cg-pad-x);
    scroll-margin-top: 80px;
}
.cg-form-section .cg-section__head,
.cg-form,
.cg-confirm {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cg-form {
    background: #fff;
    border: 1px solid var(--cg-rule);
    padding: clamp(28px, 4vw, 48px);
}

.cg-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.cg-form__row:last-of-type { margin-bottom: 28px; }

.cg-field { display: flex; flex-direction: column; }
.cg-field--full { grid-column: 1 / -1; }

.cg-field__label {
    font-family: var(--cg-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cg-mute);
    margin-bottom: 8px;
}
.cg-field__label em {
    color: var(--cg-ink);
    font-style: normal;
    margin-left: 2px;
}
.cg-field__opt {
    font-family: var(--cg-display);
    text-transform: none;
    letter-spacing: 0;
    color: var(--cg-mute-soft);
    font-size: 12px;
    margin-left: 4px;
}

.cg-field input,
.cg-field select,
.cg-field textarea {
    width: 100%;
    font-family: var(--cg-display);
    font-size: 15px;
    line-height: 1.4;
    color: var(--cg-ink);
    padding: 12px 16px;
    border: 1px solid var(--cg-rule-strong);
    border-radius: 0;
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}
/* Lock single-line inputs/selects to a uniform height so <select> doesn't
   inherit the browser's intrinsic option-row height (which makes it taller
   than sibling text inputs on macOS/Chrome). */
.cg-field input,
.cg-field select {
    height: 46px;
}
.cg-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

.cg-field select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--cg-ink) 50%),
        linear-gradient(135deg, var(--cg-ink) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 20px,
        calc(100% - 13px) 20px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.cg-field input:focus,
.cg-field select:focus,
.cg-field textarea:focus {
    outline: none;
    border-color: var(--cg-ink);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.cg-field input:invalid:not(:placeholder-shown),
.cg-field select:invalid:not(:focus) {
    /* no red flash on first paint — only after blur */
}

.cg-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cg-form__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.cg-form__fineprint {
    font-size: 12px;
    color: var(--cg-mute-soft);
    margin: 0;
    flex: 1;
    min-width: 220px;
}
.cg-form__fineprint strong { color: var(--cg-ink); font-weight: 600; }

.cg-form__error {
    margin-top: 18px;
    padding: 14px 16px;
    background: #fff4f4;
    border-left: 3px solid #c0392b;
    color: #7a1f15;
    font-size: 14px;
}

/* Confirmation panel */
.cg-confirm {
    background: #fff;
    border: 1px solid var(--cg-rule);
    padding: clamp(36px, 5vw, 64px);
    text-align: left;
}
.cg-page .cg-confirm__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--cg-ink);
    margin: 0 0 16px;
}
.cg-confirm__body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--cg-mute);
    margin: 0 0 28px;
}
.cg-confirm__body a {
    color: var(--cg-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cg-confirm__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cg-confirm .cg-btn--ghost {
    color: var(--cg-ink);
    border-color: var(--cg-rule-strong);
}
.cg-confirm .cg-btn--ghost:hover {
    border-color: var(--cg-ink);
    background: var(--cg-paper-alt);
}

/* --- Responsive ------------------------------------------------------- */
@media (max-width: 1024px) {
    .cg-trust__inner { grid-template-columns: repeat(2, 1fr); }
    .cg-trust__cell:nth-child(2) { border-right: none; }
    .cg-trust__cell:nth-child(3),
    .cg-trust__cell:nth-child(4) { padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }

    .cg-diff__grid { grid-template-columns: 1fr; }
    .cg-diff__card { border-right: none; padding: 28px 0; }
    .cg-diff__card:not(:first-child) { padding-left: 0; }

    .cg-how__steps { grid-template-columns: repeat(2, 1fr); }
    .cg-how__step:nth-child(2n) { border-right: none; }
    .cg-how__step:not(:nth-child(2n+1)) { padding-left: 24px; }
    .cg-how__step:nth-child(2n+1) { padding-right: 24px; padding-left: 0; }
}

@media (max-width: 720px) {
    .cg-hero { padding: 96px var(--cg-pad-x) 72px; }
    .cg-page .cg-hero .cg-hero__title { font-size: clamp(32px, 9vw, 44px); max-width: none; }
    .cg-hero__ctas .cg-btn { width: 100%; justify-content: center; }

    .cg-trust__inner { grid-template-columns: 1fr; padding: 8px var(--cg-pad-x); }
    .cg-trust__cell {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 18px 0;
    }
    .cg-trust__cell:last-child { border-bottom: none; }

    .cg-section__title { font-size: 28px; }

    .cg-how__steps { grid-template-columns: 1fr; }
    .cg-how__step,
    .cg-how__step:nth-child(2n+1) {
        border-right: none;
        padding: 24px 0;
    }
    .cg-how__step:not(:first-child) { padding-left: 0; }

    .cg-form__row { grid-template-columns: 1fr; }

    .cg-table thead { display: none; }
    .cg-table,
    .cg-table tbody,
    .cg-table tr,
    .cg-table th,
    .cg-table td { display: block; width: 100%; }
    .cg-table tbody tr {
        padding: 18px 0;
        border-bottom: 1px solid var(--cg-rule);
    }
    .cg-table tbody tr:last-child { border-bottom: none; }
    .cg-table tbody th,
    .cg-table tbody td {
        padding: 4px 0;
        border-bottom: none;
        width: 100%;
    }
    .cg-table tbody th {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .cg-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-family: var(--cg-mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--cg-mute-soft);
        margin-top: 8px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .cg-page * {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }
}
