/* ==========================================================================
   DOLLCRAFT AI - FE SALES LANDING PAGE (PHASE 1: STICKY HEADER & HERO)
   VIBE SPEC: Studio Craft & Cash (Craftroom Gold & Coral)
   ========================================================================== */

:root {
  /* Color Palette derived from Hero Visual & Craft Studio */
  --bg-canvas: #FBF8F3;
  --color-ink: #1E1926;
  --color-ink-muted: #534D5E;
  --color-coral: #E04368;
  --color-coral-hover: #C93457;
  --color-teal: #00A896;
  --color-amber: #FF9E1B;
  --color-amber-bg: #FFF5E5;
  --color-card: #FFFFFF;
  --color-border: #EADBCE;
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-tech: 'Space Grotesk', monospace;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(30, 25, 38, 0.05);
  --shadow-md: 0 8px 24px rgba(30, 25, 38, 0.08);
  --shadow-lg: 0 20px 48px rgba(30, 25, 38, 0.12);
  --shadow-glow: 0 8px 25px rgba(224, 67, 104, 0.35);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--color-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.15;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* ==========================================================================
   BACKGROUND DECORATION LAYER
   ========================================================================== */
.bg-pattern-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(30, 25, 38, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 25, 38, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}

.glow-orb-1 {
  width: 450px;
  height: 450px;
  background: var(--color-coral);
  top: -100px;
  right: -50px;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--color-amber);
  top: 300px;
  left: -100px;
}

.bg-shape {
  position: absolute;
  opacity: 0.15;
}

.bg-shape-1 {
  top: 80px;
  left: 5%;
  width: 180px;
}

.bg-shape-2 {
  top: 400px;
  right: 2%;
  width: 220px;
}

/* ==========================================================================
   STICKY MINI HEADER
   ========================================================================== */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 219, 206, 0.6);
  transition: all 0.3s ease;
  padding: 0.85rem 0;
}

.sticky-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.65rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-icon {
  font-size: 1.35rem;
  transform: rotate(-10deg);
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.1);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--color-coral);
}

.logo-badge {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--color-amber-bg);
  color: #B26800;
  border: 1px solid rgba(255, 158, 27, 0.4);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  margin-left: 0.25rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-price-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-tech);
  font-weight: 700;
}

.price-strike {
  text-decoration: line-through;
  color: var(--color-ink-muted);
  font-size: 0.9rem;
  opacity: 0.7;
}

.price-current {
  color: var(--color-coral);
  font-size: 1.2rem;
}

/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-header {
  background: var(--color-ink);
  color: #FFFFFF;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(30, 25, 38, 0.15);
}

.btn-header:hover {
  background: var(--color-coral);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4.5rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

/* Eyebrow Badge */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1.5px dashed var(--color-coral);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  max-width: 100%;
  box-sizing: border-box;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-coral);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--color-coral);
  animation: pulse-ring 1.8s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.eyebrow-text {
  font-family: var(--font-tech);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  word-break: break-word;
}

/* Hero Typography */
.hero-headline {
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--color-ink);
  word-break: break-word;
}

.highlight-text {
  color: var(--color-coral);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(224, 67, 104, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.mobile-only-hero-img {
  display: none;
}

.hero-subheadline {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  word-break: break-word;
}

.hero-subheadline strong {
  color: var(--color-ink);
  font-weight: 700;
}

/* Primary CTA Wrapper */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-coral) 0%, #D42B53 100%);
  color: #FFFFFF;
  padding: 1.15rem 1.75rem;
  font-size: 1.15rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
  text-align: center;
  width: 100%;
  max-width: 580px;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E64C71 0%, #BF244A 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(224, 67, 104, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Shine animation overlay */
.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  animation: shine-sweep 4s infinite ease-in-out;
}

@keyframes shine-sweep {
  0% { transform: translateX(-100%) rotate(30deg); }
  20%, 100% { transform: translateX(100%) rotate(30deg); }
}

.btn-text {
  position: relative;
  z-index: 1;
}

/* Trust Mini-bar */
.trust-minibar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-muted);
}

.trust-icon {
  color: var(--color-teal);
  flex-shrink: 0;
}

/* ==========================================================================
   HERO VISUAL COLUMN (CRAFT CARD FRAME)
   ========================================================================== */
.hero-visual-wrapper {
  position: relative;
  perspective: 1000px;
}

.craft-card-frame {
  position: relative;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

.cut-border-overlay {
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(224, 67, 104, 0.4);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
  z-index: 2;
}

/* Top Sample Ribbon */
.sample-ribbon {
  background: var(--color-amber-bg);
  border: 1px solid rgba(255, 158, 27, 0.4);
  color: #9A5A00;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  letter-spacing: 0.03em;
}

.image-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #F4EFEB;
}

.hero-sample-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.craft-card-frame:hover .hero-sample-img {
  transform: scale(1.02);
}

/* Floating Micro Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
  max-width: 250px;
  transition: transform 0.3s ease;
}

.badge-icon {
  font-size: 1.35rem;
  background: var(--bg-canvas);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.badge-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-ink);
  line-height: 1.25;
}

.badge-content small {
  display: block;
  font-size: 0.725rem;
  color: var(--color-ink-muted);
  line-height: 1.2;
}

.badge-top-right {
  top: -15px;
  right: -20px;
  animation: badge-bounce-1 5s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 25px;
  left: -25px;
  animation: badge-bounce-2 5.5s ease-in-out infinite;
}

@keyframes badge-bounce-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes badge-bounce-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-decorative-shape {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   SCROLL CUE
   ========================================================================== */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3.5rem;
  gap: 0.5rem;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.scroll-cue:hover {
  opacity: 1;
}

.scroll-text {
  font-family: var(--font-tech);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--color-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scissors-cue-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.scissors-emoji {
  font-size: 1.1rem;
  transform: rotate(90deg);
  animation: scissors-cut 2s infinite ease-in-out;
}

.dash-line {
  width: 2px;
  height: 22px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-coral) 0,
    var(--color-coral) 4px,
    transparent 4px,
    transparent 8px
  );
  margin-top: 4px;
}

@keyframes scissors-cut {
  0%, 100% { transform: rotate(90deg) translateY(0); }
  50% { transform: rotate(90deg) translateY(5px); }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (MOBILE FIRST RIGOR)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .eyebrow-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-wrapper {
    align-items: center;
    width: 100%;
  }

  .btn-primary {
    max-width: 100%;
  }

  .trust-minibar {
    justify-content: center;
  }

  .hero-visual-wrapper {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .floating-badge {
    position: static;
    margin-top: 0.75rem;
    width: 100%;
    max-width: 100%;
    animation: none;
    box-shadow: var(--shadow-sm);
  }

  .badge-top-right,
  .badge-bottom-left {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .mobile-only-hero-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 1.25rem auto 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 1.75rem 0 2.5rem;
  }

  .logo-badge,
  .header-price-tag {
    display: none;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .btn-header {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }

  .hero-headline {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-subheadline {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .btn-primary {
    padding: 0.95rem 1.15rem;
    font-size: 0.925rem;
    border-radius: var(--radius-md);
  }

  .trust-minibar {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
  }

  .craft-card-frame {
    padding: 0.75rem;
    border-radius: var(--radius-md);
  }

  .cut-border-overlay {
    inset: 6px;
    border-radius: calc(var(--radius-md) - 4px);
  }

  .sample-ribbon {
    font-size: 0.675rem;
    padding: 0.35rem 0.5rem;
  }

  .scroll-cue {
    margin-top: 2rem;
  }
}

/* ==========================================================================
   PHASE 2: SHARED SECTION UTILITIES
   ========================================================================== */

/* Scroll Reveal Animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section Eyebrow (centered label with decorative lines) */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  flex: 0 1 60px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.eyebrow-label {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Section Headlines & Subtext */
.section-headline {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtext {
  font-size: 1.1rem;
  color: var(--color-ink-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.section-subtext strong {
  color: var(--color-ink);
  font-weight: 700;
}

/* ==========================================================================
   SECTION A: WHY THIS NICHE / MARKET PROOF
   ========================================================================== */
.niche-proof-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.niche-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.niche-shape-1 {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  opacity: 0.08;
}

.niche-shape-2 {
  position: absolute;
  bottom: -20px;
  left: -80px;
  width: 320px;
  opacity: 0.06;
}

/* Stat Callout Grid */
.stat-callout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.stat-card {
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-amber));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-coral);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-plus {
  font-size: 2.5rem;
  color: var(--color-amber);
}

.stat-label {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.stat-desc {
  font-size: 0.925rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

/* Niche Bottom Note */
.niche-bottom-note {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-amber-bg);
  border: 1px solid rgba(255, 158, 27, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  max-width: 880px;
  margin: 0 auto;
}

.niche-note-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.niche-bottom-note p {
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.niche-bottom-note strong {
  color: var(--color-ink);
}

/* ==========================================================================
   SECTION B: PROBLEM / AGITATION
   ========================================================================== */
.problem-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: linear-gradient(180deg, #F5F0EA 0%, var(--bg-canvas) 100%);
  overflow: hidden;
}

.problem-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb-problem {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--color-coral);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.problem-shape-1 {
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 200px;
  opacity: 0.07;
}

/* Pain Point Cards Grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.pain-card {
  position: relative;
  background: var(--color-card);
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  overflow: hidden;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-coral);
}

.pain-card-wide {
  grid-column: 1 / -1;
}

.pain-card-number {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-coral);
  opacity: 0.6;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.pain-card-bg-art {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  opacity: 0.06;
  pointer-events: none;
}

.pain-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(224, 67, 104, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pain-emoji {
  font-size: 1.4rem;
}

.pain-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pain-desc {
  font-size: 0.925rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

/* ==========================================================================
   SECTION C: SOLUTION REVEAL
   ========================================================================== */
.solution-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  background: #FFFFFF;
  overflow: hidden;
}

.solution-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.solution-shape-1 {
  position: absolute;
  top: -60px;
  left: -100px;
  width: 350px;
  opacity: 0.05;
}

.solution-shape-2 {
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 260px;
  opacity: 0.06;
}

.glow-orb-solution-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--color-coral);
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.1;
  top: 10%;
  right: -5%;
}

.glow-orb-solution-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--color-amber);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  bottom: 10%;
  left: -5%;
}

/* Solution Label Bar */
.solution-label-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--color-amber-bg);
  border: 1.5px dashed rgba(255, 158, 27, 0.5);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.5rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.solution-label-icon {
  font-size: 1.15rem;
}

.solution-label-text {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  color: #9A5A00;
  letter-spacing: 0.02em;
}

/* Bento Grid */
.solution-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.bento-card {
  position: relative;
  background: var(--bg-canvas);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.bento-card-lg {
  grid-column: span 2;
}

.bento-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.bento-desc {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.bento-tag {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-teal);
  background: rgba(0, 168, 150, 0.08);
  border: 1px solid rgba(0, 168, 150, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================================================
   SECTION D: HOW IT WORKS
   ========================================================================== */
.how-it-works-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hiw-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hiw-shape-1 {
  position: absolute;
  top: 30px;
  left: -50px;
  width: 180px;
  opacity: 0.07;
}

.hiw-shape-2 {
  position: absolute;
  bottom: 40px;
  right: -40px;
  width: 200px;
  opacity: 0.06;
}

/* Steps Container */
.hiw-steps-container {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.hiw-step-card:last-child {
  padding-bottom: 0;
}

.hiw-step-number-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-coral) 0%, #D42B53 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(224, 67, 104, 0.25);
  position: relative;
  z-index: 2;
}

.hiw-step-number {
  font-family: var(--font-tech);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

/* Step Connector (vertical dashed line + arrow icon) */
.hiw-step-connector {
  position: absolute;
  left: 34px;
  top: 76px;
  bottom: -4px;
  width: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hiw-step-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-coral) 0,
    var(--color-coral) 5px,
    transparent 5px,
    transparent 10px
  );
  opacity: 0.35;
}

.hiw-arrow-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  opacity: 0.5;
}

.hiw-step-content {
  flex: 1;
  padding-top: 0.25rem;
}

.hiw-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.hiw-step-desc {
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

/* How It Works Bottom Reassurance */
.hiw-bottom-reassurance {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(224, 67, 104, 0.06) 0%, rgba(255, 158, 27, 0.06) 100%);
  border: 1.5px dashed var(--color-coral);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.hiw-reassurance-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.hiw-bottom-reassurance p {
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.hiw-bottom-reassurance strong {
  color: var(--color-ink);
}

/* ==========================================================================
   PHASE 2: RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
  .stat-callout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 640px;
    margin: 0 auto;
  }

  .pain-card-wide {
    grid-column: span 1;
  }

  .solution-bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .bento-card-lg {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .niche-proof-section,
  .problem-section,
  .solution-section,
  .how-it-works-section {
    padding: 4.5rem 0 3.5rem;
  }

  .section-headline {
    font-size: clamp(1.55rem, 5vw, 2rem);
  }

  .section-subtext {
    font-size: 1rem;
    margin-bottom: 2.25rem;
  }

  .solution-bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-lg {
    grid-column: span 1;
  }

  .hiw-step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .hiw-step-connector {
    display: none;
  }

  .hiw-step-content {
    padding-top: 0;
  }

  .niche-bottom-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .hiw-bottom-reassurance {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .solution-label-bar {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 640px) {
  .niche-proof-section,
  .problem-section,
  .solution-section,
  .how-it-works-section {
    padding: 3rem 0 2.5rem;
  }

  .section-headline {
    font-size: 1.45rem;
  }

  .section-subtext {
    font-size: 0.925rem;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .stat-card {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .pain-card {
    padding: 1.75rem 1.5rem;
  }

  }

  .hiw-step-number {
    font-size: 1.25rem;
  }

  .hiw-step-title {
    font-size: 1.1rem;
  }

  .hiw-step-desc {
    font-size: 0.875rem;
  }

  .pain-title,
  .bento-title {
    font-size: 1.05rem;
  }

  .pain-desc,
  .bento-desc,
  .stat-desc {
    font-size: 0.85rem;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   PHASE 3: PROOF GALLERY — "See What One Prompt Can Do"
   ========================================================================== */
.proof-gallery-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  background: #FFFFFF;
  overflow: hidden;
}

.proof-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.proof-shape-1 {
  position: absolute;
  top: -40px;
  left: -80px;
  width: 320px;
  opacity: 0.05;
}

.proof-shape-2 {
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 200px;
  opacity: 0.06;
}

.glow-orb-proof-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--color-coral);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  top: 10%;
  right: -5%;
}

.glow-orb-proof-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--color-amber);
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.06;
  bottom: 15%;
  left: -8%;
}

/* Featured Gallery Pair (large) */
.gallery-featured-pair {
  margin-bottom: 2.5rem;
}

.gallery-pair-card {
  background: var(--bg-canvas);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.gallery-pair-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-pair-featured {
  max-width: 680px;
  margin: 0 auto;
  border: 2px solid var(--color-coral);
  box-shadow: 0 8px 32px rgba(224, 67, 104, 0.1);
}

/* Theme Label */
.pair-theme-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 1rem;
  text-align: center;
}

/* Toggle Container */
.pair-toggle-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pair-images {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F4EFEB;
  aspect-ratio: auto;
}

.pair-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.45s ease;
}

.pair-img.active {
  opacity: 1;
  position: relative;
}

/* Toggle Switch Buttons */
.pair-toggle-switch {
  display: flex;
  gap: 0;
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 3px;
  max-width: 300px;
  margin: 0 auto;
}

.toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-tech);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--color-ink-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.toggle-btn.active {
  background: var(--color-ink);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(30, 25, 38, 0.15);
}

.toggle-btn:hover:not(.active) {
  background: rgba(30, 25, 38, 0.05);
}

.toggle-icon {
  font-size: 0.9rem;
}

/* Pair Caption */
.pair-caption {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
  text-align: center;
  margin-top: 0.85rem;
  padding: 0 0.5rem;
}

/* Gallery Grid */
.gallery-pairs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

/* Gallery Bottom Note */
.gallery-bottom-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.06) 0%, rgba(255, 158, 27, 0.06) 100%);
  border: 1.5px dashed var(--color-teal);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  max-width: 880px;
  margin: 0 auto;
}

.gallery-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.gallery-note-content p {
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.gallery-note-content strong {
  color: var(--color-ink);
}

/* ==========================================================================
   PHASE 3B: THEMES / CATEGORIES COVERED
   ========================================================================== */
.themes-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, var(--bg-canvas) 0%, #F5F0EA 100%);
  overflow: hidden;
}

.themes-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.themes-shape-1 {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 250px;
  opacity: 0.06;
}

.themes-shape-2 {
  position: absolute;
  bottom: -20px;
  left: -60px;
  width: 200px;
  opacity: 0.07;
}

/* Theme Grid */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.theme-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 100px;
}

.theme-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-coral);
}

.theme-tile-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.theme-tile-name {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Visual Anchor Tiles */
.theme-tile-visual {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.theme-tile-visual .theme-tile-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  background: linear-gradient(to top, rgba(30, 25, 38, 0.85), transparent);
  color: #FFFFFF;
  font-size: 0.7rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.theme-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.theme-tile-visual:hover .theme-tile-img {
  transform: scale(1.05);
}

/* "+30 More" Tile */
.theme-tile-more {
  background: linear-gradient(135deg, var(--color-coral) 0%, #D42B53 100%);
  border-color: transparent;
}

.theme-tile-more .theme-tile-icon {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
}

.theme-tile-more .theme-tile-name {
  color: rgba(255, 255, 255, 0.9);
}

.theme-tile-more:hover {
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   PHASE 3C: WHO THIS IS FOR / WHERE TO SELL
   ========================================================================== */
.who-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  background: #FFFFFF;
  overflow: hidden;
}

.who-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.who-shape-1 {
  position: absolute;
  top: -40px;
  left: -80px;
  width: 300px;
  opacity: 0.06;
}

.who-shape-2 {
  position: absolute;
  bottom: 30px;
  right: -50px;
  width: 180px;
  opacity: 0.07;
}

.glow-orb-who {
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--color-teal);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  top: 40%;
  right: -10%;
}

/* Content Grid */
.who-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

/* Channel Cards */
.who-channels-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.channel-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-canvas);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.channel-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 67, 104, 0.08);
  border-radius: var(--radius-md);
}

.channel-icon {
  width: 28px;
  height: 28px;
}

.channel-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.channel-desc {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

/* Visual Column — Product Mockups */
.who-visual-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 120px;
}

.product-mockup-frame {
  background: var(--bg-canvas);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-mockup-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mockup-label {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  text-align: center;
}

.mockup-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px dashed var(--color-border);
  background: #FFFFFF;
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.product-mockup-frame:hover .mockup-img {
  transform: scale(1.02);
}

.mockup-caption {
  font-size: 0.8rem;
  color: var(--color-ink-muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.4;
}

/* ==========================================================================
   PHASE 3D: PRICING & OFFER
   ========================================================================== */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

.pricing-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.pricing-shape-1 {
  position: absolute;
  top: -30px;
  left: -60px;
  width: 240px;
  opacity: 0.06;
}

.pricing-shape-2 {
  position: absolute;
  bottom: -40px;
  right: -50px;
  width: 200px;
  opacity: 0.07;
}

.glow-orb-pricing {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--color-coral);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}

/* Pricing Card */
.pricing-card {
  max-width: 620px;
  margin: 0 auto;
}

.pricing-card-inner {
  background: var(--color-card);
  border: 2px solid var(--color-coral);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 20px 60px rgba(224, 67, 104, 0.15);
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(135deg, rgba(224, 67, 104, 0.04) 0%, rgba(255, 158, 27, 0.04) 100%);
}

.pricing-badge {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-coral);
  background: rgba(224, 67, 104, 0.08);
  border: 1px solid rgba(224, 67, 104, 0.2);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-ink);
}

.pricing-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-term {
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink-muted);
  margin-left: 0.5rem;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

/* Pricing Divider */
.pricing-divider {
  position: relative;
  text-align: center;
  padding: 0 2rem;
}

.pricing-divider::before {
  content: '';
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 50%;
  height: 1px;
  background: var(--color-border);
}

.pricing-divider-label {
  position: relative;
  background: var(--color-card);
  padding: 0 1rem;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Pricing Features */
.pricing-features {
  list-style: none;
  padding: 1.75rem 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.pricing-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature span {
  font-size: 0.925rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.pricing-feature strong {
  color: var(--color-ink);
}

/* Pricing CTA */
.pricing-cta-wrap {
  padding: 2rem;
}

.btn-pricing {
  width: 100%;
  max-width: 100%;
}

/* ==========================================================================
   PHASE 3E: GUARANTEE
   ========================================================================== */
.guarantee-section {
  position: relative;
  z-index: 1;
  padding: 2rem 0 5rem;
}

.guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.05) 0%, rgba(0, 168, 150, 0.02) 100%);
  border: 2px solid rgba(0, 168, 150, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.guarantee-shield {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 150, 0.08);
  border-radius: 50%;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
}

.guarantee-text {
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.guarantee-text strong {
  color: var(--color-ink);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-teal);
  background: rgba(0, 168, 150, 0.08);
  border: 1px solid rgba(0, 168, 150, 0.2);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
}

.guarantee-badge-icon {
  font-size: 0.9rem;
}

/* ==========================================================================
   PHASE 3F: FAQ ACCORDION
   ========================================================================== */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, #F5F0EA 0%, var(--bg-canvas) 100%);
  overflow: hidden;
}

.faq-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.faq-shape-1 {
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 350px;
  opacity: 0.05;
}

/* Accordion Container */
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(224, 67, 104, 0.3);
}

.faq-item.open {
  border-color: var(--color-coral);
  box-shadow: 0 4px 16px rgba(224, 67, 104, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-coral);
}

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(224, 67, 104, 0.08);
  border-radius: 50%;
  color: var(--color-coral);
  transition: transform 0.35s ease, background 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--color-coral);
  color: #FFFFFF;
}

.faq-item.open .faq-chevron svg {
  stroke: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.925rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

/* ==========================================================================
   PHASE 3: RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
  .gallery-pairs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .who-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .who-visual-col {
    position: static;
    flex-direction: row;
    gap: 1.5rem;
  }

  .product-mockup-frame {
    flex: 1;
  }

  .themes-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}

@media (max-width: 768px) {
  .proof-gallery-section,
  .themes-section,
  .who-section,
  .pricing-section,
  .faq-section {
    padding: 4.5rem 0 3.5rem;
  }

  .guarantee-section {
    padding: 1.5rem 0 3.5rem;
  }

  .gallery-pairs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .gallery-featured-pair {
    margin-bottom: 2rem;
  }

  .gallery-bottom-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .who-visual-col {
    flex-direction: column;
  }

  .channel-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .guarantee-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .guarantee-shield {
    margin: 0 auto;
  }

  .guarantee-badge {
    margin: 0 auto;
  }

  .pricing-number {
    font-size: 4rem;
  }

  .pricing-features {
    padding: 1.5rem 1.25rem 0;
  }

  .pricing-cta-wrap {
    padding: 1.5rem 1.25rem;
  }

  .themes-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
  }

  .theme-tile {
    padding: 1rem 0.5rem;
    min-height: 80px;
  }
}

@media (max-width: 640px) {
  .proof-gallery-section,
  .themes-section,
  .who-section,
  .pricing-section,
  .faq-section {
    padding: 3rem 0 2.5rem;
  }

  .guarantee-section {
    padding: 1rem 0 2.5rem;
  }

  .gallery-pairs-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
  }

  .pair-theme-label {
    font-size: 0.95rem;
  }

  .pair-caption {
    font-size: 0.8rem;
  }

  .toggle-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1.15rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }

  .pricing-header {
    padding: 2rem 1.25rem 1.5rem;
  }

  .pricing-number {
    font-size: 3.5rem;
  }

  .pricing-currency {
    font-size: 1.5rem;
  }

  .channel-title {
    font-size: 1rem;
  }

  .channel-desc {
    font-size: 0.85rem;
  }

  .guarantee-title {
    font-size: 1.25rem;
  }

  .guarantee-text {
    font-size: 0.875rem;
  }

  .themes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .theme-tile {
    padding: 0.75rem 0.4rem;
    min-height: 70px;
  }

  .theme-tile-icon {
    font-size: 1.25rem;
  }

  .theme-tile-name {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   PHASE 4A: FINAL CTA — Last Conversion Push
   ========================================================================== */
.final-cta-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-ink) 0%, #2A2233 50%, #1E1926 100%);
  overflow: hidden;
}

.final-cta-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.final-cta-shape-1 {
  position: absolute;
  top: -60px;
  left: -100px;
  width: 350px;
  opacity: 0.04;
  filter: brightness(2);
}

.final-cta-shape-2 {
  position: absolute;
  bottom: -50px;
  right: -80px;
  width: 300px;
  opacity: 0.04;
  filter: brightness(2);
}

.final-cta-shape-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  opacity: 0.03;
  filter: brightness(2);
}

.glow-orb-final-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--color-coral);
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.12;
  top: -10%;
  right: 10%;
}

.glow-orb-final-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--color-amber);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.08;
  bottom: -10%;
  left: 10%;
}

.final-cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.final-cta-headline .highlight-text {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Final CTA Button */
.final-cta-btn-wrap {
  margin-bottom: 1.5rem;
}

.btn-final-cta {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
  box-shadow: 0 8px 32px rgba(224, 67, 104, 0.35);
}

.btn-final-cta:hover {
  box-shadow: 0 12px 48px rgba(224, 67, 104, 0.5);
}

/* Final Risk Reversal Bar */
.final-risk-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.final-risk-bar svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ==========================================================================
   PHASE 4B: FOOTER
   ========================================================================== */
.site-footer {
  background: #141118;
  color: rgba(255, 255, 255, 0.5);
  padding: 3.5rem 0 2rem;
  font-size: 0.85rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  text-decoration: none;
}

.footer-logo .logo-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
}

.footer-logo .logo-accent {
  color: var(--color-coral);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  max-width: 280px;
}

/* Footer Links */
.footer-links-title {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-link-list a:hover {
  color: var(--color-coral);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  max-width: 480px;
  text-align: right;
  line-height: 1.5;
}

/* ==========================================================================
   PHASE 4: RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 4.5rem 0;
  }

  .final-cta-subtext {
    font-size: 1rem;
  }

  .btn-final-cta {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .final-cta-section {
    padding: 3.5rem 0;
  }

  .final-cta-subtext {
    font-size: 0.925rem;
  }

  .btn-final-cta {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
}

/* ==========================================================================
   OTO1 PRO EXTENSIONS & STYLING SYSTEM
   ========================================================================== */

/* Top Order Confirmation & Alert Strip */
.oto-confirm-strip {
  background: linear-gradient(90deg, #FF9E1B 0%, #E04368 50%, #FF9E1B 100%);
  background-size: 200% 100%;
  animation: strip-gradient 6s ease infinite;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  text-align: center;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(224, 67, 104, 0.25);
}

@keyframes strip-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.confirm-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-tech);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}

.confirm-badge {
  background: #FFFFFF;
  color: var(--color-ink);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.confirm-text {
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.confirm-text strong {
  text-decoration: underline;
  color: #FFF3D1;
}

/* Pro Badge in Logo & Eyebrow */
.logo-pro-badge {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF9E1B 0%, #E04368 100%);
  color: #FFFFFF;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-left: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(224, 67, 104, 0.3);
}

/* Decline / No-Thanks Link Styling */
.decline-link-wrap {
  text-align: center;
  margin-top: 1rem;
}

.no-thanks-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  text-decoration: underline;
  transition: color 0.2s ease, opacity 0.2s ease;
  padding: 0.4rem 0.8rem;
  line-height: 1.4;
  opacity: 0.85;
}

.no-thanks-link:hover {
  color: var(--color-coral);
  opacity: 1;
}

/* OTO Hero Enhancements */
.oto-hero-eyebrow {
  background: var(--color-amber-bg);
  border: 1.5px solid rgba(255, 158, 27, 0.5);
  color: #B26800;
}

/* Pro Comparison Table */
.comparison-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  background: #FFFFFF;
}

.table-wrapper {
  max-width: 920px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.comparison-table th {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--bg-canvas);
  color: var(--color-ink);
}

.comparison-table th.col-pro {
  background: linear-gradient(135deg, rgba(224, 67, 104, 0.08) 0%, rgba(255, 158, 27, 0.08) 100%);
  color: var(--color-coral);
  border-top: 3px solid var(--color-coral);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.feature-title-cell {
  font-weight: 600;
  color: var(--color-ink);
  width: 40%;
}

.feature-desc-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-ink-muted);
  margin-top: 0.2rem;
}

.val-fe {
  color: var(--color-ink-muted);
  width: 30%;
}

.val-pro {
  font-weight: 700;
  color: var(--color-ink);
  background: rgba(224, 67, 104, 0.03);
  width: 30%;
}

.val-pro strong {
  color: var(--color-coral);
}

.check-icon {
  color: var(--color-teal);
  font-weight: 800;
  margin-right: 0.35rem;
}

.star-icon {
  color: var(--color-amber);
  font-weight: 800;
  margin-right: 0.35rem;
}

.cross-icon {
  color: #A098A8;
  margin-right: 0.35rem;
}

/* Pro Value Stack Cards */
.pro-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto 3rem;
}

.pro-stack-card {
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pro-stack-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-coral);
}

.pro-card-badge {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--color-coral);
  background: rgba(224, 67, 104, 0.08);
  border: 1px solid rgba(224, 67, 104, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pro-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pro-card-desc {
  font-size: 0.925rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.pro-card-desc strong {
  color: var(--color-ink);
}

/* Responsive Table & Stack adjustments */
@media (max-width: 768px) {
  .pro-stack-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }

  .confirm-strip-inner {
    font-size: 0.8rem;
  }

/* ==========================================================================
   OTO2 COMMERCIAL STUDIO EXTENSIONS & STYLING SYSTEM
   ========================================================================== */

/* Top Order Confirmation & Alert Strip for OTO2 */
.oto2-confirm-strip {
  background: linear-gradient(90deg, #00A896 0%, #FF9E1B 50%, #E04368 100%);
  background-size: 200% 100%;
  animation: strip-gradient 6s ease infinite;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  text-align: center;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 168, 150, 0.25);
}

/* Studio Badge in Logo & Eyebrow */
.logo-studio-badge {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00A896 0%, #FF9E1B 100%);
  color: #FFFFFF;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-left: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(0, 168, 150, 0.3);
}

.oto2-hero-eyebrow {
  background: rgba(0, 168, 150, 0.08);
  border: 1.5px solid rgba(0, 168, 150, 0.4);
  color: #007A6C;
}

/* 4-Step Commercial Workflow Grid */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.workflow-card {
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.workflow-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-teal);
  box-shadow: var(--shadow-md);
}

.workflow-step-num {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-teal);
  background: rgba(0, 168, 150, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.workflow-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.workflow-step-desc {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

/* Platform Use-Cases Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1040px;
  margin: 0 auto;
}

.platform-card {
  background: var(--color-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-teal);
  box-shadow: var(--shadow-md);
}

.platform-icon {
  font-size: 2.2rem;
  background: var(--bg-canvas);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.platform-info {
  flex-grow: 1;
}

.platform-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

.platform-desc {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

/* Responsive adjustments for OTO2 */
@media (max-width: 1024px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .platform-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   LEGAL & SUPPORT PAGES STYLES
   ========================================================================== */
.legal-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(224, 67, 104, 0.04) 0%, rgba(251, 248, 243, 0) 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.legal-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
}

.legal-hero-sub {
  font-size: 1.05rem;
  color: var(--color-ink-muted);
  max-width: 650px;
  margin: 0 auto 1.25rem;
}

.legal-updated-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-ink-muted);
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
}

.legal-main-section {
  padding: 3.5rem 0 5rem;
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.legal-article h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-ink);
  margin: 2.25rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(234, 219, 206, 0.5);
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-ink);
  margin: 1.5rem 0 0.75rem;
}

.legal-article p {
  font-size: 1rem;
  color: var(--color-ink-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.legal-article ul, .legal-article ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--color-ink-muted);
}

.legal-article li {
  margin-bottom: 0.6rem;
  line-height: 1.65;
}

.legal-article a {
  color: var(--color-coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-article a:hover {
  color: var(--color-ink);
}

.legal-notice-box {
  background: var(--color-amber-bg);
  border: 1px solid rgba(255, 158, 27, 0.35);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  color: #8C5300;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-notice-box strong {
  color: #613900;
}

.legal-crosslinks-bar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-crosslinks-title {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  letter-spacing: 0.05em;
}

.legal-crosslinks-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.legal-crosslinks-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-coral);
  text-decoration: none;
}

.legal-crosslinks-list a:hover {
  text-decoration: underline;
}

/* CONTACT PAGE STYLES */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-coral);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.contact-card-desc {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.contact-direct-box {
  background: linear-gradient(135deg, #1E1926 0%, #2D2638 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.contact-direct-box h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.contact-direct-box p {
  color: #D1CDD8;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.contact-vendor-card {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.contact-vendor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-coral);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-vendor-info {
  text-align: left;
}

.contact-vendor-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.contact-vendor-email {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  color: #FF9E1B;
  text-decoration: none;
}

.contact-vendor-email:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 1.75rem 1.25rem;
  }
  .contact-direct-box {
    padding: 2rem 1.25rem;
  }
  .contact-vendor-card {
    flex-direction: column;
    text-align: center;
  }
  .contact-vendor-info {
    text-align: center;
  }
}

/* ==========================================================================
   THANK YOU / DELIVERY CONFIRMATION PAGE STYLES (COMPLETE REDESIGN)
   ========================================================================== */
.thankyou-header {
  border-bottom: 1px solid rgba(234, 219, 206, 0.8);
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.thankyou-header .header-container {
  justify-content: center;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.thankyou-main {
  position: relative;
  z-index: 2;
  padding: 3rem 0 5rem;
}

.thankyou-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Success Hero Section */
.thankyou-hero {
  text-align: center;
  margin-bottom: 2.75rem;
}

.success-badge-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.25rem;
}

.success-badge-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A896 0%, #028090 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 168, 150, 0.35);
  position: relative;
  z-index: 2;
}

.success-badge-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 168, 150, 0.4);
  animation: spinRing 25s linear infinite;
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.order-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tech);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 168, 150, 0.1);
  color: #007A6C;
  border: 1px solid rgba(0, 168, 150, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.status-pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #00A896;
  box-shadow: 0 0 0 0 rgba(0, 168, 150, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 150, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 9px rgba(0, 168, 150, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 168, 150, 0); }
}

.thankyou-headline {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.thankyou-subheadline {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   PRIMARY DELIVERY HIGHLIGHT CARD (#1 MOST PROMINENT ELEMENT ON PAGE)
   ========================================================================== */
.delivery-primary-card {
  position: relative;
  background: linear-gradient(135deg, #053B36 0%, #007064 50%, #00A896 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  margin: 2.25rem 0 3.25rem;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 24px 50px rgba(0, 168, 150, 0.28), 0 0 0 1px rgba(0, 168, 150, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-card-glow-bg {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 180%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.delivery-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  margin-bottom: 1.25rem;
  position: relative;
}

.delivery-icon-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: pulseGlowRing 2s infinite;
}

@keyframes pulseGlowRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

.delivery-emoji {
  font-size: 2rem;
  line-height: 1;
}

.delivery-card-headline {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  letter-spacing: -0.01em;
}

.delivery-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: #054038;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.status-chip svg {
  color: #00A896;
}

.status-chip strong {
  color: #00A896;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   SPAM CHECK SECTION (#2 MOST PROMINENT CARD - 5-STEP CHECKLIST)
   ========================================================================== */
.spam-check-section {
  background: #FFFDF9;
  border: 2px solid #F7D4B2;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  margin-bottom: 3.25rem;
  box-shadow: 0 14px 40px rgba(255, 158, 27, 0.08);
  position: relative;
}

.spam-section-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px dashed rgba(255, 158, 27, 0.45);
}

.spam-badge-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FF9E1B 0%, #E68A00 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(255, 158, 27, 0.3);
}

.spam-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  font-weight: 800;
  color: #7A4500;
  line-height: 1.25;
}

.spam-section-subtitle {
  font-size: 0.95rem;
  color: #925400;
  margin-top: 0.25rem;
  line-height: 1.45;
}

.spam-steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.spam-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #FFFFFF;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(234, 219, 206, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.spam-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30, 25, 38, 0.07);
  border-color: #FFC085;
}

.step-number-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #FF9E1B 0%, #F58700 100%);
  color: #FFFFFF;
  font-family: var(--font-tech);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 158, 27, 0.25);
  margin-top: 0.1rem;
}

.step-body {
  flex: 1;
}

.step-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.step-icon-mini {
  color: var(--color-amber);
  display: flex;
  align-items: center;
}

.step-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.3;
}

.step-card-desc {
  font-size: 0.96rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.step-card-desc strong {
  color: var(--color-ink);
  font-weight: 700;
}

/* Highlighted Step 5 Card */
.spam-step-card.highlight-step-card {
  background: #FFF7F8;
  border: 2px solid var(--color-coral);
  box-shadow: 0 8px 24px rgba(224, 67, 104, 0.12);
}

.spam-step-card.highlight-step-card .step-number-badge {
  background: linear-gradient(135deg, #E04368 0%, #C93457 100%);
  box-shadow: 0 4px 12px rgba(224, 67, 104, 0.35);
}

.step-action-bar {
  margin-top: 0.85rem;
}

.btn-step-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-coral);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(224, 67, 104, 0.25);
}

.btn-step-action:hover {
  background: var(--color-coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(224, 67, 104, 0.35);
}

/* ==========================================================================
   WHAT HAPPENS NEXT BENTO TIMELINE
   ========================================================================== */
.next-steps-section {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  margin-bottom: 2.75rem;
  box-shadow: var(--shadow-sm);
}

.next-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.next-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.next-bento-card {
  background: var(--bg-canvas);
  border: 1px solid rgba(234, 219, 206, 0.8);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: transform 0.25s ease;
}

.next-bento-card:hover {
  transform: translateY(-3px);
}

.bento-step-num {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-coral);
  background: rgba(224, 67, 104, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 0.85rem;
}

.bento-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

.bento-card-desc {
  font-size: 0.925rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

/* ==========================================================================
   VENDOR SUPPORT CARD
   ========================================================================== */
.vendor-support-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-sm);
}

.vendor-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A896 0%, #028090 100%);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.25);
}

.vendor-details {
  flex: 1;
}

.vendor-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.2rem;
}

.vendor-subtext {
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.45;
}

.vendor-subtext a {
  color: var(--color-coral);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--color-coral);
}

.vendor-subtext a:hover {
  color: var(--color-coral-hover);
  border-bottom-color: var(--color-coral-hover);
}

/* Minimal Footer */
.thankyou-footer {
  text-align: center;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(234, 219, 206, 0.6);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  opacity: 0.85;
}

/* Responsive adjustments */
@media (max-width: 820px) {
  .next-bento-grid {
    grid-template-columns: 1fr;
  }
  .vendor-support-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .thankyou-main {
    padding: 2rem 0 3.5rem;
  }
  .delivery-primary-card {
    padding: 2rem 1.25rem;
    margin: 1.75rem 0 2.5rem;
  }
  .spam-check-section {
    padding: 1.65rem 1.25rem;
  }
  .spam-section-header {
    gap: 0.85rem;
    margin-bottom: 1.5rem;
  }
  .spam-step-card {
    padding: 1.1rem 1rem;
    gap: 0.9rem;
  }
  .step-number-badge {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .next-steps-section {
    padding: 1.65rem 1.25rem;
  }
}
