/* =========================================================================
   GROWTH DATA CONSULTING — 3D / DEPTH LAYER
   Layered on top of styles.css. Adds perspective, glassmorphism, parallax,
   tilt cards, dropdown nav, trust bar, and shared page scaffolding.
   ========================================================================= */

:root {
    --neon-glow: 0 0 30px rgba(57, 255, 20, 0.35), 0 0 60px rgba(57, 255, 20, 0.15);
    --glass-bg: rgba(20, 20, 20, 0.55);
    --glass-border: rgba(57, 255, 20, 0.18);
    --glass-blur: 16px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

/* Reserve space below the fixed nav so content never sits under it */
main.gdc-page {
    padding-top: 80px;
    min-height: 60vh;
    position: relative;
    z-index: 2;
}

/* =========================================================================
   FLOATING GRADIENT ORBS — background depth
   ========================================================================= */
.gdc-orb-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gdc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    will-change: transform;
    animation: gdcFloat 18s ease-in-out infinite;
}

.gdc-orb--green {
    width: 520px; height: 520px;
    top: -140px; left: -120px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.55), transparent 65%);
}

.gdc-orb--cyan {
    width: 420px; height: 420px;
    bottom: -140px; right: -80px;
    background: radial-gradient(circle, rgba(0, 220, 255, 0.35), transparent 65%);
    animation-delay: -6s;
}

.gdc-orb--violet {
    width: 360px; height: 360px;
    top: 45%; right: 10%;
    background: radial-gradient(circle, rgba(140, 80, 255, 0.25), transparent 65%);
    animation-delay: -12s;
}

@keyframes gdcFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50%      { transform: translate3d(30px, -40px, 0) scale(1.08); }
}

/* Dim orbs slightly on inner pages */
[data-page]:not([data-page="home"]) .gdc-orb {
    opacity: 0.18;
}

/* =========================================================================
   NAVIGATION — glass + dropdowns
   ========================================================================= */
.gdc-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    transition: transform 0.4s var(--ease-out-expo), background 0.3s ease;
}

.gdc-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.gdc-nav__logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text-white);
    text-decoration: none;
    white-space: nowrap;
}

.gdc-nav__logo .amp {
    color: var(--text-white);
}

.gdc-nav__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0; padding: 0;
}

.gdc-nav__item {
    position: relative;
}

.gdc-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.9rem;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
}

.gdc-nav__link:hover,
.gdc-nav__link[aria-expanded="true"] {
    color: var(--text-white);
    background: rgba(57, 255, 20, 0.08);
}

.gdc-nav__link .caret {
    font-size: 0.7rem;
    transform: translateY(1px);
    transition: transform 0.25s ease;
}

.gdc-nav__link[aria-expanded="true"] .caret {
    transform: rotate(180deg) translateY(-1px);
}

.gdc-nav__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: -10px;
    min-width: 320px;
    background: rgba(16, 16, 16, 0.96);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) rotateX(-8deg);
    transform-origin: top center;
    transition: opacity 0.25s ease, transform 0.3s var(--ease-out-expo), visibility 0.25s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(57, 255, 20, 0.05);
}

.gdc-nav__item:hover .gdc-nav__dropdown,
.gdc-nav__item:focus-within .gdc-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotateX(0);
}

.gdc-nav__dropdown a {
    display: block;
    padding: 0.7rem 0.9rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.92rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gdc-nav__dropdown a:hover {
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.08);
    transform: translateX(4px);
}

.gdc-nav__cta {
    display: inline-block;
    padding: 0.65rem 1.3rem;
    background: var(--neon-green);
    color: #0a0a0a !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 0 rgba(57, 255, 20, 0);
}

.gdc-nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.gdc-nav__burger {
    display: none;
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    width: 40px; height: 40px;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.gdc-nav__burger span {
    display: block;
    position: absolute;
    left: 10px;
    width: 20px; height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.gdc-nav__burger span:nth-child(1) { top: 13px; }
.gdc-nav__burger span:nth-child(2) { top: 19px; }
.gdc-nav__burger span:nth-child(3) { top: 25px; }

.gdc-nav__burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.gdc-nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gdc-nav__burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 960px) {
    .gdc-nav__burger { display: block; }
    .gdc-nav__menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1.25rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(var(--glass-blur));
        border-bottom: 1px solid var(--border-gray);
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease-out-expo);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    .gdc-nav__menu.is-open { transform: translateY(0); }
    .gdc-nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 0 0 1rem;
        min-width: 0;
        margin-top: 0.25rem;
    }
    .gdc-nav__cta { text-align: center; margin-top: 0.5rem; }
}

@media (max-width: 768px) {
    .gdc-section { padding: 50px 1.25rem; }
    .gdc-section--tight { padding: 35px 1.25rem; }
    .gdc-cta-final { padding: 2.5rem 1.5rem; }
    .gdc-hero { padding: 100px 1.25rem 60px; }
}

/* =========================================================================
   SECTION WRAPPERS
   ========================================================================= */
.gdc-section {
    position: relative;
    padding: 80px 2rem;
    z-index: 2;
}

.gdc-section--tight { padding: 50px 2rem; }
.gdc-section--alt { background: linear-gradient(180deg, #0a0a0a 0%, #101010 50%, #0a0a0a 100%); }

.gdc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gdc-eyebrow {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.25);
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.gdc-h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.gdc-h2 .accent { color: var(--neon-green); }

.gdc-lede {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 720px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* =========================================================================
   HERO — 3D scene + trust bar
   ========================================================================= */
.gdc-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 2rem 80px;
    isolation: isolate;
}

.gdc-hero__video,
.gdc-hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.gdc-hero__video { opacity: 0.35; }
.gdc-hero__canvas { z-index: 1; opacity: 0.9; pointer-events: none; }

.gdc-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(57, 255, 20, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.85) 60%, #0a0a0a 100%);
}

.gdc-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    transform-style: preserve-3d;
}

.gdc-hero__title {
    font-size: clamp(2.3rem, 5.5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    max-width: 16ch;
    transform: translateZ(40px);
}

.gdc-hero__title .accent {
    background: linear-gradient(120deg, var(--neon-green) 0%, #7fffa0 50%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(57, 255, 20, 0.25);
}

.gdc-hero__sub {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 2.2rem;
    transform: translateZ(20px);
}

.gdc-hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    transform: translateZ(30px);
}

/* Buttons */
.gdc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, background 0.3s ease;
    will-change: transform;
}

.gdc-btn--primary {
    background: var(--neon-green);
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.25);
}

.gdc-btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 45px rgba(57, 255, 20, 0.5), var(--neon-glow);
}

.gdc-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.gdc-btn--ghost:hover {
    transform: translateY(-3px);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* Trust bar */
.gdc-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    align-items: center;
    padding: 1rem 1.4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    max-width: max-content;
    transform: translateZ(10px);
}

.gdc-trust-bar__item {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.gdc-trust-bar__item::before {
    content: "✓";
    color: var(--neon-green);
    font-weight: 800;
}

.gdc-trust-bar__sep {
    width: 1px; height: 14px;
    background: var(--border-gray);
    display: inline-block;
}

/* =========================================================================
   CARD GRIDS — tilt, glass, 3D lift
   ========================================================================= */
.gdc-grid {
    display: grid;
    gap: 1.75rem;
}

.gdc-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.gdc-grid--2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.gdc-grid--5 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.gdc-card {
    position: relative;
    padding: 2.25rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.gdc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(57, 255, 20, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gdc-card:hover {
    border-color: rgba(57, 255, 20, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(57, 255, 20, 0.2);
}

.gdc-card:hover::before { opacity: 1; }

.gdc-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.25);
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    transform: translateZ(30px);
}

.gdc-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    transform: translateZ(20px);
}

.gdc-card__body {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    transform: translateZ(10px);
}

.gdc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--neon-green);
    font-weight: 600;
    text-decoration: none;
    transform: translateZ(10px);
    transition: gap 0.3s ease;
}

.gdc-card__link:hover { gap: 0.7rem; }

.gdc-card--tilt {
    transform: perspective(900px) rotateX(0) rotateY(0);
}

/* =========================================================================
   BLOCKQUOTE / CALLOUT
   ========================================================================= */
.gdc-callout {
    position: relative;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.08) 0%, rgba(57, 255, 20, 0.02) 100%);
    border-left: 4px solid var(--neon-green);
    border-radius: 14px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-white);
    margin: 2rem 0;
}

.gdc-callout::before {
    content: """;
    position: absolute;
    top: -10px; left: 12px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(57, 255, 20, 0.25);
}

/* =========================================================================
   PRICING SIGNAL / FINE PRINT
   ========================================================================= */
.gdc-price {
    display: inline-block;
    padding: 0.8rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(57, 255, 20, 0.4);
    border-radius: 10px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    margin: 1rem 0;
}

.gdc-fineprint {
    display: block;
    margin-top: 1rem;
    color: var(--light-gray);
    font-size: 0.82rem;
    line-height: 1.55;
    font-style: italic;
}

/* =========================================================================
   FINAL CTA BLOCK
   ========================================================================= */
.gdc-cta-final {
    position: relative;
    padding: 3.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.12) 0%, rgba(57, 255, 20, 0.02) 50%, rgba(57, 255, 20, 0.1) 100%);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
}

.gdc-cta-final::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, transparent 0%, rgba(57, 255, 20, 0.4) 20%, transparent 40%, transparent 60%, rgba(57, 255, 20, 0.4) 80%, transparent 100%);
    z-index: -1;
    animation: gdcRotateBorder 12s linear infinite;
    opacity: 0.5;
}

.gdc-cta-final::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #0a0a0a;
    border-radius: 22px;
    z-index: -1;
}

@keyframes gdcRotateBorder {
    to { transform: rotate(360deg); }
}

.gdc-cta-final h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.gdc-cta-final p {
    max-width: 620px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.65;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.gdc-footer {
    position: relative;
    padding: 3rem 2rem 1.5rem;
    background: #060606;
    border-top: 1px solid var(--border-gray);
    z-index: 2;
}

.gdc-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-gray);
}

@media (max-width: 820px) {
    .gdc-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.gdc-footer h4 {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.gdc-footer p,
.gdc-footer a {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    text-decoration: none;
}

.gdc-footer ul { list-style: none; padding: 0; margin: 0; }
.gdc-footer li { margin-bottom: 0.5rem; }
.gdc-footer a:hover { color: var(--neon-green); }

.gdc-footer__tagline {
    font-style: italic;
    color: var(--neon-green);
    margin-top: 0.75rem;
}

.gdc-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--light-gray);
    font-size: 0.82rem;
}

/* =========================================================================
   INNER PAGE BACKGROUND — subtle animated gradient mesh
   Applied to body (not .gdc-page) to avoid stacking context issues.
   ========================================================================= */
body:not([data-page="home"])::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 600px 400px at 15% 20%, rgba(57, 255, 20, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 85% 60%, rgba(0, 220, 255, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 400px 350px at 50% 80%, rgba(140, 80, 255, 0.025) 0%, transparent 70%);
    animation: gdcMeshFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gdcMeshFloat {
    0%, 100% { opacity: 0.7; transform: scale(1) translate(0, 0); }
    33% { opacity: 1; transform: scale(1.05) translate(10px, -15px); }
    66% { opacity: 0.85; transform: scale(0.98) translate(-8px, 10px); }
}

/* Add a subtle noise texture overlay for depth */
body:not([data-page="home"])::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    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)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    pointer-events: none;
    opacity: 0.5;
}

/* Also add a subtle top gradient to inner pages for visual polish */
.gdc-page > .gdc-section:first-child {
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.02) 0%, transparent 40%);
}

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.gdc-reveal {
    opacity: 0;
    transform: translateY(40px) rotateX(6deg);
    transform-origin: center bottom;
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.gdc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.gdc-reveal[data-delay="1"] { transition-delay: 0.1s; }
.gdc-reveal[data-delay="2"] { transition-delay: 0.2s; }
.gdc-reveal[data-delay="3"] { transition-delay: 0.3s; }
.gdc-reveal[data-delay="4"] { transition-delay: 0.4s; }

/* =========================================================================
   PLACEHOLDER MARKUP (used in Section 2 shells, replaced in later sections)
   ========================================================================= */
.gdc-placeholder {
    font-size: 2rem;
    color: var(--text-white);
    margin: 4rem auto 1rem;
    max-width: 1000px;
    padding: 0 2rem;
    font-weight: 800;
}

.gdc-placeholder-note {
    color: var(--light-gray);
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    font-size: 0.95rem;
    font-style: italic;
}

/* =========================================================================
   BLOG ARTICLE TYPOGRAPHY
   ========================================================================= */
.gdc-article p { color: var(--text-gray); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.gdc-article h2 { color: var(--text-white); font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; }
.gdc-article h3 { color: var(--text-white); font-size: 1.2rem; font-weight: 600; margin: 2rem 0 0.75rem; }
.gdc-article ul { color: var(--text-gray); margin: 1rem 0 1.5rem 1.5rem; line-height: 1.8; }
.gdc-article li { margin-bottom: 0.5rem; }
.gdc-article strong { color: var(--text-white); }

/* =========================================================================
   CONTACT FORM
   ========================================================================= */
.gdc-form label { color: var(--text-gray); font-size: .85rem; font-weight: 500; margin-bottom: .4rem; display: block; }
.gdc-form .field { margin-bottom: 1.25rem; }
.gdc-form input,
.gdc-form select,
.gdc-form textarea { background: rgba(255,255,255,.05); border: 1px solid var(--border-gray); color: #fff; padding: .8rem 1rem; border-radius: 10px; width: 100%; font-family: inherit; font-size: .95rem; box-sizing: border-box; }
.gdc-form input:focus,
.gdc-form select:focus,
.gdc-form textarea:focus { outline: none; border-color: var(--neon-green); }
.gdc-form textarea { min-height: 120px; resize: vertical; }
.gdc-form select option { background: #111; color: #fff; }

/* =========================================================================
   CARD / ABOUT LIST STYLING
   ========================================================================= */
.gdc-card__list {
    color: var(--text-gray);
    margin-top: 1rem;
    padding-left: 1.2rem;
    line-height: 1.8;
}

/* =========================================================================
   ACCESSIBILITY / MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        transition-duration: 0.001s !important;
    }
    .gdc-orb { display: none; }
    .gdc-hero__canvas { display: none; }
}
