/* ── Browser Mockup Card ── */
.preview-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
}
.preview-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.preview-dots { display: flex; gap: 5px; }
.preview-dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #ffbd2e; } .dot-g { background: #28ca41; }
.preview-url { flex: 1; font-size: 10px; color: rgba(255,255,255,.25); font-family: monospace; background: rgba(255,255,255,.05); padding: 3px 8px; border-radius: 4px; }
.preview-body { position: relative; overflow: hidden; }

/* Simulated website UI inside preview cards */
.sim-nav { height: 28px; display: flex; align-items: center; padding: 0 12px; gap: 8px; background: rgba(255,255,255,.06); }
.sim-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); }
.sim-nav-line { height: 4px; border-radius: 2px; background: rgba(255,255,255,.15); }
.sim-hero-area { padding: 16px 12px; }
.sim-heading { height: 12px; border-radius: 4px; background: rgba(255,255,255,.25); margin-bottom: 6px; }
.sim-sub { height: 7px; border-radius: 3px; background: rgba(255,255,255,.12); width: 70%; margin-bottom: 10px; }
.sim-btns { display: flex; gap: 6px; }
.sim-btn-p { height: 20px; width: 70px; border-radius: 6px; background: rgba(255,255,255,.3); }
.sim-btn-s { height: 20px; width: 50px; border-radius: 6px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); }
.sim-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; padding: 0 12px 12px; }
.sim-card { height: 30px; border-radius: 5px; background: rgba(255,255,255,.08); }

/* ── Common Gradient Text ── */
.text-gradient-brand {
  background: linear-gradient(135deg, #8577ff 0%, #c084fc 60%, #f0abfc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-emerald {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Grid overlay BG ── */
.bg-grid {
  background-image: linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.bg-dots {
  background-image: radial-gradient(circle, rgba(99,102,241,.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Glow effects ── */
.glow-brand  { position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(82,51,235,.35),transparent 70%); pointer-events:none; }
.glow-violet { position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(124,58,237,.28),transparent 70%); pointer-events:none; }
.glow-gold   { position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(251,191,36,.25),transparent 70%); pointer-events:none; }
.glow-cyan   { position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(6,182,212,.2),transparent 70%); pointer-events:none; }

/* ── Badge pills ── */
.badge-float {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 999px 0 0 999px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  font-size: 11px; font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  white-space: nowrap;
  border: none;
}
.badge-float--amber { background: rgba(245,158,11,.9); color: #000; }
.badge-float--green  { background: rgba(16,185,129,.9); color: #fff; }
.badge-float--purple { background: rgba(82,51,235,.9); color: #fff; }
.badge-float--violet { background: rgba(124,58,237,.85); color: #fff; }

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

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

/* ════════════════════════════════════════════
   HERO 1: DEFAULT AGENCY HERO
   ════════════════════════════════════════════ */
.h1-section {
  min-height: 100vh;
  background: linear-gradient(160deg, #0a0818 0%, #130a2e 40%, #0a0818 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h1-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-bg-layer { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-content-layer { position: relative; z-index: 10; }
.glow-brand, .glow-violet, .glow-gold, .glow-cyan { z-index: 1; }

/* ════════════════════════════════════════════
   HERO 2: THEME MARKETPLACE HERO
   ════════════════════════════════════════════ */
.h2-section {
  min-height: 100vh;
  background: #05030f;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
}

.h2-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(82, 51, 235, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.h2-inner {
  position: relative;
  z-index: 10;
  max-width: var(--gt-hero-inner-max-width, 80rem);
  margin: 0 auto;
  padding-inline: var(--gt-hero-inner-padding-inline, 1rem);
}

.h2-top {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}

.h2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(82, 51, 235, 0.3);
  background: rgba(82, 51, 235, 0.15);
  font-size: 12px;
  font-weight: 700;
  color: #a9a4ff;
  letter-spacing: 0.06em;
}

.h2-kicker-icon {
  width: 16px;
  height: 16px;
  color: #8577ff;
  flex-shrink: 0;
}

.h2-headline {
  font-family: var(--gt-font-display, inherit);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  font-size: clamp(40px, 6vw, 76px);
  color: #fff;
}

.h2-sub {
  margin: 0 0 2rem;
  line-height: 1.625;
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255, 255, 255, 0.5);
}

.h2-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.h2-cards-area {
  overflow: visible;
}

.h2-grid-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 0 24px;
}

.h2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.h2-card.preview-card {
  position: relative;
  overflow: visible;
}

.h2-card .preview-body {
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.h2-card__badge {
  position: absolute;
  z-index: 5;
  animation: floatY 4s ease-in-out infinite;
  line-height: 1;
}

.gt-el-hero-2 .h2-card__badge.badge-float {
  border-radius: 999px !important;
}

.h2-card__badge--top-left {
  top: 10px;
  left: -8px;
}

.h2-card__badge--top-center {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatYCenter 4s ease-in-out infinite;
}

.h2-card__badge--top-right {
  top: 10px;
  right: -8px;
}

.h2-card__badge--bottom-left {
  bottom: 10px;
  left: -8px;
}

.h2-card__badge--bottom-center {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatYCenter 4s ease-in-out infinite;
}

.h2-card__badge--bottom-right {
  bottom: 10px;
  right: -8px;
}

.h2-badge-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}

.h2-badge-icon-wrap .h2-badge-icon,
.h2-badge-icon-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  display: block;
}

.h2-badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  line-height: 0;
}

img.h2-badge-icon {
  max-width: 14px;
  max-height: 14px;
}

.h2-badge-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

span.h2-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 767px) {
  .h2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .h2-card__badge--top-left,
  .h2-card__badge--top-right,
  .h2-card__badge--top-center {
    top: 8px;
  }

  .h2-card__badge--top-left,
  .h2-card__badge--bottom-left {
    left: 4px;
  }

  .h2-card__badge--top-right,
  .h2-card__badge--bottom-right {
    right: 4px;
  }
}

.gt-el-hero-2 .h2-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.gt-trust-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.gt-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.h4-trust,
.h10-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.gt-el-hero-10 .gt-trust-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════════════════════
   HERO 3: CREATIVE AGENCY HERO
   ════════════════════════════════════════════ */
.h3-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.h3-left {
  background: #0a0818;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.h3-right {
  background: linear-gradient(135deg, #5233eb 0%, #7c3aed 60%, #a855f7 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
}
@media (max-width: 900px) {
  .h3-section { grid-template-columns: 1fr; }
  .h3-right { min-height: 50vh; }
}

/* ════════════════════════════════════════════
   HERO 4: PREMIUM CAMPAIGN HERO (Black Friday)
   ════════════════════════════════════════════ */
.h4-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 0 64px;
  background: linear-gradient(155deg, #030208 0%, #0a0618 35%, #12082a 65%, #030208 100%);
}
.h4-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(82,51,235,.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(124,58,237,.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(245,158,11,.08) 0%, transparent 60%);
}
.h4-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.h4-glow-ring {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
  border: 1px solid rgba(82,51,235,.12);
  box-shadow: 0 0 80px rgba(82,51,235,.08), inset 0 0 60px rgba(82,51,235,.04);
}
.h4-campaign-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: rgba(82,51,235,.12); border: 1px solid rgba(82,51,235,.25);
  backdrop-filter: blur(8px);
}
.h4-countdown-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.h4-countdown-cell {
  min-width: 72px; padding: 12px 14px; border-radius: 14px; text-align: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.h4-countdown-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: #fff;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.h4-countdown-label {
  font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-top: 4px;
}
.h4-theme-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(15,15,30,.6); border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}
.h4-theme-card:hover { border-color: rgba(82,51,235,.35); }
.h4-save-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 800;
  background: linear-gradient(135deg, rgba(82,51,235,.9), rgba(124,58,237,.9));
  color: #fff; letter-spacing: .06em; text-transform: uppercase;
}

/* ════════════════════════════════════════════
   HERO 5: NEW YEAR HERO
   ════════════════════════════════════════════ */
.h5-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #020617 0%, #0c0a3e 50%, #020617 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h5-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.h5-glow-gold {
  width: 600px;
  height: 600px;
  top: -20%;
  left: 10%;
  opacity: 0.2;
  z-index: 1;
}

.h5-glow-brand {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: 5%;
  opacity: 0.15;
  z-index: 1;
}

.h5-line-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}

.h5-year {
  font-family: var(--gt-font-display, 'Outfit', sans-serif);
  font-weight: 900;
  font-size: clamp(80px, 18vw, 200px);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(251, 191, 36, 0.2);
  color: transparent;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  width: max-content;
  max-width: none;
}

.h5-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--gt-hero-inner-max-width, 56rem);
  margin: 0 auto;
  padding-block: 5rem;
  padding-inline: var(--gt-hero-inner-padding-inline, 1rem);
  text-align: center;
}

.h5-content {
  position: relative;
  z-index: 10;
}

.h5-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.h5-kicker-star {
  font-size: 14px;
  color: rgba(251, 191, 36, 0.8);
  line-height: 1;
}

.h5-kicker-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(251, 191, 36, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.h5-headline {
  font-family: var(--gt-font-display, 'Outfit', sans-serif);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1.25rem;
  font-size: clamp(38px, 6.5vw, 88px);
  line-height: 1.02;
}

.h5-headline .text-gradient-gold {
  display: inline-block;
}

.h5-sub {
  margin: 0 auto 2.5rem;
  max-width: 540px;
  line-height: 1.625;
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.5);
}

.h5-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.h5-card {
  max-width: 520px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.15), 0 32px 80px rgba(0, 0, 0, 0.6);
}

.h5-card .preview-chrome {
  background: rgba(255, 255, 255, 0.04);
}

.h5-preview-body {
  background: linear-gradient(160deg, #0c0a3e 0%, #1e1254 50%, #0a0818 100%);
  height: 200px;
  position: relative;
  overflow: hidden;
}

.h5-preview-nav {
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

.h5-preview-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(251, 191, 36, 0.15) 0%, transparent 60%);
}

.h5-preview-content {
  padding: 16px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.h5-preview-bar {
  border-radius: 4px;
  margin: 0 auto;
}

.h5-preview-bar--gold {
  height: 8px;
  width: 60%;
  background: rgba(251, 191, 36, 0.4);
  border-radius: 3px;
  margin-bottom: 6px;
}

.h5-preview-bar--lg {
  height: 12px;
  width: 85%;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
}

.h5-preview-bar--sm {
  height: 7px;
  width: 55%;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}

.h5-preview-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.h5-preview-btn {
  height: 24px;
  border-radius: 6px;
}

.h5-preview-btn--primary {
  width: 90px;
  background: rgba(251, 191, 36, 0.5);
}

.h5-preview-btn--secondary {
  width: 70px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.h5-confetti {
  position: absolute;
  border-radius: 50%;
  background: #fbbf24;
  animation: sparkleAnim 2s ease-in-out infinite;
}

.h5-confetti--1 { top: 20%; left: 10%; width: 4px; height: 4px; animation-delay: 0.5s; }
.h5-confetti--2 { top: 30%; right: 15%; width: 3px; height: 3px; animation-duration: 2.5s; animation-delay: 1s; }
.h5-confetti--3 { top: 60%; left: 20%; width: 4px; height: 4px; animation-duration: 3s; animation-delay: 0.2s; }
.h5-confetti--4 { top: 45%; right: 25%; width: 3px; height: 3px; animation-delay: 1.5s; }

.h5-tagline {
  margin: 1.5rem 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
}

/* Sparkle particles */
.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleAnim var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes sparkleAnim {
  0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
  40% { opacity: 1; transform: scale(1) translateY(-20px); }
  80% { opacity: .3; transform: scale(.5) translateY(-40px); }
}
.firework-line {
  position: absolute;
  width: 2px;
  border-radius: 1px;
  transform-origin: bottom center;
  animation: fireworkAnim var(--dur,2s) ease-out var(--delay,0s) infinite;
}
@keyframes fireworkAnim {
  0% { height: 0; opacity: 1; }
  60% { height: var(--h, 60px); opacity: 1; }
  100% { height: var(--h, 60px); opacity: 0; transform: rotate(var(--rot, 0deg)) scaleY(0.8); }
}

/* ════════════════════════════════════════════
   HERO 6: BOLD VISUAL HERO
   ════════════════════════════════════════════ */
.h6-section {
  min-height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h6-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5233eb, #7c3aed, #a855f7, #ec4899, #f43656);
  z-index: 5;
}

.h6-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--gt-hero-inner-max-width, none);
  margin-inline: auto;
  padding-block: 5rem;
  padding-inline: var(--gt-hero-inner-padding-inline, 1rem);
}

.h6-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  width: 100%;
}

.h6-bg-text__line {
  font-size: clamp(60px, 16vw, 200px);
}

.h6-bg-text__line--second {
  margin-top: -0.2em;
}

.h6-stage {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
}

.h6-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.h6-kicker-line {
  height: 1px;
  width: 50px;
  flex-shrink: 0;
}

.h6-kicker-line--left {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
}

.h6-kicker-line--right {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
}

.h6-kicker-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.h6-headline {
  font-family: var(--gt-font-display, 'Outfit', sans-serif);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 0 0 2rem;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1;
  max-width: 900px;
}

.h6-headline .text-gradient-brand {
  display: inline;
}

.h6-cards-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 280px;
}

.h6-card--left {
  position: absolute;
  top: -160px;
  left: -20px;
  width: 200px;
  transform: rotate(-5deg);
  z-index: 5;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(82, 51, 235, 0.4);
}

.h6-card--right {
  position: absolute;
  top: -140px;
  right: -10px;
  width: 220px;
  transform: rotate(4deg);
  z-index: 5;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(219, 39, 119, 0.4);
}

.h6-card--center {
  position: relative;
  margin: 40px auto 0;
  width: min(600px, 90%);
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.h6-card .preview-chrome {
  padding: 8px 12px;
}

.h6-card-body {
  padding: 10px;
}

.h6-card-body--purple {
  background: linear-gradient(135deg, #5233eb, #7c3aed);
  height: 100px;
}

.h6-card-body--pink {
  background: linear-gradient(135deg, #db2777, #7c3aed);
  height: 110px;
}

.h6-card-body--wide {
  background: linear-gradient(160deg, #0a0818, #1e1254);
  height: 160px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0;
  padding: 0;
}

.h6-wire-bar {
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
}

.h6-wire-bar--lg {
  height: 8px;
  width: 80%;
  margin-bottom: 5px;
}

.h6-wire-bar--sm {
  height: 6px;
  width: 60%;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.15);
}

.h6-wire-bar--md {
  height: 8px;
  width: 80%;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.h6-wire-bar--xs {
  height: 6px;
  width: 55%;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.h6-wire-btn {
  height: 20px;
  width: 55px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
}

.h6-wire-btn--brand {
  width: 70px;
  background: rgba(82, 51, 235, 0.7);
}

.h6-wire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.h6-wire-grid span {
  height: 50px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
}

.h6-wire-grid span:nth-child(2) {
  background: rgba(255, 255, 255, 0.12);
}

.h6-wide-col--main {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
}

.h6-wide-col--mid {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

.h6-wide-col--mid span,
.h6-wide-col--side span {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  min-height: 0;
}

.h6-wide-col--mid span:nth-child(2),
.h6-wide-col--side span:nth-child(2) {
  background: rgba(255, 255, 255, 0.04);
}

.h6-wide-col--side {
  padding: 12px;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 5px;
}

.h6-wide-col--side span {
  border-radius: 5px;
}

.h6-sub {
  margin: 2.5rem auto 1.5rem;
  max-width: 480px;
  line-height: 1.625;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.45);
}

.h6-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .h6-card--left,
  .h6-card--right {
    display: none;
  }

  .h6-cards-stage {
    min-height: auto;
  }

  .h6-card--center {
    margin-top: 0;
  }

  .h6-bg-text__line {
    font-size: clamp(40px, 14vw, 120px);
  }
}

.h5-preview-body.has-preview-image,
.h6-card-body.has-preview-image,
.h10-preview-body.has-preview-image {
  height: auto;
  min-height: 160px;
  padding: 0;
  overflow: hidden;
  background: #0f172a;
}

.h6-card-body--purple.has-preview-image,
.h6-card-body--pink.has-preview-image {
  min-height: 100px;
}

.h6-card-body--wide.has-preview-image {
  min-height: 160px;
  display: block;
}

.h10-preview-body {
  background: #0f172a;
  padding: 24px;
}

.h10-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.h10-preview-tile {
  border-radius: 12px;
  min-height: 130px;
}

.h10-preview-tile--purple {
  background: linear-gradient(135deg, #5233eb, #7c3aed);
}

.h10-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--gt-hero-inner-max-width, 85rem);
  margin: 0 auto;
  padding-block: 3rem;
  padding-inline: var(--gt-hero-inner-padding-inline, 2rem);
  text-align: center;
}

.h10-preview-tile--pink {
  background: linear-gradient(135deg, #6d28d9, #db2777);
}

.h10-preview-tile--emerald {
  background: linear-gradient(135deg, #059669, #0284c7);
}

.outline-text {
  font-family: var(--gt-font-display, 'Outfit', sans-serif);
  font-weight: 900;
  line-height: 0.85;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.12);
  color: transparent;
  user-select: none;
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   HERO 7: MINIMAL PREMIUM HERO
   ════════════════════════════════════════════ */
.h7-section {
  min-height: 100vh;
  background: #fafafa;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h7-card-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.04);
  overflow: hidden;
}

/* ════════════════════════════════════════════
   HERO 8-12 STYLES — index.html Clone Variations
   ════════════════════════════════════════════ */
.hero-studio-bg {
  background: linear-gradient(160deg, #0a0818 0%, #130a2e 40%, #0a0818 100%) !important;
  background-image:
    linear-gradient(160deg, #0a0818 0%, #130a2e 40%, #0a0818 100%),
    linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px) !important;
  background-size: 100% 100%, 52px 52px, 52px 52px !important;
}

.gt-el-hero.hero-studio-bg.gt-el-hero--has-grid::before {
  display: none;
}
.h8-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  -webkit-text-stroke: 1px currentColor;
  color: transparent;
}
@media (max-width: 900px) {
  .h8-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .h8-stats > div { border-right: none !important; padding: 16px !important; }
  .h9-grid { grid-template-columns: 1fr !important; }
  .h12-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
.h9-col-center .preview-card {
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
}
.h10-wide-card {
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05),
              0 0 120px -30px rgba(82,51,235,.4);
}
.h11-overlap-card {
  box-shadow: 0 40px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.07);
}
.h12-grid-card .preview-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.h12-grid-card .preview-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }

/* ════════════════════════════════════════════
   HERO 6: HIRE US — tokens from hire-us.html
   ════════════════════════════════════════════ */
.gt-el-hero-6.h-hire-section {
  --h-hire-pad-y: 6rem;
  --h-hire-pad-y-lg: 8rem;
  --h-hire-gap-col: 3.5rem;
  --h-hire-gap-card: 1rem;
  --h-hire-badge-color: #fff;
  --h-hire-badge-bg: rgba(16, 185, 129, 0.22);
  --h-hire-badge-border: rgba(16, 185, 129, 0.4);
  --h-hire-badge-dot: #34d399;
  --h-hire-headline-color: #fff;
  --h-hire-text-muted: rgba(255, 255, 255, 0.6);
  --h-hire-text-soft: rgba(255, 255, 255, 0.5);
  --h-hire-text-faint: rgba(255, 255, 255, 0.45);
  --h-hire-text-dim: rgba(255, 255, 255, 0.4);
  --h-hire-text-dim-hover: rgba(255, 255, 255, 0.7);
  --h-hire-breadcrumb-link-color: rgba(255, 255, 255, 0.4);
  --h-hire-breadcrumb-link-hover-color: rgba(255, 255, 255, 0.7);
  --h-hire-breadcrumb-current-color: rgba(255, 255, 255, 0.7);
  --h-hire-card-bg: rgba(255, 255, 255, 0.07);
  --h-hire-card-border: rgba(255, 255, 255, 0.1);
  --h-hire-service-title-color: #fff;
  --h-hire-trust-icon: #34d399;
  --h-hire-btn-primary-color: #fff;
  --h-hire-btn-primary-bg: linear-gradient(135deg, #5233eb, #7c3aed);
  --h-hire-btn-primary-color-hover: #fff;
  --h-hire-btn-primary-bg-hover: linear-gradient(135deg, #5233eb, #7c3aed);
  --h-hire-btn-secondary-color: #fff;
  --h-hire-btn-secondary-bg: transparent;
  --h-hire-btn-secondary-color-hover: #fff;
  --h-hire-btn-secondary-bg-hover: rgba(255, 255, 255, 0.08);
  --h-hire-btn-secondary-border: rgba(255, 255, 255, 0.2);
  --h-hire-btn-secondary-border-hover: rgba(255, 255, 255, 0.35);
  --h-hire-glow-color: #7c3aed;
  --h-hire-section-bg: linear-gradient(160deg, #0a0818 0%, #1e1254 50%, #0a0818 100%);
  position: relative;
  overflow: hidden;
  padding: var(--h-hire-pad-y) 0;
  background: var(--h-hire-section-bg);
}
@media (min-width: 1024px) {
  .gt-el-hero-6.h-hire-section {
    padding-top: var(--h-hire-pad-y-lg);
    padding-bottom: var(--h-hire-pad-y-lg);
  }
}
.gt-el-hero-6.h-hire-section.is-header-offset {
  padding-top: calc(var(--gt-header-h, 72px) + var(--h-hire-pad-y)) !important;
  padding-bottom: var(--h-hire-pad-y);
}
@media (min-width: 1024px) {
  .gt-el-hero-6.h-hire-section.is-header-offset {
    padding-top: calc(var(--gt-header-h, 72px) + var(--h-hire-pad-y-lg)) !important;
    padding-bottom: var(--h-hire-pad-y-lg);
  }
}
body.gt-header-absolute .gt-el-hero-6.h-hire-section.gt-header-overlay-target {
  padding-top: calc(var(--gt-header-overlay-padding, var(--gt-header-h, 72px)) + var(--h-hire-pad-y));
  padding-bottom: var(--h-hire-pad-y);
}
@media (min-width: 1024px) {
  body.gt-header-absolute .gt-el-hero-6.h-hire-section.gt-header-overlay-target {
    padding-top: calc(var(--gt-header-overlay-padding, var(--gt-header-h, 72px)) + var(--h-hire-pad-y-lg));
    padding-bottom: var(--h-hire-pad-y-lg);
  }
}
.h-hire-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  --gt-hero-grid-color: rgba(99, 102, 241, 0.06);
  --gt-hero-grid-size: 48px;
  background-image:
    linear-gradient(var(--gt-hero-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--gt-hero-grid-color) 1px, transparent 1px);
  background-size: var(--gt-hero-grid-size) var(--gt-hero-grid-size);
}
.h-hire-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(64px);
  pointer-events: none;
  background: radial-gradient(circle, var(--h-hire-glow-color, #7c3aed), transparent);
}
.h-hire-inner {
  position: relative;
  z-index: 1;
  max-width: var(--gt-hero-inner-max-width, 80rem);
  margin: 0 auto;
  padding-inline: var(--gt-hero-inner-padding-inline, 1rem);
}
.h-hire-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--h-hire-gap-col, 3.5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .h-hire-columns { grid-template-columns: 1fr 1fr; }
}
.h-hire-breadcrumb,
.gt-el-hero-6.h-hire-section .h-hire-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--h-hire-breadcrumb-link-color, var(--h-hire-text-dim, rgba(255,255,255,.4))) !important;
}
.h-hire-breadcrumb a,
.gt-el-hero-6.h-hire-section .h-hire-breadcrumb a {
  color: var(--h-hire-breadcrumb-link-color, var(--h-hire-text-dim, rgba(255,255,255,.4))) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.h-hire-breadcrumb a:hover,
.gt-el-hero-6.h-hire-section .h-hire-breadcrumb a:hover {
  color: var(--h-hire-breadcrumb-link-hover-color, var(--h-hire-text-dim-hover, rgba(255,255,255,.7))) !important;
}
.h-hire-breadcrumb > span:not(.h-hire-breadcrumb-current),
.gt-el-hero-6.h-hire-section .h-hire-breadcrumb > span:not(.h-hire-breadcrumb-current) {
  color: var(--h-hire-breadcrumb-link-color, var(--h-hire-text-dim, rgba(255,255,255,.4))) !important;
}
.h-hire-breadcrumb-sep {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  opacity: 0.9;
}
.h-hire-breadcrumb-current,
.gt-el-hero-6.h-hire-section .h-hire-breadcrumb-current {
  color: var(--h-hire-breadcrumb-current-color, var(--h-hire-text-dim-hover, rgba(255,255,255,.7))) !important;
}
.h-hire-badge {
  font-size: 0.75rem;
  margin: 0 0 1.5rem;
}
.h-hire-section .gt-cta-badge,
.gt-el-hero-6.h-hire-section .gt-cta-badge,
.gt-el-hero-6.h-hire-section .h-hire-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid var(--h-hire-badge-border, rgba(16, 185, 129, 0.4)) !important;
  color: var(--h-hire-badge-color, #fff) !important;
  background: var(--h-hire-badge-bg, rgba(16, 185, 129, 0.22)) !important;
}
.h-hire-section .gt-cta-badge-dot,
.gt-el-hero-6.h-hire-section .gt-cta-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--h-hire-badge-dot, #34d399) !important;
  flex-shrink: 0;
  animation: gtPulse 2s ease-in-out infinite;
}
@keyframes gtPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.88); }
}
.h-hire-headline {
  font-family: var(--gt-font-display, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 3.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--h-hire-headline-color, #fff);
  margin: 0 0 1.5rem;
}
.h-hire-sub {
  font-size: 1.25rem;
  line-height: 1.625;
  color: var(--h-hire-text-muted, rgba(255,255,255,.6));
  margin: 0 0 2rem;
  max-width: 36rem;
}
.h-hire-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 2.5rem;
}
@media (min-width: 640px) {
  .h-hire-ctas { flex-direction: row; }
}
.h-hire-ctas .gt-btn-primary-gradient,
.gt-el-hero-6 .h-hire-ctas .gt-btn-primary-gradient {
  color: var(--h-hire-btn-primary-color, #fff) !important;
  background: var(--h-hire-btn-primary-bg, linear-gradient(135deg, #5233eb, #7c3aed)) !important;
  border: 1.5px solid transparent;
}
.h-hire-ctas .gt-btn-primary-gradient:hover,
.gt-el-hero-6 .h-hire-ctas .gt-btn-primary-gradient:hover {
  color: var(--h-hire-btn-primary-color-hover, var(--h-hire-btn-primary-color, #fff)) !important;
  background: var(--h-hire-btn-primary-bg-hover, var(--h-hire-btn-primary-bg, linear-gradient(135deg, #5233eb, #7c3aed))) !important;
  filter: none !important;
}
.h-hire-ctas .gt-btn-outline-light,
.gt-el-hero-6 .h-hire-ctas .gt-btn-outline-light {
  color: var(--h-hire-btn-secondary-color, #fff) !important;
  background: var(--h-hire-btn-secondary-bg, transparent) !important;
  border: 1px solid var(--h-hire-btn-secondary-border, rgba(255, 255, 255, 0.2)) !important;
}
.h-hire-ctas .gt-btn-outline-light:hover,
.gt-el-hero-6 .h-hire-ctas .gt-btn-outline-light:hover {
  color: var(--h-hire-btn-secondary-color-hover, var(--h-hire-btn-secondary-color, #fff)) !important;
  background: var(--h-hire-btn-secondary-bg-hover, rgba(255, 255, 255, 0.08)) !important;
  border-color: var(--h-hire-btn-secondary-border-hover, rgba(255, 255, 255, 0.35)) !important;
}
.h-hire-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.h-hire-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--h-hire-text-soft, rgba(255,255,255,.5));
}
.h-hire-trust-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--h-hire-trust-icon, #34d399);
}
.h-hire-trust-icon,
.h-hire-trust-icon-el,
.h-hire-trust-icon-wrap svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.h-hire-trust-icon {
  color: var(--h-hire-trust-icon, #34d399);
}
.h-hire-trust-icon-el,
.h-hire-trust-icon-wrap i {
  font-size: 1rem;
  line-height: 1;
  color: currentColor;
}
.h-hire-trust-label {
  color: var(--h-hire-text-soft, rgba(255,255,255,.5));
}
.h-hire-services-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--h-hire-gap-card, 1rem);
}
@media (min-width: 1024px) {
  .h-hire-services-grid { display: grid; }
  .h-hire-services-grid > :nth-child(even) { margin-top: 1rem; }
}
.h-hire-service-card {
  padding: 1.25rem;
  border-radius: 1rem;
  color: var(--h-hire-service-title-color, #fff);
  background: var(--h-hire-card-bg, rgba(255,255,255,.07));
  border: 1px solid var(--h-hire-card-border, rgba(255,255,255,.1));
  transition: filter 0.2s ease;
  height: 100%;
}
.h-hire-service-card:hover { filter: brightness(1.1); }
.h-hire-service-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.75rem;
  flex-shrink: 0;
}
/* Pixel Perfect brand palette — hire-us.html Tailwind tokens */
.h-hire-service-icon--brand   { background: rgba(102, 84, 246, 0.3); color: #a9a4ff; }
.h-hire-service-icon--purple  { background: rgba(168, 85, 247, 0.3); color: #d8b4fe; }
.h-hire-service-icon--pink    { background: rgba(236, 72, 153, 0.3); color: #f9a8d4; }
.h-hire-service-icon--emerald { background: rgba(16, 185, 129, 0.3); color: #6ee7b7; }
.h-hire-service-icon--amber   { background: rgba(245, 158, 11, 0.3); color: #fcd34d; }
.h-hire-service-icon--violet  { background: rgba(139, 92, 246, 0.3); color: #c4b5fd; }
.h-hire-service-svg {
  width: 1rem;
  height: 1rem;
}
.h-hire-service-icon-el,
.h-hire-service-icon svg,
.h-hire-service-icon i,
.h-hire-service-icon img {
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
}
.h-hire-service-icon-el {
  font-size: 1rem;
  line-height: 1;
  color: currentColor;
}
.h-hire-service-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--h-hire-service-title-color, #fff);
  margin: 0 0 0.25rem;
}
.h-hire-service-desc {
  font-size: 0.75rem;
  color: var(--h-hire-text-faint, rgba(255,255,255,.45));
  margin: 0;
  line-height: 1.4;
}

.gt-el-hero .gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.gt-el-hero .gt-hero-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.gt-el-hero .gt-hero-btn-icon svg,
.gt-el-hero .gt-hero-btn-icon img {
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
  object-fit: contain;
  flex-shrink: 0;
}

.gt-el-hero .gt-hero-btn-icon i {
  line-height: 1;
  width: auto;
  height: auto;
}

