/* ============================================================
   FAHMEEDA ATHER — Premium Consultant Website
   Design System & Global Styles
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-primary:       #0B57D0;
  --color-primary-dark:  #0949B6;
  --color-accent:        #1F2937;
  --color-bg:            #FFFFFF;
  --color-bg-soft:       #F5F7FA;
  --color-bg-dark:       #0D1117;
  --color-text:          #1F2937;
  --color-text-muted:    #6B7280;
  --color-text-light:    #9CA3AF;
  --color-border:        #E5E7EB;
  --color-border-light:  #F3F4F6;
  --color-success:       #10B981;
  --color-white:         #FFFFFF;

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Font Sizes */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  30px;
  --text-h3:   26px;
  --text-h2:   36px;
  --text-h1:   48px;

  /* Spacing */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32:  128px;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(11,87,208,0.20);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-slow:   0.40s ease;

  /* Header height */
  --header-height: 80px;
  --header-shrunk: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-accent);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.section--soft {
  background-color: var(--color-bg-soft);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header .eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-header h2 {
  margin-bottom: var(--space-5);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(11,87,208,0.30);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
}

.btn--lg {
  font-size: var(--text-lg);
  padding: 18px 36px;
}

.btn--sm {
  font-size: var(--text-sm);
  padding: 10px 20px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

/* --- Tags / Badges --- */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background-color: rgba(11,87,208,0.08);
  color: var(--color-primary);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: var(--header-shrunk);
  border-bottom-color: var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.header-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.logo-title {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
  background-color: var(--color-bg-soft);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-2);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

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

.mobile-menu .nav-link {
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-4);
}

.mobile-menu .btn {
  margin-top: var(--space-2);
}

/* Page offset for sticky header */
main { padding-top: var(--header-height); }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

/* Geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(11,87,208,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11,87,208,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.hero h1 .highlight {
  color: var(--color-primary);
  position: relative;
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-light);
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-white);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--color-primary), #4A8FEA);
}

.hero-avatars span:first-child { margin-left: 0; }

.hero-avatars span:nth-child(2) { background: linear-gradient(135deg, #10B981, #34D399); }
.hero-avatars span:nth-child(3) { background: linear-gradient(135deg, #F59E0B, #FCD34D); }
.hero-avatars span:nth-child(4) { background: linear-gradient(135deg, #EF4444, #F87171); }

.hero-social-proof-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.hero-social-proof-text strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.analytics-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.analytics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), #4A8FEA, #10B981);
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}

.analytics-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.analytics-period {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  background: var(--color-bg-soft);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.metric-label {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: 4px;
}

.metric-change {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-success);
  margin-top: 2px;
}

/* SVG Chart in Hero */
.chart-container {
  width: 100%;
  height: 160px;
  position: relative;
}

.chart-container svg {
  width: 100%;
  height: 100%;
}

/* Floating stat cards */
.float-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: float 4s ease-in-out infinite;
}

.float-card--leads {
  bottom: -20px;
  left: -40px;
  animation-delay: 0s;
}

.float-card--rank {
  top: 30px;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.float-icon--green  { background: rgba(16,185,129,0.12); }
.float-icon--blue   { background: rgba(11,87,208,0.10); }

.float-text { line-height: 1.2; }

.float-number {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-accent);
}

.float-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   TRUST / LOGOS SECTION
   ============================================================ */

.trust-section {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.trust-label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8) var(--space-12);
}

.logo-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  opacity: 0.45;
  transition: opacity var(--transition-base);
  filter: grayscale(1);
}

.logo-item:hover {
  opacity: 0.85;
  filter: grayscale(0);
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-name-text {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.problem-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(11,87,208,0.15);
  transform: translateY(-2px);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(239,68,68,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.problem-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.problem-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   FRAMEWORK / PROCESS
   ============================================================ */

.framework-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.framework-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary) 0%, rgba(11,87,208,0.15) 100%);
}

.step-item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding: var(--space-5) 0;
  position: relative;
  opacity: 0.92;
  transition: opacity var(--transition-base);
}

.step-item:hover { opacity: 1; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-blue);
}

.step-content {
  padding-top: var(--space-3);
  flex: 1;
}

.step-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.cs-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-base);
}

.cs-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.cs-card-header {
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, rgba(11,87,208,0.04) 100%);
  border-bottom: 1px solid var(--color-border-light);
}

.cs-industry {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.cs-client {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent);
}

.cs-chart {
  padding: var(--space-4) var(--space-6);
  height: 120px;
}

.cs-chart svg {
  width: 100%;
  height: 100%;
}

.cs-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border-light);
}

.cs-metric {
  background: var(--color-white);
  padding: var(--space-5) var(--space-6);
  text-align: center;
}

.cs-metric-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.cs-metric-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.cs-card-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border-light);
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(11,87,208,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.service-card h3 {
  font-size: var(--text-h3);
  color: var(--color-accent);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.service-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.service-benefits li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: rgba(16,185,129,0.12);
  color: var(--color-success);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-8);
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 64px;
  line-height: 1;
  color: rgba(11,87,208,0.12);
  font-family: Georgia, serif;
  position: absolute;
  top: var(--space-6);
  left: var(--space-8);
}

.testimonial-text {
  font-size: var(--text-xl);
  line-height: 1.65;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), #4A8FEA);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-accent);
}

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

.star-rating {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: #F59E0B;
  font-size: var(--text-xl);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-accent);
  font-size: var(--text-xl);
}

.slider-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--transition-base);
}

.dot.active {
  background: var(--color-primary);
  width: 24px;
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, rgba(11,87,208,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11,87,208,0.04) 100%);
}

.blog-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.blog-date {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.blog-card h3 {
  font-size: var(--text-xl);
  line-height: 1.3;
  color: var(--color-accent);
}

.blog-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.read-more:hover { gap: var(--space-2); }

/* ============================================================
   LEAD MAGNET
   ============================================================ */

.lead-magnet {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0949B6 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.lead-magnet-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.lead-magnet-content p {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-lg);
}

.lead-form { display: flex; flex-direction: column; gap: var(--space-3); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.80);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-size: var(--text-base);
  outline: none;
  transition: border-color var(--transition-fast);
  backdrop-filter: blur(8px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.60);
}

.form-group.error input,
.form-group.error textarea {
  border-color: #F87171;
}

.form-error-msg {
  font-size: var(--text-xs);
  color: #FCA5A5;
  display: none;
}

.form-group.error .form-error-msg { display: block; }

/* Standard Form (Contact) */
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: var(--color-text-light);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11,87,208,0.10);
}

.contact-form .form-group label {
  color: var(--color-text-muted);
}

.contact-form .form-group.error .form-error-msg {
  color: #EF4444;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
  color: var(--color-white);
}

.form-success h3 { color: var(--color-white); margin-bottom: var(--space-2); }

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: var(--space-5);
}

.final-cta p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.calendar-placeholder {
  margin-top: var(--space-16);
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.cal-month {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
}

.cal-nav {
  display: flex;
  gap: var(--space-2);
}

.cal-nav button {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.cal-nav button:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-1);
  text-align: center;
}

.cal-day-header {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-light);
  padding: var(--space-2) 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text-muted);
}

.cal-day:not(.empty):hover {
  background: rgba(11,87,208,0.08);
  color: var(--color-primary);
}

.cal-day.available {
  color: var(--color-text);
  font-weight: 500;
}

.cal-day.available:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.cal-day.today {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}

.cal-day.empty { cursor: default; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand .logo-name { color: var(--color-white); }
.footer-brand .logo-title { color: var(--color-primary); }

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  color: rgba(255,255,255,0.50);
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  text-decoration: none;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover { color: var(--color-white); }

/* ============================================================
   INTERIOR PAGE HERO
   ============================================================ */

.page-hero {
  padding: var(--space-24) 0 var(--space-16);
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-white) 100%);
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
}

.page-hero .eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.page-hero h1 {
  margin-bottom: var(--space-5);
}

.page-hero p {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.service-detail {
  padding: var(--space-20) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.service-detail:nth-child(even) {
  background: var(--color-bg-soft);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.service-detail-grid.reversed {
  direction: rtl;
}

.service-detail-grid.reversed > * {
  direction: ltr;
}

.service-detail-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: rgba(11,87,208,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: var(--space-6);
}

.service-detail h2 {
  margin-bottom: var(--space-4);
}

.service-detail p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.75;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.process-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.process-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.process-text span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.result-item {
  text-align: center;
  padding: var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.result-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
}

.result-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================================
   CASE STUDIES PAGE
   ============================================================ */

.cs-full-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  margin-bottom: var(--space-8);
  transition: box-shadow var(--transition-base);
}

.cs-full-card:hover { box-shadow: var(--shadow-xl); }

.cs-full-header {
  padding: var(--space-10);
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, rgba(11,87,208,0.04) 100%);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.cs-header-text .cs-industry {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.cs-header-text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.cs-header-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.cs-quick-wins {
  display: flex;
  gap: var(--space-4);
}

.quick-win {
  text-align: center;
  padding: var(--space-4) var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.quick-win-val {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
}

.quick-win-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.cs-body {
  padding: var(--space-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.cs-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.cs-section p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.strategy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.cs-chart-full {
  height: 200px;
  margin: 0 var(--space-10) var(--space-10);
}

.cs-chart-full svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.blog-featured {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-featured:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.blog-featured-image {
  height: 280px;
  background: linear-gradient(135deg, rgba(11,87,208,0.08), rgba(11,87,208,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.blog-featured-content {
  padding: var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.blog-sidebar-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: all var(--transition-base);
}

.blog-sidebar-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-sidebar-img {
  width: 90px;
  min-height: 90px;
  background: linear-gradient(135deg, var(--color-bg-soft), rgba(11,87,208,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.blog-sidebar-content {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.blog-sidebar-content h3 {
  font-size: var(--text-base);
  line-height: 1.3;
}

.blog-sidebar-content .blog-date {
  font-size: var(--text-xs);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, rgba(11,87,208,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

.about-stat-badge {
  position: absolute;
  bottom: var(--space-6);
  right: calc(-1 * var(--space-6));
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

.about-stat-badge .stat-val {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.about-stat-badge .stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.about-content h1 {
  margin-bottom: var(--space-2);
}

.about-tagline {
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.about-bio {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.philosophy-item {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
}

.philosophy-icon {
  font-size: 36px;
  margin-bottom: var(--space-4);
}

.philosophy-item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.philosophy-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--space-4); }

.contact-info p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-method:hover {
  background: rgba(11,87,208,0.06);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(11,87,208,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-method-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
}

.contact-method-text span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border-light);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  margin-bottom: var(--space-8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: var(--text-base);
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.contact-form .form-group textarea { resize: vertical; min-height: 130px; }

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11,87,208,0.10);
  background: var(--color-white);
}

.contact-form .form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
  display: block;
}

.contact-success {
  display: none;
  text-align: center;
  padding: var(--space-10);
}

.contact-success .success-icon {
  font-size: 64px;
  margin-bottom: var(--space-4);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */

@media (max-width: 960px) {
  :root {
    --text-h1: 38px;
    --text-h2: 30px;
    --text-h3: 22px;
  }

  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { display: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }

  .lead-magnet { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reversed { direction: ltr; }

  .cs-body { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-stat-badge { right: var(--space-6); }
  .contact-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .blog-hero-grid { grid-template-columns: 1fr; }

  .results-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */

@media (max-width: 600px) {
  :root {
    --text-h1: 30px;
    --text-h2: 26px;
    --text-h3: 20px;
  }

  .section { padding-top: var(--space-16); padding-bottom: var(--space-16); }

  .case-studies-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .analytics-metrics { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .lead-magnet { padding: var(--space-8); }

  .cs-full-header { flex-direction: column; }
  .cs-quick-wins { flex-wrap: wrap; }

  .philosophy-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }

  .final-cta h2 { font-size: 28px; }

  .testimonial-card { padding: var(--space-8) var(--space-6); }
  .testimonial-text { font-size: var(--text-lg); }
}
