/* ============================================
   DIGIT - Japan Market Entry LP
   Design System: Navy + Blue Gradient
   Updated: 2026-02-21
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Colors - New Blue Gradient System */
  --color-dark-navy: #1A1A2E;
  --color-primary-blue: #0066FF;
  --color-accent-cyan: #00CCFF;
  --color-gradient: linear-gradient(90deg, #0066FF 0%, #00CCFF 100%);
  --color-gradient-reverse: linear-gradient(90deg, #00CCFF 0%, #0066FF 100%);
  --color-bg-light: #F5F7FB;
  --color-bg-white: #FFFFFF;
  --color-text-primary: #1A1A2E;
  --color-text-secondary: #4A4A6A;
  --color-text-muted: #8A8AAA;
  --color-text-white: #FFFFFF;
  --color-border: rgba(0, 102, 255, 0.10);
  --color-shadow: rgba(0, 0, 0, 0.06);
  --color-shadow-blue: rgba(0, 102, 255, 0.12);

  /* Typography */
  --font-heading: 'Inter', 'Poppins', sans-serif;
  --font-body: 'Noto Sans JP', '游ゴシック', 'Yu Gothic', sans-serif;
  --fw-heading: 800;
  --fw-subheading: 700;
  --fw-body: 400;
  --fw-body-medium: 500;
  --lh-heading: 1.2;
  --lh-body: 1.8;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem) 0;
  --container-width: 1200px;
  --gap: 2rem;

  /* Border Radius */
  --radius-card: 16px;
  --radius-button: 12px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(0, 102, 255, 0.12);
  --shadow-button: 0 4px 16px rgba(0, 102, 255, 0.3);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  color: var(--color-text-primary);
  line-height: var(--lh-body);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-accent-cyan);
}

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Section Labels & Titles (Bilingual) --- */
.section-label {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  background: #0066FF;
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: var(--fw-subheading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  line-height: 1;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-heading);
  line-height: var(--lh-heading);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-title-ja {
  font-family: var(--font-body);
  font-weight: var(--fw-body-medium);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: var(--lh-body);
}

.text-gradient {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-line {
  height: 3px;
  width: 48px;
  background: #0066FF;
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-subheading);
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
}

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

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 102, 255, 0.4);
  color: var(--color-text-white);
}

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

.btn-outline:hover {
  background: var(--color-primary-blue);
  color: var(--color-text-white);
  transform: scale(1.03);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary-blue);
  border: 2px solid rgba(0, 102, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(0, 102, 255, 0.06);
  color: var(--color-primary-blue);
  transform: scale(1.03);
}

/* Ghost button on dark/blue backgrounds (CTA section etc.) */
.cta .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--color-text-white);
  transform: scale(1.03);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}

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

/* --- Tags / Pills --- */
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.875rem;
  background: #0066FF;
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  line-height: 1.2;
}

/* --- Wave Section Dividers --- */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}

.wave-divider--top {
  top: -1px;
}

.wave-divider--bottom {
  bottom: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 40px;
}

/* --- Blob Decorations --- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

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

.blob--cyan {
  background: var(--color-accent-cyan);
}

.blob--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
}

.blob--2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -120px;
}

.blob--3 {
  width: 350px;
  height: 350px;
  top: 40%;
  right: -100px;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
}

.logo-white {
  display: none;
}

.logo-dark {
  display: block;
}

/* scrolled state: same (dark logo already visible) */
.header.scrolled .logo-white {
  display: none;
}

.header.scrolled .logo-dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: var(--fw-body-medium);
  letter-spacing: 0.02em;
}

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

.header.scrolled .nav-links a {
  color: var(--color-text-secondary);
}

.header.scrolled .nav-links a:hover {
  color: var(--color-primary-blue);
}

.nav-cta {
  padding: 0.625rem 1.5rem !important;
  background: var(--color-gradient) !important;
  color: var(--color-text-white) !important;
  border-radius: var(--radius-button) !important;
  font-weight: var(--fw-subheading) !important;
  box-shadow: var(--shadow-button);
}

.nav-cta:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
  background: var(--color-text-primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  /* align-items: flex-start — content always starts below header, never overlaps */
  align-items: flex-start;
  background: linear-gradient(135deg, #F0F5FF 0%, #E8EFFF 55%, #E2EDFF 100%) !important;
  overflow: hidden;
  /* JS sets --header-height dynamically; 140px is the safe fallback */
  padding-top: calc(var(--header-height, 88px) + 3.5rem);
  padding-bottom: 80px;
}

/* decorative blobs removed */

/* Hero image card (Tokyo photo) */
.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,102,255,0.08);
}

.hero-city-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 102, 255, 0.07);
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-cyan);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

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

.hero-title .gold {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-family: var(--font-heading);
}

.hero-title-ja {
  font-family: var(--font-body);
  font-weight: var(--fw-body-medium);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-description {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 102, 255, 0.12);
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-heading);
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .number span {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.japan-map-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  bottom: 30px;
  left: -40px;
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  bottom: -15px;
  right: 40px;
  animation-delay: 4s;
}

.floating-card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.floating-card .card-value {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading);
  font-size: 1.25rem;
  color: var(--color-text-primary);
}

.floating-card .card-label {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
}

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

/* ============================================
   Pain Points / Challenge Section
   ============================================ */
.pain-points {
  padding: var(--section-padding);
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

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

.pain-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0066FF;
  opacity: 0;
  transition: var(--transition);
}

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

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--color-bg-light);
}

.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-subheading);
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

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

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

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

.service-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0066FF;
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: var(--fw-heading);
  color: rgba(0, 102, 255, 0.18);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-subheading);
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.service-card p {
  font-size: 0.925rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

/* ============================================
   Why Japan Section (Dark)
   ============================================ */
.why-japan {
  padding: var(--section-padding);
  background: var(--color-dark-navy);
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
}

.why-japan::before {
  content: '日本';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: 20rem;
  font-weight: 900;
  opacity: 0.03;
  color: var(--color-text-white);
  font-family: var(--font-heading);
}

.why-japan .section-title {
  color: var(--color-text-white);
}

.why-japan .section-title-ja {
  color: rgba(255, 255, 255, 0.55);
}

.why-japan .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-japan .section-label {
  background: rgba(0, 102, 255, 0.55);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: var(--fw-heading);
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-unit {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-body-medium);
  color: rgba(255, 255, 255, 0.85);
}

.stat-description {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ============================================
   Process Section
   ============================================ */
.process {
  padding: var(--section-padding);
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

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

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 2px;
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-bg-white);
  border: 3px solid var(--color-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.process-step:hover .step-circle {
  background: #0066FF;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: var(--shadow-button);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: var(--fw-subheading);
  color: #0066FF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-subheading);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   Advantages / Why Us
   ============================================ */
.advantages {
  padding: var(--section-padding);
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

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

.advantage-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-card);
  background: #0066FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25);
}

.advantage-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-subheading);
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.advantage-item p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.advantage-visual {
  background: linear-gradient(135deg, #1746c8 0%, #2563eb 60%, #0ea5e9 100%);
  border-radius: 20px;
  padding: 3rem;
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
}

.advantage-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
}

.advantage-visual::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.15) 0%, transparent 70%);
}

.advantage-quote {
  position: relative;
  z-index: 2;
}

.advantage-quote blockquote {
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.advantage-quote blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.advantage-quote .attribution {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
  padding: var(--section-padding);
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

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

.pricing-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

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

.pricing-card.featured {
  border: 2px solid var(--color-primary-blue);
  transform: scale(1.02);
}

.pricing-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0066FF;
  color: var(--color-text-white);
  padding: 0.3rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: var(--fw-subheading);
  letter-spacing: 0.1em;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--fw-subheading);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-price .from {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: var(--fw-heading);
  color: var(--color-text-primary);
}

.pricing-price .period {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-primary-blue);
  font-weight: var(--fw-subheading);
  font-size: 0.875rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #1746c8 0%, #2563eb 55%, #0ea5e9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fw-heading);
  color: var(--color-text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: var(--section-padding);
  background: var(--color-bg-white);
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-bg-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

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

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary-blue);
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
  font-weight: var(--fw-subheading);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  padding: 0 2rem;
  font-size: 0.925rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-dark-navy);
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: var(--fw-subheading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Contact Form Modal
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 3rem;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  float: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0.25rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-text-primary);
}

.modal h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-heading);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.modal .modal-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.925rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
  background: var(--color-bg-white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================
   Scroll Animations
   ============================================ */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

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

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links a {
    color: var(--color-text-secondary) !important;
  }

  .nav-links a:hover {
    color: var(--color-primary-blue) !important;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

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

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

  .process-timeline {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .wave-divider svg {
    min-height: 30px;
  }
}

/* ============================================
   Trusted By / Client Logos
   ============================================ */
.trusted-by {
  padding: 3rem 0;
  background: var(--color-bg-light);
  text-align: center;
}

.trusted-by-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.logo-carousel {
  overflow: hidden;
  margin-bottom: 2rem;
}

.logo-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.client-logo {
  flex-shrink: 0;
  opacity: 0.5;
  transition: var(--transition);
  width: 110px;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo svg {
  width: 100%;
  height: auto;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

/* ============================================
   Case Studies / Results Section
   ============================================ */
.results {
  padding: var(--section-padding);
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

.results-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 820px;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, #1746c8 0%, #2563eb 55%, #0ea5e9 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.results-summary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
}

.result-metric {
  text-align: center;
  position: relative;
  z-index: 2;
}

.result-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: var(--fw-heading);
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-number span {
  color: #ffffff;
}

.result-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

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

.case-study-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.case-study-image {
  position: relative;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.875rem;
  background: #0066FF;
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

.case-study-content {
  padding: 1.75rem;
}

.case-study-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-subheading);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.case-study-content p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.case-study-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

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

.cs-stat-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-heading);
  color: var(--color-primary-blue);
}

.cs-stat-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

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

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: var(--fw-subheading);
  color: var(--color-text-primary);
}

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

/* ============================================
   Team Section
   ============================================ */
.team {
  padding: var(--section-padding);
  background: var(--color-bg-light);
  color: var(--color-text-primary);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: 'TEAM';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: 18rem;
  font-weight: 900;
  opacity: 0.025;
  color: var(--color-primary-blue);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}

/* Team photo collage: 1 tall left + 2 stacked right */
.team-photo-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 460px;
  margin: 3rem 0 0;
}

.collage-photo {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.collage-main {
  grid-row: 1 / 3; /* spans full height on left */
}

.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.collage-photo:hover img {
  transform: scale(1.03);
}

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

.team-member {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-card);
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 102, 255, 0.07);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.team-member:hover {
  background: var(--color-bg-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.member-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(0, 102, 255, 0.3);
  background: transparent;
  padding: 0;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  transform: scale(1.25);
  transform-origin: center 30%;
}

.member-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-subheading);
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 0.8rem;
  color: #0066FF;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.member-bio {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-primary-blue);
  color: var(--color-text-white);
}

/* ============================================
   Blog / Insights Section
   ============================================ */
.insights {
  padding: var(--section-padding);
  background: var(--color-bg-light);
  position: relative;
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.insight-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  color: inherit;
}

.insight-card--featured {
  grid-row: 1 / 3;
}

.insight-image {
  overflow: hidden;
}

.insight-image svg,
.insight-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-image svg,
.insight-card:hover .insight-image img {
  transform: scale(1.03);
}

.insight-image--small svg {
  height: 140px;
  object-fit: cover;
}

.insight-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-category {
  display: inline-flex;
  padding: 0.2rem 0.75rem;
  background: var(--color-bg-light);
  color: var(--color-primary-blue);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.insight-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-subheading);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.insight-card--featured .insight-content h3 {
  font-size: 1.25rem;
}

.insight-content p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.insight-read-more {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-blue);
  margin-top: auto;
}

.insight-card:hover .insight-read-more {
  color: var(--color-accent-cyan);
}

/* ============================================
   Footer Enhancements
   ============================================ */
.footer-partners {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-partner-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary-blue);
  color: var(--color-text-white);
}

/* ============================================
   Advantage Visual Enhancement
   ============================================ */
.advantage-image-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.advantage-team-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
}

/* ============================================
   Responsive - New Sections
   ============================================ */
@media (max-width: 1024px) {
  .results-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .insight-card--featured {
    grid-row: auto;
  }

  .insights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .logo-track {
    gap: 1.5rem;
  }

  .client-logo {
    width: 90px;
  }

  .trust-badges {
    gap: 1rem;
  }

  .trust-badge {
    font-size: 0.65rem;
  }

  .results-summary {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
  }

  .result-number {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-partners {
    gap: 1.5rem;
  }

  .insight-image--small svg {
    height: 120px;
  }
}
