/* ==========================================================================
   Shenaz Misba — AI Digital Marketing Freelancer
   Dark Luxury Design System & Stylesheet
   Inspired by High-End Tech & Growth Brand Aesthetics
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette - Obsidian Black, Espresso, Molten Amber, Copper, Gold */
  --bg-primary: #080605;
  --bg-secondary: #0e0b08;
  --bg-tertiary: #16110d;
  --bg-card: rgba(22, 17, 13, 0.75);
  --bg-card-hover: rgba(32, 24, 18, 0.88);
  --bg-card-elevated: rgba(40, 30, 22, 0.95);
  --bg-glass: rgba(18, 14, 11, 0.65);
  --bg-glass-subtle: rgba(255, 255, 255, 0.02);

  /* Amber & Copper Accents */
  --accent-primary: #ff7828;
  --accent-secondary: #f59e0b;
  --accent-tertiary: #fbbf24;
  --accent-glow: rgba(255, 120, 40, 0.28);
  --accent-glow-subtle: rgba(255, 120, 40, 0.12);
  --accent-glow-intense: rgba(255, 120, 40, 0.45);
  --accent-gradient: linear-gradient(135deg, #ff8438 0%, #ff5212 50%, #f59e0b 100%);
  --accent-gradient-hover: linear-gradient(135deg, #ffa05c 0%, #ff682e 50%, #fbbf24 100%);
  --amber-light: #ffd4a3;

  /* Typography Colors */
  --text-primary: #fcf8f4;
  --text-secondary: #b8aba0;
  --text-tertiary: #7e736a;
  --text-inverse: #080605;
  --text-accent: #ff8e42;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 140, 50, 0.1);
  --border-card: rgba(255, 140, 50, 0.16);
  --border-active: rgba(255, 140, 50, 0.4);
  --border-glow: rgba(255, 120, 40, 0.6);

  /* Typography Families */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Mono', 'SF Mono', monospace;

  /* Layout & Spacing */
  --container-max: 1240px;
  --container-narrow: 960px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows & Glows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --shadow-glow-lg: 0 0 80px var(--accent-glow-intense);
  --inset-highlight: inset 0 1px 0 rgba(255, 220, 180, 0.12);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
  color-scheme: dark;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 120, 40, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 100, 20, 0.1), transparent 70%);
  background-attachment: fixed;
}

/* Selection */
::selection {
  background: rgba(255, 120, 40, 0.3);
  color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2b1f17;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* --- Interactive Glowing Custom Cursor --- */
.custom-cursor-dot,
.custom-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, opacity;
}

/* Center radiant glowing dot */
.custom-cursor-dot {
  width: 7px;
  height: 7px;
  background: #ff7828;
  box-shadow: 0 0 10px #ff7828, 0 0 20px rgba(255, 120, 40, 0.85);
}

/* Smooth trailing ambient glow ring */
.custom-cursor-glow {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle, rgba(255, 120, 40, 0.22) 0%, rgba(255, 90, 20, 0.06) 50%, transparent 75%);
  border: 1.5px solid rgba(255, 140, 50, 0.45);
  box-shadow: 0 0 18px rgba(255, 120, 40, 0.25);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

/* Hover state over interactive elements (links, buttons, inputs, pills, cards) */
body.cursor-hover .custom-cursor-dot {
  width: 10px;
  height: 10px;
  background: #ffa055;
  box-shadow: 0 0 14px #ff7828, 0 0 26px rgba(255, 140, 50, 0.9);
}

body.cursor-hover .custom-cursor-glow {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, rgba(255, 120, 40, 0.32) 0%, rgba(255, 90, 20, 0.12) 60%, transparent 80%);
  border-color: rgba(255, 160, 80, 0.85);
  box-shadow: 0 0 25px rgba(255, 120, 40, 0.5), inset 0 0 12px rgba(255, 120, 40, 0.25);
}

/* Active click mousedown state */
body.cursor-down .custom-cursor-glow {
  width: 26px;
  height: 26px;
  border-color: #ff7828;
  background: rgba(255, 120, 40, 0.35);
}

/* Disable on touch devices */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor-dot,
  .custom-cursor-glow {
    display: none !important;
  }
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-hero {
  padding-top: 8.5rem;
  padding-bottom: 5rem;
}

/* --- Radiant Glow Effects & Light Cones --- */
.ambient-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1000px;
  height: 280px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 120, 40, 0.22) 0%, rgba(255, 90, 20, 0.08) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-card {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 120, 40, 0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 15%, #ffd2a6 60%, #ff8438 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-amber {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --- UI Badges & Chips --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(38, 28, 20, 0.85);
  border: 1px solid rgba(255, 140, 50, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd8b3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 200, 150, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7828;
  box-shadow: 0 0 10px #ff7828, 0 0 20px #ff7828;
  animation: pulseDot 2.2s infinite ease-in-out;
}

.badge-dot-green {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 8px 24px -4px rgba(255, 100, 20, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(255, 120, 40, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.btn-secondary {
  background: rgba(30, 23, 18, 0.85);
  color: var(--text-primary);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm), var(--inset-highlight);
}

.btn-secondary:hover {
  background: rgba(45, 34, 26, 0.95);
  border-color: var(--border-active);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.btn-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: 0.25rem;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-circle {
  transform: translateX(3px);
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  padding: 0.65rem 0;
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 140, 50, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}

.brand-logo-img {
  height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), height var(--transition-fast);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.site-header.scrolled .brand-logo-img {
  height: 46px;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 64px;
  max-width: 280px;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

.brand-logo .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff7828 0%, #a8420b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 0 15px rgba(255, 120, 40, 0.4);
  border: 1px solid rgba(255, 200, 150, 0.3);
}

.brand-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-secondary);
  background: rgba(245, 158, 11, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.25);
  margin-left: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  background: rgba(22, 17, 13, 0.7);
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(14px);
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: rgba(30, 23, 18, 0.8);
  border: 1px solid var(--border-card);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: #0d0b09;
  z-index: 1001;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid var(--border-card);
  transition: right var(--transition-base);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mobile-nav-links a:hover {
  color: var(--accent-primary);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
}

.drawer-backdrop.open {
  display: block;
}

/* --- Scroll-Driven Hero Canvas Section --- */
.hero-scroll-section {
  position: relative;
  height: 250vh;
  background: #000;
}

.hero-sticky-frame {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hero-sequence-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.hero-canvas-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 75%, #000 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, transparent 20%, transparent 80%, #000 100%);
}

.hero-overlay-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 860px;
  text-align: center;
  padding: 4rem 1.5rem 1rem 1.5rem;
  opacity: 0;
  transform: translateY(35px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-initial-hint {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.hero-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-title-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #e2e8f0;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 2.25rem auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Scroll Hint Pill */
.hero-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  background: rgba(18, 14, 11, 0.9);
  border: 1px solid rgba(255, 140, 50, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fed7aa;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 120, 40, 0.15);
}

.scroll-mouse-icon {
  width: 15px;
  height: 22px;
  border: 1.5px solid var(--accent-primary);
  border-radius: 9999px;
  display: inline-flex;
  justify-content: center;
  padding-top: 3px;
}

.scroll-wheel {
  width: 3px;
  height: 5px;
  background: var(--accent-primary);
  border-radius: 9999px;
  animation: scrollWheelBounce 1.6s infinite ease-in-out;
}

@keyframes scrollWheelBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(5px); opacity: 0.3; }
}

/* Progress Bar */
.hero-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff7828, #f59e0b, #a855f7);
  box-shadow: 0 0 10px #ff7828;
}

/* --- Trust & Credibility Ticker Bar --- */
.ticker-section {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(14, 11, 8, 0.75);
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.ticker-item .ticker-icon {
  color: var(--accent-primary);
  font-size: 1.1rem;
}

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

/* --- Section Headers & Editorial Headings --- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.75rem auto;
}

.section-header .section-badge {
  margin-bottom: 1rem;
}

.section-header .section-title {
  margin-bottom: 1rem;
}

.section-header .section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.section-editorial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.section-editorial-header .badge {
  margin-bottom: 1rem;
}

.section-desc-side {
  max-width: 420px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   5.3 Problem Section (Asymmetric Two-Column Editorial)
   ========================================================================== */
.section-problem {
  position: relative;
}

.editorial-problem-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.problem-sticky-intro {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.editorial-heading {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.editorial-lead {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.problem-stat-callout {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 120, 40, 0.04);
  border: 1px solid rgba(255, 120, 40, 0.2);
  border-left: 3px solid var(--accent-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.problem-stat-callout .stat-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
}

.problem-stat-callout .stat-desc {
  font-size: 0.92rem;
  color: #f5ebe1;
  line-height: 1.5;
}

.problem-list-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-item {
  background: rgba(18, 14, 11, 0.65);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: flex;
  gap: 1.5rem;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm), var(--inset-highlight);
}

.problem-item:hover {
  background: rgba(28, 20, 15, 0.85);
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateX(6px);
}

.problem-item-num {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-primary);
  opacity: 0.85;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.problem-item-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.problem-item-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.problem-contrast-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ==========================================================================
   5.4 The AI + Human Concept / Formula Anchor
   ========================================================================== */
.section-concept {
  padding: 3rem 0;
}

.concept-banner {
  background: linear-gradient(145deg, rgba(28, 20, 15, 0.85) 0%, rgba(12, 9, 7, 0.95) 100%);
  border: 1px solid rgba(255, 120, 40, 0.25);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px var(--accent-glow-subtle);
}

.concept-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.concept-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.concept-header .badge {
  margin-bottom: 1.25rem;
}

.concept-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
}

.concept-title-white {
  color: #ffffff;
}

.concept-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

.concept-pillars-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
}

.concept-pillar {
  background: rgba(16, 12, 9, 0.8);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.concept-pillar.highlight {
  background: linear-gradient(145deg, rgba(38, 27, 19, 0.9) 0%, rgba(22, 16, 12, 0.95) 100%);
  border-color: var(--border-active);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-glow-subtle);
}

.pillar-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
}

.pillar-dot {
  font-size: 0.85rem;
  color: var(--accent-primary);
}

.concept-pillar h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.concept-pillar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.concept-divider-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  opacity: 0.7;
}

/* ==========================================================================
   5.5 Services Section (Structured Editorial Directory)
   ========================================================================== */
.section-services {
  position: relative;
}

.services-directory {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-card);
}

.service-dir-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  border-radius: var(--radius-md);
}

.service-dir-row:hover {
  background: rgba(255, 120, 40, 0.03);
  border-bottom-color: var(--border-active);
  transform: translateX(8px);
}

.service-dir-idx {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.service-dir-row:hover .service-dir-idx {
  color: var(--accent-primary);
}

.service-dir-main h3 {
  font-size: 1.38rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service-dir-main p {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.62;
  margin-bottom: 0.85rem;
  max-width: 720px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-size: 0.78rem;
  padding: 0.22rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 140, 50, 0.14);
  border-radius: var(--radius-full);
  color: #d1c5ba;
  font-weight: 500;
}

.service-dir-action .service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(255, 120, 40, 0.08);
  border: 1px solid rgba(255, 120, 40, 0.22);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.service-dir-action .service-action-link:hover {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
  transform: translateX(4px);
  box-shadow: 0 0 15px var(--accent-glow);
}

.service-dir-action .service-action-link .arrow {
  transition: transform var(--transition-fast);
}

.service-dir-action .service-action-link:hover .arrow {
  transform: translateX(3px);
}

.services-footer-cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* Service Detail Interactive Modal */
.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.service-modal.open {
  display: flex;
}

.service-modal-box {
  background: #140f0c;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  padding: 2.75rem;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow);
  animation: fadeIn 0.25s ease-out;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ==========================================================================
   5.6 "Why AI-Powered Marketing" (Editorial Statement & Comparative Matrix)
   ========================================================================== */
.section-why-ai {
  position: relative;
}

.why-ai-header-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.why-ai-header-block .badge {
  margin-bottom: 1rem;
}

.editorial-quote-card {
  position: relative;
  display: flex;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(32, 23, 17, 0.85) 0%, rgba(14, 10, 8, 0.95) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-xl);
  padding: 2.75rem 3rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md), 0 0 40px var(--accent-glow-subtle);
}

.quote-accent-bar {
  width: 4px;
  border-radius: 4px;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

.quote-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-text {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 400;
  line-height: 1.7;
  color: #fcf4ec;
}

.quote-text em {
  font-style: normal;
  color: var(--accent-primary);
  font-weight: 600;
}

.quote-byline {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote-byline .author-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.quote-byline .author-title {
  font-size: 0.85rem;
  color: var(--accent-secondary);
}

.comparison-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.matrix-card {
  background: rgba(16, 12, 10, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.matrix-card.highlighted {
  background: linear-gradient(180deg, rgba(38, 27, 19, 0.95) 0%, rgba(20, 14, 10, 0.98) 100%);
  border: 1px solid var(--border-active);
  box-shadow: 0 10px 40px -10px var(--accent-glow);
  transform: translateY(-4px);
}

.matrix-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.tag-negative {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.tag-neutral {
  background: rgba(156, 163, 175, 0.1);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.2);
}

.tag-positive {
  background: rgba(255, 120, 40, 0.15);
  color: var(--accent-primary);
  border: 1px solid rgba(255, 120, 40, 0.4);
}

.matrix-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.matrix-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 0;
  margin: 0;
}

.matrix-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.matrix-card.highlighted .matrix-list li {
  color: #f5ebe1;
}

.matrix-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.matrix-icon.negative {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.matrix-icon.neutral {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
}

.matrix-icon.positive {
  background: rgba(255, 120, 40, 0.2);
  color: var(--accent-primary);
}

/* ==========================================================================
   5.7 Process Section ("A Structured 4-Step Framework")
   ========================================================================== */
.section-process {
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  margin-top: 2rem;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.timeline-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.node-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 120, 40, 0.12);
  border: 1px solid rgba(255, 120, 40, 0.4);
  color: var(--accent-primary);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 120, 40, 0.15);
}

.node-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(255, 120, 40, 0.4), rgba(255, 120, 40, 0.08));
}

.timeline-step:last-child .node-line {
  background: transparent;
}

.timeline-body {
  background: rgba(20, 15, 12, 0.75);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm), var(--inset-highlight);
}

.timeline-step:hover .timeline-body {
  border-color: var(--border-active);
  background: rgba(30, 22, 17, 0.9);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 30px var(--accent-glow-subtle);
}

.timeline-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.timeline-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.timeline-deliverable {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-secondary);
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(255, 140, 50, 0.18);
}

.process-footer-cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* ==========================================================================
   5.8 About Section (Signature Personal Brand Feature)
   ========================================================================== */
.section-about {
  position: relative;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 4.5rem;
  align-items: start;
}

.about-visual-col {
  position: sticky;
  top: 110px;
}

.about-portrait-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 120, 40, 0.35);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(255, 120, 40, 0.18);
  background: #140f0c;
}

.about-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-portrait-frame:hover .about-portrait-img {
  transform: scale(1.02);
}

.about-portrait-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(14, 10, 8, 0.92);
  border: 1px solid rgba(255, 140, 50, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.badge-dot-green {
  background: #10b981 !important;
  box-shadow: 0 0 10px #10b981 !important;
}

.about-narrative-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffd6b0;
  line-height: 1.6;
}

.about-paragraph {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-paragraph strong {
  color: #fff;
  font-weight: 600;
}

.about-paragraph.highlight-text {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 120, 40, 0.08);
  border-left: 3px solid var(--accent-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: #fdf5ee;
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1rem 0;
}

.about-pillar-card {
  background: rgba(20, 15, 12, 0.8);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.about-pillar-card:hover {
  border-color: var(--border-active);
  background: rgba(30, 22, 17, 0.9);
  transform: translateY(-2px);
}

.pillar-icon {
  color: var(--accent-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pillar-text p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.about-action-wrap {
  margin-top: 1rem;
}

/* ==========================================================================
   5.9 Interactive Free Marketing Audit Selector Tool
   ========================================================================== */
.section-audit-tool {
  position: relative;
}

.audit-tool-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg), var(--inset-highlight);
}

.audit-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.audit-step-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-secondary);
  margin-bottom: 0.85rem;
}

.audit-select-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.audit-option-pill {
  background: rgba(18, 14, 11, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audit-option-pill:hover {
  background: rgba(35, 26, 20, 0.85);
  border-color: var(--border-card);
  color: #fff;
}

.audit-option-pill.active {
  background: rgba(255, 120, 40, 0.15);
  border-color: var(--accent-primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(255, 120, 40, 0.2);
}

.audit-output-preview {
  background: rgba(12, 9, 7, 0.85);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.audit-output-left h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.audit-output-left p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 580px;
}

/* --- FAQ Accordion Section --- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--border-active);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 1.75rem;
}

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

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Contact & Final Conversion Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  background: linear-gradient(145deg, rgba(28, 20, 15, 0.9) 0%, rgba(14, 10, 8, 0.98) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow-subtle);
  position: relative;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-col h2 {
  margin-bottom: 1rem;
}

.contact-info-col .contact-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.contact-direct-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-pill-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(18, 14, 11, 0.8);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-pill-link:hover {
  background: rgba(35, 26, 20, 0.9);
  border-color: var(--border-active);
  transform: translateX(4px);
}

.contact-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 120, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.contact-pill-text .label {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.contact-pill-text .value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
}

.contact-form-col {
  background: rgba(14, 11, 8, 0.85);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md), var(--inset-highlight);
}

.form-title-group {
  margin-bottom: 1.75rem;
}

.form-title-group h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.form-title-group p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d8cbbf;
}

.form-group label span.required {
  color: var(--accent-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: rgba(22, 17, 13, 0.9);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(255, 120, 40, 0.25);
  background: rgba(28, 21, 16, 0.98);
}

.form-control::placeholder {
  color: var(--text-tertiary);
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: #140f0c;
  color: #fff;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Honeypot field (hidden for spam prevention) */
.honeypot-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

.form-submit-row {
  margin-top: 0.5rem;
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 0.75rem;
}

/* Form Success Confirmation Banner */
.form-success-banner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 120, 40, 0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}

.form-success-banner .success-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-success-banner .success-title .check-icon {
  color: var(--accent-primary);
  font-weight: 700;
}

.form-success-banner .success-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Form Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #18120d;
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 30px var(--accent-glow);
  z-index: 3000;
  transform: translateY(120%);
  opacity: 0;
  transition: all var(--transition-base);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.25rem;
  color: #10b981;
}

.toast-text h5 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.toast-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* --- Footer --- */
.site-footer {
  padding: 4.5rem 0 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  background: #050403;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-tertiary);
  margin-top: 0.85rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* --- Floating Quick Contact Button (Mobile & Desktop) --- */
.floating-instagram-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: all var(--transition-base);
}

.floating-instagram-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(220, 39, 67, 0.65), 0 0 20px rgba(240, 148, 51, 0.4);
  color: #fff;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .timeline-step:nth-child(2) .node-line {
    background: transparent;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .concept-divider-symbol {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-sm {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  
  /* Problem Section Mobile */
  .editorial-problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .problem-sticky-intro {
    position: static;
  }

  /* Services Directory Mobile */
  .service-dir-row {
    grid-template-columns: 45px 1fr;
    gap: 1.25rem;
    padding: 1.75rem 1rem;
  }
  .service-dir-action {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }

  /* Why AI & Matrix */
  .comparison-matrix-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .matrix-card.highlighted {
    transform: none;
  }

  /* About Section Mobile */
  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual-col {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Contact & Audit */
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 2.25rem;
  }
  .audit-tool-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .section-editorial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }
  .section-hero {
    padding-top: 7.5rem;
    padding-bottom: 3.5rem;
  }
  .editorial-quote-card {
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
  }
  .quote-accent-bar {
    width: 40px;
    height: 4px;
  }
  .concept-banner {
    padding: 2.25rem 1.5rem;
  }
  .service-dir-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .service-dir-idx {
    font-size: 1rem;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .timeline-node .node-line {
    display: none;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .audit-tool-box {
    padding: 2rem 1.25rem;
  }
  .audit-output-preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .problem-item {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
  }
  .floating-instagram-btn {
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }
}
