/* ==========================================================================
   Mayom LLC — Marketing & Technology
   Shared stylesheet
   ========================================================================== */

:root{
  --navy-900: #0c1b34;
  --navy-800: #0f2140;
  --navy-700: #16305a;
  --blue-500: #2f6bed;
  --blue-400: #4f8bff;
  --ink: #10233f;
  --gray-700: #4b5768;
  --gray-500: #6b7688;
  --gray-300: #d7dde6;
  --gray-100: #eef2f7;
  --white: #ffffff;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 10px 30px rgba(12, 27, 52, 0.08);
  --shadow-card-hover: 0 16px 40px rgba(12, 27, 52, 0.14);
  --container: 1200px;
  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--navy-900);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 700;
}
p{ margin: 0 0 1em; color: var(--gray-700); }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
:focus-visible{
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--navy-900);
  color: var(--white);
}
.btn-primary:hover{
  background: var(--navy-700);
  box-shadow: var(--shadow-card-hover);
}
.btn-accent{
  background: var(--blue-500);
  color: var(--white);
}
.btn-accent:hover{
  background: var(--blue-400);
  box-shadow: var(--shadow-card-hover);
}
.btn-ghost{
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-300);
}
.btn-ghost:hover{ border-color: var(--navy-900); }
.btn-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 600;
  padding: 14px 4px;
}
.btn-sm{ padding: 10px 18px; font-size: 0.85rem; }
.btn svg{ width: 16px; height: 16px; flex: none; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand{
  display: flex;
  align-items: center;
}
.brand img{ height: 48px; width: auto; }
.main-nav{
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav ul{
  display: flex;
  gap: 34px;
}
.main-nav ul a{
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-900);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav ul a:hover,
.main-nav ul a[aria-current="page"]{
  color: var(--blue-500);
  border-color: var(--blue-500);
}
.header-actions{ display: flex; align-items: center; gap: 20px; }
.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 900px){
  .main-nav{
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; gap: 18px; }
  .main-nav .header-actions{ display: flex; margin-top: 8px; }
  .nav-toggle{ display: block; }
}

/* ---------- Transparent homepage header ---------- */
.site-header.header-transparent{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}
.site-header.header-transparent .brand{ display: none; }
.site-header.header-transparent .container{ justify-content: flex-end; }
.site-header.header-transparent .main-nav ul a{ color: var(--navy-900); }
.site-header.header-transparent .main-nav ul a:hover,
.site-header.header-transparent .main-nav ul a[aria-current="page"]{
  color: var(--blue-500);
  border-color: var(--blue-500);
}
.site-header.header-transparent .nav-toggle span{ background: var(--navy-900); }
@media (max-width: 900px){
  .site-header.header-transparent .brand{ display: flex; }
  .site-header.header-transparent .container{ justify-content: space-between; }
  .site-header.header-transparent .main-nav ul a{ color: var(--navy-900); }
}

/* Same idea as .header-transparent (used on the homepage), but keeps the
   logo visible — interior pages don't have a giant in-hero logo like the
   homepage does, so the header still needs to carry the brand mark.
   Text/logo are dark navy because the hero image's own top is transparent
   — .page-hero's white background shows through there, exactly like the
   reference design's white header bar, and the photo (ears included) only
   fades in further down. */
.site-header.header-overlay{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}
.site-header.header-overlay .main-nav ul a{ color: var(--navy-900); }
.site-header.header-overlay .main-nav ul a:hover,
.site-header.header-overlay .main-nav ul a[aria-current="page"]{
  color: var(--blue-500);
  border-color: var(--blue-500);
}
.site-header.header-overlay .nav-toggle span{ background: var(--navy-900); }
.site-header.header-overlay .main-nav.is-open ul a{ color: var(--navy-900); }

/* ---------- Breadcrumb ---------- */
.breadcrumb{
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}
.breadcrumb a{ color: rgba(255,255,255,0.7); }
.breadcrumb a:hover{ color: var(--white); }
.breadcrumb span{ opacity: .5; }

/* ---------- Hero (home) ---------- */
.hero-home{
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--navy-900);
}
.hero-home .hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
}
.hero-home .container{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,560px) 1fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 96px;
  min-height: 680px;
  align-items: center;
}
.hero-logo{
  width: 300px;
  max-width: 60vw;
  margin-bottom: 28px;
}
.hero-logo img{ width: 100%; height: auto; display: block; }

/* ---------- Hero floating badges ---------- */
.hero-badges{
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 2;
}
.badge-line{
  position: absolute;
  top: 44%;
  right: 9.5%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(120,170,255,0.65), rgba(255,255,255,0.05));
}
.badge-dot{
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 12px 3px rgba(79,139,255,0.85);
}
.badge-dot.dot-1{ top: 44%; right: 9.2%; }
.badge-dot.dot-2{ top: 56%; right: 9.2%; }
.badge-card{
  position: absolute;
  background: linear-gradient(160deg, rgba(24, 48, 84, 0.72), rgba(10, 22, 42, 0.72));
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.badge-ai{
  top: 30%;
  right: 13.5%;
  width: 116px;
  height: 116px;
  gap: 4px;
}
.badge-ai::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(120,170,255,0.55), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.badge-ai .badge-title{
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, #a9c6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.badge-ai .badge-sub{
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
}
.badge-gear{
  top: 53%;
  right: 5.5%;
  width: 58px;
  height: 58px;
  color: var(--blue-400);
  animation: badge-spin 14s linear infinite;
}
.badge-gear svg{ width: 27px; height: 27px; }
@keyframes badge-spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
.badge-chart{
  position: absolute;
  top: 43%;
  right: 8.7%;
  width: 30px;
  height: 30px;
  padding: 5px;
  color: var(--white);
  background: rgba(12, 27, 52, 0.5);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
}
@media (max-width: 1100px){
  .hero-badges{ display: none; }
}
.eyebrow{
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 18px;
}
.hero-home h1{
  color: var(--navy-900);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 22px;
}
.hero-home h1 .accent{ color: var(--blue-500); }
.hero-home .lede{
  color: var(--navy-900);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 34px;
  text-shadow: 0 1px 16px rgba(255,255,255,0.7), 0 1px 2px rgba(255,255,255,0.5);
}
.hero-home .btn-ghost{
  color: var(--navy-900);
  border-color: var(--gray-300);
}
.hero-home .btn-ghost:hover{ border-color: var(--navy-900); }

@media (max-width: 760px){
  .hero-home .hero-logo{ display: none; }
  .hero-home .hero-text{
    background: rgba(255,255,255,0.82);
    padding: 20px 20px 24px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}
.hero-cta-row{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.play-link{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy-900);
  text-shadow: 0 1px 16px rgba(255,255,255,0.7), 0 1px 2px rgba(255,255,255,0.5);
}
.play-link .play-icon{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(16, 35, 63, 0.35);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}

/* ---------- Feature strip (floating card overlapping hero) ---------- */
.feature-strip{
  position: relative;
  z-index: 5;
  margin-top: -70px;
  background: var(--navy-900);
}
.feature-strip .feature-card{
  background: rgba(18, 38, 68, 0.88);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  color: var(--white);
}
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 44px 40px;
}
.feature-item{
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.feature-item:first-child{ border-left: none; padding-left: 0; }
.feature-item .icon{
  width: 34px; height: 34px;
  margin-bottom: 16px;
  color: var(--blue-400);
}
.feature-item h3{
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.feature-item p{
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 900px){
  .feature-strip{ margin-top: -40px; }
  .feature-grid{ grid-template-columns: repeat(2, 1fr); gap: 32px 20px; padding: 32px 24px; }
  .feature-item{ border-left: none; padding-left: 0; }
}
@media (max-width: 560px){
  .feature-grid{ grid-template-columns: 1fr; }
}

/* ---------- Trusted-by ---------- */
.trusted-by{
  padding: 40px 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trusted-by p{
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.logo-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.logo-row span{ font-size: 1.05rem; }

/* ---------- Generic section ---------- */
.section{ padding: 100px 0; }
.section-tight{ padding: 64px 0; }
.section-alt{ background: var(--gray-100); }
.section-navy{ background: var(--navy-900); color: var(--white); }
.page-hero + .section{ padding-top: 56px; }
.section-head{
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.align-left{ margin: 0 0 48px; text-align: left; }
.section-head .eyebrow{ color: var(--blue-500); }
.section-navy .section-head .eyebrow{ color: var(--blue-400); }
.section-navy .section-head h2{ color: var(--white); }
.section-navy .section-head p{ color: rgba(255,255,255,0.72); }

/* ---------- Card grid (services / solutions) ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.card-grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px){
  .card-grid, .card-grid.cols-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .card-grid, .card-grid.cols-3, .card-grid.cols-2{ grid-template-columns: 1fr; }
}

.card{
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover{ box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.card .icon-badge{
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon-badge svg{ width: 22px; height: 22px; }
.card h3{ font-size: 1.05rem; margin-bottom: 10px; }
.card p{ font-size: 0.92rem; margin: 0; }
.card.link-card{ display: block; }
.card.link-card:hover h3{ color: var(--blue-500); }

/* ---------- Interior hero (page header w/ image) ---------- */
/* This uses a pre-made image asset that already has a transparent top
   (fading in around the dog's ears) and a built-in dark-to-light gradient
   on the left (for text legibility) — baked directly into the PNG. The
   header sits as a transparent overlay (.header-overlay) on top of it, so
   wherever the image is still transparent, the page's white background
   shows through under the nav, and the ears simply fade into view exactly
   as drawn — no separate cutout/z-index layer needed.
   The container's aspect-ratio is locked to the image's own ratio
   (2160:728), so "background-size: 100% 100%" always fills it exactly,
   with zero cropping/positioning math, at any viewport width. */
.page-hero{
  position: relative;
  overflow: hidden;
  aspect-ratio: 2160 / 728;
  background: var(--white);
  color: var(--white);
}
.page-hero .hero-bg{
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.page-hero .hero-scrim{ display: none; }
.page-hero .hero-cutout{ display: none; }
.page-hero .container{
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 110px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
}
.page-hero .hero-copy{ max-width: 400px; }
.page-hero h1{ color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.page-hero p{ color: rgba(255,255,255,0.85); max-width: 480px; }

@media (max-width: 760px){
  .page-hero{ aspect-ratio: auto; min-height: 420px; }
  .page-hero .hero-bg{
    background-size: cover;
    background-position: right center;
  }
  .page-hero .container{ min-height: 320px; padding-top: 100px; }
  .page-hero .hero-copy{
    background: rgba(8, 18, 36, 0.55);
    padding: 20px 20px 24px;
    border-radius: 12px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
}

/* Simple text-only interior hero (no image) */
.page-hero.no-media .hero-copy{ max-width: 620px; }

/* ---------- Two column intro (overview) ---------- */
.overview{
  display: grid;
  grid-template-columns: minmax(0,420px) 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px){
  .overview{ grid-template-columns: 1fr; }
}

/* ---------- Process steps ---------- */
.process{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.process::before{
  content: "";
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 1px;
  background-image: linear-gradient(to right, var(--gray-300) 50%, transparent 0%);
  background-size: 14px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}
.process-step{
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  padding: 0 8px;
}
.process-step .step-icon{
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.process-step .step-icon svg{ width: 24px; height: 24px; }
.process-step h4{ font-size: 0.98rem; margin-bottom: 8px; }
.process-step p{ font-size: 0.85rem; }
@media (max-width: 760px){
  .process{ flex-direction: column; gap: 32px; }
  .process::before{ display: none; }
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
.cta-banner .cta-copy{ padding: 48px; color: var(--white); }
.cta-banner h3{ color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.cta-banner p{ color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.cta-banner .cta-media{ height: 100%; min-height: 220px; }
.cta-banner .cta-media img{ width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px){
  .cta-banner{ grid-template-columns: 1fr; }
  .cta-banner .cta-media{ min-height: 160px; order: -1; }
}

/* ---------- Stats ---------- */
.stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-grid .num{
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-900);
}
.stat-grid .label{
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 700px){ .stat-grid{ grid-template-columns: repeat(2,1fr); } }

/* ---------- Testimonial ---------- */
.testimonial{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote{
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-900);
  margin: 0 0 24px;
  line-height: 1.4;
}
.testimonial cite{
  font-style: normal;
  font-weight: 600;
  color: var(--gray-700);
  display: block;
}
.testimonial cite span{
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ---------- Form ---------- */
.contact-form{
  display: grid;
  gap: 20px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px){ .form-row{ grid-template-columns: 1fr; } }
.field label{
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-300);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--blue-500);
}
.field textarea{ resize: vertical; min-height: 140px; }

/* ---------- Contact info cards ---------- */
.contact-info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px){ .contact-info-grid{ grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--navy-900);
  color: rgba(255,255,255,0.72);
  padding-top: 72px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img{ height: 42px; margin-bottom: 18px; }
.footer-brand p{ color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 320px; }
.footer-col h4{
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul{ display: grid; gap: 12px; }
.footer-col a{
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color .15s ease;
}
.footer-col a:hover{ color: var(--white); }
.footer-contact li{
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  align-items: flex-start;
}
.footer-contact svg{ width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--blue-400); }
.social-row{
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.social-row .icon-circle{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
  cursor: default;
}
.social-row .icon-circle:hover{
  border-color: var(--blue-400);
  background: rgba(79,139,255,0.12);
  color: var(--white);
}
.social-row svg{ width: 16px; height: 16px; }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.footer-bottom .legal-links{ display: flex; gap: 24px; }
.footer-bottom .legal-links a:hover{ color: var(--white); }
.footer-locale{ display: flex; align-items: center; gap: 8px; }
@media (max-width: 900px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
  .footer-bottom{ justify-content: center; text-align: center; }
}

/* ---------- Utility ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.visually-hidden{
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }
