/* ============================================================
   Evensen Marketing — style.css
   ============================================================ */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:        #0D85D8;
  --primary-dark:   #0A6BB5;
  --primary-light:  #4DA6E8;
  --lavender:       #7B8EF0;
  --lavender-light: #A8B8FA;
  --lavender-pale:  #EEF2FF;
  --dark:           #0B0F1A;
  --dark-navy:      #0D1B35;
  --gray:           #374151;
  --gray-light:     #F5F7FA;
  --border:         #E5E7EB;
  --white:          #FFFFFF;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
  --shadow-md:      0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.14);
  --radius:         16px;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography helpers ─────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

h1,h2,h3,h4 { line-height: 1.15; letter-spacing: -.02em; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,133,216,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(13,133,216,.5);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #1a2238;
  transform: translateY(-2px);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--lavender-pale);
  transform: translateY(-2px);
}

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 64px 0; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s ease;
}
.nav.scrolled .nav-logo img { filter: none; }
.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color .4s ease;
}
.nav.scrolled .nav-logo-text { color: var(--dark); }

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

.nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }

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

.nav-cta {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .burger span { background: var(--dark); }

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  padding: 90px 24px 40px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,15,26,.82) 0%,
    rgba(13,133,216,.38) 60%,
    rgba(11,15,26,.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 24px 30px;
  margin: 0 auto 0 calc((100vw - 1200px)/2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #22d3a5;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,211,165,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(34,211,165,0); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .accent {
  background: linear-gradient(90deg, #4DA6E8 0%, #A8B8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  max-width: 720px;
  line-height: 1.5;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
.hero-ctas .btn {
  font-size: 1.15rem;
  padding: 16px 36px;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
}

.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-stat {
  text-align: center;
  color: var(--white);
}
.hero-stat-num {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  background: linear-gradient(90deg, #4DA6E8, #A8B8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-stat-label {
  font-size: .85rem;
  color: var(--white);
  margin-top: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRANDS MARQUEE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.brands {
  padding: 16px 0;
  margin-top: 0;
  background: var(--gray-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}

.marquee-track {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
  transition: color .25s;
}
.marquee-item:hover { color: var(--primary); }

.marquee-sep {
  color: var(--border);
  font-size: 1.4rem;
}

.marquee-icon {
  width: 22px;
  height: 22px;
  opacity: .55;
}
.marquee-logo {
  height: 16px;
  width: auto;
  opacity: .7;
  vertical-align: middle;
}
.marquee-logo-lg {
  height: 24px;
}
.marquee-logo-xl {
  height: 48px;
}
.marquee-logo-xxl {
  height: 56px;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services { background: var(--white); padding: 48px 0; }

.section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 24px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.55;
  margin-top: 10px;
}

/* Featured core service block */
.svc-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.svc-featured-content {
  padding: 40px;
}
.svc-featured-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.svc-featured-content > p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.svc-featured-content .svc-tag {
  margin-bottom: 14px;
}
.svc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.5;
}
.svc-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5 3.5-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.svc-featured-img {
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}
.svc-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

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

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Animated image wrap */
.svc-anim-wrap {
  position: relative;
  height: 130px;
  overflow: hidden;
}

.svc-anim-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover .svc-anim-wrap img {
  transform: scale(1.07);
}

/* Overlay */
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,133,216,.72) 0%, rgba(11,15,26,.80) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card:hover .svc-overlay { opacity: 1; }

/* Animated stat glass card */
.anim-stat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  transition-delay: var(--delay, 0s);
  white-space: nowrap;
}
.svc-card:hover .anim-stat {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.anim-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.anim-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Bar chart animation */
.anim-bar-chart {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}
.anim-bar {
  width: 8px;
  background: rgba(255,255,255,.55);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.anim-bar:nth-child(1) { height: calc(var(--h, 50%) * 1); transition-delay: .05s; }
.anim-bar:nth-child(2) { height: calc(var(--h, 70%) * 1); transition-delay: .12s; }
.anim-bar:nth-child(3) { height: calc(var(--h, 60%) * 1); transition-delay: .18s; }
.anim-bar:nth-child(4) { height: calc(var(--h, 90%) * 1); transition-delay: .24s; }
.svc-card:hover .anim-bar { transform: scaleY(1); }

/* Funnel */
.anim-funnel {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.funnel-bar {
  height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .4s ease;
}
.funnel-bar:nth-child(1) { width: 64px; transition-delay: .08s; }
.funnel-bar:nth-child(2) { width: 48px; transition-delay: .16s; }
.funnel-bar:nth-child(3) { width: 32px; transition-delay: .24s; }
.svc-card:hover .funnel-bar { transform: scaleX(1); }

/* Pulse ring */
.anim-pulse-ring {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s ease .1s;
}
.anim-pulse-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  animation: pulseRing 1.8s ease-out infinite;
}
.svc-card:hover .anim-pulse-ring { opacity: 1; }

@keyframes pulseRing {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Service body */
.svc-body {
  padding: 16px 20px;
}

.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--lavender-pale);
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.svc-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
}

.svc-body p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
}

.svc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-feat-chip {
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--gray-light);
  border-radius: 50px;
  padding: 5px 14px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY CHOOSE US
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why { background: var(--gray-light); }

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

.why-text .label { margin-bottom: 14px; }
.why-text .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.15rem;
  padding: 16px 44px;
}
.why-text h2 { margin-bottom: 20px; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.why-text > p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-point-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--lavender) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.why-point-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.why-point-text span {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.5;
}

.why-img-wrap {
  position: relative;
}
.why-img-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
  height: 520px;
  box-shadow: var(--shadow-lg);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--lavender) 100%);
  border-radius: 16px;
  padding: 18px 24px;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(13,133,216,.4);
}
.why-badge-num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.why-badge-label {
  font-size: .78rem;
  font-weight: 600;
  opacity: .85;
  letter-spacing: .05em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS BAND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-band {
  background: var(--dark);
  padding: 48px 0;
}

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

.stat-item { padding: 8px; }

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--lavender-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
  font-weight: 500;
}

@keyframes countPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CASE STUDIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.case-studies { background: var(--white); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.case-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.case-card:hover .case-img-wrap img { transform: scale(1.06); }

.case-img-logo {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-img-logo img {
  object-fit: contain;
  width: 80%;
  height: 80%;
  padding: 12px;
}
.case-img-logo:hover img { transform: none; }

.case-industry {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13,133,216,.9);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.case-body { padding: 24px; }

.cc-metric {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary) 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1;
}
.cc-metric-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.case-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.case-body p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-link {
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.case-link:hover { gap: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESULTS TABLE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.results { background: var(--gray-light); }

.results-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

thead {
  background: var(--dark);
  color: var(--white);
}
thead th {
  padding: 18px 24px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
thead th:last-child {
  background: var(--primary);
  border-radius: 0 var(--radius) 0 0;
}
thead th:first-child { border-radius: var(--radius) 0 0 0; }

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
tbody tr:nth-child(even) { background: var(--gray-light); }
tbody tr:hover { background: var(--lavender-pale); }
tbody tr:last-child { border-bottom: none; }

tbody td {
  padding: 20px 24px;
  font-size: .92rem;
  vertical-align: top;
  line-height: 1.5;
}

tbody td:first-child { font-weight: 700; }

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--lavender) 100%);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MID-PAGE CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mid-cta {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #0e3060 50%, #0D85D8 100%);
  padding: 0;
  overflow: hidden;
}

.mid-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.mid-cta-img {
  position: relative;
  overflow: hidden;
}
.mid-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  transition: transform .6s ease;
}
.mid-cta-img:hover img { transform: scale(1.04); }

.mid-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  color: var(--white);
}

.mid-cta-content .label {
  color: var(--lavender-light);
}

.mid-cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 18px;
}

.mid-cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.mid-cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.mid-cta-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.mid-cta-feat::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  text-align: center;
  line-height: 22px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact { background: var(--white); }

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

.contact-info .label { margin-bottom: 14px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lavender-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .82rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact-detail-text span  { font-size: .95rem; color: var(--dark); font-weight: 500; }

.social-row {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .95rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Form */
.contact-form-wrap {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .04em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,133,216,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  font-size: 1rem;
  padding: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 10px; font-size: 1.4rem; }
.form-success p { color: var(--gray); font-size: .95rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: 28px 0 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: .8rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 6px;
}
.footer-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a {
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  font-size: .75rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--white); }

.footer-credit {
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  padding-top: 10px;
}
.footer-credit a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.footer-credit a:hover { color: var(--white); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAMES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes growBar {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — TABLET (≤1024px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 40px; }
  .svc-featured { grid-template-columns: 1fr; }
  .svc-featured-img { min-height: 220px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { margin: 0 auto; padding: 140px 40px 60px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — MOBILE (≤768px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {

  /* Base */
  html, body { overflow-x: hidden; max-width: 100%; }
  * { box-sizing: border-box; word-wrap: break-word; overflow-wrap: break-word; }
  section { padding: 28px 0; }
  .container { padding: 0 20px; max-width: 100%; box-sizing: border-box; }
  .section-header { max-width: 100%; margin-bottom: 20px; padding: 0 4px; text-align: center; }
  h1 { font-size: 1.9rem !important; line-height: 1.2; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1rem; }
  img { max-width: 100%; height: auto; display: block; }

  /* Nav — always white on mobile */
  .nav {
    padding: 12px 0;
    background: var(--white) !important;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
  }
  .nav-inner { padding: 0 16px; }
  .nav-logo img {
    height: 28px;
    filter: none !important;
  }
  .nav-logo-text {
    font-size: .85rem;
    color: var(--dark) !important;
  }
  .burger span { background: var(--dark) !important; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta {
    padding: 8px 14px;
    font-size: .78rem;
    white-space: nowrap;
    background: #3AAEEE !important;
    box-shadow: 0 4px 14px rgba(58,174,238,.35);
  }

  /* Mobile menu */
  .mobile-menu { padding: 80px 20px 36px; }
  .mobile-menu a { font-size: 1rem; padding: 14px 0; }

  /* Hero — full background image on mobile, same as desktop */
  .hero {
    min-height: 85vh;
    height: auto;
    background: var(--dark-navy);
    justify-content: center;
    flex-direction: column;
  }
  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    z-index: 0;
  }
  .hero-overlay {
    display: block;
    background: linear-gradient(
      135deg,
      rgba(11,15,26,.85) 0%,
      rgba(13,133,216,.38) 60%,
      rgba(11,15,26,.75) 100%
    );
  }
  .hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 80px 20px 24px;
    max-width: 100%;
    text-align: center;
    background: transparent;
  }
  .hero h1 { color: var(--white); line-height: 1.2; }
  .hero h1 .accent {
    background: linear-gradient(90deg, #4DA6E8 0%, #A8B8FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub { color: rgba(255,255,255,.9); font-size: 1rem; margin-bottom: 24px; }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero-ctas .btn {
    width: auto;
    justify-content: center;
    padding: 11px 22px;
    font-size: .9rem;
  }
  .hero-ctas .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.4);
    background: transparent;
  }
  /* Stats bar — blue gradient on mobile */
  .hero-stats {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0e3060 50%, #0D85D8 100%);
    border-top: none;
    backdrop-filter: none;
    position: relative;
    z-index: 2;
    padding: 20px 0;
  }
  .hero-stat { color: var(--white); }
  .hero-stat-label { color: rgba(255,255,255,.85); font-size: .75rem; }
  .hero-stat-num {
    background: linear-gradient(90deg, #fff, #A8B8FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
  }
  .hero-stats-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 0 10px;
  }
  .hero-stat { padding: 0 2px; }
  .hero-stat-label { font-size: .65rem; line-height: 1.3; word-wrap: break-word; }
  .hero-stats { padding: 16px 0; }

  /* Brands marquee */
  .brands { padding: 12px 0; }
  .brands-label { font-size: .68rem; margin-bottom: 8px; }
  .marquee-logo { height: 13px; }
  .marquee-logo-lg { height: 18px; }
  .marquee-logo-xl { height: 22px; }
  .marquee-item { font-size: .75rem; gap: 5px; padding: 0 16px; }

  /* Services */
  .services { background: var(--white); padding: 32px 0; }
  .svc-featured {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
  }
  .svc-featured-content { padding: 16px 20px; }
  .svc-featured-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .svc-featured-content > p { font-size: .85rem; margin-bottom: 14px; }
  .svc-featured-img {
    min-height: 180px;
    height: 180px;
    order: -1;
    width: 100%;
  }
  .svc-featured-img img { height: 220px; width: 100%; object-fit: contain; padding: 12px; }
  .svc-bullets { gap: 8px; }
  .svc-bullets li { font-size: .82rem; }
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-body { padding: 16px; }
  .svc-body p { font-size: .85rem; margin-bottom: 12px; }
  .svc-feat-chip { font-size: .7rem; padding: 4px 10px; }
  .svc-features { gap: 6px; }

  /* Hide on mobile */
  .why { display: none; }
  .case-card:nth-child(2),
  .case-card:nth-child(3) { display: none; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-text h2 { font-size: 1.45rem; margin-bottom: 12px; }
  .why-text > p { font-size: .9rem; margin-bottom: 20px; }
  .why-point { gap: 10px; }
  .why-point-text strong { font-size: .9rem; }
  .why-point p { font-size: .85rem; }
  .why-points { gap: 14px; margin-bottom: 24px; }
  .why-img-wrap { max-height: 240px; overflow: hidden; border-radius: var(--radius); }
  .why-img-wrap img { width: 100%; height: 240px; object-fit: cover; object-position: top center; }
  .why-text .btn { width: 100%; text-align: center; justify-content: center; font-size: 1.05rem; padding: 15px 24px; }

  /* Stats band — light grey on mobile */
  .stats-band { background: var(--gray-light); padding: 28px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 20px 12px; }
  .stat-num {
    font-size: 2rem;
    background: linear-gradient(90deg, var(--primary), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label { font-size: .75rem; color: var(--gray); }

  /* Case studies */
  .case-grid { grid-template-columns: 1fr; gap: 16px; }
  .case-img-wrap { height: 200px; overflow: hidden; }
  .case-img-wrap img { width: 100%; height: 200px; object-fit: cover; }
  .case-body { padding: 16px; }
  .cc-metric { font-size: 1.8rem; margin-bottom: 4px; }
  .cc-metric-label { font-size: .8rem; margin-bottom: 10px; }
  .case-body h3 { font-size: 1rem; margin-bottom: 6px; }
  .case-body p { font-size: .85rem; margin-bottom: 12px; }

  /* Results table */
  .results-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 560px; }
  thead th { padding: 14px 16px; font-size: .72rem; }
  tbody td { padding: 14px 16px; font-size: .85rem; }

  /* Mid CTA */
  .mid-cta-inner { grid-template-columns: 1fr; }
  .mid-cta-img { display: none; }
  .mid-cta-content { padding: 48px 20px; text-align: center; }
  .mid-cta-content h2 { font-size: 1.75rem; }
  .mid-cta-features { justify-content: center; }
  .mid-cta-content .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info { text-align: center; }
  .contact-info h2 { font-size: 1.45rem; margin-bottom: 10px; }
  .contact-info > p { font-size: .9rem; margin-bottom: 20px; }
  .contact-details { gap: 12px; margin-bottom: 20px; }
  .contact-detail { gap: 10px; }
  .contact-detail-text span { font-size: .85rem; }
  .social-row { justify-content: center; }
  .social-icon { width: 36px; height: 36px; }
  .contact-form-wrap { padding: 20px 16px; border-radius: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 0; }
  .form-group { margin-bottom: 12px; }
  .form-group label { font-size: .85rem; }
  .form-group input, .form-group textarea { font-size: .9rem; padding: 10px 14px; }
  .form-group textarea { min-height: 100px; }
  .form-submit { margin-top: 8px; padding: 14px; width: 100%; }

  /* Footer */
  .footer { padding: 20px 0 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 0; padding-bottom: 12px; }
  .footer-col { display: none; }         /* hide link columns on mobile */
  .footer-brand img { height: 22px; margin-bottom: 6px; }
  .footer-tagline { font-size: .75rem; margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; padding-top: 10px; font-size: .72rem; }
  .footer-bottom-links { display: none; } /* hide policy links on mobile */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — SMALL MOBILE (≤480px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
  h1 { font-size: 1.65rem !important; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: .95rem; }
  section { padding: 22px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav-logo-text { display: none; }

  /* Hero stats — 2 cols on very small screens */
  .hero-stats-inner { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 10px; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-stat-label { font-size: .62rem; line-height: 1.3; }

  /* Services */
  .svc-featured-content { padding: 14px 16px; }
  .svc-featured-img, .svc-featured-img img { height: 200px; object-fit: contain; padding: 10px; }
  .svc-body { padding: 14px; }
  .svc-feat-chip { font-size: .65rem; padding: 3px 8px; }

  /* Why */
  .why-img-wrap, .why-img-wrap img { height: 200px; }

  /* Case studies */
  .case-img-wrap, .case-img-wrap img { height: 180px; }

  /* Stats band */
  .stats-band { padding: 32px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 16px 10px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: .7rem; }

  /* Section labels */
  .label { font-size: .68rem; }

  /* Contact */
  .contact-form-wrap { padding: 16px 14px; }
  .form-group input, .form-group textarea { padding: 9px 12px; font-size: .85rem; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-col h4 { font-size: .72rem; }
  .footer-bottom-links { gap: 12px; }
}
