/* ============================================================
   SYNOVEX — Agence Digitale Suisse Premium
   CSS Global Stylesheet
   ============================================================ */

/* ── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  /* Colors */
  --primary: #3B6FFF;
  --primary-light: #5585FF;
  --primary-dark: #2952D9;
  --secondary: #27D3B3;
  --secondary-light: #33E0BD;
  --navy: #0A0E1F;
  --navy-light: #1A1F3A;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --blue-50: #F0F5FF;
  --blue-100: #E8ECF4;
  --blue-300: #C8D2E6;
  --blue-500: #5B7FD9;
  --blue-700: #2E4CB8;
  --grey-100: #E8ECF4;
  --grey-300: #C8D2E6;
  --grey-500: #8899BB;
  --grey-700: #5A6A8A;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #3B6FFF, #27D3B3);
  --gradient-dark: linear-gradient(135deg, #0A0E1F, #1A1F3A);
  --gradient-blue-soft: linear-gradient(135deg, #F0F5FF, #E8ECF4);
  --gradient-blue-medium: linear-gradient(135deg, #3B6FFF, #5B7FD9);
  --gradient-blue-deep: linear-gradient(135deg, #1A2E70, #2E4CB8);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 14, 31, 0.06);
  --shadow-md: 0 4px 24px rgba(10, 14, 31, 0.1);
  --shadow-lg: 0 12px 48px rgba(10, 14, 31, 0.15);
  --shadow-xl: 0 20px 60px rgba(10, 14, 31, 0.2);
  --shadow-glow: 0 0 60px rgba(59, 111, 255, 0.15);
  
  /* Typography */
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-pad: 120px;
  --container-max: 1280px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── SCROLL PROGRESS BAR ──────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #3B6FFF, #27D3B3, #5B7FD9);
  width: 0%;
  z-index: 10000;
  box-shadow: 0 2px 12px rgba(59, 111, 255, 0.4);
  transition: width 0.1s ease-out;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0A0E1F;
    --text: #FFFFFF;
    --text-muted: #B0BCD4;
  }
}

/* ── GLOBAL STYLES ────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: rgba(59, 111, 255, 0.1);
  }
  
  button,
  a,
  .btn {
    touch-action: manipulation;
  }
  
  /* Increase touch targets */
  .nav__link,
  .nav__toggle,
  .btn {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  color: var(--grey-700);
  line-height: 1.8;
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.text-center {
  text-align: center;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(59, 111, 255, 0.3);
}

.btn--primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(59, 111, 255, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--text {
  padding: 0;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.btn--text:hover {
  color: var(--primary-light);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(2px);
}

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(59, 111, 255, 0.08);
  border: 1px solid rgba(59, 111, 255, 0.2);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-slow);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ── GRADIENT TEXT ────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(59, 111, 255, 0.08);
  border: 1px solid rgba(59, 111, 255, 0.2);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--grey-700);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 14, 31, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 16px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  transition: var(--transition);
}

.nav__logo:hover {
  transform: translateY(-2px);
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  flex: 1;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
  transition: width 0.3s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link.active::after,
.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px !important;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 111, 255, 0.3);
}

.nav__cta::after {
  display: none !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}

/* Mobile menu toggle animation */
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile menu dropdown */
.nav__menu.active {
  display: flex !important;
}

@media (max-width: 1024px) {
  .nav__menu { 
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 14, 31, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(59, 111, 255, 0.3);
    animation: slideDown 0.3s ease-out;
    z-index: 999;
  }
  
  .nav__link {
    padding: 16px 20px;
    border-radius: 12px;
    transition: var(--transition);
    display: block;
    font-size: 1rem;
  }
  
  .nav__link:hover,
  .nav__link.active {
    background: rgba(59, 111, 255, 0.1);
  }
  
  .nav__link::after {
    display: none;
  }
  
  .nav__cta {
    margin-top: 12px;
    text-align: center;
    display: block;
    padding: 14px 24px !important;
  }
  
  .nav__toggle { 
    display: flex; 
  }
  
  .nav__inner { 
    gap: 20px; 
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(59, 111, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(39, 211, 179, 0.08) 0%, transparent 60%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -150px;
  right: -100px;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -50px;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: 60%;
  left: 50%;
  animation-delay: -8s;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--section-pad) 0;
}

.hero__text h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 600px;
}

.hero__badge {
  margin-bottom: 32px;
}

.hero__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero__visual {
  position: relative;
  height: 500px;
}

.hero__card {
  position: absolute;
  border-radius: 20px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.hero__card--1 {
  width: 280px;
  height: 350px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.hero__card--2 {
  width: 220px;
  height: 280px;
  top: 80px;
  right: 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  animation-delay: -2s;
}

.hero__card--3 {
  width: 180px;
  height: 240px;
  bottom: 0;
  left: 120px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  animation-delay: -4s;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  animation: slide-down 2s ease-in-out infinite;
}

@keyframes slide-down {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(15px); }
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero__visual { display: none; }
  .hero h1 { font-size: 2.5rem; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  background: var(--gradient-blue-soft);
  padding: 80px 0;
  border-top: 1px solid rgba(59, 111, 255, 0.1);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--grey-700);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.5) 0%, rgba(232, 236, 244, 0.5) 100%);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.feature-card {
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.6));
  border-radius: 20px;
  border: 1px solid rgba(59, 111, 255, 0.15);
  transition: var(--transition);
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 245, 255, 0.8));
  border-color: var(--primary);
  box-shadow: 0 12px 48px rgba(59, 111, 255, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 111, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.feature-card p {
  color: var(--grey-700);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  min-height: 50vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(59, 111, 255, 0.08) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT INTRO
   ============================================================ */
.about-intro {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-intro__text h2 {
  margin-bottom: 20px;
  color: var(--navy);
}

.about-intro__text > p {
  margin-bottom: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.value-item {
  padding: 24px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(240, 245, 255, 0.6));
  border-radius: 16px;
  border: 1px solid rgba(59, 111, 255, 0.2);
  transition: var(--transition);
}

.value-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.7));
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 111, 255, 0.2);
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(59, 111, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-item h4 {
  margin-bottom: 8px;
  color: var(--navy);
}

.value-item p {
  font-size: 0.95rem;
  color: var(--grey-700);
}

.about-intro__visual {
  position: relative;
  height: 500px;
}

.image-stack {
  position: relative;
  height: 100%;
}

.image-card {
  position: absolute;
  border-radius: 20px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.image-card--1 {
  width: 280px;
  height: 350px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.image-card--2 {
  width: 220px;
  height: 280px;
  top: 80px;
  right: 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  animation-delay: -2s;
}

.image-card--3 {
  width: 180px;
  height: 240px;
  bottom: 0;
  left: 120px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  animation-delay: -4s;
}

@media (max-width: 1024px) {
  .about-intro__grid { grid-template-columns: 1fr; }
  .about-intro__visual { display: none; }
  .about-values { grid-template-columns: 1fr; }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.6), rgba(232, 236, 244, 0.4));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.team-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.5));
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(59, 111, 255, 0.15);
  transition: var(--transition);
}
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.team-card__image {
  width: 100%;
  height: 250px;
  background: var(--gradient-primary);
  border-radius: 12px;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

.team-card h3 {
  margin-bottom: 8px;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS/APPROACH SECTION
   ============================================================ */
.approach-section,
.methodology-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(232, 236, 244, 0.4), rgba(240, 245, 255, 0.6));
}

.methodology-intro {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.methodology-intro h2 {
  margin-bottom: 20px;
}

.process-timeline,
.methodology-phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.process-step,
.phase-card {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(240, 245, 255, 0.6));
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(59, 111, 255, 0.2);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.process-step:hover,
.phase-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.7));
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(59, 111, 255, 0.2);
}

.step-number,
.phase-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.process-step h3,
.phase-card h3 {
  margin-bottom: 16px;
}

.phase-list {
  text-align: left;
  list-style: none;
  margin: 16px 0;
}

.phase-list li {
  font-size: 0.9rem;
  color: var(--grey-700);
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.phase-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.phase-duration {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .process-timeline,
  .methodology-phases { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .process-timeline,
  .methodology-phases { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-showcase {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.5), rgba(232, 236, 244, 0.5));
}

.service-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.service-showcase:nth-child(even) {
  direction: rtl;
}

.service-showcase:nth-child(even) > * {
  direction: ltr;
}

.service-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(59, 111, 255, 0.08);
  border: 1px solid rgba(59, 111, 255, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.service-showcase h2 {
  margin-bottom: 20px;
  color: var(--navy);
}

.service-showcase > p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--grey-700);
}

.service-list {
  margin: 32px 0;
}

.service-list ul {
  list-style: none;
}

.service-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--grey-700);
  font-size: 0.95rem;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 32px 0;
  margin: 32px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-700);
}

.service-showcase__image {
  height: 450px;
  border-radius: 20px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.service-image--1 { animation-delay: 0s; }
.service-image--2 {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  animation-delay: -2s;
}
.service-image--3 {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  animation-delay: -4s;
}

@media (max-width: 1024px) {
  .service-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-showcase:nth-child(even) {
    direction: ltr;
  }
  .service-metrics { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.5), rgba(232, 236, 244, 0.5));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.6));
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(59, 111, 255, 0.15);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 48px rgba(59, 111, 255, 0.2);
}
}

.pricing-card--featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 6px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 16px;
  color: var(--navy);
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--grey-700);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--grey-700);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-8px); }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1), transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  margin: 0 auto;
}

.final-cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}

.final-cta .cta-content h2 {
  color: var(--white);
}

.final-cta .cta-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-studies {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(232, 236, 244, 0.4), rgba(240, 245, 255, 0.6));
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.case-card {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(240, 245, 255, 0.6));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(59, 111, 255, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 48px rgba(59, 111, 255, 0.2);
}

.case-image {
  width: 100%;
  height: 300px;
  background: var(--gradient-primary);
  animation: float 6s ease-in-out infinite;
}

.case-image--1 { animation-delay: 0s; }
.case-image--2 {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  animation-delay: -2s;
}
.case-image--3 {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  animation-delay: -4s;
}
.case-image--4 { animation-delay: -1s; }
.case-image--5 { animation-delay: -3s; }
.case-image--6 { animation-delay: -5s; }

.case-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(59, 111, 255, 0.1);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  width: fit-content;
}

.case-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.case-card > p {
  margin-bottom: 24px;
  color: var(--grey-700);
  flex: 1;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.metric-item {
  text-align: center;
}

.metric-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.metric-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-700);
}

.case-services {
  list-style: none;
  margin-bottom: 24px;
}

.case-services li {
  font-size: 0.9rem;
  color: var(--grey-700);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.case-services li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

@media (max-width: 1024px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESULTS SUMMARY
   ============================================================ */
.results-summary {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.result-item {
  text-align: center;
}

.result-item h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-item p {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TECHNOLOGY SECTION
   ============================================================ */
.technology-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.5), rgba(232, 236, 244, 0.5));
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.tech-category {
  padding: 32px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(240, 245, 255, 0.6));
  border-radius: 16px;
  border: 1px solid rgba(59, 111, 255, 0.2);
  transition: var(--transition);
}
}

.tech-category:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tech-category h3 {
  margin-bottom: 20px;
  color: var(--navy);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition);
}

.tech-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VALUE SECTION
   ============================================================ */
.value-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--grey-100);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 111, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.value-icon svg {
  width: 30px;
  height: 30px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--grey-700);
}

@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.5), rgba(232, 236, 244, 0.5));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
  color: var(--navy);
}

.contact-info > p {
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.contact-method {
  padding: 24px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(240, 245, 255, 0.6));
  border-radius: 16px;
  border: 1px solid rgba(59, 111, 255, 0.2);
  transition: var(--transition);
}

.contact-method:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.7));
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 111, 255, 0.2);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: rgba(59, 111, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
}

.contact-method h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.contact-method p {
  font-size: 0.9rem;
  color: var(--grey-700);
  margin-bottom: 4px;
}

.contact-method a {
  color: var(--primary);
  font-weight: 500;
}

.contact-method a:hover {
  color: var(--primary-light);
}

.method-time {
  color: var(--grey-500) !important;
}

.contact-social {
  padding-top: 40px;
  border-top: 1px solid var(--grey-100);
}

.contact-social h4 {
  margin-bottom: 16px;
  color: var(--navy);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--off-white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--grey-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-100);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--navy);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 111, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.form-checkbox input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0 !important;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary);
}

.form-note {
  font-size: 0.85rem;
  color: var(--grey-700);
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.faq-item {
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--grey-100);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 40px;
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand {
  margin-bottom: 20px;
}

.footer__logo {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--primary);
}

.footer__brand h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__menu a:hover {
  color: var(--secondary);
}

.footer__contact {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer__contact a {
  color: var(--primary);
  font-weight: 500;
}

.footer__contact a:hover {
  color: var(--secondary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__legal a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 20px; text-align: center; }
  .footer__legal { flex-direction: column; gap: 12px; }
}

/* ============================================================
   RESPONSIVE - MOBILE OPTIMIZED
   ============================================================ */

/* ── TABLET (768px - 1024px) ─────────────────────────────── */
@media (max-width: 1024px) {
  :root { 
    --section-pad: 80px;
  }
  
  /* Better spacing for tablets */
  .container {
    padding: 0 32px;
  }
}

/* ── MOBILE LARGE (480px - 768px) ───────────────────────── */
@media (max-width: 768px) {
  :root { 
    --section-pad: 60px;
  }

  /* Container */
  .container {
    padding: 0 24px;
  }

  /* Navigation mobile improvements */
  .nav {
    padding: 16px 0;
  }
  
  .nav__menu { 
    display: none !important; 
  }
  
  .nav__toggle { 
    display: flex !important;
    z-index: 1000;
  }
  
  .nav__logo {
    font-size: 1.2rem;
  }
  
  .nav__logo-icon {
    width: 32px;
    height: 32px;
  }

  /* Typography mobile */
  h1 { 
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  h2 { 
    font-size: 1.6rem !important;
    line-height: 1.25;
  }
  
  h3 {
    font-size: 1.25rem !important;
  }
  
  h4 {
    font-size: 1.1rem !important;
  }
  
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Hero mobile optimizations */
  .hero { 
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero__content { 
    padding: 60px 0;
    gap: 40px;
  }
  
  .hero__text h1 { 
    max-width: 100%;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero__desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .hero__actions { 
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  
  .hero__actions .btn { 
    width: 100%;
    justify-content: center;
  }
  
  .hero__scroll {
    display: none;
  }

  /* Stats mobile */
  .stats {
    padding: 50px 0;
  }
  
  .stat-num {
    font-size: 2.5rem;
  }

  /* Buttons mobile */
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .btn--outline,
  .btn--text {
    width: 100%;
  }
  
  .btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
  }

  /* Cards mobile spacing */
  .feature-card,
  .team-card,
  .pricing-card,
  .case-card {
    padding: 24px;
  }
  
  .value-item,
  .contact-method,
  .tech-category {
    padding: 20px;
  }

  /* Service showcase mobile */
  .service-showcase {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .service-showcase h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .service-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Pricing mobile */
  .pricing-card h3 {
    font-size: 1.3rem;
  }
  
  .price {
    font-size: 1.8rem;
  }

  /* Contact grid mobile */
  .contact-grid {
    gap: 40px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Form mobile */
  .contact-form {
    padding: 24px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  /* Footer mobile */
  .footer {
    padding: 60px 0 40px;
  }
  
  .footer__grid {
    gap: 40px;
  }

  /* Reduce orb effects on mobile */
  .hero__orb {
    filter: blur(80px);
    opacity: 0.2;
  }
  
  .hero__orb--1 {
    width: 300px;
    height: 300px;
  }
  
  .hero__orb--2 {
    width: 250px;
    height: 250px;
  }
  
  .hero__orb--3 {
    display: none;
  }
}

/* ── MOBILE SMALL (320px - 480px) ──────────────────────── */
@media (max-width: 480px) {
  :root { 
    --section-pad: 50px;
  }

  /* Ultra compact container */
  .container { 
    padding: 0 16px;
    max-width: 100%;
  }

  /* Navigation ultra compact */
  .nav {
    padding: 12px 0;
  }
  
  .nav__logo {
    font-size: 1rem;
  }
  
  .nav__logo-icon {
    width: 28px;
    height: 28px;
  }

  /* Typography ultra small screens */
  h1 { 
    font-size: 1.75rem !important;
    letter-spacing: -0.01em;
  }
  
  h2 { 
    font-size: 1.4rem !important;
  }
  
  h3 {
    font-size: 1.15rem !important;
  }
  
  p {
    font-size: 0.9rem;
  }

  /* Hero ultra mobile */
  .hero { 
    padding-top: 70px;
    padding-bottom: 50px;
  }
  
  .hero__content {
    padding: 50px 0;
  }
  
  .hero__text h1 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
  
  .hero__desc {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  
  .hero__badge {
    margin-bottom: 24px;
  }

  /* Stats ultra compact */
  .stats {
    padding: 40px 0;
  }
  
  .stat-num {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }

  /* Buttons ultra mobile */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .btn--lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .btn svg {
    width: 16px;
    height: 16px;
  }

  /* Badge mobile */
  .badge,
  .section-badge,
  .service-badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  /* Cards ultra compact */
  .feature-card,
  .team-card,
  .case-card {
    padding: 20px;
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  .value-item,
  .contact-method {
    padding: 16px;
  }

  /* Icons smaller */
  .feature-icon,
  .value-icon,
  .contact-method-icon {
    width: 36px;
    height: 36px;
  }
  
  .feature-icon svg,
  .value-icon svg,
  .contact-method-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Service showcase ultra mobile */
  .service-showcase {
    gap: 32px;
    margin-bottom: 50px;
  }
  
  .service-list li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  /* Metrics smaller */
  .metric-num {
    font-size: 1.2rem;
  }
  
  .metric-desc {
    font-size: 0.75rem;
  }

  /* Process/Phase steps */
  .process-step,
  .phase-card {
    padding: 24px 16px;
  }
  
  .step-number,
  .phase-number {
    font-size: 2rem;
  }
  
  .phase-list li {
    font-size: 0.85rem;
  }

  /* Pricing mobile */
  .pricing-card h3 {
    font-size: 1.2rem;
  }
  
  .price {
    font-size: 1.6rem;
  }
  
  .pricing-features li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  /* Case cards */
  .case-image {
    height: 200px;
  }
  
  .case-content {
    padding: 24px;
  }
  
  .case-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Tech grid */
  .tech-grid {
    gap: 24px;
  }
  
  .tech-category {
    padding: 20px;
  }
  
  .tech-list li {
    font-size: 0.85rem;
  }

  /* Value cards */
  .value-card {
    padding: 24px;
  }

  /* Contact form */
  .contact-form {
    padding: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq-item {
    padding: 16px;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    font-size: 0.85rem;
  }

  /* Footer ultra mobile */
  .footer {
    padding: 50px 0 30px;
  }
  
  .footer__col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  
  .footer__links li,
  .footer__contact p {
    font-size: 0.85rem;
  }
  
  .footer__bottom {
    padding-top: 24px;
  }
  
  .footer__bottom p,
  .footer__legal a {
    font-size: 0.8rem;
  }

  /* Reduce animations on small screens */
  .hero__orb--1,
  .hero__orb--2 {
    animation: none;
    opacity: 0.15;
  }
  
  .image-card,
  .hero__card {
    animation: none;
  }

  /* Scroll progress bar slightly smaller */
  .scroll-progress {
    height: 3px;
  }

  /* CTA sections */
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
  }

  /* Results grid */
  .results-grid {
    gap: 32px;
  }
  
  .result-item h3 {
    font-size: 2rem;
  }

  /* Better touch targets */
  a,
  button,
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Fix overflow issues */
  body {
    overflow-x: hidden;
  }
  
  .container {
    overflow-x: hidden;
  }
}

/* ── LANDSCAPE MOBILE (max-height: 500px) ─────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  
  .hero__content {
    padding: 30px 0;
  }
  
  .hero__scroll {
    display: none;
  }
  
  .stats {
    padding: 40px 0;
  }
}
