/* ==========================================================================
   DL DIGITAL — Modern SEO & Performance Marketing Landing Page
   Aesthetic: Replicating the Reference Layout, Typography & Glassmorphic UI
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Palettes */
  --primary-indigo: #2563eb;
  --primary-gradient: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #6366f1 100%);
  --hero-card-bg: #e2e5ea;
  --hero-card-gradient: linear-gradient(145deg, #e4e7ed 0%, #d8dce4 100%);
  
  /* Accents & Signals */
  --accent-coral: #ff5e36;
  --accent-blue: #2563eb;
  --accent-green: #10b981;
  
  /* Neutrals */
  --bg-page: #eaecf1;
  --bg-surface: #ffffff;
  --bg-card-subtle: #f8fafc;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-glass: rgba(255, 255, 255, 0.7);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px -15px rgba(15, 23, 42, 0.12);
  --shadow-glass: 0 15px 35px rgba(0, 0, 0, 0.09);
  
  /* Typography */
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radii */
  --radius-outer: 40px;
  --radius-hero: 36px;
  --radius-card: 24px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  padding: 16px;
  min-height: 100vh;
}

/* --- Top Announcement Bar --- */
.announcement-bar {
  max-width: 1360px;
  margin: 0 auto 12px auto;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.announcement-link {
  font-weight: 700;
  color: var(--primary-indigo);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.announcement-link:hover {
  text-decoration: underline;
  transform: translateX(2px);
}

/* --- Outer Page Canvas Frame (Replicating reference presentation) --- */
.site-frame {
  max-width: 1360px;
  margin: 0 auto 40px auto;
  background-color: var(--bg-surface);
  border-radius: var(--radius-outer);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 24px 32px 48px 32px;
}

/* --- Global Header / Navigation --- */
.site-header {
  margin-bottom: 24px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

/* Left Brand Identity: / hello@dldigital.in */
.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
}

.brand-badge-icon {
  width: 32px;
  height: 32px;
  background-color: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.brand-identity:hover .brand-badge-icon {
  transform: rotate(15deg) scale(1.05);
}

.brand-email {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

/* Center Nav Links with Dots (Matching reference) */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 4px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-dot {
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Right Header Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-text-btn {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  padding: 6px 12px;
  transition: opacity 0.2s ease;
}

.nav-text-btn:hover {
  opacity: 0.7;
}

.btn-pill-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: 1.5px solid var(--text-dark);
  border-radius: var(--radius-pill);
  background-color: transparent;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}

.btn-pill-action .btn-subtext {
  font-weight: 400;
  color: var(--text-muted);
}

.btn-pill-action:hover {
  background-color: var(--text-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-pill-action:hover .btn-subtext {
  color: #cbd5e1;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: 0.2s ease;
}

.mobile-nav-drawer {
  display: none;
}

/* ==========================================================================
   01 — HERO SECTION (Exact Reference Layout Match)
   ========================================================================== */
.hero-section {
  margin-bottom: 50px;
}

.hero-card {
  background: var(--hero-card-gradient);
  border-radius: var(--radius-hero);
  padding: 56px 54px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Hero Left Column */
.hero-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

/* Top Social Proof Badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-icon-wrap {
  width: 36px;
  height: 36px;
  background-color: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.badge-sublink {
  font-size: 0.85rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.badge-sublink u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Massive Editorial Headline "Grow+" */
.hero-headline-wrap {
  margin-bottom: 18px;
}

.hero-display-title {
  font-family: var(--font-serif);
  font-size: clamp(5.2rem, 9.2vw, 9rem);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 0.92;
  color: #0b0f19;
  position: relative;
  display: inline-block;
}

.serif-plus {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 300;
  font-family: var(--font-serif);
  margin-left: -4px;
}

/* Subtitle */
.hero-description {
  font-size: 1.15rem;
  color: #334155;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-description strong {
  color: #0f172a;
  font-weight: 600;
}

/* Testimonial / Rating Strip */
.hero-rating-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.client-avatar-thumb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid #ffffff;
  flex-shrink: 0;
}

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

.rating-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.rating-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.rating-divider {
  color: #94a3b8;
}

.rating-score {
  font-weight: 700;
  color: var(--text-dark);
}

.rating-subtext {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Action Buttons Row */
.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  background-color: #0b0f19;
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.96rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.25s var(--ease-smooth);
}

.hero-btn-primary:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.hero-text-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #0b0f19;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.hero-text-cta:hover {
  opacity: 0.75;
}

.arrow-diag {
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}

.hero-text-cta:hover .arrow-diag {
  transform: translate(2px, -2px);
}

/* Trust Statement Strip */
.hero-trust-statement {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #64748b;
}

.hero-trust-statement .bullet {
  color: #cbd5e1;
}

/* ==========================================================================
   Hero Right Column: Visual Showcase & Floating Glassmorphic Badges
   ========================================================================== */
.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-media-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 540px;
}

/* Vibrant Backdrop */
.visual-gradient-backdrop {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #4f46e5 85%, #ff5e36 100%);
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.35);
  overflow: hidden;
}

.visual-gradient-backdrop::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Founder Photo Wrap */
.founder-photo-wrap {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  overflow: hidden;
}

.founder-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.hero-media-container:hover .founder-main-img {
  transform: scale(1.05);
}

.photo-ambient-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 40%);
  pointer-events: none;
}

/* Circular Play Button matching reference */
.hero-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.play-icon-triangle {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #0f172a;
  margin-left: 3px;
}

.hero-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Floating Check Pill Badges (Matching "How is the fit?" & "Do you like the design?") */
.floating-pill-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 8px 16px 8px 10px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 11;
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: floatSlow 5s ease-in-out infinite alternate;
}

.pill-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

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

.check-blue {
  background-color: var(--primary-indigo);
}

.pill-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.pill-top-left {
  top: 28%;
  left: -48px;
}

.pill-mid-left {
  top: 42%;
  left: -70px;
}

/* Floating Glass Cards */
.floating-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  border-radius: 20px;
  z-index: 11;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

/* Top Right Glass: "— UP TO 60% More sales this week" */
.glass-top-right {
  top: 18px;
  right: -24px;
  padding: 20px 24px;
  width: 170px;
}

.glass-dash {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #64748b;
  margin-bottom: 2px;
}

.glass-big-stat {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.05;
  letter-spacing: -1px;
}

.glass-caption {
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.3;
  margin-top: 6px;
}

/* Bottom Right Glass: Preview Card matching reference shoe card */
.glass-bottom-right {
  bottom: 24px;
  right: -36px;
  padding: 16px 18px;
  width: 240px;
}

.growth-card-preview {
  display: flex;
  align-items: center;
  gap: 14px;
}

.growth-card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.growth-card-details {
  display: flex;
  flex-direction: column;
}

.growth-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.growth-card-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.growth-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  margin-top: 2px;
}

.star-rating {
  font-weight: 700;
  color: #0f172a;
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
}

.sub-rating {
  color: #64748b;
}

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

/* Logo / Trust Strip under Hero Card */
.hero-logo-strip {
  padding: 32px 16px 8px 16px;
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0.75;
}

.logo-item.text-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-item.text-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ==========================================================================
   02 — TRUST / VALUE STRIP
   ========================================================================== */
.value-strip-section {
  margin: 40px 0 70px 0;
}

.value-strip-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-pillar-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s var(--ease-smooth);
}

.value-pillar-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-content h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.pillar-content p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Common Section Layout Standards
   ========================================================================== */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 10px;
}

.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-indigo);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Buttons */
.btn-solid-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: var(--text-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}

.btn-solid-dark:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-text-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-indigo);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

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

/* ==========================================================================
   03 — ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 40px 0 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-card-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f1f5f9;
}

.about-img-container {
  position: relative;
  width: 100%;
  height: 480px;
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.1) 50%, transparent 100%);
}

.about-founder-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
}

.badge-title-founder {
  font-size: 1.3rem;
  font-weight: 800;
}

.badge-subtitle-founder {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-top: 2px;
}

.badge-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}

.about-content-side .section-title {
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.15rem;
  color: #334155;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-deep-dive p {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.about-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-bottom: 28px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

.check-bullet {
  color: var(--accent-green);
  font-weight: 800;
}

.about-features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.feat-box {
  background: #f8fafc;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
}

.feat-box strong {
  display: block;
  font-size: 0.94rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feat-box span {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.4;
  display: block;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ==========================================================================
   04 — SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 60px 0 80px 0;
  background: linear-gradient(180deg, transparent 0%, #f8fafc 40%, transparent 100%);
  border-radius: 36px;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-card.highlight-card {
  border-color: rgba(37, 99, 235, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.service-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: #cbd5e1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.service-bullet-list {
  list-style: none;
  margin-top: auto;
  margin-bottom: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.service-bullet-list li {
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 4px 0 4px 18px;
  position: relative;
}

.service-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--primary-indigo);
  font-size: 1.1rem;
}

.service-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--primary-indigo);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  padding: 6px 0;
  transition: transform 0.2s ease;
}

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

/* ==========================================================================
   05 — WHY DL DIGITAL & COMPARISON TABLE
   ========================================================================== */
.why-section {
  padding: 60px 0 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.why-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.3s var(--ease-smooth);
}

.why-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-step-indicator {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-indigo);
  margin-bottom: 14px;
}

.why-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Comparison Table */
.comparison-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.comparison-header {
  text-align: center;
  margin-bottom: 30px;
}

.comp-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-coral);
  background: rgba(255, 94, 54, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.comparison-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
}

.comparison-table-wrap {
  overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table .dl-highlight-col {
  background: #f0f7ff;
  color: #1e3a8a;
  border-radius: 12px;
}

/* ==========================================================================
   06 — HOW IT WORKS (Timeline)
   ========================================================================== */
.process-section {
  padding: 60px 0 80px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--primary-indigo);
  box-shadow: var(--shadow-md);
}

.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.step-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-indigo);
  margin-bottom: 4px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.step-deliverables {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  border-top: 1px dashed var(--border-subtle);
  padding-top: 14px;
}

/* ==========================================================================
   07 — OUTCOMES SECTION & CALCULATOR
   ========================================================================== */
.outcomes-section {
  padding: 60px 0 80px 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.outcome-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-smooth);
}

.outcome-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.outcome-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.outcome-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.outcome-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.outcome-metric-pill {
  margin-top: auto;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e3a8a;
  background: #e0e7ff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

/* Calculator Box */
.roi-calculator-box {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.calculator-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

.calc-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.calculator-header h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.calculator-header p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.calculator-body {
  max-width: 820px;
  margin: 0 auto;
}

.slider-group {
  margin-bottom: 28px;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.slider-val {
  color: #38bdf8;
  font-size: 1.1rem;
  font-weight: 700;
}

.range-input {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #334155;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #38bdf8;
  border: 3px solid #0f172a;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.calc-res-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
}

.calc-res-card.highlight-res {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.4);
}

.res-sub {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 6px;
}

.res-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.calc-res-card.highlight-res .res-num {
  color: #38bdf8;
}

.res-note {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 4px;
}

.calc-cta-row {
  text-align: center;
}

.calc-cta-row .btn-solid-dark {
  background: #38bdf8;
  color: #0f172a;
  font-weight: 700;
}

.calc-cta-row .btn-solid-dark:hover {
  background: #7dd3fc;
}

/* ==========================================================================
   08 — WHO I WORK WITH
   ========================================================================== */
.target-section {
  padding: 60px 0 80px 0;
}

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

.target-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-smooth);
}

.target-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.target-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.target-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.target-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.target-tag {
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-indigo);
  background: rgba(37, 99, 235, 0.08);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  align-self: flex-start;
}

/* ==========================================================================
   09 — MAIN HIGH-CONVERSION CTA SECTION
   ========================================================================== */
.main-cta-section {
  padding: 40px 0 70px 0;
}

.cta-banner-box {
  background: linear-gradient(135deg, #0b0f19 0%, #1e1b4b 60%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: 36px;
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
}

.cta-glow-effect {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.cta-top-chip {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #93c5fd;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-cta-primary {
  padding: 16px 36px;
  background-color: #ffffff;
  color: #0b0f19;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.2);
  transition: all 0.25s var(--ease-smooth);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
  background: #f8fafc;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.cta-reassurance-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.85rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

/* ==========================================================================
   10 — CONTACT SECTION
   ========================================================================= */
.contact-section {
  padding: 50px 0 70px 0;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.direct-contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}

.c-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-details {
  display: flex;
  flex-direction: column;
}

.c-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

.c-val {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.c-val:hover {
  color: var(--primary-indigo);
}

/* Social Links Box */
.social-links-box {
  margin-top: 10px;
}

.social-title {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.social-icons-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}

/* Form Styling */
.lead-form {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow-md);
}

.form-intro {
  margin-bottom: 24px;
}

.form-intro h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.form-intro p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background-color: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary-indigo);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-status-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status-msg.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* ==========================================================================
   11 — FOOTER
   ========================================================================== */
.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 50px;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-indigo);
  margin-bottom: 12px;
}

.footer-subtext {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 380px;
  line-height: 1.5;
}

.footer-nav-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.footer-links-group a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-group a:hover {
  color: var(--primary-indigo);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.back-to-top {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
}

.back-to-top:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Mobile Sticky Bar
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 20px;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-brand {
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-sub {
  font-size: 0.76rem;
  color: var(--accent-green);
  font-weight: 600;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-sticky-outline {
  padding: 8px 16px;
  border: 1px solid var(--text-dark);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
}

.btn-sticky-solid {
  padding: 9px 18px;
  background: var(--text-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: 28px;
  max-width: 540px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalScaleIn 0.3s var(--ease-smooth);
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: #e2e8f0;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-chip {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-indigo);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-confirm-btn {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
}

.modal-success-screen {
  text-align: center;
  padding: 20px 0;
}

.success-icon-badge {
  width: 60px;
  height: 60px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Service Detail Modal Content */
.service-modal-content {
  max-width: 600px;
}

.service-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-deliverables {
  background: #f8fafc;
  padding: 18px 22px;
  border-radius: 16px;
  margin: 20px 0;
}

.service-modal-deliverables h4 {
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.service-modal-deliverables ul {
  list-style-type: none;
}

.service-modal-deliverables li {
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 5px 0 5px 20px;
  position: relative;
}

.service-modal-deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

/* Intro Reel Modal */
.intro-modal-content {
  max-width: 520px;
  text-align: center;
}

.intro-visual-header {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.intro-founder-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-indigo);
}

.intro-interactive-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.flow-pill {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-pill span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.intro-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.4;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 44px 36px;
    gap: 48px;
  }
  
  .hero-visual-col {
    margin-top: 10px;
  }

  .value-strip-container,
  .why-grid,
  .process-timeline,
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-container {
    height: 380px;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding: 8px;
    padding-bottom: 80px; /* space for sticky bar */
  }

  .site-frame {
    padding: 16px 18px 36px 18px;
    border-radius: 28px;
  }

  .nav-links-desktop,
  .btn-pill-action {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-drawer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 18px;
    margin-top: 14px;
    border: 1px solid var(--border-subtle);
  }

  .mobile-nav-drawer:not(.active) {
    display: none;
  }

  .mobile-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 6px 0;
  }

  .mobile-cta {
    margin-top: 10px;
  }

  .hero-card {
    padding: 32px 20px;
    border-radius: 28px;
  }

  .hero-display-title {
    font-size: 4.8rem;
  }

  .hero-media-container {
    height: 440px;
  }

  .pill-top-left {
    left: -10px;
    top: 20%;
  }

  .pill-mid-left {
    left: -10px;
    top: 36%;
  }

  .glass-top-right {
    right: -10px;
    top: 10px;
    width: 140px;
    padding: 14px;
  }

  .glass-bottom-right {
    right: -10px;
    bottom: 10px;
    width: 210px;
  }

  .value-strip-container,
  .why-grid,
  .process-timeline,
  .outcomes-grid,
  .services-grid,
  .target-grid,
  .about-features-row,
  .about-checklist-grid,
  .form-row-dual,
  .modal-fields-grid,
  .calc-results-grid {
    grid-template-columns: 1fr;
  }

  .contact-split-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .cta-banner-box {
    padding: 48px 24px;
  }

  .footer-nav-side {
    grid-template-columns: 1fr;
  }
}
