/* ============================================
   Derwin Consultancy - Frontend design system
   Confident global operator: navy + cyan accent
   Dynamic, energetic, efficient
   ============================================ */

:root {
  /* Dominant: deep navy */
  --navy-950: #020617;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  /* Sharp accent: cyan / electric blue */
  --accent: #06b6d4;
  --accent-dim: rgba(6, 182, 212, 0.15);
  --accent-glow: rgba(6, 182, 212, 0.4);
  /* Blue support */
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  /* Neutrals */
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--gray-100);
  --text: var(--navy-900);
  --text-muted: var(--gray-600);
  --header-bg: rgba(2, 6, 23, 0.94);
  --hero-overlay: linear-gradient(135deg, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.82) 50%, rgba(30, 41, 59, 0.75) 100%);
  /* Typography: Apple-style system stack (SF Pro on Apple, Segoe UI / Roboto elsewhere) */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --container: min(1160px, 100vw - 2.5rem);
  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 0.3s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  position: relative;
}

/* Grain overlay - atmosphere */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 100;
  padding: var(--space-sm) var(--space-md);
  background: var(--accent);
  color: var(--navy-900);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: top var(--transition);
}
.skip-link:focus {
  top: var(--space-md);
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-bottom-color: rgba(6, 182, 212, 0.12);
  box-shadow: 0 8px 32px rgba(2, 6, 23, 0.2);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: block;
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--transition);
}
.logo:hover {
  opacity: 0.9;
}
.logo-img {
  display: block;
  height: 47px;
  width: auto;
  max-width: 234px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: var(--space-2xl);
}
.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: var(--space-2xl);
    background: var(--navy-900);
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition-slow), transform var(--transition-slow), visibility 0s 0.3s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
  }
  .nav a {
    font-size: 1.1rem;
  }
  .menu-toggle {
    display: flex;
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(72px + var(--space-5xl)) var(--space-lg) var(--space-5xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: -2;
}

.hero-graphics {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* Diagonal bands - energy */
.hero-diagonal {
  position: absolute;
  width: 120%;
  height: 40%;
  background: linear-gradient(105deg, transparent 0%, rgba(6, 182, 212, 0.06) 40%, transparent 70%);
  transform: rotate(-12deg);
  animation: heroDiagonal 18s ease-in-out infinite alternate;
}
.hero-diagonal-1 {
  top: -20%;
  right: -30%;
  animation-delay: 0s;
}
.hero-diagonal-2 {
  bottom: -15%;
  left: -40%;
  background: linear-gradient(285deg, transparent 0%, rgba(37, 99, 235, 0.05) 50%, transparent 100%);
  transform: rotate(8deg);
  animation-delay: -6s;
}

@keyframes heroDiagonal {
  0% { opacity: 0.6; transform: rotate(-12deg) translateX(0); }
  100% { opacity: 1; transform: rotate(-12deg) translateX(-3%); }
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: heroShapeFloat 22s ease-in-out infinite;
}
.hero-shape-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 65%);
  top: -18%;
  right: -12%;
  animation-delay: 0s;
}
.hero-shape-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 65%);
  bottom: -12%;
  left: -8%;
  animation-delay: -8s;
}
.hero-shape-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
  top: 45%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes heroShapeFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(4%, -3%); }
  66% { transform: translate(-3%, 2%); }
}

/* Network nodes - global connected */
.hero-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  box-shadow: 0 0 20px var(--accent-glow);
  animation: heroNodePulse 3s ease-in-out infinite;
}
.hero-node-1 { top: 22%; right: 28%; animation-delay: 0s; }
.hero-node-2 { top: 45%; right: 18%; animation-delay: 0.5s; }
.hero-node-3 { top: 68%; right: 35%; animation-delay: 1s; }
.hero-node-4 { top: 35%; right: 48%; animation-delay: 0.2s; }
.hero-node-5 { top: 55%; right: 55%; animation-delay: 0.8s; }

@keyframes heroNodePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

.hero-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  animation: heroMeshMove 30s ease-in-out infinite alternate;
}

@keyframes heroMeshMove {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, -2%) scale(1.03); }
}

.hero-inner {
  position: relative;
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 0 0 var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.1s forwards;
}

.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 var(--space-2xl);
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy-900);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.32s forwards;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--accent-glow);
}

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

/* ----- Sections: scroll reveal ----- */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.section-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered scroll-in for cards and items */
.section-reveal .service-card,
.section-reveal .trust-item,
.section-reveal .region-group {
  opacity: 0;
  transform: translateY(16px);
}
.section-reveal.is-inview .service-card,
.section-reveal.is-inview .trust-item,
.section-reveal.is-inview .region-group {
  animation: revealItem 0.55s var(--ease-out) forwards;
}
.section-reveal.is-inview .service-card:nth-child(1),
.section-reveal.is-inview .trust-item:nth-child(1),
.section-reveal.is-inview .region-group:nth-child(1) { animation-delay: 0s; }
.section-reveal.is-inview .service-card:nth-child(2),
.section-reveal.is-inview .trust-item:nth-child(2),
.section-reveal.is-inview .region-group:nth-child(2) { animation-delay: 0.08s; }
.section-reveal.is-inview .service-card:nth-child(3),
.section-reveal.is-inview .trust-item:nth-child(3),
.section-reveal.is-inview .region-group:nth-child(3) { animation-delay: 0.16s; }
.section-reveal.is-inview .service-card:nth-child(4),
.section-reveal.is-inview .trust-item:nth-child(4) { animation-delay: 0.24s; }
.section-reveal.is-inview .service-card:nth-child(5),
.section-reveal.is-inview .trust-item:nth-child(5) { animation-delay: 0.32s; }
.section-reveal.is-inview .service-card:nth-child(6),
.section-reveal.is-inview .trust-item:nth-child(6) { animation-delay: 0.4s; }
.section-reveal.is-inview .service-card:nth-child(7) { animation-delay: 0.48s; }
.section-reveal.is-inview .service-card:nth-child(8) { animation-delay: 0.56s; }
.section-reveal.is-inview .service-card:nth-child(9) { animation-delay: 0.64s; }
.section-reveal.is-inview .service-card:nth-child(10) { animation-delay: 0.72s; }

@keyframes revealItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blue strip on cards: animate in with scroll reveal (same stagger as card) */
@keyframes revealStrip {
  from { height: 0; }
  to { height: 100%; }
}
/* Desktop: content + strip animate together when section in view */
@media (min-width: 769px) {
  .section-reveal.is-inview .service-card::before {
    animation: revealStrip 0.55s var(--ease-out) forwards;
  }
  .section-reveal.is-inview .service-card:nth-child(1)::before { animation-delay: 0s; }
  .section-reveal.is-inview .service-card:nth-child(2)::before { animation-delay: 0.08s; }
  .section-reveal.is-inview .service-card:nth-child(3)::before { animation-delay: 0.16s; }
  .section-reveal.is-inview .service-card:nth-child(4)::before { animation-delay: 0.24s; }
  .section-reveal.is-inview .service-card:nth-child(5)::before { animation-delay: 0.32s; }
  .section-reveal.is-inview .service-card:nth-child(6)::before { animation-delay: 0.4s; }
  .section-reveal.is-inview .service-card:nth-child(7)::before { animation-delay: 0.48s; }
  .section-reveal.is-inview .service-card:nth-child(8)::before { animation-delay: 0.56s; }
  .section-reveal.is-inview .service-card:nth-child(9)::before { animation-delay: 0.64s; }
  .section-reveal.is-inview .service-card:nth-child(10)::before { animation-delay: 0.72s; }
}
/* Mobile: strip animates only at 60% (is-inview-strip); content fades up at 30% (is-inview) */
@media (max-width: 768px) {
  .section-reveal.is-inview-strip .service-card::before {
    animation: revealStrip 0.55s var(--ease-out) forwards;
  }
  .section-reveal.is-inview-strip .service-card:nth-child(1)::before { animation-delay: 0s; }
  .section-reveal.is-inview-strip .service-card:nth-child(2)::before { animation-delay: 0.08s; }
  .section-reveal.is-inview-strip .service-card:nth-child(3)::before { animation-delay: 0.16s; }
  .section-reveal.is-inview-strip .service-card:nth-child(4)::before { animation-delay: 0.24s; }
  .section-reveal.is-inview-strip .service-card:nth-child(5)::before { animation-delay: 0.32s; }
  .section-reveal.is-inview-strip .service-card:nth-child(6)::before { animation-delay: 0.4s; }
  .section-reveal.is-inview-strip .service-card:nth-child(7)::before { animation-delay: 0.48s; }
  .section-reveal.is-inview-strip .service-card:nth-child(8)::before { animation-delay: 0.56s; }
  .section-reveal.is-inview-strip .service-card:nth-child(9)::before { animation-delay: 0.64s; }
  .section-reveal.is-inview-strip .service-card:nth-child(10)::before { animation-delay: 0.72s; }
}

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

/* Section graphics: blobs + diagonal angle */
.section-with-graphic {
  overflow: hidden;
}

.section-graphic {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(90px);
  opacity: 0.45;
}

.section-graphic-r {
  right: -200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
}

.section-graphic-l {
  left: -200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.section-alt .section-graphic-r {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
}

.section-alt .section-graphic-l {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}

/* Diagonal section edge - soft transition from previous section */
.section-angle {
  position: absolute;
  width: 100%;
  height: 100px;
  pointer-events: none;
  opacity: 0.98;
}
.section-angle-r {
  top: 0;
  left: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
}
#inspection .section-angle-r {
  background: linear-gradient(180deg, var(--navy-900) 0%, transparent 100%);
}
.section-alt .section-angle-r {
  background: linear-gradient(180deg, var(--bg-alt) 0%, transparent 100%);
}
#in-country .section-angle-r {
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
}
.section-angle-l {
  bottom: 0;
  left: 0;
  height: 80px;
  background: linear-gradient(0deg, var(--bg-alt) 0%, transparent 100%);
}
.section-alt .section-angle-l {
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin: 0 0 var(--space-md);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 var(--space-2xl);
  line-height: 1.65;
}

/* Service cards */
.service-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.35s var(--ease-out);
}
.service-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.12);
  transform: translateY(-4px);
}
.service-card:hover::before {
  height: 100%;
}

.section-alt .service-card {
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(2, 6, 23, 0.05);
}

.service-card-text {
  font-weight: 500;
  color: var(--navy-800);
  font-size: 1rem;
}

/* Trusted section */
.section-trusted {
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
}

.trusted-graphic {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 75% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse 70% 80% at 15% 90%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.trusted-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    92deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.02) 80px,
    rgba(255, 255, 255, 0.02) 81px
  );
  opacity: 0.6;
}

.section-trusted .section-title,
.section-trusted .section-lead {
  color: var(--white);
}
.section-trusted .section-title::after {
  background: var(--accent);
}
.section-trusted .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.trusted-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-xl);
  color: var(--accent);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.trust-item {
  padding: var(--space-md) 0;
  padding-left: 1.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}
.trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Regions */
.section-regions-bg {
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-50) 100%);
}

.regions-graphic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(6, 182, 212, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 88% 75%, rgba(37, 99, 235, 0.08) 0%, transparent 30%);
  opacity: 0.95;
}

.regions-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 80 0 L 0 0 0 80' fill='none' stroke='rgba(6,182,212,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.region-group-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-md);
}

.region-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.region-list li {
  padding: var(--space-xs) 0;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4xl) 0 var(--space-2xl);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
}

.footer-summary {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 var(--space-lg);
}

.footer-cta {
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 var(--space-2xl);
}

.footer-contact {
  margin: 0 0 var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 0 0 var(--space-xs);
}

.footer-address {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-lg);
}

.footer-email a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.footer-email a:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin: 0;
}

/* ----- Mobile: compact animated sections ----- */
@media (max-width: 768px) {
  .section {
    padding: var(--space-3xl) 0;
  }

  .section-title {
    margin-bottom: var(--space-sm);
  }
  .section-title::after {
    width: 36px;
    height: 2px;
    bottom: -4px;
  }

  .section-lead {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .service-card {
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
  }

  .service-card-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .trust-item {
    padding: var(--space-sm) 0;
    padding-left: 1.35rem;
    font-size: 0.9rem;
  }
  .trust-item::before {
    top: 0.65rem;
    width: 6px;
    height: 6px;
  }

  .trusted-tagline {
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
  }

  .region-group-name {
    font-size: 0.8rem;
    margin-bottom: var(--space-xs);
  }

  .region-list {
    font-size: 0.85rem;
  }
  .region-list li {
    padding: 0;
  }
}
