/* =============================================
   DESIGN SYSTEM – Custom Properties
   ============================================= */
:root {
  --hot:  #FF5520;
  --warm: #F7A84A;
  --cool: #00C4E8;
  --teal: #00DDD0;
  --blue: #0088BB;

  --thermal:   linear-gradient(135deg, var(--cool) 0%, var(--warm) 50%, var(--hot) 100%);
  --thermal-h: linear-gradient(90deg,  var(--cool) 0%, var(--warm) 50%, var(--hot) 100%);

  /* Dark theme — default */
  --bg:        #07090E;
  --bg-2:      #0C0F18;
  --bg-3:      #111620;
  --surface:   #181D2A;
  --surface-2: #1E2433;
  --border:    #232B3C;
  --border-2:  #2E3A50;

  --text:       #EDF1FA;
  --text-muted: #68788F;
  --text-dim:   #3A4559;

  --radius:    3px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --section-py: 100px;

  --font-display:    'Plus Jakarta Sans', sans-serif;
  --font-condensed:  'Barlow Condensed', sans-serif;
  --font-body:       'DM Sans', system-ui, sans-serif;

  --shadow:    0 4px 24px rgba(0,0,0,.3);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.45);

  --t:      .2s ease;
  --t-slow: .5s ease;
}

/* Light mode */
[data-theme="light"] {
  --bg:        #F4F1EB;
  --bg-2:      #EDE9E0;
  --bg-3:      #FAF8F4;
  --surface:   #FFFFFF;
  --surface-2: #F9F6F1;
  --border:    #E4DFDA;
  --border-2:  #D4CEC8;

  --text:       #16181E;
  --text-muted: #5A6275;
  --text-dim:   #A8B0C0;

  --shadow:    0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background var(--t-slow), color var(--t-slow);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3 { font-family: var(--font-display); }

h1 {
  font-family: var(--font-condensed);
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

p { color: var(--text-muted); }

em {
  font-style: normal;
  background: var(--thermal-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

.section { padding-block: var(--section-py); }
.section--alt { background: var(--bg-2); }

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cool);
  margin-bottom: 14px;
}

.section__label::before,
.section__label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--cool);
  opacity: 0.5;
}

.section__header h2 { margin-bottom: 10px; }
.section__header p  { font-size: 1.0625rem; max-width: 480px; margin-inline: auto; }

.section__footer {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--hot);
  color: #fff;
  border-color: var(--hot);
  box-shadow: 0 4px 20px rgba(255,85,32,.3);
}
.btn--primary:hover {
  background: #e04412;
  border-color: #e04412;
  box-shadow: 0 6px 28px rgba(255,85,32,.45);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--text-muted);
  background: var(--surface);
}

.btn--full { width: 100%; }

/* =============================================
   BADGE & TAG
   ============================================= */
.badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,196,232,.3);
  color: var(--cool);
  background: rgba(0,196,232,.06);
  margin-bottom: 24px;
}

.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius);
}

.tag--cool { background: rgba(0,196,232,.1);  color: var(--cool); }
.tag--teal { background: rgba(0,221,208,.1);  color: var(--teal); }
.tag--hot  { background: rgba(255,85,32,.1);  color: var(--hot);  }
.tag--warm { background: rgba(247,168,74,.1); color: var(--warm); }
.tag--blue { background: rgba(0,136,187,.1);  color: var(--blue); }

/* =============================================
   CARDS GRID
   ============================================= */
.cards-grid { display: grid; gap: 20px; }
.cards-grid--5 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* =============================================
   CARD BASE
   ============================================= */
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-lg);
}

/* Service card */
.card--service {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Per-service glow color */
[data-service="cool"]  { --svc-color: var(--cool); }
[data-service="teal"]  { --svc-color: var(--teal); }
[data-service="hot"]   { --svc-color: var(--hot);  }
[data-service="warm"]  { --svc-color: var(--warm); }
[data-service="blue"]  { --svc-color: var(--blue); }

[data-service] .card__icon { color: var(--svc-color); }
[data-service]:hover {
  border-color: var(--svc-color);
  box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 0 0 1px var(--svc-color, transparent);
}

.card__icon       { width: 44px; height: 44px; }
.card__icon svg   { width: 100%; height: 100%; }
.card__icon--lg   { width: 52px; height: 52px; }

.card--benefit .card__icon { color: var(--warm); }

.card__title { color: var(--text); }

.card__link {
  margin-top: auto;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t), gap var(--t);
}
.card__link::after { content: '→'; }
.card:hover .card__link { color: var(--cool); gap: 10px; }

/* Benefit card */
.card--benefit {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card--benefit h3 { color: var(--text); }

/* Project & Post card */
.card--project,
.card--post { display: flex; flex-direction: column; }

.card__thumb {
  height: 190px;
  flex-shrink: 0;
  position: relative;
}

.card__thumb--cool { background: linear-gradient(145deg, #002A38 0%, #005A70 55%, #00C4E8 100%); }
.card__thumb--teal { background: linear-gradient(145deg, #003030 0%, #006060 55%, #00DDD0 100%); }
.card__thumb--hot  { background: linear-gradient(145deg, #3A1000 0%, #7A2800 55%, #FF5520 100%); }
.card__thumb--warm { background: linear-gradient(145deg, #2A1A00 0%, #704800 55%, #F7A84A 100%); }

.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.card:hover .card__thumb img { transform: scale(1.04); }

.card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.card__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card--project .card__title,
.card--post .card__title { font-size: .9375rem; }

/* Testimonial */
.card--testimonial {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: .8;
  color: var(--warm);
  opacity: 0.5;
}

.card__quote {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
}

.card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cool), var(--warm));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card__author strong { display: block; color: var(--text); font-size: .9375rem; font-weight: 600; }
.card__author span   { font-size: .8rem; color: var(--text-muted); }

/* Post meta */
.card__meta { display: flex; align-items: center; gap: 10px; }
.card__meta time { font-size: .78rem; color: var(--text-dim); }
.card--post .card__thumb { height: 170px; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,9,14,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-slow);
}

[data-theme="light"] .header {
  background: rgba(244,241,235,.92);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo__img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--t);
}
[data-theme="light"] .logo__img { filter: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__list { display: flex; align-items: center; }

.nav__link {
  padding: 7px 13px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t), background var(--t);
}
.nav__link:hover { color: var(--text); background: var(--surface); }

.nav__cta { margin-left: 16px; }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dark toggle */
.dark-toggle {
  background: none;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--t), color var(--t);
  flex-shrink: 0;
}
.dark-toggle:hover { border-color: var(--cool); color: var(--cool); }
.dark-toggle svg { width: 15px; height: 15px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 90px 72px;
  background: var(--bg);
}

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

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero__blob--1 {
  width: 520px; height: 520px;
  background: rgba(255,85,32,.16);
  top: -180px; right: -100px;
  animation: blob1 18s ease-in-out infinite alternate;
}

.hero__blob--2 {
  width: 420px; height: 420px;
  background: rgba(0,196,232,.13);
  bottom: -140px; left: 5%;
  animation: blob2 22s ease-in-out infinite alternate;
}

.hero__blob--3 {
  width: 280px; height: 280px;
  background: rgba(247,168,74,.1);
  top: 35%; left: 38%;
  animation: blob3 15s ease-in-out infinite alternate;
}

@keyframes blob1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-70px, 50px) scale(1.12); }
}
@keyframes blob2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(90px, -60px) scale(0.88); }
}
@keyframes blob3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, 70px) scale(1.2); }
}

[data-theme="light"] .hero__blob--1 { background: rgba(255,85,32,.08); }
[data-theme="light"] .hero__blob--2 { background: rgba(0,196,232,.08); }
[data-theme="light"] .hero__blob--3 { background: rgba(247,168,74,.07); }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__title { margin-bottom: 20px; }

.hero__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.stat { flex: 1; padding-right: 28px; }
.stat + .stat {
  padding-left: 28px;
  border-left: 1px solid var(--border);
}
.stat:last-child { padding-right: 0; }

.stat strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  background: var(--thermal-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat span {
  font-size: .8rem;
  color: var(--text-dim);
  display: block;
  letter-spacing: .02em;
}

/* Hero visual */
.hero__visual { position: relative; }

.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: var(--thermal);
  z-index: -1;
  opacity: 0.4;
}

.hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(255,85,32,.25) 50%);
  border-radius: 0 0 var(--radius-lg) 0;
  pointer-events: none;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 64px;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--thermal-h);
}

.cta-band__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,85,32,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 50%, rgba(0,196,232,.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band__text h2 { color: var(--text); }
.cta-band__text p  { color: var(--text-muted); margin-top: 8px; font-size: 1.0625rem; }

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* =============================================
   CONTACT
   ============================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text);
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
}

.contact__list svg {
  width: 18px; height: 18px;
  color: var(--cool);
  flex-shrink: 0;
}

.contact__list a { color: var(--text); font-weight: 500; transition: color var(--t); }
.contact__list a:hover { color: var(--cool); }

.contact__map {
  height: 180px;
  background: var(--bg-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Form */
.contact__form {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em;
}

input, select, textarea {
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9375rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }

input:focus, select:focus, textarea:focus {
  border-color: var(--cool);
  box-shadow: 0 0 0 3px rgba(0,196,232,.1);
}

textarea { resize: vertical; min-height: 110px; }
select option { background: var(--surface); }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--cool);
  padding: 0; border: none;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 60px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--thermal-h);
  opacity: 0.35;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  height: 38px; width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}
[data-theme="light"] .footer__logo { filter: none; opacity: 0.8; }

.footer__brand p { font-size: .875rem; line-height: 1.75; }

.footer__nav ul, .footer__services ul, .footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a, .footer__contact a {
  color: var(--text-muted);
  font-size: .875rem;
  transition: color var(--t);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--cool); }
.footer__services li, .footer__contact li { font-size: .875rem; color: var(--text-muted); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
}
.footer__bottom p {
  font-size: .78rem;
  color: var(--text-dim);
  text-align: center;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.cards-grid .card:nth-child(1) { transition-delay: 0s; }
.cards-grid .card:nth-child(2) { transition-delay: .07s; }
.cards-grid .card:nth-child(3) { transition-delay: .14s; }
.cards-grid .card:nth-child(4) { transition-delay: .21s; }
.cards-grid .card:nth-child(5) { transition-delay: .28s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid var(--border);
    transform: translateX(-100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .nav.open { transform: none; }

  .nav__list { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav__link { display: block; width: 100%; padding: 14px 16px; font-size: 1rem; }
  .nav__cta  { width: 100%; margin-top: 8px; margin-left: 0; justify-content: center; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__img { height: 260px; }
  .hero__stats { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; }
  .stat:last-child { flex: 0 0 100%; padding-left: 0; border-left: none; padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--border); }

  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__form { grid-template-columns: 1fr; padding: 24px; }

  .cta-band__inner { flex-direction: column; }
  .cta-band__actions { width: 100%; flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .cards-grid--5,
  .cards-grid--4,
  .cards-grid--3 { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }

  .stat { flex: 0 0 100%; padding-right: 0; }
  .stat + .stat { border-left: none; padding-left: 0; padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--border); }

  .footer__inner { grid-template-columns: 1fr; }
}

/* =============================================
   FOCUS STATES
   ============================================= */
:focus-visible {
  outline: 2px solid var(--cool);
  outline-offset: 3px;
  border-radius: 4px;
}
