/* =========================================================
   VAILENCEMEDIA — Design tokens
   Display: Space Grotesk | Body: Inter
   ========================================================= */
:root{
  --ink:#14151A;
  --ink-soft:#1C1E26;
  --navy:#131A2B;
  --mist:#EEF1F4;
  --paper:#FAFAF9;
  --white:#FFFFFF;
  --volt:#C6FF3D;
  --volt-dim:#9FD62B;
  --coral:#FF5A3C;
  --slate:#6B7280;
  --slate-dark:#3F4450;
  --line:rgba(20,21,26,0.10);
  --line-light:rgba(255,255,255,0.14);

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

  --maxw:1240px;
  --radius-s:4px;
  --radius-m:10px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
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(--display);
  margin:0;
  line-height:1.08;
  font-weight:700;
  letter-spacing:-0.01em;
}
p{margin:0;}
button{font-family:var(--body);cursor:pointer;}
.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}
section{position:relative;}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);}

:focus-visible{
  outline:2px solid var(--coral);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:0.98rem;
  border:1px solid transparent;
  transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{
  background:var(--ink);
  color:var(--volt);
}
.btn-primary:hover{background:var(--navy);}
.btn-volt{
  background:var(--volt);
  color:var(--ink);
}
.btn-volt:hover{background:var(--volt-dim);}
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
.btn-ghost:hover{border-color:var(--ink);}
.btn-ghost-light{
  background:transparent;
  color:var(--white);
  border-color:var(--line-light);
}
.btn-ghost-light:hover{border-color:var(--white);}
.btn-block{width:100%;justify-content:center;}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(250,250,249,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
  max-width:var(--maxw);
  margin:0 auto;
}
.logo{
  font-family:var(--display);
  font-weight:700;
  font-size:1.35rem;
  letter-spacing:-0.02em;
}
.logo span{color:var(--coral);}
.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-links a{
  font-size:0.96rem;
  font-weight:500;
  color:var(--slate-dark);
  position:relative;
  padding:6px 0;
}
.nav-links a:hover, .nav-links a.active{color:var(--ink);}
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:2px;
  background:var(--coral);
  border-radius:2px;
}
.nav-cta{display:flex;align-items:center;gap:18px;}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:8px;
}
.nav-toggle span{
  width:24px;height:2px;background:var(--ink);border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:900px){
  .nav-links{
    position:fixed;
    top:64px;left:0;right:0;
    flex-direction:column;
    align-items:flex-start;
    background:var(--paper);
    padding:24px 32px 32px;
    gap:20px;
    border-bottom:1px solid var(--line);
    transform:translateY(-140%);
    transition:transform .3s ease;
  }
  .nav-links.open{transform:translateY(0);}
  .nav-toggle{display:flex;}
  .nav-cta .btn span.long{display:none;}
}

/* =========================================================
   Hero (home)
   ========================================================= */
.hero{
  background:var(--ink);
  color:var(--white);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:48px;
  align-items:center;
  padding:88px 32px 64px;
}
.eyebrow-row{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--volt);
  font-size:0.85rem;
  font-weight:600;
  margin-bottom:22px;
}
.eyebrow-dot{width:7px;height:7px;border-radius:50%;background:var(--volt);}
.hero h1{
  font-size:clamp(2.4rem, 4.6vw, 4.1rem);
  color:var(--white);
  max-width:14ch;
}
.hero h1 .accent{color:var(--volt);}
.hero-sub{
  margin-top:22px;
  font-size:1.1rem;
  color:rgba(255,255,255,0.72);
  max-width:46ch;
}
.hero-actions{
  display:flex;
  gap:16px;
  margin-top:36px;
  flex-wrap:wrap;
}
.hero-stats{
  display:flex;
  gap:40px;
  margin-top:56px;
  flex-wrap:wrap;
}
.hero-stat b{
  display:block;
  font-family:var(--display);
  font-size:2rem;
  color:var(--white);
}
.hero-stat span{
  font-size:0.85rem;
  color:rgba(255,255,255,0.55);
}
.hero-visual{
  position:relative;
  min-height:420px;
}
.hero-visual .img-a, .hero-visual .img-b{
  position:absolute;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line-light);
}
.hero-visual .img-a{
  top:0; right:0; width:78%; height:320px;
}
.hero-visual .img-b{
  bottom:0; left:0; width:56%; height:220px;
  box-shadow:0 30px 60px rgba(0,0,0,0.4);
}
.hero-visual img{width:100%;height:100%;object-fit:cover;}
.hero-badge{
  position:absolute;
  top:52%;
  left:-6px;
  background:var(--volt);
  color:var(--ink);
  padding:14px 18px;
  border-radius:12px;
  font-family:var(--display);
  font-weight:700;
  font-size:1.4rem;
  line-height:1.1;
  box-shadow:0 20px 40px rgba(0,0,0,0.35);
}
.hero-badge span{
  display:block;
  font-family:var(--body);
  font-weight:600;
  font-size:0.7rem;
  margin-top:2px;
}

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr; padding-top:48px;}
  .hero-visual{margin-top:24px;min-height:320px;}
}

/* fade/slide-in load sequence — the one orchestrated motion moment */
.reveal-up{
  opacity:0;
  transform:translateY(18px);
  animation:revealUp .7s ease forwards;
}
@keyframes revealUp{to{opacity:1;transform:translateY(0);}}

/* =========================================================
   Section shells
   ========================================================= */
.section{padding:96px 0;}
.section-tight{padding:72px 0;}
.section-dark{background:var(--ink); color:var(--white);}
.section-navy{background:var(--navy); color:var(--white);}
.section-mist{background:var(--mist);}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  margin-bottom:52px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size:clamp(1.9rem,3vw,2.6rem);
  max-width:16ch;
}
.section-head p{
  max-width:38ch;
  color:var(--slate);
}
.section-dark .section-head p, .section-navy .section-head p{color:rgba(255,255,255,0.65);}
.kicker{
  font-family:var(--display);
  font-size:0.95rem;
  color:var(--coral);
  font-weight:600;
  margin-bottom:10px;
  display:block;
}

/* =========================================================
   Services list (rows, not cards — content isn't card-shaped)
   ========================================================= */
.service-rows{border-top:1px solid var(--line);}
.service-row{
  display:grid;
  grid-template-columns:2.4fr 3fr auto;
  gap:32px;
  align-items:center;
  padding:32px 0;
  border-bottom:1px solid var(--line);
  transition:padding-left .3s ease;
}
.service-row:hover{padding-left:12px;}
.service-row h3{font-size:1.3rem;}
.service-row .num{
  font-family:var(--display);
  color:var(--slate);
  font-size:0.9rem;
}
.service-row p{color:var(--slate); font-size:0.98rem;}
.service-row .arrow{
  width:44px;height:44px;
  border-radius:50%;
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
  flex-shrink:0;
}
.service-row:hover .arrow{background:var(--ink); border-color:var(--ink); transform:rotate(45deg);}
.service-row:hover .arrow svg{stroke:var(--volt);}
.service-row .arrow svg{stroke:var(--ink); transition:stroke .25s ease;}

@media (max-width:760px){
  .service-row{grid-template-columns:1fr; gap:10px;}
  .service-row .arrow{display:none;}
}

/* =========================================================
   Work / portfolio collage
   ========================================================= */
.work-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:200px;
  gap:18px;
}
.work-item{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  grid-column:span 2;
}
.work-item:nth-child(1){grid-column:span 2; grid-row:span 2;}
.work-item:nth-child(2){grid-column:span 2;}
.work-item:nth-child(3){grid-column:span 1;}
.work-item:nth-child(4){grid-column:span 1;}
.work-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.work-item:hover img{transform:scale(1.06);}
.work-tag{
  position:absolute;left:16px;bottom:16px;
  background:rgba(20,21,26,0.75);
  color:var(--white);
  padding:8px 14px;
  border-radius:999px;
  font-size:0.8rem;
  font-weight:600;
  backdrop-filter:blur(6px);
}
@media (max-width:760px){
  .work-grid{grid-template-columns:repeat(2,1fr); grid-auto-rows:160px;}
  .work-item:nth-child(1){grid-column:span 2; grid-row:span 1;}
}

/* =========================================================
   Stats strip
   ========================================================= */
.stats-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  border-top:1px solid var(--line-light);
  padding-top:48px;
}
.stat-block b{
  font-family:var(--display);
  font-size:2.6rem;
  color:var(--volt);
  display:block;
}
.stat-block span{color:rgba(255,255,255,0.62); font-size:0.9rem;}
@media (max-width:760px){.stats-strip{grid-template-columns:repeat(2,1fr);}}

/* =========================================================
   Process (this IS a sequence — numbering is warranted)
   ========================================================= */
.process-list{
  border-top:1px solid var(--line);
}
.process-item{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:28px;
  padding:36px 0;
  border-bottom:1px solid var(--line);
}
.process-item .idx{
  font-family:var(--display);
  font-size:2.2rem;
  color:var(--line);
  -webkit-text-stroke:1px var(--ink);
  color:transparent;
}
.process-item h4{font-size:1.2rem; margin-bottom:8px;}
.process-item p{color:var(--slate); max-width:56ch;}

/* =========================================================
   Testimonials
   ========================================================= */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testi-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:32px;
}
.testi-quote{font-size:1.02rem; margin-bottom:24px; color:var(--ink);}
.testi-person{display:flex;align-items:center;gap:12px;}
.testi-person img{width:44px;height:44px;border-radius:50%;object-fit:cover;}
.testi-person b{display:block;font-size:0.92rem;}
.testi-person span{font-size:0.82rem;color:var(--slate);}
@media (max-width:900px){.testi-grid{grid-template-columns:1fr;}}

/* =========================================================
   Logo strip
   ========================================================= */
.logo-strip{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:28px;
  padding:40px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.logo-strip span{
  font-family:var(--display);
  font-weight:700;
  font-size:1.15rem;
  color:var(--slate);
  opacity:0.7;
}

/* =========================================================
   Forms
   ========================================================= */
.form-panel{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:16px;
  padding:40px;
}
.form-panel.on-dark{
  background:var(--ink-soft);
  border-color:var(--line-light);
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.field{margin-bottom:18px;}
.field label{
  display:block;
  font-size:0.85rem;
  font-weight:600;
  margin-bottom:8px;
  color:var(--slate-dark);
}
.on-dark .field label{color:rgba(255,255,255,0.75);}
.field input, .field select, .field textarea{
  width:100%;
  padding:13px 15px;
  border-radius:8px;
  border:1px solid var(--line);
  background:var(--mist);
  font-family:var(--body);
  font-size:0.96rem;
  color:var(--ink);
  transition:border-color .2s ease, background .2s ease;
}
.on-dark .field input, .on-dark .field select, .on-dark .field textarea{
  background:rgba(255,255,255,0.06);
  border-color:var(--line-light);
  color:var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--coral);
  background:var(--white);
}
.on-dark .field input:focus, .on-dark .field select:focus, .on-dark .field textarea:focus{
  background:rgba(255,255,255,0.1);
}
.field textarea{resize:vertical; min-height:120px;}
.field-check{display:flex; align-items:flex-start; gap:10px; font-size:0.85rem; color:var(--slate);}
.on-dark .field-check{color:rgba(255,255,255,0.6);}
.field-check input{width:auto;margin-top:3px;}
.form-note{
  margin-top:16px;
  font-size:0.8rem;
  color:var(--slate);
}
.on-dark .form-note{color:rgba(255,255,255,0.45);}
.form-success{
  display:none;
  align-items:center;
  gap:12px;
  background:rgba(198,255,61,0.14);
  border:1px solid var(--volt-dim);
  color:var(--ink);
  padding:16px 18px;
  border-radius:10px;
  margin-top:18px;
  font-size:0.92rem;
  font-weight:500;
}
.on-dark .form-success{color:var(--white);}
.form-success.show{display:flex;}
@media (max-width:640px){.form-row{grid-template-columns:1fr;}}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band{
  background:var(--coral);
  color:var(--ink);
  border-radius:20px;
  padding:56px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
  flex-wrap:wrap;
}
.cta-band h2{font-size:clamp(1.6rem,2.6vw,2.2rem); max-width:18ch;}
.cta-band .btn-primary{background:var(--ink); color:var(--white);}
.cta-band .btn-primary:hover{background:#000;}

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero{
  background:var(--ink);
  color:var(--white);
  padding:64px 0 56px;
}
.page-hero h1{font-size:clamp(2.1rem,4vw,3.2rem); max-width:18ch;}
.page-hero p{margin-top:16px; color:rgba(255,255,255,0.68); max-width:52ch; font-size:1.05rem;}
.breadcrumb{
  display:flex; gap:8px; align-items:center;
  font-size:0.85rem; color:rgba(255,255,255,0.5);
  margin-bottom:18px;
}
.breadcrumb a{color:var(--volt);}

/* =========================================================
   About page bits
   ========================================================= */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.split img{border-radius:16px;}
.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.value-item{padding:28px; border:1px solid var(--line); border-radius:14px;}
.value-item .glyph{
  width:40px;height:40px;
  border-radius:10px;
  background:var(--ink);
  color:var(--volt);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);
  font-weight:700;
  margin-bottom:18px;
}
.value-item h4{font-size:1.05rem; margin-bottom:8px;}
.value-item p{font-size:0.92rem; color:var(--slate);}

.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.team-card img{
  border-radius:14px;
  aspect-ratio:1/1.05;
  object-fit:cover;
  filter:grayscale(15%);
}
.team-card h4{margin-top:16px; font-size:1.02rem;}
.team-card span{font-size:0.85rem; color:var(--slate);}

@media (max-width:900px){
  .split{grid-template-columns:1fr;}
  .value-grid{grid-template-columns:1fr 1fr;}
  .team-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .value-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
}

/* =========================================================
   Services page — feature blocks
   ========================================================= */
.feature-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
  padding:64px 0;
  border-bottom:1px solid var(--line);
}
.feature-block:last-child{border-bottom:none;}
.feature-block.reverse .visual{order:2;}
.feature-block .visual img{border-radius:16px;}
.feature-list{margin-top:22px;}
.feature-list li{
  display:flex;
  gap:12px;
  padding:10px 0;
  font-size:0.96rem;
  border-top:1px solid var(--line);
}
.feature-list li:first-child{border-top:none;}
.feature-list li .tick{color:var(--coral); font-weight:700;}
.feature-tagline{
  font-size:0.85rem;
  color:var(--coral);
  font-weight:600;
  margin-bottom:10px;
}
@media (max-width:900px){
  .feature-block, .feature-block.reverse{grid-template-columns:1fr;}
  .feature-block.reverse .visual{order:0;}
}

.pricing-note{
  display:flex;
  gap:20px;
  align-items:flex-start;
  background:var(--mist);
  border-radius:14px;
  padding:28px;
}
.pricing-note .glyph{
  width:46px;height:46px;flex-shrink:0;
  border-radius:12px;
  background:var(--ink);
  color:var(--volt);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-family:var(--display);
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:48px;
  align-items:flex-start;
}
.contact-info-item{
  display:flex;
  gap:16px;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}
.contact-info-item .glyph{
  width:42px;height:42px;flex-shrink:0;
  border-radius:10px;
  background:var(--mist);
  display:flex;align-items:center;justify-content:center;
}
.contact-info-item h4{font-size:1rem; margin-bottom:4px;}
.contact-info-item p{font-size:0.92rem; color:var(--slate);}
.map-wrap{
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  height:280px;
  margin-top:28px;
}
.map-wrap iframe{width:100%;height:100%;border:0;}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding:24px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:var(--display);
  font-size:1.05rem;
  font-weight:600;
  color:var(--ink);
}
.faq-q .plus{
  font-size:1.4rem;
  transition:transform .25s ease;
  color:var(--coral);
  flex-shrink:0;
  margin-left:16px;
}
.faq-item.open .faq-q .plus{transform:rotate(45deg);}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  font-size:0.95rem;
  color:var(--slate);
}
.faq-a p{padding-bottom:24px;}
.faq-item.open .faq-a{max-height:300px;}

/* =========================================================
   Legal / policy pages
   ========================================================= */
.legal-wrap{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:56px;
  align-items:flex-start;
}
.legal-toc{
  position:sticky;
  top:100px;
  border-left:2px solid var(--line);
  padding-left:20px;
}
.legal-toc span{
  display:block;
  font-size:0.78rem;
  font-weight:700;
  color:var(--slate);
  margin-bottom:14px;
}
.legal-toc a{
  display:block;
  font-size:0.9rem;
  padding:7px 0;
  color:var(--slate-dark);
}
.legal-toc a:hover{color:var(--coral);}
.legal-body h2{
  font-size:1.35rem;
  margin-top:44px;
  margin-bottom:14px;
}
.legal-body h2:first-child{margin-top:0;}
.legal-body p, .legal-body li{
  color:var(--slate-dark);
  font-size:0.98rem;
  margin-bottom:14px;
}
.legal-body ul{margin-left:0; margin-bottom:18px;}
.legal-body li{
  padding-left:22px;
  position:relative;
}
.legal-body li::before{
  content:"";
  position:absolute;
  left:0; top:10px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--coral);
}
.legal-updated{
  display:inline-block;
  background:var(--mist);
  padding:6px 14px;
  border-radius:999px;
  font-size:0.8rem;
  color:var(--slate);
  margin-bottom:8px;
}
@media (max-width:900px){
  .legal-wrap{grid-template-columns:1fr;}
  .legal-toc{position:static; border-left:none; padding-left:0; border-top:1px solid var(--line); padding-top:20px;}
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background:var(--ink);
  color:rgba(255,255,255,0.7);
  padding:72px 0 28px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid var(--line-light);
}
.footer-brand .logo{color:var(--white);}
.footer-brand p{margin-top:16px; font-size:0.92rem; max-width:34ch; color:rgba(255,255,255,0.55);}
.footer-col h5{
  font-family:var(--display);
  font-size:0.92rem;
  color:var(--white);
  margin-bottom:18px;
}
.footer-col a{
  display:block;
  font-size:0.9rem;
  padding:6px 0;
  color:rgba(255,255,255,0.6);
}
.footer-col a:hover{color:var(--volt);}
.footer-social{display:flex; gap:12px; margin-top:18px;}
.footer-social a{
  width:38px;height:38px;
  border-radius:50%;
  border:1px solid var(--line-light);
  display:flex;align-items:center;justify-content:center;
  padding:0;
}
.footer-social a:hover{background:var(--volt); border-color:var(--volt); color:var(--ink);}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  padding-top:24px;
  font-size:0.82rem;
  color:rgba(255,255,255,0.45);
}
.footer-bottom a{color:rgba(255,255,255,0.45);}
.footer-bottom a:hover{color:var(--volt);}
@media (max-width:900px){
  .footer-top{grid-template-columns:1fr 1fr; gap:32px;}
}
@media (max-width:560px){
  .footer-top{grid-template-columns:1fr;}
  .cta-band{padding:36px;}
}
