/* ==========================================================================
   WEB NOVIN - Soft Dark & Modern Creative Agency Theme
   Palette: Rich Slate Navy (#0B1120, #0F172A, #152037)
   Brand Colors: Web Novin Ruby (#DB1C4E), Rose Glow (#FF3366), Sky (#38BDF8)
   Typography: Vazirmatn (Optimized Persian Display)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Color System (Matching Logo Ribbon) */
  --primary: #DB1C4E;
  --primary-glow: #FF3366;
  --primary-dark: #9E1035;
  --primary-soft: rgba(219, 28, 78, 0.12);
  --primary-subtle: rgba(219, 28, 78, 0.06);
  --primary-gradient: linear-gradient(135deg, #FF3366 0%, #DB1C4E 50%, #A31038 100%);
  --primary-glow-box: 0 8px 30px rgba(219, 28, 78, 0.35);
  
  /* Modern Accent Colors */
  --accent-sky: #38BDF8;
  --accent-sky-soft: rgba(56, 189, 248, 0.12);
  --accent-emerald: #10B981;
  --accent-emerald-soft: rgba(16, 185, 129, 0.12);
  --accent-amber: #F59E0B;
  --accent-purple: #A855F7;

  /* Soft Dark Theme (Rich Slate & Deep Indigo-Navy - NOT pitch black) */
  --bg-main: #0B1120;
  --bg-section-alt: #0F172A;
  --bg-surface: #152037;
  --bg-surface-elevated: #1B2945;
  --bg-card: rgba(23, 34, 58, 0.72);
  --bg-card-hover: rgba(30, 44, 75, 0.9);
  --bg-glass: rgba(15, 23, 42, 0.82);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.13);
  --border-card-hover: rgba(219, 28, 78, 0.45);
  --border-primary: rgba(219, 28, 78, 0.3);

  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-faint: #64748B;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-brand: 0 12px 35px rgba(219, 28, 78, 0.28);

  /* Layout & Animation */
  --font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1240px;
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 38px;
  --radius-2xl: 48px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-family);
  direction: rtl;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  background: radial-gradient(circle at 50% -20%, #1A0A16 0%, var(--bg-main) 65%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #23314f;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

/* ==========================================================================
   Interactive Background Animation (Particle Constellation & Glow Aura)
   ========================================================================== */
#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 28, 78, 0.45) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 320ms cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.25;
  will-change: transform;
}

.app-content {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Typography & Shared Elements
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 20%, #FDA4AF 60%, var(--primary-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-sky {
  background: linear-gradient(135deg, #FFFFFF 15%, #BAE6FD 50%, var(--accent-sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  border: 1px solid rgba(219, 28, 78, 0.35);
  color: #FFA5BA;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(219, 28, 78, 0.12);
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-glow);
  box-shadow: 0 0 10px var(--primary-glow);
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  margin-bottom: 1.15rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.975rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(219, 28, 78, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(219, 28, 78, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(219, 28, 78, 0.4);
  transform: translateY(-2px);
}

/* Card Styling (Soft Dark Glass) */
.soft-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.soft-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(219, 28, 78, 0.15);
  transform: translateY(-4px);
}

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

.site-header.scrolled {
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 1400px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo-img {
  width: auto;
  height: 48px;
  max-width: 65px;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(219, 28, 78, 0.25));
  transition: var(--transition);
}

.brand-block:hover .brand-logo-img {
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 16px rgba(219, 28, 78, 0.65));
  transform: scale(1.06);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
}

.brand-title span {
  color: var(--primary);
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-item-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.15rem;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.nav-free-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(219, 28, 78, 0.45);
  line-height: 1.3;
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--primary);
}

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

.nav-item-link:hover::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.header-phone-quick {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  white-space: nowrap;
}

.header-phone-quick:hover {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary-soft);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   Hero Section (Modern Agency Fantasy)
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

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

.hero-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  border: 1px solid rgba(219, 28, 78, 0.3);
  color: #FFA5BA;
  font-size: 0.825rem;
  font-weight: 700;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--accent-emerald-soft);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
  font-size: 0.825rem;
  font-weight: 600;
}

.pulse-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseDot 2s infinite;
}

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

.hero-main-heading {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}

.dynamic-type-box {
  display: inline-block;
  color: var(--primary-glow);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 2px;
  text-shadow: 0 0 25px rgba(219, 28, 78, 0.4);
}

.hero-subheading {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.95;
  margin-bottom: 2.25rem;
  max-width: 630px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 900;
  color: #FFFFFF;
}

.stat-plus {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* Hero Showcase Card (Live Growth Telemetry) */
.hero-telemetry-card {
  background: linear-gradient(165deg, rgba(26, 38, 64, 0.85) 0%, rgba(18, 27, 46, 0.95) 100%);
  border: 1px solid rgba(219, 28, 78, 0.28);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(219, 28, 78, 0.15);
  backdrop-filter: blur(25px);
  position: relative;
}

.telemetry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.telemetry-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.telemetry-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  border: 1px solid rgba(219, 28, 78, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
}

.telemetry-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.telemetry-pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--accent-sky-soft);
  color: var(--accent-sky);
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-weight: 700;
}

.chart-preview-box {
  background: rgba(11, 17, 32, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.chart-stats-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.chart-growth-tag {
  color: #34D399;
  font-weight: 800;
}

.chart-svg {
  width: 100%;
  height: 120px;
  overflow: visible;
}

.telemetry-grid-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.kpi-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: var(--transition);
}

.kpi-mini-card:hover {
  border-color: rgba(219, 28, 78, 0.3);
  background: var(--primary-subtle);
}

.kpi-label {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.kpi-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.kpi-value.green {
  color: #34D399;
}
.kpi-value.brand {
  color: var(--primary-glow);
}

/* ==========================================================================
   Trust Marquee
   ========================================================================== */
.trust-strip-section {
  padding: 3.5rem 0;
  background: rgba(8, 13, 24, 0.95);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.trust-title::before,
.trust-title::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219, 28, 78, 0.4));
}

.trust-title::after {
  background: linear-gradient(90deg, rgba(219, 28, 78, 0.4), transparent);
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-scroller {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scrollMarquee 38s linear infinite;
}

.marquee-scroller:hover {
  animation-play-state: paused;
}

.client-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.client-brand-chip:hover {
  opacity: 1;
  border-color: rgba(219, 28, 78, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(219, 28, 78, 0.2);
  transform: translateY(-2px);
}

.brand-emblem-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.client-brand-chip:hover .brand-emblem-wrap {
  transform: scale(1.12);
}

.brand-chip-text {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.25;
}

.brand-chip-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
}

.brand-chip-tag {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 0.15rem;
}

.client-brand-chip:hover .brand-chip-tag {
  color: var(--accent-sky);
}

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

/* ==========================================================================
   Before vs After Transformation Comparison
   ========================================================================== */
.transformation-section {
  padding: 6.5rem 0;
  background: var(--bg-main);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.compare-box {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.compare-stagnant {
  background: rgba(30, 25, 32, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.compare-empowered {
  background: linear-gradient(165deg, rgba(30, 44, 75, 0.85) 0%, rgba(20, 29, 50, 0.95) 100%);
  border: 1px solid rgba(219, 28, 78, 0.45);
  box-shadow: 0 12px 35px rgba(219, 28, 78, 0.16);
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.badge-bad {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-good {
  background: var(--primary-soft);
  color: #FFA5BA;
  border: 1px solid rgba(219, 28, 78, 0.4);
}

.compare-heading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.compare-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.975rem;
  line-height: 1.65;
}

.point-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.icon-red {
  color: #EF4444;
}
.icon-brand {
  color: var(--primary-glow);
}

/* ==========================================================================
   360° Website & Competitor Diagnostic Audit Scanner
   ========================================================================== */
.audit-scanner-section {
  padding: 6.5rem 0;
  background: var(--bg-section-alt);
  position: relative;
}

.audit-panel {
  background: linear-gradient(165deg, rgba(23, 34, 58, 0.95) 0%, rgba(15, 22, 38, 0.98) 100%);
  border: 1px solid rgba(219, 28, 78, 0.38);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(219, 28, 78, 0.16);
  backdrop-filter: blur(25px);
  position: relative;
}

.audit-form-flow {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.audit-step-block {
  width: 100%;
}

.audit-step-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.audit-step-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.audit-step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Domain Input */
.audit-domain-wrap {
  position: relative;
  width: 100%;
}

.audit-domain-input {
  width: 100%;
  background: rgba(11, 17, 32, 0.75);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 1.15rem 1.75rem 1.15rem 3.5rem;
  font-size: 1.05rem;
  color: #fff;
  direction: ltr;
  text-align: left;
  transition: var(--transition);
}

.audit-domain-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 25px rgba(219, 28, 78, 0.35);
  background: rgba(11, 17, 32, 0.95);
}

.audit-domain-icon {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  color: var(--accent-sky);
}

/* Audit Filter Pills & Helper Buttons */
.audit-filter-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.audit-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.audit-pill-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(219, 28, 78, 0.4);
}

.audit-pill-btn.active {
  background: rgba(219, 28, 78, 0.18);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(219, 28, 78, 0.25);
}

/* Issues Checkbox Grid - 3 Columns x 4 Rows = 12 Balanced Cards */
.audit-issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.audit-issue-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  min-height: 96px;
  box-sizing: border-box;
}

.audit-issue-card:hover {
  border-color: rgba(219, 28, 78, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.audit-issue-card.selected {
  background: var(--primary-soft);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(219, 28, 78, 0.15);
}

.audit-check-box {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.85rem;
}

.audit-issue-card.selected .audit-check-box {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.audit-issue-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}

.audit-issue-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-sky);
  display: inline-block;
}

.audit-issue-card.selected .audit-issue-tag {
  color: #FFA3BA;
}

.audit-issue-text {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.audit-issue-card.selected .audit-issue-text {
  color: #fff;
}

/* Symmetrical Step 3 Delivery Deck */
.audit-delivery-deck {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: stretch;
  background: linear-gradient(165deg, rgba(30, 44, 75, 0.85) 0%, rgba(18, 27, 46, 0.95) 100%);
  border: 1px solid rgba(219, 28, 78, 0.4);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 0.5rem;
}

.audit-delivery-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audit-delivery-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-sky);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.audit-delivery-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.45rem;
}

.audit-delivery-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.audit-perks-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-subtle);
}

.audit-perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.audit-perks-list li svg {
  color: #34D399;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.audit-delivery-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(11, 17, 32, 0.65);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}

.audit-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Live Scanning Animation Screen */
.audit-scanner-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.scanner-radar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(219, 28, 78, 0.2);
  border-top-color: var(--primary-glow);
  animation: spinRadar 1s infinite linear;
  margin-bottom: 1.5rem;
}

@keyframes spinRadar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.scanner-progress-bar {
  width: 100%;
  max-width: 380px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 1.25rem 0;
}

.scanner-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--primary-gradient);
  transition: width 0.4s ease;
}

/* Success Confirmation Card */
.audit-success-result {
  display: none;
  background: linear-gradient(165deg, rgba(26, 38, 64, 0.95) 0%, rgba(16, 24, 40, 0.98) 100%);
  border: 1.5px solid #10B981;
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  text-align: center;
}

.res-value {
  font-weight: 800;
  color: #fff;
}

.res-value.highlight-roi {
  color: #34D399;
  font-size: 1.15rem;
}

.res-value.highlight-price {
  color: var(--primary-glow);
  font-size: 1.25rem;
}

/* ==========================================================================
   Core 6 Strategic Services
   ========================================================================== */
.services-section {
  padding: 6.5rem 0;
  background: var(--bg-main);
}

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

.service-box {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  border: 1px solid rgba(219, 28, 78, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(219, 28, 78, 0.2);
  transition: var(--transition);
}

.service-box:hover .service-icon-box {
  transform: scale(1.1) rotate(4deg);
  background: var(--primary);
  color: #fff;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.service-summary {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.service-deliverables li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-deliverables li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-glow);
  font-weight: 700;
  font-size: 0.925rem;
  cursor: pointer;
}

.service-cta-link:hover {
  color: #fff;
  gap: 0.75rem;
}

/* ==========================================================================
   5-Step Growth Roadmap
   ========================================================================== */
.roadmap-section {
  padding: 6.5rem 0;
  background: var(--bg-section-alt);
}

.roadmap-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.roadmap-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.85rem 1.35rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.roadmap-step:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(219, 28, 78, 0.18);
}

.step-watermark {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  top: 1rem;
  left: 1rem;
  line-height: 1;
}

.roadmap-step:hover .step-watermark {
  color: rgba(219, 28, 78, 0.35);
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  margin-bottom: 1.25rem;
}

.step-name {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: #fff;
}

.step-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Portfolio & Case Studies Showcase
   ========================================================================== */
.portfolio-section {
  padding: 6.5rem 0;
  background: var(--bg-main);
}

.portfolio-filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-tab-btn {
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.filter-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(219, 28, 78, 0.4);
}

.portfolio-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.portfolio-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(219, 28, 78, 0.2);
}

.portfolio-art-preview {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #0B1120;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-browser-bar {
  height: 34px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.85rem;
  z-index: 2;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.mockup-browser-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dot.red { background: #EF4444; opacity: 0.85; }
.mockup-dot.yellow { background: #F59E0B; opacity: 0.85; }
.mockup-dot.green { background: #10B981; opacity: 0.85; }

.mockup-browser-url {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.06);
  direction: ltr;
}

.mockup-browser-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-sky);
  background: rgba(56, 189, 248, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-xs);
}

.mockup-browser-badge.seo {
  color: #34D399;
  background: rgba(16, 185, 129, 0.12);
}

.mockup-browser-badge.ads {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.12);
}

.mockup-browser-badge.branding {
  color: #A855F7;
  background: rgba(168, 85, 247, 0.12);
}

.portfolio-img-container {
  position: relative;
  width: 100%;
  height: calc(100% - 34px);
  overflow: hidden;
  background: #0B1120;
}

.portfolio-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: object-position 2.8s ease-in-out, transform 0.5s ease;
  display: block;
}

.portfolio-item-card:hover .portfolio-screen-img:not(.seo-chart-img) {
  object-position: center 25%;
  transform: scale(1.03);
}

.portfolio-screen-img.seo-chart-img {
  object-fit: contain;
  padding: 0.5rem 0.75rem;
  background: #070D1A;
  transition: transform 0.4s ease;
}

.portfolio-item-card:hover .portfolio-screen-img.seo-chart-img {
  transform: scale(1.05);
}

.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.15) 0%, rgba(11, 17, 32, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.portfolio-item-card:hover .portfolio-img-overlay {
  opacity: 1;
}

.portfolio-hover-cta {
  background: var(--primary-gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 20px rgba(219, 28, 78, 0.45);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.portfolio-item-card:hover .portfolio-hover-cta {
  transform: translateY(0);
}

.portfolio-item-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-sky);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.portfolio-heading {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: #fff;
}

.portfolio-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.portfolio-results-tag {
  margin-top: auto;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--accent-emerald-soft);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
  font-size: 0.825rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   Pricing & Investment Tiers
   ========================================================================== */
.pricing-section {
  padding: 6.5rem 0;
  background: var(--bg-section-alt);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing-box.popular {
  background: linear-gradient(165deg, rgba(30, 44, 75, 0.95) 0%, rgba(20, 30, 52, 0.98) 100%);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(219, 28, 78, 0.25);
  transform: scale(1.03);
}

.pricing-box.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--primary-gradient);
  color: #fff;
  font-size: 0.775rem;
  font-weight: 800;
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(219, 28, 78, 0.4);
  white-space: nowrap;
}

.tier-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.tier-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  min-height: 2.5em;
}

.tier-pricing-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.tier-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
}

.tier-unit {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tier-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.tier-features-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.tier-features-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  padding: 6.5rem 0;
  background: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-box {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.testi-stars-row {
  display: flex;
  gap: 0.25rem;
  color: var(--accent-amber);
  margin-bottom: 1.25rem;
}

.testi-text {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testi-client-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.testi-avatar-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-glow);
  font-weight: 800;
  font-size: 1.1rem;
}

.testi-client-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.testi-client-company {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 6.5rem 0;
  background: var(--bg-section-alt);
}

.faq-wrapper-inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.faq-card.open {
  border-color: rgba(219, 28, 78, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-toggle-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.85rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-align: right;
  gap: 1rem;
}

.faq-arrow-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
  color: var(--primary-glow);
  flex-shrink: 0;
}

.faq-card.open .faq-arrow-icon {
  transform: rotate(180deg);
}

.faq-content-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body-text {
  padding: 0 1.85rem 1.5rem 1.85rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 0.95rem;
}

/* ==========================================================================
   Articles & Insights Section (اتاق فکر و بینش‌های رشد)
   ========================================================================== */
.articles-section {
  padding: 6.5rem 0;
  background: var(--bg-main);
  position: relative;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  background: var(--bg-surface);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(219, 28, 78, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 30px rgba(219, 28, 78, 0.15);
}

.article-thumb-box {
  position: relative;
  height: 190px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.85));
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-thumb-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(219, 28, 78, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.article-badge-category {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.article-read-time {
  position: absolute;
  bottom: 1rem;
  right: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(11, 17, 32, 0.75);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.article-graphic-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease;
}

.article-card:hover .article-graphic-illustration {
  transform: scale(1.12) rotate(4deg);
}

.article-body-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.article-title {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0.85rem;
}

.article-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-title-link:hover {
  color: var(--primary-glow);
}

.article-summary {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

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

.art-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.article-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary-glow);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.article-more-link:hover {
  gap: 0.65rem;
  color: #fff;
}

.articles-cta-strip {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.65), rgba(15, 23, 42, 0.85));
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.articles-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.articles-cta-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.articles-cta-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .articles-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
  }
}

/* ==========================================================================
   Multi-Step VIP Booking Modal
   ========================================================================== */
.modal-overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 17, 32, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay-bg.active {
  opacity: 1;
  visibility: visible;
}

.modal-box-card {
  background: linear-gradient(165deg, rgba(23, 34, 58, 0.98) 0%, rgba(15, 22, 38, 0.99) 100%);
  border: 1px solid rgba(219, 28, 78, 0.4);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 600px;
  padding: 2.75rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(219, 28, 78, 0.25);
  position: relative;
  transform: scale(0.94) translateY(15px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay-bg.active .modal-box-card {
  transform: scale(1) translateY(0);
}

.modal-close-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-icon:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.step-indicator-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.indicator-segment {
  height: 4px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: background 0.3s ease;
}

.indicator-segment.completed {
  background: var(--primary-gradient);
}

.form-step-panel {
  display: none;
}

.form-step-panel.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.input-field-group {
  margin-bottom: 1.35rem;
}

.input-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.input-text-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  color: #fff;
  transition: var(--transition);
  font-size: 0.95rem;
}

.input-text-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--primary-subtle);
  box-shadow: 0 0 15px rgba(219, 28, 78, 0.25);
}

/* ==========================================================================
   Sticky Conversion Dock
   ========================================================================== */
.sticky-bottom-dock {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(219, 28, 78, 0.38);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.25rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(219, 28, 78, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition);
}

.dock-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
}

.dock-btn-phone:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-glow);
}

.dock-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #34D399;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--accent-emerald-soft);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.dock-btn-wa:hover {
  background: var(--accent-emerald);
  color: #fff;
}

.dock-btn-consult {
  padding: 0.55rem 1.35rem;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

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

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-bio-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 1.25rem 0 1.75rem 0;
}

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

.social-circle-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-circle-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-column-heading {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-column-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2.5px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

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

.footer-nav-list a {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.footer-nav-list a:hover {
  color: var(--primary-glow);
  transform: translateX(-4px);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-secondary);
  font-size: 0.925rem;
  margin-bottom: 1rem;
}

.footer-contact-row svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-copyright-bar {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-faint);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1240px) {
  .header-container {
    gap: 0.85rem;
  }
  .nav-links {
    gap: 0.85rem;
  }
  .nav-item-link {
    font-size: 0.82rem;
    padding: 0.35rem 0.1rem;
  }
  .header-phone-quick {
    display: none;
  }
}

@media (max-width: 1024px) {
  .nav-links, .header-phone-quick {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .services-grid, .portfolio-cards-grid, .pricing-cards-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roadmap-timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .audit-issues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audit-delivery-deck {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Mobile Ergonomics & Scroll Reduction Base Setup
   ========================================================================== */
.mobile-swipe-indicator {
  display: none;
}

.audit-mobile-expand-wrap,
.portfolio-mobile-expand-wrap {
  display: none;
}

.audit-expand-btn,
.portfolio-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(219, 28, 78, 0.35);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 420px;
}

.audit-expand-btn:hover,
.portfolio-expand-btn:hover {
  background: rgba(219, 28, 78, 0.15);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(219, 28, 78, 0.25);
}

.audit-expand-chevron,
.portfolio-expand-chevron {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.audit-expand-btn.expanded .audit-expand-chevron,
.portfolio-expand-btn.expanded .portfolio-expand-chevron {
  transform: rotate(180deg);
}

@keyframes cardRevealFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  /* 1. Section Spacing & Header Optimization (Reduces ~1,000px dead vertical scroll) */
  .hero-section {
    padding: 6.5rem 0 2.75rem 0;
  }
  .hero-grid {
    gap: 2.25rem;
  }
  .transformation-section,
  .audit-scanner-section,
  .services-section,
  .roadmap-section,
  .portfolio-section,
  .pricing-section,
  .testimonials-section,
  .articles-section,
  .faq-section {
    padding: 3.25rem 0;
  }
  .section-header {
    margin-bottom: 1.75rem;
  }
  .section-title {
    font-size: 1.6rem;
    line-height: 1.35;
  }
  .section-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* 2. Interactive Mobile Swipe Prompt Indicator */
  .mobile-swipe-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.95rem;
    margin-bottom: 1.25rem;
  }
  .mobile-swipe-indicator svg {
    color: var(--primary);
    animation: swipeHintMove 1.8s infinite ease-in-out;
  }
  @keyframes swipeHintMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-4px); }
  }

  /* 3. Horizontal Touch Snap-Scroll Tracks */
  /* Services */
  .services-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.15rem;
    padding: 0.5rem 1rem 1.5rem 1rem;
    margin: 0 -1rem;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar {
    display: none;
  }
  .service-box {
    flex: 0 0 84%;
    max-width: 84%;
    scroll-snap-align: center;
    padding: 1.75rem 1.4rem;
  }

  /* Roadmap Stepper */
  .roadmap-timeline-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 1rem 1.25rem 1rem;
    margin: 0 -1rem;
    scrollbar-width: none;
  }
  .roadmap-timeline-grid::-webkit-scrollbar {
    display: none;
  }
  .roadmap-step {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: center;
    padding: 1.6rem 1.25rem;
  }

  /* Pricing Packages */
  .pricing-cards-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.15rem;
    padding: 0.5rem 1rem 1.5rem 1rem;
    margin: 0 -1rem;
    scrollbar-width: none;
  }
  .pricing-cards-grid::-webkit-scrollbar {
    display: none;
  }
  .pricing-box {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    padding: 2rem 1.5rem;
  }
  .pricing-box.popular {
    transform: none;
  }

  /* Testimonials */
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 1rem 1.25rem 1rem;
    margin: 0 -1rem;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonial-box {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    padding: 1.65rem 1.35rem;
  }

  /* Articles & Insights */
  .articles-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 1rem 1.25rem 1rem;
    margin: 0 -1rem;
    scrollbar-width: none;
  }
  .articles-grid::-webkit-scrollbar {
    display: none;
  }
  .article-card {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }

  /* 4. Transformation & Comparison */
  .transformation-grid {
    grid-template-columns: 1fr;
  }
  .compare-box {
    padding: 1.6rem 1.3rem;
  }

  /* 5. 360 Diagnostic Scanner Progressive Disclosure */
  .audit-panel {
    padding: 1.75rem 1.25rem;
  }
  .audit-issues-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .audit-mobile-expand-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
  }
  .audit-issues-grid:not(.is-expanded) .audit-issue-card:nth-child(n+5) {
    display: none !important;
  }
  .audit-issues-grid.is-expanded .audit-issue-card:nth-child(n+5) {
    display: flex !important;
    animation: cardRevealFade 0.35s ease forwards;
  }
  .audit-delivery-deck {
    padding: 1.5rem 1.25rem;
  }
  .audit-perks-list {
    grid-template-columns: 1fr;
  }

  /* 6. Portfolio Showcase Progressive Disclosure */
  .portfolio-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .portfolio-mobile-expand-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
  }
  .portfolio-cards-grid:not(.is-expanded):not(.is-category-filtered) .portfolio-item-card:nth-child(n+5) {
    display: none !important;
  }
  .portfolio-cards-grid.is-expanded .portfolio-item-card:nth-child(n+5) {
    display: flex !important;
    animation: cardRevealFade 0.35s ease forwards;
  }
  .portfolio-cards-grid.is-category-filtered .portfolio-item-card {
    animation: cardRevealFade 0.35s ease forwards;
  }

  /* 7. Hero Stats, Footer & Conversion Dock */
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sticky-bottom-dock {
    width: calc(100% - 2rem);
    justify-content: space-around;
    padding: 0.5rem 0.75rem;
  }
  .dock-btn-phone, .dock-btn-wa {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Subpages Global & Component Design System
   ========================================================================== */

/* Reading Progress Bar (Single Article & Docs) */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-gradient);
  box-shadow: 0 0 10px rgba(219, 28, 78, 0.8);
  z-index: 10001;
  transition: width 0.1s ease-out;
}

/* Page Hero Section */
.page-hero {
  padding: 8.5rem 0 3.5rem 0;
  background: radial-gradient(circle at 50% -10%, rgba(219, 28, 78, 0.14) 0%, transparent 65%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero-container {
  max-width: 820px;
  margin: 0 auto;
}

.breadcrumb-trail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
}

.breadcrumb-trail a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.breadcrumb-trail a:hover {
  color: var(--primary-light);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(219, 28, 78, 0.1);
  border: 1px solid rgba(219, 28, 78, 0.3);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.15rem;
  letter-spacing: -0.5px;
}

.page-hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

/* Common Section Spacers */
.subpage-section {
  padding: 5rem 0;
}

/* ==========================================================================
   Article Single & Blog Archive Styles
   ========================================================================== */
.article-single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.article-main-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.article-featured-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-card);
  background: #0b1120;
}

.article-featured-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 2rem;
}

.article-author-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.article-stats-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.article-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Article Prose Typography */
.article-prose h2 {
  font-size: 1.65rem;
  color: #fff;
  margin: 2.5rem 0 1.25rem 0;
  position: relative;
  padding-right: 1.25rem;
}

.article-prose h2::before {
  content: '';
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--primary-gradient);
  border-radius: 4px;
}

.article-prose h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 2rem 0 1rem 0;
}

.article-prose p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.article-prose ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.article-prose ul li {
  position: relative;
  padding-right: 1.6rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.article-prose ul li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: 800;
}

.article-callout-box {
  background: rgba(219, 28, 78, 0.06);
  border-right: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.article-callout-box p {
  margin: 0;
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
}

.article-tags-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-card);
}

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

.article-tag-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  transition: var(--transition);
}

.article-tag-item:hover {
  color: #fff;
  border-color: var(--primary);
}

/* Sticky Article Sidebar */
.article-sidebar-sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.sidebar-widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-widget-title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--primary);
  border-radius: 2px;
}

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

.toc-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: block;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.toc-link:hover, .toc-link.active {
  color: #fff;
  background: rgba(219, 28, 78, 0.12);
  transform: translateX(-4px);
}

.sidebar-audit-cta {
  background: linear-gradient(145deg, rgba(23, 34, 58, 0.9) 0%, rgba(219, 28, 78, 0.15) 100%);
  border: 1px solid rgba(219, 28, 78, 0.35);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
}

/* ==========================================================================
   Shop Archive & Single Product Styles
   ========================================================================== */
.shop-filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
}

.shop-category-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop-pill-btn {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.shop-pill-btn.active, .shop-pill-btn:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-neon);
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(219, 28, 78, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 30px rgba(219, 28, 78, 0.15);
}

.product-thumb-wrap {
  position: relative;
  height: 210px;
  background: #0f172a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-subtle);
}

.product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb-wrap img {
  transform: scale(1.05);
}

.product-badge-discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(219, 28, 78, 0.4);
}

.product-badge-category {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(8px);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(219, 28, 78, 0.3);
}

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-card);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.product-old-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-active-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.product-active-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Product Single Layout */
.product-single-deck {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.product-gallery-deck {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.product-main-view {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  margin-bottom: 1rem;
  background: #0b1120;
}

.product-main-view img {
  width: 100%;
  display: block;
}

.product-purchase-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.product-feature-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.product-feature-bullet svg {
  color: var(--primary);
  flex-shrink: 0;
}

.product-guarantee-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-card);
  text-align: center;
}

.guarantee-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.guarantee-badge-item svg {
  color: var(--primary);
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(219, 28, 78, 0.15);
}

.contact-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(219, 28, 78, 0.1);
  border: 1px solid rgba(219, 28, 78, 0.3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-card-action {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-light);
  direction: ltr;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
}

.contact-form-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.office-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.office-map-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-visual-mockup {
  height: 260px;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-location-pin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pin-circle {
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 25px rgba(219, 28, 78, 0.7);
  animation: pulsePin 2s infinite;
}

@keyframes pulsePin {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(219, 28, 78, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(219, 28, 78, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(219, 28, 78, 0); }
}

.pin-label {
  margin-top: 0.5rem;
  background: rgba(11, 17, 32, 0.9);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(219, 28, 78, 0.4);
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-mission-card {
  background: linear-gradient(135deg, rgba(23, 34, 58, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid rgba(219, 28, 78, 0.35);
  border-radius: var(--radius-2xl);
  padding: 3.5rem;
  margin-bottom: 5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.values-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 5rem;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(219, 28, 78, 0.15);
}

.value-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(219, 28, 78, 0.1);
  border: 1px solid rgba(219, 28, 78, 0.3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.team-grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(219, 28, 78, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-avatar-box {
  height: 220px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.team-info-box {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 500;
}

/* ==========================================================================
   Terms & Privacy Legal Styles
   ========================================================================== */
.terms-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.terms-toc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}

.terms-article-body {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.terms-clause-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-card);
}

.terms-clause-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-clause-title {
  font-size: 1.45rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.terms-clause-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(219, 28, 78, 0.15);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ==========================================================================
   Responsive Adaptations for Subpages
   ========================================================================== */
@media (max-width: 1024px) {
  .article-single-layout,
  .product-single-deck,
  .contact-main-grid,
  .terms-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-channels-grid,
  .values-cards-grid,
  .team-grid-cards,
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-sidebar-sticky,
  .terms-toc-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 0 2.5rem 0;
  }
  .page-hero-title {
    font-size: 1.85rem;
  }
  .page-hero-desc {
    font-size: 0.95rem;
  }
  .article-main-content,
  .contact-form-panel,
  .product-purchase-panel,
  .terms-article-body,
  .terms-content-card,
  .about-mission-card {
    padding: 1.75rem 1.25rem;
  }
  .contact-channels-grid,
  .values-cards-grid,
  .team-grid-cards,
  .shop-products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-guarantee-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .shop-filters-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   Comprehensive Subpage Component Styling & Harmonization
   ========================================================================== */

/* 1. Filter Pills & Bars */
.articles-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.topic-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.topic-pill-btn:hover,
.topic-pill-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(219, 28, 78, 0.35);
}

/* 2. Portfolio Cards (Subpage Showcase) */
.portfolio-filter-tabs-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(219, 28, 78, 0.45);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(219, 28, 78, 0.15);
}

.portfolio-visual-cover {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: #020617;
  border-bottom: 1px solid var(--border-subtle);
}

.portfolio-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-cover-img {
  transform: scale(1.04);
}

.portfolio-details {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-brief-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

.portfolio-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-card);
  margin-top: auto;
}

.portfolio-category-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.portfolio-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  transition: gap 0.2s ease, color 0.2s ease;
}

.portfolio-explore-link:hover {
  color: #fff;
  gap: 0.65rem;
}

/* 3. Browser Mockup Bar */
.mockup-browser-bar {
  background: rgba(11, 17, 32, 0.95);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-dots-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }

.mockup-url-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  direction: ltr;
}

/* 4. Terms & Conditions */
.terms-content-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.terms-clause-block {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-card);
}

.terms-clause-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-clause-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
}

.terms-clause-text ul {
  padding-right: 1.25rem;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style-type: disc;
}

.terms-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.terms-nav-item {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.terms-nav-item:hover {
  color: var(--primary-light);
  background: rgba(219, 28, 78, 0.08);
  padding-right: 0.85rem;
}

/* 5. Shop & Product Styling */
.product-visual-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #020617;
  border-bottom: 1px solid var(--border-subtle);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-badge-flag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(219, 28, 78, 0.4);
  z-index: 2;
}

.product-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.6rem;
}

.product-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-card);
  margin-top: auto;
}

.product-final-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.product-gallery-side {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

/* 6. FAQ Enhancements */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-chevron-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
  color: var(--primary-glow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-card.open .faq-chevron-icon {
  transform: rotate(180deg);
}

.faq-content-body p {
  padding: 0 1.85rem 1.5rem 1.85rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 0.95rem;
}

/* 7. Articles Archive Card Extensions */
.article-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-date-stamp {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.article-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.author-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-subtle);
  border: 1px solid var(--primary);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  transition: gap 0.2s ease, color 0.2s ease;
}

.article-read-link:hover {
  color: #fff;
  gap: 0.55rem;
}

/* 8. Consultation Banner Text Elements */
.articles-cta-info {
  text-align: right;
}

.articles-cta-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(219, 28, 78, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.articles-cta-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.articles-cta-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.nav-item-featured {
  position: relative;
  font-weight: 600;
}

.faq-question-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

/* ==========================================================================
   Home Page Dynamic Section Rhythm & Visual Hierarchy Enhancements
   ========================================================================== */

/* 1. Luminous Section Separator Line */
.section-separator-line {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(219, 28, 78, 0.25) 25%, rgba(0, 242, 254, 0.45) 50%, rgba(219, 28, 78, 0.25) 75%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.section-separator-line::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #00F2FE;
  border: 1px solid #DB1C4E;
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.9), 0 0 16px rgba(219, 28, 78, 0.6);
  border-radius: 1px;
}

/* 2. Atmospheric Ambient Light Glow per Section */
.transformation-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 25%, rgba(219, 28, 78, 0.07) 0%, transparent 60%), var(--bg-main) !important;
}

.audit-scanner-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 18% 30%, rgba(0, 242, 254, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 85% 70%, rgba(56, 189, 248, 0.06) 0%, transparent 55%),
              var(--bg-section-alt) !important;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%), var(--bg-main) !important;
}

.roadmap-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 45%, rgba(219, 28, 78, 0.07) 0%, transparent 55%),
              radial-gradient(circle at 15% 55%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
              var(--bg-section-alt) !important;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 12%, rgba(0, 242, 254, 0.06) 0%, transparent 55%),
              radial-gradient(circle at 90% 85%, rgba(219, 28, 78, 0.06) 0%, transparent 50%),
              var(--bg-main) !important;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 15%, rgba(219, 28, 78, 0.09) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
              var(--bg-section-alt) !important;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 25% 35%, rgba(16, 185, 129, 0.06) 0%, transparent 55%), var(--bg-main) !important;
}

.articles-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.07) 0%, transparent 55%),
              radial-gradient(circle at 20% 80%, rgba(219, 28, 78, 0.05) 0%, transparent 50%),
              var(--bg-section-alt) !important;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 75%, rgba(219, 28, 78, 0.07) 0%, transparent 60%), var(--bg-main) !important;
}

/* 3. Section Watermark Numbers */
.section-watermark-number {
  position: absolute;
  top: 1.5rem;
  left: 3%;
  font-family: var(--font-family);
  font-size: clamp(5.5rem, 13vw, 13rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.022);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .section-watermark-number {
    font-size: 4.5rem;
    top: 0.75rem;
    left: 1rem;
    opacity: 0.7;
  }
}

/* 4. Split Asymmetric Section Header */
.section-header.section-header-split {
  text-align: right;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.section-header-split .section-header-right {
  max-width: 580px;
}

.section-header-split .section-header-right .section-badge {
  margin-right: 0;
  margin-left: auto;
}

.section-header-split .section-header-left {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.section-header-split .section-desc {
  margin: 0;
  text-align: right;
}

.portfolio-header-metrics {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.portfolio-mini-kpi {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.65rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.mini-kpi-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-glow);
  font-family: var(--font-family);
  direction: ltr;
  text-align: right;
  line-height: 1.2;
}

.mini-kpi-lbl {
  font-size: 0.775rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .section-header.section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: right;
  }
  .section-header-split .section-header-right,
  .section-header-split .section-header-left {
    max-width: 100%;
  }
}

/* 5. Interconnected Roadmap Pipeline Track */
@media (min-width: 992px) {
  .roadmap-timeline-grid {
    position: relative;
  }
  .roadmap-timeline-grid::before {
    content: '';
    position: absolute;
    top: 42px;
    right: 7%;
    left: 7%;
    height: 2px;
    background: linear-gradient(90deg, rgba(219, 28, 78, 0.4) 0%, rgba(0, 242, 254, 0.4) 50%, rgba(219, 28, 78, 0.4) 100%);
    z-index: 0;
    pointer-events: none;
  }
  .roadmap-step {
    z-index: 1;
    position: relative;
  }
}

/* 6. Pricing Popular Box 3D Elevation & Aura */
.pricing-box.popular {
  border-color: rgba(219, 28, 78, 0.55) !important;
  box-shadow: 0 15px 45px rgba(219, 28, 78, 0.25), 0 0 0 1px rgba(219, 28, 78, 0.3) !important;
}

/* 7. Featured Lead Article Accent */
.article-card.featured-lead {
  border-top: 3px solid var(--primary) !important;
  background: linear-gradient(180deg, rgba(30, 44, 75, 0.4) 0%, var(--bg-surface) 100%);
  position: relative;
}

.article-card.featured-lead .article-badge-category {
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}





/* ==========================================================================
   Elementor & WordPress Integration Fixes (Pixel-Perfect Layer)
   ========================================================================== */

/* 1. Elementor Container Normalization */
.elementor-element[class*="wn-sec-"],
.wn-sec-wrapper,
.e-con.e-parent {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-widget-html,
.elementor-widget-container {
  width: 100% !important;
}

/* 2. Brand Logo Size Lock (Prevents Elementor img override) */
.brand-logo-img,
.elementor .brand-logo-img,
header.site-header .brand-logo-img,
.site-footer .brand-logo-img {
  width: auto !important;
  height: 48px !important;
  max-width: 65px !important;
  object-fit: contain !important;
}

/* 3. Header Normalization */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  padding: 1rem 0 !important;
  transition: all 0.3s ease !important;
}

.site-header.scrolled {
  background: rgba(11, 17, 32, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid var(--border-subtle) !important;
}

.header-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.25rem !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  width: 100% !important;
}

.brand-block {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  flex-shrink: 0 !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 1.15rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links li {
  list-style: none !important;
}

.header-cta-group {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  flex-shrink: 0 !important;
}

/* Responsive CTA and Nav adjustments for mid-size screens (1024px - 1340px) */
@media (max-width: 1340px) {
  .header-phone-quick {
    display: none !important;
  }
  .nav-links {
    gap: 0.75rem !important;
  }
  .nav-item-link {
    font-size: 0.82rem !important;
    padding: 0.35rem 0.15rem !important;
  }
}

@media (max-width: 1024px) {
  .nav-links,
  .header-phone-quick {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: block !important;
  }
}

/* 4. Canvas & Particle Layer */
#matrix-canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.cursor-glow {
  position: fixed !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.elementor-21,
.elementor-page,
.app-content {
  position: relative !important;
  z-index: 2 !important;
}

/* 5. Typography & Font Smoothing */
body, h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Refinements for Subpages & Typography Contrast */
:root {
  --primary-light: #FF4D79;
}

.page-hero {
  border-bottom: none !important;
}

.page-hero-badge {
  color: #FF4D79 !important;
  border-color: rgba(255, 77, 121, 0.4) !important;
  background: rgba(219, 28, 78, 0.15) !important;
}

.page-hero-badge span {
  color: #FF4D79 !important;
}

.nav-item-link.active,
.nav-item-link[style*="primary-light"] {
  color: #FF4D79 !important;
}

.nav-item-link.active::after {
  width: 100% !important;
  background: #FF4D79 !important;
}

/* High-Contrast Polish for Navigation & Hero Badges */
.nav-item-link.active,
.nav-item-link[style*="primary-light"] {
  color: #FF5C8A !important;
  font-weight: 700 !important;
  text-shadow: 0 0 12px rgba(255, 92, 138, 0.5) !important;
}

.nav-item-link.active::after {
  width: 100% !important;
  background: #FF5C8A !important;
  box-shadow: 0 0 10px #FF5C8A !important;
  height: 2.5px !important;
}

.page-hero-badge {
  background: rgba(255, 92, 138, 0.12) !important;
  border: 1px solid rgba(255, 92, 138, 0.4) !important;
  color: #FFFFFF !important;
}

.page-hero-badge span {
  color: #FFFFFF !important;
  font-weight: 600 !important;
}

.page-hero-badge .badge-dot {
  background: #FF5C8A !important;
  box-shadow: 0 0 10px #FF5C8A !important;
}
