/* ============================================================
   Southwest Cloud Partners — Clean Static Site
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #334155;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

/* --- CSS Variables --- */
:root {
  --blue: #0067FF;
  --blue-dark: #0052CC;
  --blue-light: #38BDF8;
  --navy: #0B1222;
  --navy-surface: #111B2E;
  --navy-border: #1E2D45;
  --slate: #334155;
  --slate-light: #64748B;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,.08);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 800px; }
.section {
  padding: 5rem 0;
}
.section--dark {
  background: var(--navy);
  color: #cbd5e1;
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--alt { background: var(--gray-50); }
.section--light-blue { background: #EFF6FF; }

/* --- Grid System --- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Skip Link --- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue); color: var(--white);
  padding: .5rem 1rem; z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: .625rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-img {
  height: 32px;
  width: auto;
}
.header__logo-img--color { display: none; }
.header.scrolled .header__logo-img--white { display: none; }
.header.scrolled .header__logo-img--color { display: block; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link--active { color: var(--white); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.header.scrolled .nav__link { color: var(--slate); }
.header.scrolled .nav__link:hover,
.header.scrolled .nav__link--active { color: var(--navy); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  background: var(--blue);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero--short {
  min-height: auto;
  padding: 8rem 0 4rem;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0);
  background-size: 32px 32px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 32px 32px; }
}
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  pointer-events: none;
}
.hero__glow--1 {
  top: -200px; right: -100px;
  background: var(--blue);
}
.hero__glow--2 {
  bottom: -200px; left: -100px;
  background: var(--blue-light);
  opacity: .08;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  background: rgba(0,103,255,.15);
  border: 1px solid rgba(0,103,255,.3);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
}
.hero__badge svg { width: 14px; height: 14px; }
.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--blue-light); }
.hero__subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__phone {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  font-size: .9375rem;
  color: #94a3b8;
}
.hero__phone a {
  color: var(--blue-light);
  font-weight: 600;
}

/* Page hero (for inner pages) */
.hero--page .hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.hero--page .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #64748b;
  margin-bottom: 1rem;
}
.hero--page .hero__breadcrumb a { color: var(--blue-light); }
.hero--page .hero__breadcrumb a:hover { text-decoration: underline; }
.hero--page .hero__breadcrumb svg { width: 12px; height: 12px; opacity: .5; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: 'Urbanist', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  border-radius: 10px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,103,255,.25);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(0,103,255,.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
}
.btn-outline--dark {
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline--dark:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,103,255,.04);
}
.btn-ghost {
  color: var(--blue);
  font-weight: 600;
  padding: .5rem 0;
}
.btn-ghost:hover { gap: .75rem; }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Urbanist', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section__label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section__desc {
  font-size: 1.0625rem;
  color: var(--slate-light);
  max-width: 600px;
  line-height: 1.7;
}
.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; }
.section__header--center .section__desc { margin: 0 auto; }

/* ============================================================
   SERVICE CARDS (Homepage & Services page)
   ============================================================ */
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--blue);
  transition: height var(--transition);
  border-radius: 0 0 3px 0;
}
.service-card:hover {
  border-color: rgba(0,103,255,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { height: 100%; }
.service-card__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFF6FF;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  color: var(--blue);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--navy);
}
.service-card__text {
  font-size: .9375rem;
  color: var(--slate-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}
.service-card__link:hover { gap: .625rem; }
.service-card__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card__link:hover svg { transform: translateX(2px); }

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  transition: all var(--transition);
  border: 1px solid var(--navy-border);
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,103,255,.4);
  box-shadow: 0 8px 32px rgba(0,103,255,.15);
}
.industry-card__icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,103,255,.15);
  border-radius: 8px;
  margin-bottom: 1rem;
  color: var(--blue-light);
}
.industry-card__icon svg { width: 20px; height: 20px; }
.industry-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .375rem;
}
.industry-card__desc {
  font-size: .875rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ============================================================
   STATS / HIGHLIGHTS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.stat {
  text-align: center;
}
.stat__number {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat__label {
  font-size: .875rem;
  color: var(--slate-light);
  font-weight: 500;
}

/* ============================================================
   FEATURE LIST (Service & Market detail pages)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: rgba(0,103,255,.2);
  box-shadow: var(--shadow);
}
.feature-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .375rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.feature-item__title svg {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.feature-item__text {
  font-size: .9375rem;
  color: var(--slate-light);
  line-height: 1.6;
}

/* ============================================================
   CONTENT BLOCK (Detail pages — intro text, body copy)
   ============================================================ */
.content-block {
  max-width: 780px;
}
.content-block p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.content-block h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
}
.content-block h3 {
  font-size: 1.375rem;
  margin: 2rem 0 .75rem;
}
.content-block ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.content-block li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  line-height: 1.7;
}
.content-block li::before {
  content: '';
  position: absolute;
  left: 0; top: .7em;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.content-block a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.content-block a:hover { color: var(--blue-dark); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  overflow: hidden;
}
.cta-banner__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 24px 24px;
}
.cta-banner__glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
  background: var(--blue);
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.cta-banner__text {
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.contact-info-card:hover { background: var(--gray-50); }
.contact-info-card__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFF6FF;
  border-radius: 10px;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-card__icon svg { width: 20px; height: 20px; }
.contact-info-card__label {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--slate-light);
  margin-bottom: .125rem;
}
.contact-info-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-info-card__value a { color: var(--blue); }
.contact-info-card__value a:hover { text-decoration: underline; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item__q {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--slate-light);
  border-bottom: 2px solid var(--slate-light);
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--transition);
}
.faq-item[open] .faq-item__q::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item__a {
  padding: 0 1.5rem 1.25rem;
  color: var(--slate);
  font-size: .9375rem;
  line-height: 1.7;
}
.faq-item__a p { margin: 0; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card__body { padding: 1.5rem; }
.blog-card__date {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: .375rem;
}
.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: .5rem;
}
.blog-card__excerpt {
  font-size: .9375rem;
  color: var(--slate-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog post page */
.blog-post { max-width: 780px; margin: 0 auto; }
.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: .875rem;
  color: var(--slate-light);
}
.blog-post__tag {
  background: #EFF6FF;
  color: var(--blue);
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 28px;
  width: auto;
}
.footer__desc {
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 320px;
}
.footer__social {
  display: flex;
  gap: .75rem;
}
.footer__social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: 8px;
  color: #94a3b8;
  transition: all var(--transition);
}
.footer__social a:hover {
  color: var(--white);
  border-color: var(--blue);
  background: rgba(0,103,255,.15);
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__links a {
  font-size: .9375rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
  color: #64748b;
}
.footer__bottom a { color: #94a3b8; }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============================================================
   CLIENT TAGS (for market pages)
   ============================================================ */
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.client-tag {
  padding: .375rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--slate);
}

/* ============================================================
   VIDEO EMBED
   ============================================================ */
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.partners__item {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  color: var(--slate-light);
  opacity: .6;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.partners__item:hover { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav.open .nav__link { color: rgba(255,255,255,.8); font-size: 1.125rem; }
  .nav.open .nav__link:hover { color: var(--white); }
  .nav-toggle { display: flex; z-index: 101; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .hero { padding: 6rem 0 3rem; min-height: auto; }
  .hero--short { padding: 7rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .hero__actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat__number { font-size: 2rem; }
  .grid-4 { grid-template-columns: 1fr; }
}
