/*
Theme Name: GDCC
Theme URI: https://www.gdcc.com/
Author: GDCC
Author URI: https://www.gdcc.com/
Description: Custom classic WordPress theme for GDCC (Global Data Collection Company). Converted from the GDCC React site into plain PHP/HTML/CSS templates. No page builder, block editor, or framework required. Homepage built from reusable template parts under template-parts/home/.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gdcc
*/

/* ============================================================================
   GDCC theme styles
   Everything is scoped under ".gdcc" (a wrapper added in header.php/footer.php)
   so it will not clash with plugin or admin-bar markup.

   Design tokens are the EXACT OKLCH values from the React app's globals.css.
   Opacity variants use color-mix(in oklab, ...) which is how Tailwind v4
   resolves the /NN opacity modifiers (e.g. bg-primary/80), so colors match
   the source 1:1 rather than being approximated in hex.
   ========================================================================== */

/* ---- Design tokens (exact OKLCH from app/globals.css :root) ---- */
.gdcc {
  --gdcc-background: oklch(1 0 0);
  --gdcc-foreground: oklch(0.22 0.04 256);
  --gdcc-card: oklch(1 0 0);
  --gdcc-card-foreground: oklch(0.22 0.04 256);
  --gdcc-primary: oklch(0.28 0.07 257);
  --gdcc-primary-foreground: oklch(0.98 0.005 250);
  --gdcc-secondary: oklch(0.96 0.01 250);
  --gdcc-secondary-foreground: oklch(0.28 0.07 257);
  --gdcc-muted: oklch(0.96 0.01 250);
  --gdcc-muted-foreground: oklch(0.52 0.03 256);
  --gdcc-accent: oklch(0.6 0.11 195);
  --gdcc-accent-foreground: oklch(0.98 0.005 250);
  --gdcc-border: oklch(0.91 0.012 250);
  --gdcc-radius: 0.5rem;

  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: var(--gdcc-foreground);
  background: var(--gdcc-background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Resets scoped to the theme wrapper ---- */
.gdcc *,
.gdcc *::before,
.gdcc *::after { box-sizing: border-box; }
.gdcc h1, .gdcc h2, .gdcc h3, .gdcc p, .gdcc ul, .gdcc dl, .gdcc dd { margin: 0; }
.gdcc ul { list-style: none; padding: 0; }
.gdcc a { color: inherit; text-decoration: none; }
.gdcc img { display: block; max-width: 100%; height: auto; }
.gdcc svg { display: block; }
.gdcc-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---- Layout helpers ---- */
.gdcc-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .gdcc-container { padding-left: 2rem; padding-right: 2rem; }
}
.gdcc-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gdcc-accent);
}
.gdcc-icon { width: 1.5rem; height: 1.5rem; }
.gdcc-icon-sm { width: 1rem; height: 1rem; }

/* ---- Buttons ----
   Sizing copied exactly from the React Button component (components/ui/button.tsx):
   base: rounded-lg (var(--radius)=0.5rem), text-sm (0.875rem/1.25rem),
         font-medium (500), gap-1.5 (0.375rem), border 1px transparent.
   size "default": h-8 (2rem), px-2.5 (0.625rem)  -> header buttons.
   size "lg":      h-9 (2.25rem), px-2.5 (0.625rem) -> hero + CTA buttons.
   Icons are size-4 (1rem). No extra vertical padding: height is fixed. */
.gdcc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 2rem;
  padding: 0 0.625rem;
  border-radius: var(--gdcc-radius);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.gdcc-btn-lg { height: 2.25rem; }
.gdcc-btn svg { width: 1rem; height: 1rem; }
/* Icon spacing to match React ml-2 (arrow-right) / ml-1 (arrow-up-right). */
.gdcc-hero-actions .gdcc-btn svg,
.gdcc-cta-content .gdcc-btn svg { margin-left: 0.5rem; }
.gdcc-header-cta .gdcc-btn svg { margin-left: 0.25rem; }

.gdcc-btn-accent { background: var(--gdcc-accent); color: var(--gdcc-accent-foreground); }
.gdcc-btn-accent:hover { background: color-mix(in oklab, var(--gdcc-accent) 90%, transparent); }
.gdcc-btn-primary { background: var(--gdcc-primary); color: var(--gdcc-primary-foreground); }
.gdcc-btn-primary:hover { background: color-mix(in oklab, var(--gdcc-primary) 80%, transparent); }
.gdcc-btn-outline-light {
  border-color: color-mix(in oklab, var(--gdcc-primary-foreground) 30%, transparent);
  background: transparent;
  color: var(--gdcc-primary-foreground);
}
.gdcc-btn-outline-light:hover { background: color-mix(in oklab, var(--gdcc-primary-foreground) 10%, transparent); }
.gdcc-btn-ghost { background: transparent; color: var(--gdcc-foreground); }
.gdcc-btn-ghost:hover { background: var(--gdcc-muted); }

/* ============================ HEADER ============================ */
.gdcc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--gdcc-border) 60%, transparent);
  background: color-mix(in oklab, var(--gdcc-background) 80%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gdcc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.gdcc-logo img { height: 2.75rem; width: auto; }
.gdcc-nav { display: none; align-items: center; gap: 0.25rem; }
.gdcc-nav-item { position: relative; }
.gdcc-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gdcc-muted-foreground);
  transition: color 0.2s;
}
.gdcc-nav-link:hover,
.gdcc-nav-item.current-menu-item > .gdcc-nav-link,
.gdcc-nav-item.current-menu-parent > .gdcc-nav-link { color: var(--gdcc-foreground); }
.gdcc-nav-chevron { width: 0.875rem; height: 0.875rem; }
.gdcc-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 16rem;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s;
}
.gdcc-nav-item:hover .gdcc-dropdown,
.gdcc-nav-item:focus-within .gdcc-dropdown { opacity: 1; visibility: visible; }
.gdcc-dropdown-inner {
  overflow: hidden;
  border-radius: var(--gdcc-radius);
  border: 1px solid var(--gdcc-border);
  background: var(--gdcc-card);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.gdcc-dropdown-inner a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--gdcc-muted-foreground);
  transition: background-color 0.15s, color 0.15s;
}
.gdcc-dropdown-inner a:hover { background: var(--gdcc-muted); color: var(--gdcc-foreground); }
.gdcc-header-cta { display: none; align-items: center; gap: 0.5rem; }
.gdcc-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--gdcc-foreground);
  cursor: pointer;
  border-radius: 0.375rem;
}
.gdcc-menu-btn svg { width: 1.25rem; height: 1.25rem; }
.gdcc-mobile-nav { display: none; border-top: 1px solid color-mix(in oklab, var(--gdcc-border) 60%, transparent); background: var(--gdcc-background); }
.gdcc-mobile-nav.is-open { display: block; }
.gdcc-mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 1.5rem; }
.gdcc-mobile-link {
  display: block;
  border-radius: 0.375rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gdcc-foreground);
}
.gdcc-mobile-link:hover { background: var(--gdcc-muted); }
.gdcc-mobile-sublink {
  display: block;
  border-radius: 0.375rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gdcc-muted-foreground);
}
.gdcc-mobile-sublink:hover { background: var(--gdcc-muted); color: var(--gdcc-foreground); }
@media (min-width: 1024px) {
  .gdcc-nav { display: flex; }
  .gdcc-header-cta { display: flex; }
  .gdcc-menu-btn { display: none; }
  .gdcc-mobile-nav { display: none !important; }
}

/* ============================ HERO ============================ */
.gdcc-hero { position: relative; overflow: hidden; background: var(--gdcc-primary); color: var(--gdcc-primary-foreground); }
.gdcc-hero-bg { position: absolute; inset: 0; }
.gdcc-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right; }
.gdcc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    var(--gdcc-primary),
    color-mix(in oklab, var(--gdcc-primary) 85%, transparent),
    color-mix(in oklab, var(--gdcc-primary) 20%, transparent)
  );
}
.gdcc-hero-inner { position: relative; padding-top: 6rem; padding-bottom: 6rem; }
.gdcc-hero-content { max-width: 48rem; }
.gdcc-badge {
  display: inline-flex; align-items: center;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--gdcc-primary-foreground) 20%, transparent);
  background: color-mix(in oklab, var(--gdcc-primary-foreground) 5%, transparent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: color-mix(in oklab, var(--gdcc-primary-foreground) 80%, transparent);
}
.gdcc-hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
}
.gdcc-hero h1 .accent { color: var(--gdcc-accent); }
.gdcc-hero p {
  margin-top: 1.5rem; max-width: 36rem;
  font-size: 1.125rem; line-height: 1.7; color: color-mix(in oklab, var(--gdcc-primary-foreground) 80%, transparent);
}
.gdcc-hero-actions { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) {
  .gdcc-hero h1 { font-size: 3rem; }
  .gdcc-hero-actions { flex-direction: row; }
}
@media (min-width: 1024px) {
  .gdcc-hero-inner { padding-top: 8rem; padding-bottom: 8rem; }
  .gdcc-hero h1 { font-size: 3.75rem; }
}

/* ============================ STATS ============================ */
.gdcc-stats { border-bottom: 1px solid var(--gdcc-border); background: var(--gdcc-background); padding: 3.5rem 0; }
.gdcc-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.gdcc-stat { text-align: center; }
.gdcc-stat-value { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--gdcc-primary); }
.gdcc-stat-label { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--gdcc-muted-foreground); }
@media (min-width: 640px) { .gdcc-stat { text-align: left; } }
@media (min-width: 1024px) { .gdcc-stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================ SECTION SHELL ============================ */
.gdcc-section { padding: 5rem 0; }
@media (min-width: 1024px) { .gdcc-section { padding: 7rem 0; } }
.gdcc-section-head { max-width: 42rem; }
.gdcc-section-head h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; color: var(--gdcc-foreground);
}
.gdcc-section-head p { margin-top: 1rem; font-size: 1.125rem; line-height: 1.7; color: var(--gdcc-muted-foreground); }
@media (min-width: 640px) { .gdcc-section-head h2 { font-size: 2.25rem; } }

/* ============================ SERVICES ============================ */
.gdcc-bg-white { background: var(--gdcc-background); }
.gdcc-cards { margin-top: 3.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .gdcc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gdcc-cards { grid-template-columns: repeat(3, 1fr); } }
.gdcc-service-card {
  display: flex; flex-direction: column;
  border-radius: 0.75rem;
  border: 1px solid var(--gdcc-border);
  background: var(--gdcc-card);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gdcc-service-card:hover { border-color: color-mix(in oklab, var(--gdcc-accent) 50%, transparent); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.gdcc-icon-badge {
  display: flex; align-items: center; justify-content: center;
  height: 3rem; width: 3rem;
  border-radius: 0.5rem;
  background: var(--gdcc-secondary);
  color: var(--gdcc-primary);
  transition: background-color 0.2s, color 0.2s;
}
.gdcc-service-card:hover .gdcc-icon-badge { background: var(--gdcc-accent); color: var(--gdcc-accent-foreground); }
.gdcc-service-card h3 {
  margin-top: 1.5rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem;
  font-size: 1.25rem; font-weight: 600; color: var(--gdcc-card-foreground);
}
.gdcc-service-card h3 svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--gdcc-muted-foreground); transition: color 0.2s; }
.gdcc-service-card:hover h3 svg { color: var(--gdcc-accent); }
.gdcc-service-card > p { margin-top: 0.75rem; line-height: 1.7; color: var(--gdcc-muted-foreground); }
.gdcc-service-points { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; border-top: 1px solid var(--gdcc-border); padding-top: 1.5rem; }
.gdcc-service-points li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gdcc-foreground); }
.gdcc-dot { height: 0.375rem; width: 0.375rem; border-radius: 9999px; background: var(--gdcc-accent); flex-shrink: 0; }

/* ============================ COVERAGE (dark) ============================ */
.gdcc-coverage { position: relative; overflow: hidden; background: var(--gdcc-primary); color: var(--gdcc-primary-foreground); padding: 5rem 0; }
@media (min-width: 1024px) { .gdcc-coverage { padding: 7rem 0; } }
.gdcc-coverage-bg { pointer-events: none; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.12; mix-blend-mode: screen; }
.gdcc-coverage-bg img { width: 100%; max-width: 64rem; object-fit: contain; }
.gdcc-coverage-grid { position: relative; display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .gdcc-coverage-grid { grid-template-columns: repeat(2, 1fr); } }
.gdcc-coverage-eyebrow { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gdcc-accent); }
.gdcc-coverage h2 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; }
.gdcc-coverage-lead { margin-top: 1rem; font-size: 1.125rem; line-height: 1.7; color: color-mix(in oklab, var(--gdcc-primary-foreground) 80%, transparent); }
@media (min-width: 640px) { .gdcc-coverage h2 { font-size: 2.25rem; } }
.gdcc-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.gdcc-feature { display: flex; gap: 1rem; }
.gdcc-feature-icon {
  display: flex; align-items: center; justify-content: center;
  height: 2.75rem; width: 2.75rem; flex-shrink: 0;
  border-radius: 0.5rem; background: color-mix(in oklab, var(--gdcc-primary-foreground) 10%, transparent); color: var(--gdcc-accent);
}
.gdcc-feature-icon svg { width: 1.25rem; height: 1.25rem; }
.gdcc-feature h3 { font-weight: 600; }
.gdcc-feature p { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in oklab, var(--gdcc-primary-foreground) 70%, transparent); }
.gdcc-coverage-link { margin-top: 2.5rem; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: var(--gdcc-radius); background: var(--gdcc-accent); padding: 0.75rem 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--gdcc-accent-foreground); transition: background-color 0.2s; }
.gdcc-coverage-link:hover { background: color-mix(in oklab, var(--gdcc-accent) 90%, transparent); }
.gdcc-regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gdcc-region { border-radius: 0.75rem; border: 1px solid color-mix(in oklab, var(--gdcc-primary-foreground) 15%, transparent); background: color-mix(in oklab, var(--gdcc-primary-foreground) 5%, transparent); padding: 1.5rem; }
.gdcc-region-value { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; color: var(--gdcc-accent); }
.gdcc-region-label { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 500; color: color-mix(in oklab, var(--gdcc-primary-foreground) 80%, transparent); }

/* ============================ WHY GDCC ============================ */
.gdcc-why-grid { margin-top: 3.5rem; display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .gdcc-why-grid { grid-template-columns: 1fr 1.1fr; } }
.gdcc-why-image { overflow: hidden; border-radius: 1rem; }
.gdcc-why-image img { width: 100%; height: 100%; object-fit: cover; }
.gdcc-why-cards { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .gdcc-why-cards { grid-template-columns: repeat(2, 1fr); } }
.gdcc-why-card { display: flex; flex-direction: column; gap: 0.75rem; border-radius: 0.75rem; border: 1px solid var(--gdcc-border); background: var(--gdcc-card); padding: 1.5rem; }
.gdcc-why-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--gdcc-card-foreground); }
.gdcc-why-card p { margin-top: 0.5rem; line-height: 1.7; color: var(--gdcc-muted-foreground); }

/* ============================ MARKETS ============================ */
.gdcc-bg-secondary { background: var(--gdcc-secondary); }
.gdcc-market-hero {
  margin-top: 3.5rem; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 1rem; border: 1px solid var(--gdcc-border); background: var(--gdcc-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gdcc-market-hero:hover { border-color: color-mix(in oklab, var(--gdcc-accent) 50%, transparent); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.gdcc-market-media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.gdcc-market-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gdcc-market-hero:hover .gdcc-market-media img, .gdcc-market-card:hover .gdcc-market-media img { transform: scale(1.05); }
.gdcc-market-media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in oklab, var(--gdcc-primary) 70%, transparent), transparent); }
.gdcc-market-pin { position: absolute; bottom: 1rem; left: 1.25rem; display: flex; align-items: center; gap: 0.5rem; color: var(--gdcc-primary-foreground); }
.gdcc-market-pin svg { width: 1rem; height: 1rem; }
.gdcc-market-pin span { font-size: 0.875rem; font-weight: 500; }
.gdcc-market-tag { position: absolute; top: 1rem; left: 1.25rem; border-radius: 9999px; background: var(--gdcc-accent); padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gdcc-accent-foreground); }
.gdcc-market-body { display: flex; flex: 1; flex-direction: column; padding: 2rem; }
.gdcc-market-body h3 { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; font-size: 1.5rem; font-weight: 600; color: var(--gdcc-card-foreground); }
.gdcc-market-body h3 svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--gdcc-muted-foreground); transition: color 0.2s; }
.gdcc-market-hero:hover h3 svg, .gdcc-market-card:hover h3 svg { color: var(--gdcc-accent); }
.gdcc-market-body p { margin-top: 1rem; flex: 1; line-height: 1.7; color: var(--gdcc-muted-foreground); }
.gdcc-market-cta { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--gdcc-accent); }
.gdcc-market-cta svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.gdcc-market-hero:hover .gdcc-market-cta svg, .gdcc-market-card:hover .gdcc-market-cta svg { transform: translateX(0.25rem); }
.gdcc-markets-grid { margin-top: 2rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .gdcc-markets-grid { grid-template-columns: repeat(2, 1fr); } }
.gdcc-market-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 1rem; border: 1px solid var(--gdcc-border); background: var(--gdcc-card); transition: border-color 0.2s, box-shadow 0.2s; }
.gdcc-market-card:hover { border-color: color-mix(in oklab, var(--gdcc-accent) 50%, transparent); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.gdcc-market-card h3 { font-size: 1.25rem; }
@media (min-width: 1024px) {
  .gdcc-market-hero { flex-direction: row; }
  .gdcc-market-hero .gdcc-market-media { aspect-ratio: auto; width: 50%; }
  .gdcc-market-hero .gdcc-market-body { padding: 2.5rem; }
}

/* ============================ CASE STUDIES ============================ */
.gdcc-cases-head { display: flex; flex-direction: column; gap: 1rem; }
.gdcc-cases-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--gdcc-accent); transition: color 0.2s; }
.gdcc-cases-link:hover { color: color-mix(in oklab, var(--gdcc-accent) 90%, transparent); }
.gdcc-cases-link svg { width: 1rem; height: 1rem; }
.gdcc-case-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--gdcc-border); background: var(--gdcc-card); transition: border-color 0.2s, box-shadow 0.2s; }
.gdcc-case-card:hover { border-color: color-mix(in oklab, var(--gdcc-accent) 50%, transparent); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.gdcc-case-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.gdcc-case-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gdcc-case-card:hover .gdcc-case-media img { transform: scale(1.05); }
.gdcc-case-tag { position: absolute; top: 1rem; left: 1rem; border-radius: 9999px; background: color-mix(in oklab, #ffffff 90%, transparent); padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; color: var(--gdcc-foreground); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.gdcc-case-body { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; }
.gdcc-case-metric { font-size: 0.875rem; font-weight: 600; color: var(--gdcc-accent); }
.gdcc-case-body h3 { margin-top: 0.5rem; font-size: 1.125rem; font-weight: 600; color: var(--gdcc-card-foreground); }
.gdcc-case-body p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--gdcc-muted-foreground); }
@media (min-width: 640px) { .gdcc-cases-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
@media (min-width: 1024px) { .gdcc-cases-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================ CTA ============================ */
.gdcc-cta-wrap { position: relative; overflow: hidden; border-radius: 1rem; background: var(--gdcc-primary); color: var(--gdcc-primary-foreground); padding: 3.5rem 2rem; }
.gdcc-cta-bg { position: absolute; inset: 0; }
.gdcc-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.gdcc-cta-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--gdcc-primary), color-mix(in oklab, var(--gdcc-primary) 95%, transparent), color-mix(in oklab, var(--gdcc-primary) 60%, transparent)); }
.gdcc-cta-content { position: relative; max-width: 42rem; }
.gdcc-cta-content h2 { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; }
.gdcc-cta-content p { margin-top: 1rem; font-size: 1.125rem; line-height: 1.7; color: color-mix(in oklab, var(--gdcc-primary-foreground) 80%, transparent); }
.gdcc-cta-content .gdcc-btn { margin-top: 2rem; }
@media (min-width: 640px) { .gdcc-cta-wrap { padding: 3.5rem; } .gdcc-cta-content h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .gdcc-cta-wrap { padding-top: 5rem; padding-bottom: 5rem; } }

/* ============================ FOOTER ============================ */
.gdcc-footer { background: var(--gdcc-primary); color: var(--gdcc-primary-foreground); }
.gdcc-footer-inner { padding: 4rem 0; }
.gdcc-footer-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .gdcc-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.gdcc-footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.gdcc-footer-logo { display: flex; align-items: center; justify-content: center; height: 2rem; width: 2rem; border-radius: var(--gdcc-radius); background: var(--gdcc-accent); color: var(--gdcc-accent-foreground); }
.gdcc-footer-logo svg { width: 1.25rem; height: 1.25rem; }
.gdcc-footer-brand-name { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
.gdcc-footer-desc { margin-top: 1rem; max-width: 20rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in oklab, var(--gdcc-primary-foreground) 70%, transparent); }
.gdcc-footer-cta { margin-top: 1.5rem; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--gdcc-radius); background: var(--gdcc-accent); padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; color: var(--gdcc-accent-foreground); transition: background-color 0.2s; }
.gdcc-footer-cta:hover { background: color-mix(in oklab, var(--gdcc-accent) 90%, transparent); }
.gdcc-footer-col h3 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: color-mix(in oklab, var(--gdcc-primary-foreground) 60%, transparent); }
.gdcc-footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.gdcc-footer-col a { font-size: 0.875rem; color: color-mix(in oklab, var(--gdcc-primary-foreground) 80%, transparent); transition: color 0.2s; }
.gdcc-footer-col a:hover { color: var(--gdcc-primary-foreground); }
.gdcc-footer-bottom { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; border-top: 1px solid color-mix(in oklab, var(--gdcc-primary-foreground) 15%, transparent); padding-top: 2rem; }
.gdcc-footer-bottom p { font-size: 0.875rem; color: color-mix(in oklab, var(--gdcc-primary-foreground) 60%, transparent); }
.gdcc-footer-legal { display: flex; gap: 1.5rem; font-size: 0.875rem; }
.gdcc-footer-legal a { color: color-mix(in oklab, var(--gdcc-primary-foreground) 60%, transparent); transition: color 0.2s; }
.gdcc-footer-legal a:hover { color: var(--gdcc-primary-foreground); }
@media (min-width: 640px) { .gdcc-footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ============================ STICKY CTA ============================ */
.gdcc-sticky-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; background: var(--gdcc-accent);
  padding: 0.75rem 1.25rem; font-size: 0.875rem; font-weight: 600;
  color: var(--gdcc-accent-foreground);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s, opacity 0.3s, transform 0.3s;
  opacity: 0; transform: translateY(1rem); pointer-events: none;
}
.gdcc-sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.gdcc-sticky-cta:hover { background: color-mix(in oklab, var(--gdcc-accent) 90%, transparent); }
.gdcc-sticky-cta svg { width: 1rem; height: 1rem; }
