:root {
  --gcd-bg: #060911;
  --gcd-bg-alt: #0a0e1a;
  --gcd-card-bg: rgba(14, 21, 37, 0.65);
  --gcd-card-hover: rgba(22, 33, 58, 0.75);
  --gcd-border: rgba(255, 255, 255, 0.08);
  --gcd-border-hover: rgba(37, 99, 235, 0.45);
  --gcd-primary: #2563eb;
  --gcd-secondary: #3b82f6;
  --gcd-accent-green: #22c55e;
  --gcd-text: #ffffff;
  --gcd-muted: #94a3b8;
  --gcd-muted-2: #cbd5e1;
  --gcd-container: 1200px;
  --gcd-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  --gcd-transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--gcd-text);
  background-color: var(--gcd-bg);
  background-image:
    radial-gradient(circle at 14% 12%, rgba(37, 99, 235, 0.22), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(34, 197, 94, 0.16), transparent 38%),
    linear-gradient(180deg, #060911 0%, #03050a 100%);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
}

/* Ambient Glowing Background Orbs */
.gcd-bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.28;
  animation: gcdOrbFloat 14s ease-in-out infinite alternate;
}

.gcd-orb-1 {
  top: 10%;
  left: -100px;
  width: 420px;
  height: 420px;
  background: var(--gcd-primary);
}

.gcd-orb-2 {
  top: 40%;
  right: -120px;
  width: 500px;
  height: 500px;
  background: var(--gcd-secondary);
  animation-delay: -5s;
}

.gcd-orb-3 {
  bottom: 10%;
  left: 20%;
  width: 380px;
  height: 380px;
  background: rgba(16, 185, 129, 0.4);
  animation-delay: -8s;
}

@keyframes gcdOrbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.gcd-container {
  width: 100%;
  max-width: var(--gcd-container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.gcd-section {
  padding: 100px 0;
  position: relative;
}

.gcd-section-head {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}

.gcd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.gcd-section-title {
  font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 14px;
}

.gcd-section-title .gcd-accent,
.gcd-hero-title .gcd-accent {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gcd-section-sub {
  color: var(--gcd-muted);
  font-size: 15px;
  max-width: 660px;
  margin: 0 auto;
}

.gcd-glass {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--gcd-border);
  background: var(--gcd-card-bg);
  backdrop-filter: blur(18px);
  box-shadow: var(--gcd-shadow);
  transition: var(--gcd-transition);
}

.gcd-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 0%, rgba(139, 92, 246, 0.12), transparent 40%);
  opacity: 0.8;
}

.gcd-glass > * {
  position: relative;
  z-index: 2;
}

/* Buttons & Glow Pulse */
.gcd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--gcd-transition);
}

.gcd-btn-primary {
  background: linear-gradient(135deg, var(--gcd-primary), var(--gcd-secondary));
  color: #fff;
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.35);
}

.gcd-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 46px rgba(99, 102, 241, 0.55);
  border-color: rgba(255, 255, 255, 0.2);
}

.gcd-pulse-glow {
  animation: gcdButtonGlow 3.5s infinite alternate;
}

@keyframes gcdButtonGlow {
  0% { box-shadow: 0 14px 32px rgba(99, 102, 241, 0.35); }
  50% { box-shadow: 0 18px 42px rgba(139, 92, 246, 0.6); }
  100% { box-shadow: 0 14px 32px rgba(99, 102, 241, 0.35); }
}

.gcd-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.gcd-btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Header & Nav */
.gcd-header {
  position: fixed !important;
  top: 14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 48px) !important;
  max-width: 1220px !important;
  z-index: 99999 !important;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 10, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.gcd-nav-wrap {
  min-height: 78px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.gcd-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.gcd-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcd-nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--gcd-muted-2);
  font-size: 13px;
  font-weight: 600;
  transition: var(--gcd-transition);
}

.gcd-nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.gcd-nav-links a.gcd-nav-active {
  color: #fff !important;
  background: var(--gcd-primary) !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
  font-weight: 700;
  border-radius: 999px;
}

.gcd-nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gcd-nav-socials {
  display: flex;
  gap: 8px;
}

.gcd-nav-socials a,
.gcd-social-icon-row a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: var(--gcd-transition);
}

.gcd-nav-socials a:hover,
.gcd-social-icon-row a:hover {
  transform: translateY(-2px);
  background: rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.4);
  color: #fff;
}

.gcd-menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  cursor: pointer;
}

/* Hero Section */
.gcd-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.gcd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 50px;
}

.gcd-hero-copy {
  margin-top: 20px;
}

.gcd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.22);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gcd-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gcd-accent-green);
  box-shadow: 0 0 12px var(--gcd-accent-green);
  animation: gcdPulseAnim 2s infinite;
}

@keyframes gcdPulseAnim {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.gcd-hero-title {
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.gcd-hero-desc {
  margin-top: 20px;
  color: var(--gcd-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.gcd-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gcd-hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: var(--gcd-muted-2);
}

.gcd-hero-tags i {
  color: var(--gcd-accent-green);
}

.gcd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gcd-hero-actions .gcd-btn {
  padding: 11px 20px;
  font-size: 13.5px;
}

.gcd-hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  color: var(--gcd-muted);
  font-size: 13px;
}

.gcd-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gcd-trust-item i {
  color: var(--gcd-secondary);
}

.gcd-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

/* ─── Profile Card — matches target site exactly ─────────────────── */
.gcd-hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* allows pills to float outside */
}

.gcd-profile-stage {
  position: relative;
  width: min(430px, 100%);
  padding: 18px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 38px 100px rgba(0,0,0,0.58);
  backdrop-filter: blur(20px);
}

/* Outer subtle glow ring */
.gcd-profile-stage::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
  z-index: 0;
}

/* Main card float — 7s exactly like target */
.gcd-float-loop {
  animation: gcdProfileFloat 7s ease-in-out infinite;
}

@keyframes gcdProfileFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

/* Profile photo */
.gcd-profile-photo {
  border-radius: 31px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}

.gcd-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Profile name / role row */
.gcd-profile-info {
  padding: 18px 4px 5px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.gcd-profile-info h3 {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 5px;
  text-align: left;
}

.gcd-profile-info p {
  color: var(--gcd-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.gcd-profile-logo-mini {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 6px;
}

.gcd-profile-logo-mini img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ─── Floating Pills — absolutely outside the card ───────────────── */
.gcd-floating-pill {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 7, 11, 0.80);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.gcd-floating-pill i {
  font-size: 14px;
  min-width: 16px;
  text-align: center;
  display: inline-block;
}

/* Pill One: top-right outside card */
.gcd-pill-one {
  top: 35px;
  right: -36px;
  animation: gcdSmallFloat 6s ease-in-out infinite;
}

.gcd-pill-one i {
  color: var(--gcd-accent-green, #10b981);
}

/* Pill Two: bottom-right outside card (YouTube) */
.gcd-pill-two {
  top: 240px;
  right: -42px;
  animation: gcdSmallFloat 8s ease-in-out infinite reverse;
  border-color: rgba(255, 0, 0, 0.22);
}

.gcd-pill-two i,
.gcd-hero-visual .fa-youtube {
  color: #FF0000 !important;
}

/* Pill Three: bottom-left outside card (Meta Ads) */
.gcd-pill-three {
  bottom: 110px;
  left: -42px;
  animation: gcdSmallFloat 7s ease-in-out infinite;
  border-color: rgba(6, 104, 225, 0.22);
}

.gcd-pill-three i,
.gcd-hero-visual .fa-meta {
  color: #0668E1 !important;
}

@keyframes gcdSmallFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── Bottom proof-row stats bar ─────────────────────────────────── */
.gcd-hero-proof-row {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  width: min(360px, 90%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(8, 7, 11, 0.82);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.36);
  z-index: 4;
}

.gcd-hero-proof-row span {
  text-align: center;
  color: var(--gcd-muted);
  font-size: 11px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gcd-hero-proof-row strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: block;
}

/* Marquee */
.gcd-marquee-strip {
  padding: 22px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gcd-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: gcdMarqueeAnim 24s linear infinite;
}

.gcd-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--gcd-muted-2);
}

.gcd-marquee-item i {
  color: var(--gcd-primary);
}

@keyframes gcdMarqueeAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Metrics Grid */
.gcd-metrics-grid,
.gcd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gcd-metric-card,
.gcd-service-card {
  padding: 30px 24px;
}

.gcd-metric-card:hover,
.gcd-service-card:hover,
.gcd-workflow-step:hover,
.gcd-compare-box:hover,
.gcd-reviews-summary-card:hover,
.gcd-featured-testimonial:hover,
.gcd-review-item:hover,
.gcd-portfolio-featured:hover,
.gcd-portfolio-item:hover {
  transform: translateY(-6px);
  border-color: var(--gcd-border-hover);
  background: var(--gcd-card-hover);
}

.gcd-icon-box,
.gcd-service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #c7d2fe;
  font-size: 20px;
  margin-bottom: 20px;
}

.gcd-pulse-icon {
  animation: gcdIconPulse 4s ease-in-out infinite;
}

@keyframes gcdIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); border-color: rgba(139, 92, 246, 0.5); }
}

.gcd-metric-num {
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gcd-metric-card h3,
.gcd-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gcd-metric-card p,
.gcd-service-card p {
  color: var(--gcd-muted);
  font-size: 14px;
}

.gcd-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.22);
  color: #c7d2fe;
  font-size: 11px;
  font-weight: 700;
}

/* Portfolio Showcase */
.gcd-portfolio-bg {
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.14), transparent 45%);
}

.gcd-portfolio-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.gcd-portfolio-layout.gcd-portfolio-single {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}

.gcd-portfolio-single .gcd-portfolio-featured {
  position: relative;
  top: 0;
}

.gcd-portfolio-featured {
  padding: 18px;
  cursor: zoom-in;
  position: sticky;
  top: 110px;
  align-self: start;
}

.gcd-featured-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcd-featured-info {
  padding: 18px 4px 4px;
}

.gcd-featured-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.gcd-featured-info p {
  color: var(--gcd-muted);
  font-size: 14px;
}

.gcd-zoom-badge,
.gcd-view-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 700;
}

.gcd-portfolio-subgrid {
  display: grid;
  gap: 16px;
  max-height: 680px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Custom Scrollbar for Subgrid */
.gcd-portfolio-subgrid::-webkit-scrollbar {
  width: 6px;
}

.gcd-portfolio-subgrid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 99px;
}

.gcd-portfolio-subgrid::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.4);
  border-radius: 99px;
}

.gcd-portfolio-subgrid::-webkit-scrollbar-thumb:hover {
  background: var(--gcd-primary);
}


.gcd-portfolio-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px;
  align-items: center;
  cursor: zoom-in;
}

.gcd-thumb-wrap {
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
}

.gcd-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gcd-thumb-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gcd-thumb-text p {
  font-size: 13px;
  color: var(--gcd-muted);
}

/* Workflow Steps */
.gcd-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gcd-workflow-step {
  padding: 26px 20px;
}

.gcd-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.gcd-step-num {
  font-size: 13px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #c7d2fe;
}

.gcd-step-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--gcd-primary);
  font-size: 18px;
}

.gcd-workflow-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gcd-workflow-step p {
  color: var(--gcd-muted);
  font-size: 13.5px;
}

/* ─── Comparison Section — exact target match ─────────────────────── */
.gcd-comparison-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Center VS badge */
.gcd-compare-vs {
  width: 58px;
  height: 58px;
  align-self: center;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gcd-secondary), var(--gcd-primary));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.35);
  z-index: 3;
  flex-shrink: 0;
}

/* Both cards */
.gcd-compare-card {
  padding: 34px 30px;
  min-height: 470px;
  transition: var(--gcd-transition);
}

.gcd-compare-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Featured (left — green/positive) */
.gcd-compare-card.gcd-featured {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.03));
}

/* Secondary (right — dimmed) */
.gcd-compare-card.gcd-secondary {
  opacity: 0.86;
}

/* Card header row */
.gcd-compare-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.gcd-compare-top h3 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gcd-compare-top p {
  color: var(--gcd-muted);
  font-size: 13px;
  margin-top: 2px;
}

/* Circular icon badge */
.gcd-compare-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 16px;
}

.gcd-compare-icon-good {
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c7d2fe;
}

.gcd-compare-icon-bad {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

/* Feature list */
.gcd-compare-list {
  list-style: none;
  display: grid;
  gap: 15px;
}

.gcd-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gcd-muted-2);
  font-size: 14px;
}

/* Good list icons — circular green badge */
.gcd-compare-list i {
  width: 21px;
  height: 21px;
  min-width: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07070a;
  background: var(--gcd-accent-green);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Bad list icons — muted circle */
.gcd-list-bad i {
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

/* Bonus box (dashed purple) */
.gcd-bonus-box {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.gcd-bonus-box > strong {
  display: block;
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}


/* ─── Reviews Single-Card Slider ─────────────────────────────── */
/* ─── Reviews Single-Card Slider ─────────────────────────────── */
.gcd-reviews-bg {
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.12), transparent 45%);
  padding-bottom: 60px !important;
}

/* Outer wrapper: prev btn + viewport + next btn */
.gcd-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 24px auto 0;
  max-width: 960px;
}

/* Clipping viewport — shows 1 slide at a time */
.gcd-slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(20, 19, 28, 0.95) 0%, rgba(12, 11, 17, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

/* Sliding track */
.gcd-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Each card — fixed height container so different image sizes fit cleanly without jumping! */
.gcd-slider-item {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 520px;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  position: relative;
}

.gcd-slider-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gcd-slider-item:hover img {
  transform: scale(1.02);
  box-shadow: 0 22px 60px rgba(99, 102, 241, 0.3);
}

/* Prev / Next buttons */
.gcd-slider-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 16px;
  transition: var(--gcd-transition);
  z-index: 5;
}

.gcd-slider-btn:hover {
  background: var(--gcd-primary);
  border-color: var(--gcd-primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.45);
  transform: scale(1.1);
}

/* Controls Bar & Counter */
.gcd-slider-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.gcd-slider-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
}

.gcd-slider-counter span {
  color: var(--gcd-primary, #6366f1);
  font-weight: 800;
}

/* Dot indicators */
.gcd-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.gcd-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gcd-slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.gcd-slider-dot.gcd-dot-active {
  background: var(--gcd-primary);
  width: 28px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
}

/* ── Featured Fiverr Proof Banner ── */
.gcd-fiverr-featured-box {
  max-width: 960px;
  margin: 0 auto 36px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 28, 22, 0.95) 0%, rgba(12, 16, 14, 0.98) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gcd-fiverr-featured-box:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 28px 75px rgba(16, 185, 129, 0.28);
}

.gcd-fiverr-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gcd-fiverr-featured-badge i {
  color: #10b981;
}

.gcd-fiverr-featured-img-wrap {
  position: relative;
  width: 100%;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 18px;
  overflow: hidden;
  padding: 16px;
}

.gcd-fiverr-featured-img-wrap img {
  max-width: 100%;
  max-height: 440px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.gcd-fiverr-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gcd-fiverr-featured-box:hover .gcd-fiverr-zoom-overlay {
  opacity: 1;
}

.gcd-fiverr-zoom-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

/* ── All Reviews Gallery Grid ── */
.gcd-reviews-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gcd-review-grid-card {
  padding: 14px;
  border-radius: 20px;
  background: rgba(20, 19, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.gcd-review-grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 18px 45px rgba(99, 102, 241, 0.2);
  background: rgba(28, 26, 40, 0.95);
}

.gcd-review-img-holder {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 14px;
  overflow: hidden;
  padding: 10px;
}

.gcd-review-img-holder img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.35s ease;
}

.gcd-review-grid-card:hover .gcd-review-img-holder img {
  transform: scale(1.05);
}

.gcd-review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gcd-muted);
}

.gcd-review-card-footer i {
  color: var(--gcd-primary);
  font-size: 13px;
}

@media (max-width: 992px) {
  .gcd-reviews-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gcd-slider-item {
    height: 380px;
    padding: 14px;
  }

  .gcd-reviews-masonry-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gcd-slider-wrapper {
    gap: 10px;
  }

  .gcd-slider-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .gcd-slider-item {
    padding: 10px;
  }

  .gcd-slider-item img {
    max-height: 380px;
  }
}



/* Pricing Grid */
.gcd-pricing-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.gcd-category-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcd-category-toggle button {
  border: 0;
  background: transparent;
  color: var(--gcd-muted);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--gcd-transition);
}

.gcd-category-toggle button.gcd-active {
  background: linear-gradient(135deg, var(--gcd-primary), var(--gcd-secondary));
  color: #fff;
}

.gcd-billing-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gcd-muted);
  font-size: 13px;
  font-weight: 600;
}

.gcd-save-badge {
  color: var(--gcd-accent-green);
  font-weight: 700;
}

.gcd-toggle-switch {
  position: relative;
  width: 50px;
  height: 28px;
}

.gcd-toggle-switch input {
  display: none;
}

.gcd-slider-pill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: var(--gcd-transition);
}

.gcd-slider-pill::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #fff;
  transition: var(--gcd-transition);
}

.gcd-toggle-switch input:checked + .gcd-slider-pill {
  background: var(--gcd-primary);
}

.gcd-toggle-switch input:checked + .gcd-slider-pill::before {
  transform: translateX(22px);
}

.gcd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px;
  align-items: stretch;
}

.gcd-pricing-card {
  padding: 34px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible !important;
  background: linear-gradient(180deg, rgba(24, 23, 33, 0.95) 0%, rgba(14, 13, 19, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gcd-pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.gcd-pricing-card.gcd-featured {
  border-color: rgba(139, 92, 246, 0.35);
  background: linear-gradient(180deg, rgba(29, 26, 45, 0.98) 0%, rgba(14, 13, 20, 0.98) 100%);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.2);
}

.gcd-featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 6px 20px;
  border-radius: 999px;
  background: #b6f332;
  color: #0b0f02;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(182, 243, 50, 0.45);
  border: none;
  pointer-events: none;
}

.gcd-plan-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}

.gcd-plan-header-top h3,
.gcd-pricing-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.025em;
}

.gcd-plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11.5px;
  font-weight: 600;
  flex-shrink: 0;
}

.gcd-plan-desc {
  color: #94a3b8;
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 42px;
}

.gcd-plan-price-wrap {
  margin-bottom: 22px;
}

.gcd-old-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

.gcd-price-num {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.035em;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.gcd-price-period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.gcd-plan-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  margin-bottom: 28px;
  box-sizing: border-box;
  cursor: pointer;
}

.gcd-plan-btn-default {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.gcd-plan-btn-default:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.gcd-plan-btn-featured {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.45);
}

.gcd-plan-btn-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

.gcd-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.gcd-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  line-height: 1.5;
}

.gcd-plan-features li i {
  color: #22c55e;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Booking Section */
.gcd-booking-box {
  padding: 44px 30px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.2), transparent 50%), var(--gcd-card-bg);
}

.gcd-booking-content {
  max-width: 680px;
  margin: 0 auto;
}

.gcd-booking-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 14px 0 16px;
}

.gcd-booking-content p {
  color: var(--gcd-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

.gcd-cta-button-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* FAQ Accordion */
.gcd-faq-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.gcd-faq-sidebar {
  padding: 30px;
  position: sticky;
  top: 110px;
}

.gcd-faq-sidebar h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.gcd-faq-sidebar p {
  color: var(--gcd-muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.gcd-faq-list {
  display: grid;
  gap: 16px;
}

.gcd-faq-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: var(--gcd-transition);
}


.gcd-faq-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.gcd-faq-card.gcd-active {
  background: rgba(12, 12, 18, 0.95);
  border-color: rgba(99, 102, 241, 0.3);
}

.gcd-faq-header {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.gcd-faq-header i {
  color: var(--gcd-muted);
  transition: var(--gcd-transition);
  flex-shrink: 0;
}

.gcd-faq-card.gcd-active .gcd-faq-header i {
  transform: rotate(180deg);
  color: #fff;
}

.gcd-faq-body {
  max-height: 0;
  overflow: hidden;
  color: var(--gcd-muted);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 20px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease, opacity 0.35s ease;
}

.gcd-faq-card.gcd-active .gcd-faq-body {
  max-height: 800px;
  padding: 0 20px 20px;
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════
   PREMIUM FOOTER
═══════════════════════════════════════════════════════════ */
.gcd-footer {
  position: relative;
  overflow: hidden;
  background: #030305;
}

/* ── CTA Band ──────────────────────────────────────────── */
.gcd-footer-cta-band {
  position: relative;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.gcd-footer-cta-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.28) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.gcd-footer-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.gcd-footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gcd-footer-cta-text h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.gcd-footer-cta-text p {
  color: var(--gcd-muted);
  font-size: 15px;
  max-width: 520px;
}

.gcd-footer-gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.gcd-footer-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

/* ── Main Grid ─────────────────────────────────────────── */
.gcd-footer-main {
  padding: 60px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.012);
}

.gcd-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Brand col */
.gcd-footer-logo {
  height: 58px;
  max-height: 65px;
  width: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.gcd-footer-brand-desc {
  color: var(--gcd-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px;
}

.gcd-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gcd-footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: var(--gcd-transition);
}

.gcd-footer-socials a:hover {
  background: rgba(99, 102, 241, 0.22);
  border-color: rgba(99, 102, 241, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

/* Link cols */
.gcd-footer-col-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.gcd-footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.gcd-footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gcd-muted);
  font-size: 14px;
  transition: var(--gcd-transition);
}

.gcd-footer-links a i {
  font-size: 10px;
  color: rgba(99, 102, 241, 0.6);
  transition: var(--gcd-transition);
}

.gcd-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.gcd-footer-links a:hover i {
  color: var(--gcd-primary);
}

/* Contact cards — sleek & minimal */
.gcd-footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gcd-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gcd-muted-2);
  transition: var(--gcd-transition);
  white-space: nowrap;
}

.gcd-footer-contact-item:hover {
  background: rgba(99, 102, 241, 0.14);
  border-color: rgba(99, 102, 241, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.gcd-footer-contact-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.22);
  color: #c7d2fe;
  font-size: 12px;
  flex-shrink: 0;
}


.gcd-footer-contact-item span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.gcd-footer-contact-item small {
  font-size: 11px;
  color: var(--gcd-muted);
}

/* ── Bottom Bar ────────────────────────────────────────── */
.gcd-footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  background: #020204;
}

.gcd-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gcd-footer-copy {
  font-size: 13px;
  color: var(--gcd-muted);
}

.gcd-footer-copy strong {
  color: rgba(255, 255, 255, 0.7);
}

.gcd-footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

/* Scroll to top button */
.gcd-scroll-top {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #c7d2fe;
  cursor: pointer;
  font-size: 13px;
  transition: var(--gcd-transition);
}

.gcd-scroll-top:hover {
  background: var(--gcd-primary);
  border-color: var(--gcd-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.4);
}

/* ── Footer Responsive ─────────────────────────────────── */
@media (max-width: 1120px) {
  .gcd-footer-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gcd-footer-kicker {
    margin: 0 auto 16px;
  }

  .gcd-footer-cta-text p {
    margin: 0 auto;
  }

  .gcd-footer-cta-actions {
    flex-direction: row;
    justify-content: center;
    min-width: auto;
  }

  .gcd-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .gcd-footer-cta-band {
    padding: 52px 0;
  }

  .gcd-footer-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .gcd-footer-cta-actions .gcd-btn {
    width: 100%;
    justify-content: center;
  }

  .gcd-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gcd-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .gcd-footer-tagline {
    order: 3;
  }

  .gcd-scroll-top {
    order: 2;
  }
}


/* Lightbox Modal */
.gcd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
}

.gcd-lightbox.gcd-active {
  display: flex;
}

.gcd-lightbox-content {
  position: relative;
  width: min(1100px, 96vw);
  max-height: 90vh;
  padding: 16px;
  border-radius: 24px;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.gcd-lightbox-close-btn {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: var(--gcd-transition);
}

.gcd-lightbox-close-btn:hover {
  background: var(--gcd-primary);
}

.gcd-lightbox-image-box {
  max-height: calc(90vh - 80px);
  overflow: auto;
  border-radius: 16px;
}

.gcd-lightbox-image-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gcd-lightbox-caption-text {
  padding: 12px 4px 0;
  color: var(--gcd-muted-2);
  font-size: 14px;
}

/* Rich Scroll & Entrance Animations */
.gcd-reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gcd-reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gcd-reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gcd-reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gcd-reveal-up.gcd-show,
.gcd-reveal-left.gcd-show,
.gcd-reveal-right.gcd-show,
.gcd-reveal-zoom.gcd-show {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}



/* Stagger Delays */
.gcd-delay-1 { transition-delay: 0.1s; }
.gcd-delay-2 { transition-delay: 0.2s; }
.gcd-delay-3 { transition-delay: 0.3s; }
.gcd-delay-4 { transition-delay: 0.4s; }
.gcd-delay-5 { transition-delay: 0.5s; }

/* Responsive Queries */
@media (max-width: 1120px) {
  .gcd-header {
    width: calc(100% - 32px) !important;
  }

  .gcd-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .gcd-hero-desc,
  .gcd-hero-tags,
  .gcd-hero-actions,
  .gcd-hero-trust-bar {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .gcd-metrics-grid,
  .gcd-services-grid,
  .gcd-pricing-grid,
  .gcd-workflow-grid {
    grid-template-columns: 1fr;
  }

  .gcd-comparison-wrapper {
    grid-template-columns: 1fr;
  }

  .gcd-compare-vs {
    margin: -2px auto;
    width: 48px;
    height: 48px;
  }

  .gcd-compare-card {
    min-height: auto;
  }

  .gcd-portfolio-layout,
  .gcd-reviews-hero,
  .gcd-faq-wrapper {
    grid-template-columns: 1fr;
  }

  .gcd-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gcd-faq-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 920px) {
  .gcd-header {
    width: calc(100% - 24px) !important;
    top: 10px !important;
  }

  .gcd-nav-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
    min-height: 60px;
    padding: 8px 16px;
  }

  .gcd-brand {
    margin-right: auto;
  }

  .gcd-brand img {
    height: 44px;
  }

  .gcd-nav-links,
  .gcd-nav-actions {
    display: none;
  }

  .gcd-menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .gcd-header.gcd-active {
    border-radius: 24px !important;
    background: rgba(8, 8, 13, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85) !important;
    max-height: 85vh;
    overflow-y: auto;
  }

  .gcd-header.gcd-active .gcd-nav-wrap {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 18px;
  }

  .gcd-header.gcd-active .gcd-nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .gcd-header.gcd-active .gcd-nav-links a {
    text-align: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
  }

  .gcd-header.gcd-active .gcd-nav-actions {
    display: flex;
    width: 100%;
    margin-top: 12px;
  }

  .gcd-header.gcd-active .gcd-nav-actions .gcd-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .gcd-section {
    padding: 60px 0;
  }

  .gcd-section-head {
    margin-bottom: 38px;
  }
}

@media (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
  }

  .gcd-container {
    padding: 0 16px !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .gcd-section {
    padding: 40px 0 !important;
  }

  .gcd-section-head {
    margin-bottom: 24px !important;
  }

  .gcd-badge {
    margin-bottom: 12px;
  }

  .gcd-section-title {
    margin-bottom: 10px;
  }

  .gcd-hero {
    min-height: auto !important;
    padding: 70px 0 20px !important;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .gcd-hero-copy {
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0 10px !important;
    margin-top: 20px !important;
    box-sizing: border-box;
  }

  .gcd-hero-badge {
    margin-bottom: 16px;
    font-size: 11.5px;
    padding: 6px 16px;
  }

  .gcd-hero-title {
    font-size: clamp(28px, 7.5vw, 42px);
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }

  .gcd-hero-desc {
    font-size: 13.5px;
    line-height: 1.65;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    padding: 0 4px;
  }

  .gcd-hero-tags {
    display: none !important;
  }

  .gcd-hero-actions {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }

  .gcd-hero-actions .gcd-btn {
    flex: 1;
    width: auto;
    max-width: none;
    padding: 11px 10px;
    font-size: 12px;
    border-radius: 12px;
    justify-content: center;
    white-space: nowrap;
    gap: 6px;
  }

  .gcd-hero-actions .gcd-btn i {
    font-size: 13px;
  }

  .gcd-hero-trust-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    margin-top: 22px;
  }

  .gcd-trust-divider {
    display: none;
  }

  .gcd-trust-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
  }

  .gcd-hero-visual {
    min-height: auto;
    padding: 16px 0 30px !important;
    max-width: 100%;
    overflow: visible;
  }

  .gcd-profile-stage {
    width: min(310px, 88vw);
    margin: 0 auto;
    padding: 14px 14px 24px;
    border-radius: 28px;
    box-sizing: border-box;
    position: relative;
  }

  .gcd-profile-stage::after {
    display: none;
  }

  /* Safe non-overlapping positioning for floating pills on mobile */
  .gcd-floating-pill {
    font-size: 10.5px;
    padding: 6px 12px;
    max-width: calc(100% - 24px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    z-index: 5;
  }

  .gcd-pill-one {
    top: -12px;
    right: 8px;
    left: auto;
    bottom: auto;
  }

  .gcd-pill-two {
    top: 10px;
    left: 8px;
    right: auto;
    bottom: auto;
  }

  .gcd-pill-three {
    bottom: 75px;
    right: 8px;
    left: auto;
    top: auto;
  }

  .gcd-profile-photo {
    border-radius: 20px;
  }

  .gcd-profile-info {
    padding: 14px 4px 12px;
    gap: 10px;
    text-align: left !important;
  }

  .gcd-profile-info h3 {
    font-size: 16.5px;
    margin-bottom: 2px;
    text-align: left !important;
  }

  .gcd-profile-info p {
    font-size: 11px;
    line-height: 1.35;
    text-align: left !important;
  }

  .gcd-profile-logo-mini {
    width: 42px;
    height: 42px;
  }

  .gcd-hero-proof-row {
    width: min(290px, 86vw);
    bottom: -26px;
    padding: 8px 6px;
    border-radius: 16px;
    gap: 4px;
  }

  .gcd-hero-proof-row span {
    font-size: 9px;
    line-height: 1.2;
  }

  .gcd-hero-proof-row strong {
    font-size: 11px;
  }

  .gcd-metrics-grid,
  .gcd-services-grid,
  .gcd-pricing-grid,
  .gcd-workflow-grid,
  .gcd-training-grid,
  .gcd-reviews-grid,
  .gcd-comparison-wrapper,
  .gcd-portfolio-layout {
    gap: 16px !important;
  }

  .gcd-metric-card,
  .gcd-service-card,
  .gcd-compare-card {
    padding: 22px 18px !important;
  }

  .gcd-reviews-bg {
    padding-bottom: 30px !important;
  }

  .gcd-clients-section {
    padding: 30px 0 10px !important;
  }

  .gcd-clients-header {
    margin-bottom: 20px !important;
  }

  .gcd-training-action-wrap {
    margin-top: 24px !important;
  }

  .gcd-pricing-controls {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px !important;
  }

  .gcd-category-toggle {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .gcd-category-toggle button {
    padding: 8px 12px;
    font-size: 12px;
    flex: 1 1 auto;
    text-align: center;
  }

  .gcd-portfolio-item {
    grid-template-columns: 1fr;
  }

  .gcd-reviews-grid {
    grid-template-columns: 1fr;
  }

  .gcd-slider-wrapper {
    padding: 0 4px;
  }

  .gcd-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .gcd-slider-prev { left: 4px; }
  .gcd-slider-next { right: 4px; }

  .gcd-footer-top,
  .gcd-footer-columns {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .gcd-footer-cta-block {
    text-align: left;
  }

  .gcd-footer-bottom {
    flex-direction: column;
  }

  .gcd-tilt {
    transform: none !important;
  }

  .gcd-bg-orb {
    max-width: 100vw;
    opacity: 0.18;
  }

  .gcd-orb-1 { left: 0; top: 5%; }
  .gcd-orb-2 { right: 0; top: 45%; }
  .gcd-orb-3 { left: 0; bottom: 5%; }
}

@media (max-width: 480px) {
  .gcd-section {
    padding: 32px 0 !important;
  }

  .gcd-section-head {
    margin-bottom: 18px !important;
  }

  .gcd-hero-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .gcd-hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .gcd-profile-stage {
    width: 100%;
    padding: 10px;
    border-radius: 24px;
  }

  .gcd-floating-pill {
    font-size: 9.5px;
    padding: 5px 8px;
    gap: 4px;
  }

  .gcd-footer-contact-cards {
    grid-template-columns: 1fr;
  }

  .gcd-booking-box {
    padding: 30px 16px;
  }
}

/* ── I've Worked With - Client Logos Showcase Section ── */
.gcd-clients-section {
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.gcd-clients-header {
  text-align: center;
  margin-bottom: 36px;
}

.gcd-clients-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
  letter-spacing: -0.02em;
}

.gcd-clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  padding: 12px 0;
}

.gcd-clients-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: gcdClientMarquee 35s linear infinite;
}

.gcd-clients-marquee:hover .gcd-clients-track {
  animation-play-state: paused;
}

@keyframes gcdClientMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gcd-client-card {
  flex: 0 0 auto;
  width: 220px;
  height: 105px;
  padding: 14px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gcd-client-card img {
  max-width: 90%;
  max-height: 68%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1) opacity(0.78);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.gcd-client-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.25);
}

.gcd-client-card:hover img {
  filter: brightness(1) invert(0) opacity(1);
  transform: scale(1.08);
}

/* ── Training & Workshop Gallery Section ── */
.gcd-training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gcd-training-card {
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.gcd-training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.4);
}

.gcd-training-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}

.gcd-training-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gcd-training-card:hover .gcd-training-img-wrap img {
  transform: scale(1.08);
}

.gcd-training-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 9, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #c7d2fe;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gcd-training-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 10, 0.8) 0%, rgba(7, 7, 10, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.gcd-training-card:hover .gcd-training-overlay {
  opacity: 1;
}

.gcd-training-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.gcd-training-card:hover .gcd-training-zoom-btn {
  transform: translateY(0);
}

.gcd-training-info {
  padding: 20px;
  flex-grow: 1;
}

.gcd-training-info h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
}

.gcd-training-item-hidden {
  display: none !important;
}

.gcd-training-item-hidden.gcd-expanded {
  display: flex !important;
  opacity: 1 !important;
  transform: none !important;
  animation: gcdFadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes gcdFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gcd-training-action-wrap {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .gcd-training-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .gcd-training-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ── Payoneer Checkout & Order Modal ── */
.gcd-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 12, 0.85);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gcd-modal-backdrop.gcd-active {
  opacity: 1;
  pointer-events: auto;
}

.gcd-modal-content {
  width: 100%;
  max-width: 580px;
  max-height: 85vh;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(22, 21, 32, 0.98) 0%, rgba(12, 11, 18, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85);
  position: relative;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(99, 102, 241, 0.5) rgba(255, 255, 255, 0.02);
}

/* Custom Sleek Scrollbar for Modal Content */
.gcd-modal-content::-webkit-scrollbar {
  width: 6px;
}

.gcd-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  margin: 16px 0;
}

.gcd-modal-content::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.45);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcd-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--gcd-primary, #6366f1);
}

.gcd-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gcd-muted);
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 50;
  pointer-events: auto;
}

.gcd-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.gcd-order-plan-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 18px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.gcd-order-summary-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gcd-muted);
  display: block;
  margin-bottom: 2px;
}

.gcd-payoneer-info-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 20px;
}

.gcd-payoneer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.gcd-payoneer-active-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.gcd-payoneer-desc {
  font-size: 12.5px;
  color: var(--gcd-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.gcd-payoneer-email-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.gcd-copy-btn {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gcd-copy-btn:hover {
  background: #10b981;
  color: #fff;
}

.gcd-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gcd-form-full {
  grid-column: 1 / -1;
}

.gcd-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.gcd-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13.5px;
  box-sizing: border-box;
  outline: none;
  transition: all 0.2s ease;
}

.gcd-input:focus {
  border-color: var(--gcd-primary);
  background: rgba(99, 102, 241, 0.08);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.gcd-form-alert {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 12.5px;
  font-weight: 600;
}

@media (max-width: 600px) {
  .gcd-modal-content {
    padding: 24px 16px;
    max-height: 88vh;
    border-radius: 22px;
  }
}

/* ── Contact Inquiry Form Section ── */
.gcd-inquiry-box {
  padding: 48px;
  border-radius: 28px;
  background: rgba(13, 13, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.gcd-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.gcd-inquiry-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.gcd-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.025);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
  text-decoration: none;
}

a.gcd-perk-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.gcd-perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--gcd-primary);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.gcd-perk-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.gcd-perk-item p {
  font-size: 13px;
  color: var(--gcd-muted);
  line-height: 1.5;
}

.gcd-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gcd-form-group {
  margin-bottom: 18px;
}

.gcd-form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #d1d5db;
  margin-bottom: 8px;
}

.gcd-form-label i {
  color: var(--gcd-primary);
  margin-right: 4px;
}

.gcd-form-input, select.gcd-form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

select.gcd-form-input option {
  background: #0f0f17;
  color: #fff;
}

.gcd-form-input:focus, .gcd-form-textarea:focus {
  border-color: var(--gcd-primary);
  background: rgba(99, 102, 241, 0.08);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.gcd-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  resize: vertical;
  min-height: 110px;
  box-sizing: border-box;
  font-family: inherit;
}

@media (max-width: 992px) {
  .gcd-inquiry-box {
    padding: 28px 20px;
  }
  .gcd-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gcd-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
