/*
   How to Advertise — Dark Luxe Glassmorphism
   Apple-scale typography + frosted glass panels + deep gradient atmosphere
*/

/* CircularXXWeb-Regular loaded externally */

@font-face {
    font-family: 'Switzer';
    src: url('Switzer-Medium-_-c5B_5z.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
    /* Atmosphere */
    --gd-bg: #06060e;
    --gd-bg-deep: #030308;
    --gd-bg-purple: #0d0520;

    /* Glass */
    --gd-glass: rgba(255, 255, 255, 0.035);
    --gd-glass-hover: rgba(255, 255, 255, 0.06);
    --gd-glass-border: rgba(255, 255, 255, 0.08);
    --gd-glass-border-hover: rgba(255, 255, 255, 0.15);
    --gd-glass-blur: blur(28px) saturate(160%);

    /* Text */
    --gd-text: #ffffff;
    --gd-text-secondary: rgba(255, 255, 255, 0.55);
    --gd-text-muted: rgba(255, 255, 255, 0.35);

    /* Accent */
    --gd-accent: #ff3366;
    --gd-accent-hover: #ff1a53;
    --gd-accent-glow: rgba(255, 51, 102, 0.18);
    --gd-accent-soft: rgba(255, 51, 102, 0.08);

    /* Orbs */
    --gd-orb-pink: rgba(255, 51, 102, 0.12);
    --gd-orb-purple: rgba(120, 60, 255, 0.10);
    --gd-orb-blue: rgba(60, 130, 255, 0.08);

    /* Type */
    --gd-font: CircularXXWeb-Regular, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    /* Motion */
    --gd-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gd-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --gd-dur: 0.85s;
}

/* ═══════════════════════════════════════════
   PAGE SHELL
   ═══════════════════════════════════════════ */
.guidelines-page {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gd-wrap {
    position: relative;
    overflow-x: hidden;
    font-family: var(--gd-font);
    color: var(--gd-text);
    background: linear-gradient(
        180deg,
        var(--gd-bg) 0%,
        var(--gd-bg-purple) 25%,
        var(--gd-bg-deep) 50%,
        var(--gd-bg-purple) 75%,
        var(--gd-bg) 100%
    );
}

.gd-wrap *,
.gd-wrap *::before,
.gd-wrap *::after {
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY (scoped to .gd-wrap)
   ═══════════════════════════════════════════ */
.gd-wrap h1,
.gd-wrap h2,
.gd-wrap h3,
.gd-wrap h4 {
    font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    color: var(--gd-text) !important;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.06;
    margin-bottom: 20px;
}

.gd-wrap p {
    color: var(--gd-text-secondary);
    line-height: 1.65;
    font-family: var(--gd-font);
    font-weight: 400;
    font-style: normal;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.gd-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.gd-section {
    position: relative;
    padding: 72px 0;
}

/* Thin separator line between sections */
.gd-section + .gd-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 900px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gd-glass-border), transparent);
}

/* ═══════════════════════════════════════════
   FLOATING ORBS (atmosphere)
   ═══════════════════════════════════════════ */
.gd-orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gd-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.gd-orb--1 {
    width: 700px;
    height: 700px;
    background: var(--gd-orb-pink);
    top: -200px;
    right: -200px;
    animation: gdOrbDrift 20s ease-in-out infinite alternate;
}

.gd-orb--2 {
    width: 600px;
    height: 600px;
    background: var(--gd-orb-purple);
    bottom: 20%;
    left: -250px;
    animation: gdOrbDrift 25s ease-in-out infinite alternate-reverse;
}

.gd-orb--3 {
    width: 500px;
    height: 500px;
    background: var(--gd-orb-blue);
    top: 50%;
    right: -150px;
    animation: gdOrbDrift 18s ease-in-out infinite alternate;
    animation-delay: -5s;
}

@keyframes gdOrbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -30px) scale(1.08); }
    100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Subtle noise texture overlay */
.gd-noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ═══════════════════════════════════════════
   GLASS PANEL MIXIN
   ═══════════════════════════════════════════ */
.gd-glass {
    background: var(--gd-glass);
    backdrop-filter: var(--gd-glass-blur);
    -webkit-backdrop-filter: var(--gd-glass-blur);
    border: 1px solid var(--gd-glass-border);
    border-radius: 24px;
    transition: border-color 0.4s var(--gd-ease),
                background 0.4s var(--gd-ease),
                box-shadow 0.4s var(--gd-ease),
                transform 0.5s var(--gd-ease-out);
}

.gd-glass:hover {
    border-color: var(--gd-glass-border-hover);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.gd-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--gd-dur) var(--gd-ease),
                transform var(--gd-dur) var(--gd-ease-out);
    will-change: opacity, transform;
}

.gd-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gd-reveal--d1 { transition-delay: 0.08s; }
.gd-reveal--d2 { transition-delay: 0.16s; }
.gd-reveal--d3 { transition-delay: 0.24s; }
.gd-reveal--d4 { transition-delay: 0.32s; }

/* Scale-up variant for cards */
.gd-reveal--scale {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
    transition: opacity var(--gd-dur) var(--gd-ease),
                transform var(--gd-dur) var(--gd-ease-out);
}

.gd-reveal--scale.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ═══════════════════════════════════════════
   EYEBROW LABEL
   ═══════════════════════════════════════════ */
.gd-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gd-accent);
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.gd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--gd-font);
    font-weight: 400;
    font-size: 17px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--gd-ease);
    -webkit-tap-highlight-color: transparent;
}

.gd-btn--primary {
    padding: 18px 44px;
    border-radius: 980px;
    background: var(--gd-accent);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gd-btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--gd-ease);
}

.gd-btn--primary:hover {
    background: var(--gd-accent-hover);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 40px -8px rgba(255, 51, 102, 0.45);
    color: #fff;
}

.gd-btn--primary:hover::after {
    transform: translateX(100%);
}

.gd-btn--ghost {
    padding: 18px 44px;
    border-radius: 980px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gd-text);
}

.gd-btn--ghost:hover {
    background: rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 51, 102, 0.35);
    color: #fff;
}

.gd-btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Focus */
.gd-wrap a:focus-visible,
.gd-wrap button:focus-visible {
    outline: 2px solid var(--gd-accent);
    outline-offset: 3px;
    border-radius: 8px;
}

/* ════════════════════════════════════════════
   A — HERO
   ════════════════════════════════════════════ */
.gd-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 24px 48px;
    position: relative;
    z-index: 1;
}

/* Hero background image — subtle, cropped from neck */
.gd-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.gd-hero-bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 650px;
    height: 110%;
    object-fit: cover;
    object-position: center 55%;
    opacity: 0.35;
    filter: grayscale(20%) brightness(0.85);
    -webkit-mask-image:
        linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 80%),
        linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 18%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 80%),
        linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 18%);
    mask-composite: intersect;
    mix-blend-mode: luminosity;
}

/* Radial glow behind hero */
.gd-hero::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 800px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, var(--gd-orb-pink) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

.gd-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.gd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px 7px 14px;
    border-radius: 980px;
    background: rgba(34, 197, 94, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 197, 94, 0.18);
    color: #4ade80;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.gd-hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    position: relative;
    flex-shrink: 0;
}

.gd-hero-badge-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #4ade80;
    animation: gdPulse 2s ease-out infinite;
}

@keyframes gdPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3.5); opacity: 0; }
}

.gd-hero h1 {
    font-size: clamp(50px, 9vw, 76px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.gd-hero-highlight {
    background: linear-gradient(135deg, #ff3366, #ff6b8a, #ff3366);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gdShimmer 4s ease infinite;
}

@keyframes gdShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gd-hero p {
    font-size: clamp(18px, 2.2vw, 21px);
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gd-text-secondary);
}

/* ════════════════════════════════════════════
   B — 3 STEPS
   ════════════════════════════════════════════ */
.gd-steps-header {
    text-align: center;
    margin-bottom: 56px;
}

.gd-steps-header h2 {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 400;
}

.gd-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px 0;
    position: relative;
}

.gd-step:not(:last-of-type)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gd-glass-border), var(--gd-accent), var(--gd-glass-border));
    opacity: 0.5;
}

.gd-step:last-of-type {
    padding-bottom: 0;
}

.gd-step--reverse {
    direction: rtl;
}

.gd-step--reverse > * {
    direction: ltr;
}

.gd-step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gd-step-icon-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gd-glass);
    backdrop-filter: var(--gd-glass-blur);
    -webkit-backdrop-filter: var(--gd-glass-blur);
    border: 1px solid var(--gd-glass-border);
    transition: transform 0.6s var(--gd-ease-out),
                box-shadow 0.6s var(--gd-ease),
                border-color 0.4s var(--gd-ease);
}

.gd-step:hover .gd-step-icon-ring {
    transform: scale(1.06);
    border-color: var(--gd-glass-border-hover);
    box-shadow: 0 0 80px -20px var(--gd-accent-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gd-step-icon-ring svg {
    width: 64px;
    height: 64px;
    stroke: var(--gd-accent);
    stroke-width: 1.5;
    fill: none;
}

.gd-step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gd-accent);
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px -4px rgba(255, 51, 102, 0.5);
}

.gd-step-content {
    max-width: 440px;
}

.gd-step-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.12;
}

.gd-step-desc {
    font-size: 18px;
    color: var(--gd-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════════════
   C — STANDARDS (glass cards)
   ════════════════════════════════════════════ */
.gd-standards-header {
    text-align: center;
    margin-bottom: 48px;
}

.gd-standards-header h2 {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 400;
    margin-bottom: 16px;
}

.gd-standards-header p {
    font-size: 19px;
    max-width: 560px;
    margin: 0 auto;
}

.gd-standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gd-standard-card {
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}

.gd-standard-card:hover {
    transform: translateY(-4px);
}

/* Accent glow line on top — removed for cleaner look */

.gd-standard-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--gd-accent-soft);
    border: 1px solid rgba(255, 51, 102, 0.12);
}

.gd-standard-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gd-accent);
    stroke-width: 2;
    fill: none;
}

.gd-standard-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.gd-standard-card p {
    font-size: 16px;
    color: var(--gd-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ════════════════════════════════════════════
   D — POLICY / ACCORDION (glass panel)
   ════════════════════════════════════════════ */
.gd-policy-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.gd-policy-aside {
    position: sticky;
    top: 100px;
}

.gd-policy-aside h2 {
    font-size: clamp(36px, 4.5vw, 48px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gd-policy-aside p {
    font-size: 17px;
    color: var(--gd-text-secondary);
}

.gd-accordion-panel {
    padding: 8px;
}

.gd-accordion-item {
    border-bottom: 1px solid var(--gd-glass-border);
}

.gd-accordion-item:first-child {
    border-top: 1px solid var(--gd-glass-border);
}

.gd-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--gd-font);
    font-size: 20px;
    font-weight: 400;
    color: var(--gd-text);
    text-align: left;
    transition: color 0.3s var(--gd-ease);
    -webkit-tap-highlight-color: transparent;
}

.gd-accordion-trigger:hover {
    color: var(--gd-accent);
    text-shadow: none;
}

.gd-accordion-chevron {
    width: 22px;
    height: 22px;
    transition: transform 0.45s var(--gd-ease-out);
    color: var(--gd-text-muted);
    flex-shrink: 0;
}

.gd-accordion-item.is-active .gd-accordion-trigger {
    color: var(--gd-text);
}

.gd-accordion-item.is-active .gd-accordion-chevron {
    transform: rotate(180deg);
    color: var(--gd-accent);
}

.gd-accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s var(--gd-ease-out);
}

.gd-accordion-item.is-active .gd-accordion-body {
    grid-template-rows: 1fr;
}

.gd-accordion-inner {
    overflow: hidden;
}

.gd-accordion-content {
    padding: 0 8px 28px;
}

.gd-accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gd-accordion-content li {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    color: var(--gd-text-secondary);
    line-height: 1.6;
}

.gd-accordion-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gd-accent);
    box-shadow: 0 0 6px var(--gd-accent-glow);
}

/* ════════════════════════════════════════════
   E — STATS / TRUST (glass row)
   ════════════════════════════════════════════ */
.gd-trust-header {
    text-align: center;
    margin-bottom: 32px;
}

.gd-trust-header h2 {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 400;
    margin-bottom: 16px;
}

.gd-trust-header p {
    font-size: 19px;
    max-width: 640px;
    margin: 0 auto;
}

.gd-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 48px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--gd-glass-border);
}

.gd-stat {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 56px 32px;
    text-align: center;
    transition: background 0.4s var(--gd-ease);
}

.gd-stat:hover {
    background: rgba(255, 255, 255, 0.05);
}

.gd-stat-value {
    font-family: var(--gd-font);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ff3366, #ff8888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gd-stat-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gd-text-muted);
}

/* ════════════════════════════════════════════
   F — BOTTOM CTA (glass card)
   ════════════════════════════════════════════ */
.gd-cta-section {
    position: relative;
    padding: 72px 0 80px;
    z-index: 1;
}

.gd-cta-card {
    text-align: center;
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

/* Inner glow */
.gd-cta-card::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, var(--gd-orb-pink) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gd-cta-card > * {
    position: relative;
    z-index: 1;
}

.gd-cta-card h2 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 400;
    margin-bottom: 20px;
}

.gd-cta-card p {
    font-size: 19px;
    max-width: 480px;
    margin: 0 auto 48px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gd-section { padding: 56px 0; }

    .gd-step {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
        padding: 40px 0;
    }

    .gd-step--reverse { direction: ltr; }

    .gd-step:not(:last-of-type)::after { display: none; }

    .gd-step-content {
        max-width: 520px;
        margin: 0 auto;
    }

    .gd-step-icon-ring {
        width: 160px;
        height: 160px;
    }

    .gd-step-icon-ring svg {
        width: 52px;
        height: 52px;
    }

    .gd-standards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gd-policy-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gd-policy-aside {
        position: static;
        text-align: center;
    }

    .gd-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gd-section { padding: 48px 0; }
    .gd-container { padding: 0 20px; }

    .gd-hero-bg-img {
        width: 100%;
        right: -15%;
        opacity: 0.15;
    }

    .gd-hero {
        padding: 110px 20px 40px;
    }

    .gd-hero h1 {
        font-size: 42px;
    }

    .gd-hero p {
        font-size: 17px;
    }

    .gd-btn--primary,
    .gd-btn--ghost {
        padding: 16px 36px;
        font-size: 16px;
        width: 100%;
    }

    .gd-btn-group {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .gd-step-icon-ring {
        width: 140px;
        height: 140px;
    }

    .gd-step-icon-ring svg {
        width: 44px;
        height: 44px;
    }

    .gd-step-number {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .gd-standard-card {
        padding: 32px 28px;
    }

    .gd-accordion-trigger {
        font-size: 17px;
        padding: 24px 8px;
    }

    .gd-stats-row {
        margin-top: 48px;
    }

    .gd-stat {
        padding: 40px 20px;
    }

    .gd-stat-value {
        font-size: 36px;
    }

    .gd-cta-card {
        padding: 48px 20px;
    }

    .gd-cta-card h2 {
        font-size: 34px;
    }

    .gd-cta-section {
        padding: 48px 0 60px;
    }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .gd-reveal,
    .gd-reveal--scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .gd-hero-badge-dot::after { animation: none; }
    .gd-hero-highlight { animation: none; }
    .gd-orb { animation: none; }
    .gd-accordion-body { transition: none; }
    .gd-btn--primary::after { transition: none; }
}
