/* ============================================================
   CALIFORNIA ANESTHESIA PROFESSIONALS
   "Pacific Modern" — Space Grotesk / Inter
   Deep Pacific navy · California sky blue · Warm amber
   ============================================================ */

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

:root {
  --navy:         #0A2540;
  --navy-mid:     #113C6B;
  --navy-light:   #1B5490;
  --sky:          #3B91C5;
  --sky-bright:   #5BAEE0;
  --amber:        #D48F0A;
  --amber-light:  #F0B840;
  --white:        #FFFFFF;
  --offwhite:     #F4F8FC;
  --light:        #E4EEF7;
  --border:       #CDDAE9;
  --text:         #0D1B2A;
  --text-2:       #2D4A62;
  --text-muted:   #5A6E7E;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:        1200px;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --section-v:    7rem;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--sky); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(59,145,197,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   UTILITY
   ============================================================ */

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.875rem;
}
.label--amber  { color: var(--amber); }
.label--light  { color: var(--sky-bright); }
.label--white  { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.section-title--white { color: var(--white); }

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 54ch;
}
.section-desc--white { color: rgba(255,255,255,0.72); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--sky {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}
.btn--sky:hover {
  background: var(--sky-bright);
  border-color: var(--sky-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,145,197,0.32);
}
.btn--white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}
.btn--white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,37,64,0.22);
}
.btn--outline-sky {
  background: transparent;
  color: var(--sky);
  border-color: var(--sky);
}
.btn--outline-sky:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-2px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal--left  { transform: translateX(-24px) scale(0.98); }
.reveal--right { transform: translateX(24px) scale(0.98); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: translateY(0) scale(1); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,37,64,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s, backdrop-filter 0.45s, -webkit-backdrop-filter 0.45s, box-shadow 0.45s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 1px 36px rgba(10,37,64,0.1);
}

/* Nav text colours when transparent (over dark hero) */
.nav--transparent .nav__logo-abbr,
.nav--transparent .nav__logo-sub { color: var(--white); }
.nav--transparent .nav__link { color: rgba(255,255,255,0.82); }
.nav--transparent .nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav--transparent .nav__link.active { color: var(--sky-bright); }
.nav--transparent .nav__cta { background: rgba(255,255,255,0.14) !important; border-color: rgba(255,255,255,0.3) !important; color: var(--white) !important; }
.nav--transparent .nav__cta:hover { background: rgba(255,255,255,0.26) !important; border-color: rgba(255,255,255,0.5) !important; }
.nav--transparent .nav__burger span { background: var(--white); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.nav__logo { display: flex; flex-direction: column; gap: 0.1rem; }
.nav__logo-abbr {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.nav__logo-sub {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover         { color: var(--navy); background: var(--offwhite); }
.nav__link.active        { color: var(--sky); }
.nav__cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}
.nav__cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.45);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav__overlay.is-active { opacity: 1; pointer-events: auto; }

.nav__drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 200;
  padding: 1.5rem;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: right 0.4s var(--ease-out);
  border-left: 1px solid var(--border);
  overflow-y: auto;
}
.nav__drawer.is-open { right: 0; }

.nav__drawer-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 1px solid var(--border);
  font-size: 1rem;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav__drawer-close:hover { background: var(--light); }

.nav__drawer-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  padding: 0.875rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav__drawer-link:hover { background: var(--offwhite); color: var(--sky); }

.nav__drawer-cta {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  padding: 0.875rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.9375rem;
  transition: background 0.2s;
}
.nav__drawer-cta:hover { background: var(--navy-mid); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 4.5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Animated radial glows */
.hero__glow-1 {
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(59,145,197,0.18) 0%, transparent 65%);
  top: -20%; right: -15%;
  border-radius: 50%;
  animation: glow-float-1 14s ease-in-out infinite;
}
.hero__glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,143,10,0.1) 0%, transparent 65%);
  bottom: 5%; left: -5%;
  border-radius: 50%;
  animation: glow-float-2 18s ease-in-out infinite 5s;
}
.hero__glow-3 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,145,197,0.12) 0%, transparent 65%);
  top: 40%; left: 30%;
  border-radius: 50%;
  animation: glow-float-3 10s ease-in-out infinite 2s;
}
@keyframes glow-float-1 {
  0%, 100% { opacity: 0.55; transform: scale(1) translate(0, 0); }
  50%       { opacity: 1;    transform: scale(1.2) translate(-2%, 1.5%); }
}
@keyframes glow-float-2 {
  0%, 100% { opacity: 0.4;  transform: scale(1) translate(0, 0); }
  50%       { opacity: 0.85; transform: scale(1.15) translate(2%, -1%); }
}
@keyframes glow-float-3 {
  0%, 100% { opacity: 0.35; transform: scale(1) translate(0, 0); }
  50%       { opacity: 0.75; transform: scale(1.25) translate(-1.5%, 2%); }
}

/* Subtle grid overlay */
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0.6) 75%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem 8rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sky-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero__eyebrow-line {
  display: block;
  width: 36px; height: 2px;
  background: var(--sky);
  border-radius: 1px;
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__headline em {
  font-style: normal;
  background: linear-gradient(130deg, var(--sky-bright) 0%, #9DDCFF 60%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.68);
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(5px); opacity: 0.9; }
}

/* Wave divider */
.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero__wave svg { display: block; width: 100%; }

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

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  padding: var(--section-v) 0;
  background: linear-gradient(145deg, var(--offwhite) 0%, #daf0fc 30%, #e8f4fb 65%, var(--offwhite) 100%);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__label   { margin-bottom: 0.75rem; }
.about__title   { margin-bottom: 1.25rem; }

.about__body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 1.25rem;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--sky);
  transition: gap 0.22s var(--ease);
  margin-top: 0.5rem;
}
.about__link:hover { gap: 0.75rem; }

/* Stat cards */
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}
.about__stat {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,37,64,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
}
.about__stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.about__stat:hover::after { transform: scaleX(1); }
.about__stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(10,37,64,0.11), inset 0 1px 0 rgba(255,255,255,0.95);
}
.about__stat-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
}
.about__stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about__stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  padding: var(--section-v) 0 calc(var(--section-v) * 1.1);
  background: linear-gradient(155deg, var(--offwhite) 0%, #ddf0fc 40%, #e4f2fb 70%, var(--offwhite) 100%);
}
.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__header .label { color: var(--amber); }
.services__header .section-title { margin-top: 0; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 18px;
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  box-shadow: 0 4px 24px rgba(10,37,64,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.svc-card:hover::before    { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 52px rgba(10,37,64,0.12), inset 0 1px 0 rgba(255,255,255,0.95);
}

.svc-card__num {
  position: absolute;
  top: 1.75rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--light);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}
.svc-card__icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  transition: transform 0.3s var(--ease-out);
}
.svc-card:hover .svc-card__icon { transform: scale(1.08); }
.svc-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.875rem;
}
.svc-card__body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ============================================================
   VALUES
   ============================================================ */

.values {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.values__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.values__bg-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,145,197,0.1) 0%, transparent 60%);
  top: -20%; left: -10%;
  border-radius: 50%;
  pointer-events: none;
}
.values__header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}
.values__header .section-title { margin-top: 0.25rem; }
.values__header .section-desc  { margin: 1rem auto 0; }

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.val-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 1px solid rgba(255,255,255,0.28);
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 8px 32px rgba(0,0,0,0.18);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
}
.val-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(59,145,197,0.45);
  border-top-color: rgba(255,255,255,0.35);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 20px 52px rgba(0,0,0,0.28);
}
.val-card__icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(59,145,197,0.12);
  border: 1px solid rgba(59,145,197,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.375rem;
  color: var(--sky-bright);
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.val-card:hover .val-card__icon {
  background: rgba(59,145,197,0.22);
  transform: scale(1.1);
}
.val-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 0.625rem;
}
.val-card__body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.68;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */

.blog-preview {
  padding: var(--section-v) 0;
  background: linear-gradient(150deg, var(--offwhite) 0%, #daeefa 45%, var(--offwhite) 100%);
}
.blog-preview__hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.blog-preview__all {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--sky);
  flex-shrink: 0;
  transition: gap 0.22s;
}
.blog-preview__all:hover { gap: 0.65rem; }

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

.blog-card {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  box-shadow: 0 4px 24px rgba(10,37,64,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
  position: relative;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 52px rgba(10,37,64,0.12), inset 0 1px 0 rgba(255,255,255,0.95);
}
.blog-card__thumb {
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--sky) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.07); }
.blog-card__thumb-icon {
  opacity: 0.12;
  color: var(--white);
}
.blog-card__thumb-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
}
.blog-card__body { padding: 1.875rem; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.blog-card__date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.blog-card__dot {
  width: 4px; height: 4px;
  background: var(--border);
  border-radius: 50%;
}
.blog-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky);
}
.blog-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color 0.22s;
}
.blog-card:hover .blog-card__title { color: var(--sky); }
.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 1.375rem;
}
.blog-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--sky);
  transition: gap 0.22s;
}
.blog-card__link:hover { gap: 0.625rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  padding: 5.5rem 0;
  background: linear-gradient(125deg, var(--sky) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner__orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, transparent 65%);
  right: -15%; top: -80%;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,143,10,0.12) 0%, transparent 65%);
  left: -5%; bottom: -40%;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__inner { position: relative; }
.cta-banner__label  { color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.125rem;
}
.cta-banner__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy);
  padding: 4.5rem 0 2.25rem;
  color: rgba(255,255,255,0.65);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__brand-abbr {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.footer__brand-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  max-width: 26ch;
  margin-bottom: 1.625rem;
}
.footer__social { display: flex; gap: 0.625rem; }
.footer__social-a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.footer__social-a:hover {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.375rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  transition: color 0.22s;
}
.footer__links a:hover { color: var(--sky-bright); }

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
}
.footer__contact-ico { color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.footer__contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.footer__contact-text a { transition: color 0.22s; }
.footer__contact-text a:hover { color: var(--sky-bright); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.3); transition: color 0.22s; }
.footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--navy);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,145,197,0.16) 0%, transparent 65%);
  right: -10%; top: -30%;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero__label { color: rgba(255,255,255,0.55); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 54ch;
  line-height: 1.72;
}
.page-hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-page {
  padding: var(--section-v) 0;
  background: linear-gradient(150deg, var(--offwhite) 0%, #daeefa 40%, #e4f2fb 70%, var(--offwhite) 100%);
}
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Full blog article card */
.blog-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.blog-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(10,37,64,0.1);
}
.blog-full-card__thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-full-card__thumb--1 {
  background: linear-gradient(135deg, #0A2540 0%, #1B5490 50%, #3B91C5 100%);
}
.blog-full-card__thumb--2 {
  background: linear-gradient(135deg, #0A2540 0%, #113C6B 50%, #1B5490 100%);
}
.blog-full-card__thumb-ico { opacity: 0.1; color: var(--white); }
.blog-full-card__thumb-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
}
.blog-full-card__body { padding: 2.25rem; }
.blog-full-card__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.blog-full-card__date { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.blog-full-card__dot  { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }
.blog-full-card__cat  { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sky); }
.blog-full-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.32;
  margin-bottom: 1rem;
  transition: color 0.22s;
}
.blog-full-card:hover .blog-full-card__title { color: var(--sky); }
.blog-full-card__excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}
.blog-full-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sky);
  transition: gap 0.22s;
}
.blog-full-card__read:hover { gap: 0.65rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  padding: var(--section-v) 0;
  background: linear-gradient(145deg, var(--offwhite) 0%, #daeefa 40%, #e6f3fb 70%, var(--offwhite) 100%);
}
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

/* Info panel */
.contact-info__label   { margin-bottom: 0.75rem; }
.contact-info__title   { margin-bottom: 1rem; }
.contact-info__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.contact-info__items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info__ico-wrap {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.contact-info__item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-info__item-val {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.contact-info__item-val a { transition: color 0.22s; }
.contact-info__item-val a:hover { color: var(--sky); }

.contact-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
.contact-social__a {
  width: 38px; height: 38px;
  border-radius: 9px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.contact-social__a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 32px rgba(10,37,64,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
}
.contact-form__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form__sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.form-input, .form-textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.22s, box-shadow 0.22s;
  outline: none;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-input:focus, .form-textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(59,145,197,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-privacy input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--sky);
  width: 16px; height: 16px;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 9px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.form-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,37,64,0.2);
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0 5rem;
}

/* Article hero additions */
.article-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59,145,197,0.18);
  border: 1px solid rgba(59,145,197,0.3);
  border-radius: 30px;
  padding: 0.3rem 1rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--sky-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.article-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  color: var(--white);
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.article-hero-date { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.article-hero-read {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 1.5rem;
}
.article-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.22s; }
.article-breadcrumb a:hover { color: var(--sky-bright); }

/* Prose content */
.article-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.article-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.article-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 1.375rem;
}
.article-content ul,
.article-content ol {
  margin: 0.5rem 0 1.5rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-content li {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.article-content ul li::marker { color: var(--sky); }
.article-content ol li::marker { color: var(--sky); font-weight: 600; }
.article-content strong { color: var(--navy); font-weight: 600; }
.article-content em { font-style: italic; }

/* Featured image */
.article-featured-img {
  margin: 0 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.article-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.article-highlight {
  background: var(--offwhite);
  border-left: 3px solid var(--sky);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.article-highlight p { margin-bottom: 0; font-size: 1rem; }

/* References */
.article-refs {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.article-refs__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.article-refs ol {
  margin-left: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.article-refs li {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.62;
}

/* Sidebar */
.sidebar-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.625rem;
  margin-bottom: 1.25rem;
}
.sidebar-card__label {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.sidebar-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
}
.sidebar-card__body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.sidebar-contact-ico { color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.sidebar-contact-val { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }
.sidebar-contact-val a { transition: color 0.22s; }
.sidebar-contact-val a:hover { color: var(--sky); }

.sidebar-related-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-related-item:first-child { padding-top: 0; }
.sidebar-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-related-cat {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky);
}
.sidebar-related-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  line-height: 1.3;
  transition: color 0.22s;
  text-decoration: none;
  display: block;
}
.sidebar-related-title:hover { color: var(--sky); }
.sidebar-related-date { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .values__grid        { grid-template-columns: repeat(2, 1fr); }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-page__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .article-layout      { grid-template-columns: 1fr 260px; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --section-v: 4rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .article-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__inner       { grid-template-columns: 1fr; gap: 3rem; }
  .services__grid     { grid-template-columns: 1fr; }
  .blog__grid         { grid-template-columns: 1fr; }
  .blog-page__grid    { grid-template-columns: 1fr; }
  .blog-preview__hd   { flex-direction: column; align-items: flex-start; }
  .footer__grid       { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form       { padding: 2rem; }
  .form-row           { grid-template-columns: 1fr; }
  .cta-banner__actions{ flex-direction: column; align-items: center; }
}

@media (max-width: 540px) {
  .values__grid   { grid-template-columns: 1fr; }
  .about__cards   { grid-template-columns: 1fr 1fr; }
  .hero__actions  { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
