/* ============================================
   RCloudRidge — Main Stylesheet
   Dot Grid Pattern · Technical · Precise
   ============================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --navy-900: #0f1b2d;
  --navy-800: #162236;
  --navy-700: #1e3148;
  --navy-600: #264260;
  --slate-500: #4a6080;
  --slate-400: #6b84a0;
  --slate-300: #8fa5be;
  --slate-200: #c2d1e0;
  --slate-100: #e4ecf4;
  --slate-50: #f0f5fa;

  --teal-600: #0d7a6e;
  --teal-500: #10a090;
  --teal-400: #14bfac;
  --teal-300: #4dd4c5;
  --teal-100: #d0f4f0;

  --amber-500: #e8a020;
  --amber-400: #f0b830;
  --amber-100: #fef3d0;

  --white: #ffffff;
  --off-white: #f8fafc;
  --bg-light: #f2f7fc;
  --text-primary: #0f1b2d;
  --text-secondary: #3d5470;
  --text-muted: #6b84a0;
  --border-light: #d8e6f0;
  --border-medium: #b8cfe0;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(15,27,45,0.06), 0 1px 2px rgba(15,27,45,0.04);
  --shadow-sm: 0 2px 8px rgba(15,27,45,0.08), 0 1px 4px rgba(15,27,45,0.05);
  --shadow-md: 0 4px 16px rgba(15,27,45,0.10), 0 2px 6px rgba(15,27,45,0.06);
  --shadow-lg: 0 8px 32px rgba(15,27,45,0.12), 0 4px 12px rgba(15,27,45,0.07);
  --shadow-xl: 0 16px 48px rgba(15,27,45,0.14), 0 6px 20px rgba(15,27,45,0.08);
  --shadow-teal: 0 4px 20px rgba(13,122,110,0.25), 0 2px 8px rgba(13,122,110,0.15);
  --shadow-teal-lg: 0 8px 32px rgba(13,122,110,0.30), 0 4px 14px rgba(13,122,110,0.18);

  /* Border Radius Scale */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 100px);
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 48px);

  /* Typography */
  --font-display: 'Wix Madefor Display', sans-serif;
  --font-body: 'Wix Madefor Text', sans-serif;

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

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Dot Grid Background Pattern ── */
.dot-grid-hero {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.dot-pattern-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,122,110,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

/* Body-level subtle dot grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74,96,128,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: -1;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Typography Scale ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  background: var(--teal-100);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.section-label.light {
  color: var(--teal-300);
  background: rgba(13,122,110,0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}
.section-intro.light { color: rgba(255,255,255,0.82); }

.section-header.center { text-align: center; }
.section-header.center .section-intro { margin: 0 auto; }
.section-header.center .section-label { display: inline-block; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-teal);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  min-height: 48px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  box-shadow: var(--shadow-teal-lg);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
  min-height: 48px;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-600);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: 2px solid var(--teal-500);
  transition: all var(--transition-base);
  min-height: 48px;
}
.btn-outline:hover {
  background: var(--teal-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--teal-600);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  min-height: 48px;
}
.btn-primary-light:hover {
  background: var(--teal-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--teal-600);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition-base);
  min-height: 48px;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  color: var(--white);
}

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

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15,27,45,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-base);
}

.site-nav.scrolled {
  background: rgba(15,27,45,0.98);
  box-shadow: 0 2px 20px rgba(15,27,45,0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img { width: 36px; height: 36px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  color: var(--white);
  padding: 8px 18px;
  box-shadow: var(--shadow-teal);
}
.nav-link.nav-cta:hover {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  box-shadow: var(--shadow-teal-lg);
  transform: translateY(-1px);
}
.nav-link.nav-cta.active {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,27,45,0.6);
  z-index: 998;
  backdrop-filter: blur(2px);
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-geometric {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-geometric::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(13,122,110,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-geometric::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(20,191,172,0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px var(--container-pad) 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,122,110,0.2);
  border: 1px solid rgba(20,191,172,0.3);
  color: var(--teal-300);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.tag i { color: var(--teal-400); font-size: 0.72rem; }

.hero-visual { position: relative; }

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15,27,45,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.hero-card-float i {
  font-size: 1.4rem;
  color: var(--teal-400);
  flex-shrink: 0;
}
.hero-card-float strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-display);
}
.hero-card-float span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.hero-card-1 { bottom: -24px; left: -24px; }
.hero-card-2 { top: -20px; right: -20px; }

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ── Intro Strip ── */
.intro-strip {
  background: var(--bg-light);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.intro-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.intro-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-teal);
}
.intro-icon i { color: var(--white); font-size: 1rem; }

.intro-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 3px;
}
.intro-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── About Section ── */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-stack { position: relative; }

.about-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--off-white);
}

.about-badge-float {
  position: absolute;
  top: 24px;
  right: -20px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-teal-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 200px;
  line-height: 1.3;
}
.about-badge-float i { font-size: 1.1rem; flex-shrink: 0; }

.about-content { padding-bottom: 32px; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.highlight-item i { color: var(--teal-500); margin-top: 3px; flex-shrink: 0; }

/* ── Services Section ── */
.services-section {
  position: relative;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  padding: calc(var(--section-pad) + 40px) 0;
  overflow: hidden;
}

.services-diagonal-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.services-diagonal-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.service-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(20,191,172,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  background: rgba(13,122,110,0.15);
  border-color: rgba(20,191,172,0.25);
}
.service-card--featured::before { opacity: 1; }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-teal);
}
.service-icon-wrap i { color: var(--white); font-size: 1.3rem; }

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.service-list i { color: var(--teal-400); margin-top: 2px; font-size: 0.75rem; flex-shrink: 0; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-400);
  transition: all var(--transition-base);
}
.service-link:hover { color: var(--teal-300); gap: 10px; }

/* ── Process Section ── */
.process-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 48px;
}

.process-step { position: relative; }

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-100);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
  margin-top: 12px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 12px 0;
  color: var(--teal-400);
  font-size: 1.2rem;
}

/* ── Gallery Section ── */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--large { grid-row: span 2; }
.gallery-item--large img { height: 456px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,27,45,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }

/* ── CTA Section ── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--navy-700) 100%);
  padding: var(--section-pad) 0;
  overflow: hidden;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: -40px 0;
  padding-top: calc(var(--section-pad) + 40px);
  padding-bottom: calc(var(--section-pad) + 40px);
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.cta-shape-2 { width: 250px; height: 250px; bottom: -60px; left: 10%; }
.cta-shape-3 { width: 150px; height: 150px; top: 40%; right: 20%; }

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-900);
  margin-top: 40px;
}

.footer-stats-bar {
  background: linear-gradient(90deg, var(--teal-600), var(--navy-700));
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.stat-item i { color: var(--teal-300); font-size: 1rem; flex-shrink: 0; }

.footer-main { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { width: 32px; height: 32px; }
.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  display: flex;
  gap: 8px;
}
.footer-address i { color: var(--teal-400); margin-top: 3px; flex-shrink: 0; }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base);
}
.footer-links a:hover { color: var(--teal-400); }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-base);
}
.footer-contact-item:hover { color: var(--teal-400); }
.footer-contact-item i { color: var(--teal-400); font-size: 0.9rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-base);
}
.footer-legal-links a:hover { color: var(--teal-400); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Experience Page ── */
.exp-story-section { padding: var(--section-pad) 0; }
.exp-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.exp-story-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.exp-values-section {
  position: relative;
  background: var(--bg-light);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-300);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-icon i { color: var(--teal-600); font-size: 1.3rem; }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.exp-approach-section { padding: var(--section-pad) 0; }

.approach-blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.approach-block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.approach-block:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
}

.approach-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-100);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.approach-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.approach-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.exp-cta-section { padding: var(--section-pad) 0; }

.inner-cta-box {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,122,110,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.inner-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.inner-cta-box p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.inner-cta-box .btn-primary { position: relative; z-index: 1; }

/* ── Services Detail Page ── */
.services-detail-section { padding: var(--section-pad) 0; }

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-light);
}
.service-detail-block:last-child { border-bottom: none; margin-bottom: 0; }

.service-detail-block--reverse { direction: rtl; }
.service-detail-block--reverse > * { direction: ltr; }

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-teal);
}
.service-detail-icon i { color: var(--white); font-size: 1.6rem; }

.service-detail-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-item > i {
  color: var(--teal-500);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.feature-item > div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.feature-item > div p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.what-not-section { padding: 0 0 var(--section-pad); }

.what-not-box {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--amber-100);
  border: 1px solid var(--amber-400);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.what-not-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.what-not-icon i { color: var(--white); font-size: 1.3rem; }

.what-not-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.what-not-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}
.what-not-content p:last-child { margin-bottom: 0; }

/* ── Examples Page ── */
.examples-intro-section {
  padding: 40px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}
.examples-intro-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 800px;
  margin-bottom: 12px;
}

.examples-section { padding: var(--section-pad) 0; }

.example-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.example-card:hover { box-shadow: var(--shadow-lg); }

.example-header {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  padding: 28px 36px;
}

.example-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,122,110,0.25);
  border: 1px solid rgba(20,191,172,0.3);
  color: var(--teal-300);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.example-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.example-body {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.example-situation h3,
.example-solution h3,
.example-result h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.example-situation h3 { color: var(--amber-500); }
.example-situation h3 i { color: var(--amber-500); }

.example-solution h3 { color: var(--teal-600); }
.example-solution h3 i { color: var(--teal-600); }

.example-result h3 { color: var(--navy-700); }
.example-result h3 i { color: var(--teal-500); }

.example-situation p,
.example-solution p,
.example-result p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ── Contact Page ── */
.contact-section { padding: var(--section-pad) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.contact-info-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--teal-600); }

.contact-detail-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.contact-detail-item p,
.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-detail-item a:hover { color: var(--teal-600); }

.contact-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--amber-100);
  border: 1px solid var(--amber-400);
  border-radius: var(--radius-md);
  padding: 16px;
}
.contact-note i { color: var(--amber-500); margin-top: 2px; flex-shrink: 0; }
.contact-note p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: all var(--transition-base);
  min-height: 48px;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(13,122,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal-500);
  flex-shrink: 0;
  cursor: pointer;
}
.form-check label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 400;
  cursor: pointer;
}
.form-check label a { color: var(--teal-600); text-decoration: underline; }

.map-section { padding: 0 0 var(--section-pad); }
.map-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 20px;
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* ── Thanks Page ── */
.thanks-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  padding-top: 68px;
}

.thanks-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  padding: 80px 0;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--teal-400);
  margin-bottom: 24px;
}

.thanks-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 12px;
}

.thanks-subtext {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Legal Pages ── */
.legal-hero {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  padding: 120px 0 60px;
}

.legal-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.legal-hero-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.legal-section { padding: var(--section-pad) 0; }

.legal-content { max-width: 820px; }

.legal-block { margin-bottom: 40px; }

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-100);
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 20px 0 10px;
}

.legal-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-block ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0;
}
.legal-block ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-block a { color: var(--teal-600); text-decoration: underline; }
.legal-block a:hover { color: var(--teal-500); }

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
}
.cookies-table th {
  background: var(--navy-800);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.cookies-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.cookies-table tr:nth-child(even) td { background: var(--bg-light); }

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
}
.cookie-banner.visible { display: block; }

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-banner-header i { color: var(--teal-400); font-size: 1.3rem; }
.cookie-banner-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.cookie-banner a { color: var(--teal-400); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  min-height: 44px;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.cookie-btn-accept:hover { background: linear-gradient(135deg, var(--teal-500), var(--teal-400)); transform: translateY(-1px); }

.cookie-btn-reject {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-reject:hover { background: rgba(255,255,255,0.14); color: var(--white); }

.cookie-btn-customize {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-customize:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }

/* Cookie Customize Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.visible { display: flex; }

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.cookie-modal-box {
  position: relative;
  z-index: 1;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.cookie-modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cookie-category:last-of-type { border-bottom: none; }

.cookie-category-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.cookie-category-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition-base);
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition-base);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--teal-500); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-container { padding-top: 60px; padding-bottom: 80px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-badge-float { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-connector { display: none; }

  .example-body { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-block { grid-template-columns: 1fr; }
  .service-detail-block--reverse { direction: ltr; }

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

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .nav-links {
    position: fixed;
    top: 68px;
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - 68px);
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 4px;
    z-index: 999;
    transition: right var(--transition-base);
    border-left: 1px solid rgba(255,255,255,0.08);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .mobile-overlay.visible { display: block; }

  .hamburger { display: flex; }

  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
  .nav-link.nav-cta { text-align: center; justify-content: center; margin-top: 8px; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-row: auto; grid-column: span 2; }
  .gallery-item--large img { height: 220px; }

  .intro-grid { grid-template-columns: 1fr; }
  .cta-section { clip-path: none; margin: 0; padding: var(--section-pad) 0; }

  .inner-cta-box { padding: 36px 24px; }

  .approach-block { flex-direction: column; gap: 16px; }
  .approach-num { font-size: 2rem; width: auto; }

  .what-not-box { flex-direction: column; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-btn { width: 100%; }

  .footer-stats-bar { padding: 10px 0; }
  .stat-item { font-size: 0.75rem; gap: 6px; }
  .stat-item i { font-size: 0.85rem; }

  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-outline { width: 100%; justify-content: center; }
  .thanks-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }

  .page-hero { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
  :root { --container-pad: 16px; }

  .hero-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: auto; }
  .gallery-item--large img { height: 200px; }
  .gallery-item img { height: 180px; }

  .service-detail-block { gap: 32px; margin-bottom: 48px; padding-bottom: 48px; }
  .service-detail-visual img { height: 240px; }

  .legal-hero { padding: 100px 0 48px; }
  .cookies-table { font-size: 0.78rem; }
  .cookies-table th, .cookies-table td { padding: 8px 10px; }
}