/* ============================================================
   CONSUME 4.0 — Stylesheet
   Dechcept · B2B Manufacturing Webinar
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  /* Colors */
  --blue:        #027bfe;
  --blue-deep:   #0162d4;
  --gold:        #e6bb00;
  --gold-deep:   #b48d00;
  --sky:         #d9f0fe;

  /* Surfaces */
  --bg:          #ffffff;
  --bg-soft:     #f7fbff;

  /* Text */
  --txt:         #0b1220;
  --txt-2:       #475569;
  --txt-3:       #94a3b8;
  --txt-4:       #cbd5e1;

  /* Borders */
  --border:      #e2e8f0;
  --border-2:    #cbd5e1;

  /* Radii */
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(11, 18, 32, 0.05);
  --shadow-md:   0 4px 12px rgba(11, 18, 32, 0.08);
  --shadow-lg:   0 12px 32px rgba(11, 18, 32, 0.12);
  --shadow-blue: 0 4px 16px rgba(2, 123, 254, 0.25);
  --shadow-gold: 0 4px 16px rgba(230, 187, 0, 0.30);
}


/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--txt);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt-2);
  margin-bottom: 24px;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.section-h {
  font-family: "EB Garamond", serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--txt);
  margin-bottom: 16px;
}

.section-h em,
.section-sub em {
  font-style: italic;
  color: var(--blue);
}

.section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--txt-2);
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 55%, var(--gold) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.section {
  padding: 80px 5%;
  max-width: 1320px;
  margin: 0 auto;
}

.section--soft {
  background: var(--bg-soft);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(2, 123, 254, 0.40);
}

.btn-secondary {
  background: var(--bg);
  color: var(--txt);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--txt);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 187, 0, 0.40);
}

.btn-ghost-light {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.60);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost-light:hover {
  color: rgba(255, 255, 255, 0.90);
  border-color: rgba(255, 255, 255, 0.40);
}


/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

@keyframes clientMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--txt);
}

.logo span {
  color: var(--blue);
  font-size: 10px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  color: var(--txt-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-blue);
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 123, 254, 0.35);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 140px 5% 100px;
  background:
    radial-gradient(circle at top right, rgba(2, 123, 254, 0.08), transparent 30%),
    #fff;
}

.hero-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 520px);
  gap: 72px;
  align-items: center;
}

.hero-content,
.hero-cards {
  min-width: 0;
}

/* Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  color: var(--txt);
  margin-bottom: 28px;
}

/* Title */
.hero-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--txt);
}

.hero-title span {
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
}

/* Bullet points */
.hero-points {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.6;
}

.hero-point span {
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
  margin-top: -1px;
  flex-shrink: 0;
}

/* CTA row */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--txt-3);
}

.hero-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.divider {
  color: var(--txt-4);
}

/* Hero event cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Date card */
.event-date-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.event-date-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-bottom: 12px;
}

.event-date-number {
  font-family: "EB Garamond", serif;
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -4px;
}

.event-date-number sup {
  font-size: 0.4em;
  vertical-align: super;
  letter-spacing: 0;
}

.event-date-sub {
  margin-top: 8px;
  font-size: 13px;
  color: var(--txt-3);
  font-weight: 500;
}

/* Countdown card */
.event-countdown-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}

.countdown-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

.countdown-inner {
  position: relative;
  z-index: 1;
}

.countdown-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 12px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b30;
  animation: pulseLive 1.5s infinite;
  flex-shrink: 0;
}

.countdown-title {
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.countdown-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
}


/* ============================================================
   PROBLEM / FAIL SECTION
   ============================================================ */
.fail-section {
  background: var(--bg-soft);
  padding: 80px 5%;
}

.fail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.fail-content h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.fail-content h2 em {
  font-style: italic;
  color: var(--blue);
}

.fail-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.fail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fail-item:hover {
  border-color: #ef4444;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.10);
}

.fail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fail-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #36454F;
  margin-bottom: 4px;
}

.fail-text p {
  font-size: 13px;
  color: var(--txt-3);
  line-height: 1.5;
}

/* Problem section image */
.growth-image-2 img {
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}


/* ============================================================
   METHODOLOGY
   ============================================================ */
.methodology-section {
  padding: 80px 5%;
  background: var(--bg);
}

.methodology-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.methodology-header h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.methodology-header h2 em {
  font-style: italic;
  color: var(--blue);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.method-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  opacity: 0;
  transition: opacity 0.25s;
}

.method-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.method-card:hover::before {
  opacity: 1;
}

.method-number {
  font-family: "EB Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--blue);
  opacity: 0.2;
  margin-bottom: 16px;
  line-height: 1;
}

.method-title {
  font-family: "EB Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 10px;
}

.method-desc {
  font-size: 14px;
  color: var(--txt-3);
  line-height: 1.6;
  margin-bottom: 16px;
}

.method-list {
  list-style: none;
}

.method-list li {
  font-size: 13px;
  color: var(--txt-2);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.method-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
}


/* ============================================================
   NUMBERS / STATS
   ============================================================ */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  text-align: center;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.number-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.number-big {
  font-family: "EB Garamond", serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--txt);
  letter-spacing: -2px;
  margin-bottom: 8px;
  line-height: 1;
}

.number-big em {
  font-style: normal;
  color: var(--blue);
}

.number-label {
  font-size: 12px;
  color: var(--txt-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}


/* ============================================================
   CLIENT LOGOS MARQUEE
   ============================================================ */
#clients {
  position: relative;
  overflow: hidden;
}

.clients__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.clients__title {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.clients__wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients__row {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: clientMarquee 34s linear infinite;
  padding: 10px 0;
}

.clients__wrap:hover .clients__row {
  animation-play-state: paused;
}

.client-card {
  position: relative;
  height: 88px;
  min-width: 220px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, rgba(217, 240, 254, 0.35) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 123, 254, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, rgba(217, 240, 254, 0.55) 100%);
  box-shadow: 0 20px 50px -24px rgba(2, 123, 254, 0.22);
}

.client-card:hover::before {
  opacity: 1;
}

.client-card img {
  max-width: 140px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.client-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt-2);
  transition: color 0.3s ease;
}

.client-card:hover span {
  color: var(--blue);
}


/* ============================================================
   FOUNDER
   ============================================================ */
.founder-section {
  padding: 100px 5%;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-name {
  font-family: "EB Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.founder-role {
  font-size: 14px;
  color: var(--txt-3);
  margin-bottom: 20px;
}

.founder-desc {
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 480px;
}

.founder-points {
  list-style: none;
  margin-bottom: 20px;
}

.founder-points li {
  font-size: 14px;
  color: var(--txt-2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-points li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
}

.founder-image-wrap img {
  width: 100%;
  padding: 20px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}


/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section {
  padding: 80px 5%;
  background: var(--bg-soft);
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.industries-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 48px;
}

.industries-highlight {
  font-style: italic;
  color: var(--blue);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.industry-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: 100px 5%;
  text-align: center;
}

.pricing-heading {
  font-family: "EB Garamond", serif;
  font-size: clamp(40px, 5vw, 56px);
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.30);
}

.pricing-meta {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--txt-3);
  margin-bottom: 24px;
  font-weight: 600;
}

.pricing-price-wrap {
  margin-bottom: 24px;
}

.old-price {
  text-decoration: line-through;
  color: var(--txt-4);
  font-size: 20px;
}

.new-price {
  font-family: "EB Garamond", serif;
  font-size: 68px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1;
}

.price-note {
  font-size: 13px;
  color: var(--txt-3);
  margin-top: 8px;
}

.pricing-list {
  text-align: left;
  margin: 24px 0;
}

.pricing-list .item {
  font-size: 14px;
  color: var(--txt-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-list .item:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--txt);
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-gold);
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 187, 0, 0.40);
}

.pricing-testimonial {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.50);
}


/* ============================================================
   REGISTRATION FORM
   ============================================================ */
.form-section {
  background: var(--bg);
  padding: 80px 5%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.form-h {
  font-family: "EB Garamond", serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--txt);
  margin-bottom: 16px;
}

.form-h em {
  font-style: italic;
  color: var(--blue);
}

.form-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--txt-2);
  margin-bottom: 28px;
}

.form-perks {
  list-style: none;
  display: grid;
  gap: 14px;
}

.form-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--txt-2);
}

.perk-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* Contact Form 7 overrides */
.form-card .wpcf7-form .dc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.form-card .wpcf7-form .dc-full {
  grid-column: 1 / -1;
}

.form-card .wpcf7-form .dc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.form-card .wpcf7-form .dc-field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--txt-2);
  font-family: inherit;
}

.form-card .wpcf7-form .dc-field .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.form-card .wpcf7-form .dc-form-grid input[type="text"],
.form-card .wpcf7-form .dc-form-grid input[type="email"],
.form-card .wpcf7-form .dc-form-grid input[type="tel"],
.form-card .wpcf7-form .dc-form-grid select,
.form-card .wpcf7-form .dc-form-grid textarea {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--txt);
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-card .wpcf7-form .dc-form-grid select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 8 3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--bg);
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
}

.form-card .wpcf7-form .dc-form-grid textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

.form-card .wpcf7-form .dc-form-grid input::placeholder,
.form-card .wpcf7-form .dc-form-grid textarea::placeholder {
  color: var(--txt-3);
  font-weight: 400;
}

.form-card .wpcf7-form .dc-form-grid input:focus,
.form-card .wpcf7-form .dc-form-grid select:focus,
.form-card .wpcf7-form .dc-form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2, 123, 254, 0.15);
}

.form-card .wpcf7-form .dc-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--txt-3);
  line-height: 1.5;
  margin-top: 8px;
}

.form-card .wpcf7-form .dc-form-grid input[type="submit"] {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-blue);
  font-family: inherit;
}

.form-card .wpcf7-form .dc-form-grid input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(2, 123, 254, 0.40);
}

.form-card .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 6px;
  color: #ef4444;
}

.form-card .wpcf7-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  border: none !important;
}

.form-card .wpcf7-form .wpcf7-validation-errors {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5 !important;
}

.form-card .wpcf7-form .wpcf7-mail-sent-ok {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac !important;
}


/* ============================================================
   TAKEAWAYS / HOW IT WORKS
   ============================================================ */
.how-it-works {
  text-align: center;
  padding: 80px 5%;
  background: var(--bg-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--txt);
}

.step-card p {
  font-size: 14px;
  color: var(--txt-3);
  line-height: 1.6;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg);
  padding: 80px 5%;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--blue);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
  color: #fff;
}

.faq-item.open {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background-color 0.2s;
}

.faq-q:hover {
  background-color: rgba(255, 255, 255, 0.10);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.30);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
}


/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section {
  background: var(--bg-soft);
  padding: 60px 5%;
  text-align: center;
}

.guarantee-card {
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 520px;
  box-shadow: var(--shadow-md);
}

.guarantee-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.guarantee-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.guarantee-text {
  font-size: 15px;
  color: var(--txt);
  line-height: 1.5;
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 5%;
  text-align: center;
}

.final-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  border: 1px solid rgba(230, 187, 0, 0.30);
  padding: 12px 20px;
  border-radius: 999px;
}

.final-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.final-h {
  font-family: "EB Garamond", serif;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.final-h em {
  font-style: italic;
  color: var(--gold);
}

.final-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 40px;
}

.final-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.30);
  font-style: italic;
}

.footer-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-contact a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.80);
}


/* ============================================================
   FLOATING COUNTDOWN BAR
   ============================================================ */
.floating-countdown {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1180px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.countdown-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.countdown-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3b30;
  animation: pulseLive 1.5s infinite;
  flex-shrink: 0;
}

.countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.countdown-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.time-box {
  min-width: 74px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.time-box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
}

.time-box small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.countdown-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(2, 123, 254, 0.30);
}

.countdown-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(2, 123, 254, 0.45);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid,
  .fail-grid,
  .founder-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .methodology-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-image-wrap {
    order: -1;
  }

  .floating-countdown {
    flex-wrap: wrap;
    padding: 12px 5%;
  }

  .countdown-timer {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    padding: 120px 4% 60px;
  }

  .hero-title {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-h,
  .form-h,
  .fail-content h2,
  .methodology-header h2 {
    font-size: 32px;
  }

  .final-h {
    font-size: 38px;
  }

  .numbers-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  nav {
    padding: 10px 16px;
  }

  .nav-menu {
    display: none;
  }

  .form-card {
    padding: 24px;
  }

  .form-card .wpcf7-form .dc-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-card .wpcf7-form .dc-full {
    grid-column: auto;
  }

  .pricing-card {
    padding: 28px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .floating-countdown {
    bottom: 12px;
    padding: 16px;
  }

  .countdown-left {
    justify-content: center;
    text-align: center;
  }

  .countdown-btn {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .time-box {
    min-width: 62px;
  }

  .time-box span {
    font-size: 22px;
  }
}