*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --red:#B91C1C;
  --red-dark:#991B1B;
  --black:#0F0F0F;
  --gray-900:#111827;
  --gray-700:#374151;
  --gray-500:#6B7280;
  --gray-400:#9CA3AF;
  --gray-200:#E5E7EB;
  --gray-100:#F9FAFB;
  --white:#FFFFFF;
}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;background:var(--white);color:var(--black);overflow-x:hidden;font-size:16px;line-height:1.6;}

/* ── NAV ── */
nav{
  display:flex;justify-content:space-between;align-items:center;
  padding:0 5rem;height:108px;
  position:sticky;top:0;background:rgba(255,255,255,0.97);
  backdrop-filter:blur(12px);border-bottom:1px solid var(--gray-200);z-index:100;
}
.nav-logo{display:flex;align-items:center;}
.nav-logo img{height:84px;display:block;}
.nav-links{display:flex;gap:2rem;align-items:center;}
.nav-links a{font-size:0.875rem;font-weight:500;color:var(--gray-700);text-decoration:none;transition:color .2s;}
.nav-links a:hover{color:var(--black);}
.nav-right{display:flex;gap:0.75rem;align-items:center;}
.btn-login{font-size:0.875rem;font-weight:500;color:var(--gray-700);text-decoration:none;padding:0.5rem 1rem;}
.btn-login:hover{color:var(--black);}
.btn-pill{
  display:inline-flex;align-items:center;gap:0.4rem;
  background:var(--red);color:#fff;
  padding:0.55rem 1.25rem;border-radius:100px;
  font-size:0.875rem;font-weight:600;text-decoration:none;
  transition:background .2s,box-shadow .2s;
  white-space:nowrap;
}
.btn-pill:hover{background:var(--red-dark);box-shadow:0 4px 16px rgba(185,28,28,.3);}
.btn-pill svg{flex-shrink:0;}

/* ── HERO ── */
.hero{
  padding:6rem 5rem 5rem;
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;
  max-width:1280px;margin:0 auto;align-items:center;
}
.hero-eyebrow{
  display:inline-block;font-size:0.75rem;font-weight:600;
  letter-spacing:0.08em;text-transform:uppercase;color:var(--red);
  margin-bottom:1.25rem;
}
.hero h1{
  font-family:Arial,Helvetica,sans-serif;
  font-size:3.75rem;font-weight:900;line-height:1.06;
  color:var(--black);letter-spacing:-0.02em;margin-bottom:1.5rem;
}
.hero h1 em{font-style:italic;color:var(--red);}
.hero-sub{
  font-size:1.05rem;color:var(--gray-500);line-height:1.75;
  font-weight:400;max-width:480px;margin-bottom:2.5rem;
}
.hero-ctas{display:flex;gap:0.875rem;align-items:center;flex-wrap:wrap;margin-bottom:1rem;}
.btn-pill-lg{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:var(--red);color:#fff;
  padding:0.8rem 1.75rem;border-radius:100px;
  font-size:0.95rem;font-weight:600;text-decoration:none;
  transition:background .2s,box-shadow .2s;
}
.btn-pill-lg:hover{background:var(--red-dark);box-shadow:0 6px 20px rgba(185,28,28,.3);}
.btn-ghost-lg{
  font-size:0.95rem;font-weight:500;color:var(--gray-700);
  text-decoration:none;display:inline-flex;align-items:center;gap:0.3rem;
  transition:color .2s;
}
.btn-ghost-lg:hover{color:var(--black);}
.hero-note{font-size:0.78rem;color:var(--gray-400);}

/* HERO VISUAL — app mockup */
.hero-visual{position:relative;}
.app-card{
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:16px;overflow:hidden;
  box-shadow:0 24px 64px rgba(0,0,0,.08),0 4px 16px rgba(0,0,0,.04);
}
.app-topbar{
  background:var(--gray-900);padding:0.7rem 1rem;
  display:flex;align-items:center;gap:0.4rem;
}
.dot{width:10px;height:10px;border-radius:50%;}
.app-search{
  padding:0.875rem 1.25rem;background:var(--gray-100);
  border-bottom:1px solid var(--gray-200);
}
.search-box{
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:8px;padding:0.5rem 0.875rem;
  font-size:0.8rem;color:var(--gray-500);font-family:'Inter',sans-serif;
  display:flex;justify-content:space-between;align-items:center;margin-bottom:0.6rem;
}
.search-box span.s{color:var(--red);font-weight:600;font-size:0.8rem;}
.chips{display:flex;gap:0.4rem;flex-wrap:wrap;}
.chip{
  background:#FEE2E2;color:var(--red-dark);
  font-size:0.7rem;font-weight:500;padding:0.25rem 0.625rem;
  border-radius:100px;
}
.result-count{
  padding:0.5rem 1.25rem;font-size:0.72rem;color:var(--gray-400);
  border-bottom:1px solid var(--gray-200);background:var(--white);
}
.result-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:0.875rem 1.25rem;border-bottom:1px solid var(--gray-100);
  transition:background .15s;
}
.result-row:last-child{border-bottom:none;}
.result-row:hover{background:var(--gray-100);}
.r-name{font-size:0.85rem;font-weight:600;color:var(--black);margin-bottom:0.15rem;}
.r-sub{font-size:0.72rem;color:var(--gray-400);}
.r-right{text-align:right;}
.r-badge{
  display:inline-block;background:#DCFCE7;color:#15803D;
  font-size:0.68rem;font-weight:600;padding:0.18rem 0.5rem;
  border-radius:100px;margin-bottom:0.2rem;
}
.r-rev{font-size:0.72rem;color:var(--gray-400);}

/* ── TRUSTED BY ── */
.trusted{
  border-top:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);
  padding:2rem 5rem;background:var(--white);
}
.trusted-label{
  text-align:center;font-size:0.72rem;font-weight:500;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--gray-400);margin-bottom:1.75rem;
}
.logo-row{
  display:flex;align-items:center;justify-content:center;
  gap:1.5rem;flex-wrap:wrap;max-width:1150px;margin:0 auto;
}
.logo-wrap{
  width:110px;height:48px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.logo-wrap img{
  max-width:110px;max-height:48px;
  width:auto;height:auto;
  object-fit:contain;
  filter:grayscale(100%);opacity:0.45;
  transition:filter .2s,opacity .2s;
}
.logo-wrap img:hover{filter:none;opacity:1;}

/* ── STATS ── */
.stats{
  display:grid;grid-template-columns:repeat(5,1fr);
  background:var(--black);
}
.stat-cell{
  padding:2.5rem 1.5rem;text-align:center;
  border-right:1px solid #1F2937;
}
.stat-cell:last-child{border-right:none;}
.stat-cell.highlight{background:#1a0505;}
.stat-n{font-size:2.4rem;font-weight:700;color:var(--red);line-height:1;margin-bottom:0.35rem;}
.stat-n.counter{font-size:2.4rem;}
.stat-l{font-size:0.72rem;color:#9CA3AF;text-transform:uppercase;letter-spacing:0.06em;}
.stat-sub{font-size:0.68rem;color:#4B5563;margin-top:0.3rem;font-style:italic;}
@keyframes pulse-dot{0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(0.85);}}
.live-dot{display:inline-block;width:7px;height:7px;border-radius:50%;background:#22C55E;margin-right:0.35rem;vertical-align:middle;animation:pulse-dot 1.8s ease-in-out infinite;}

/* ── SECTION BASE ── */
.section{padding:6rem 5rem;max-width:1280px;margin:0 auto;}
.section-eyebrow{
  font-size:0.72rem;font-weight:600;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--red);margin-bottom:0.6rem;
}
.section-title{
  font-size:2.25rem;font-weight:700;color:var(--black);
  line-height:1.2;letter-spacing:-0.01em;margin-bottom:0.75rem;
}
.section-sub{
  font-size:1rem;color:var(--gray-500);line-height:1.75;
  max-width:560px;
}

/* ── FEATURES GRID ── */
.features-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
  margin-top:3.5rem;
}
.feat-card{
  background:var(--gray-100);border-radius:12px;
  padding:2rem;transition:background .2s;
}
.feat-card:hover{background:#F3F4F6;}
.feat-icon{
  width:40px;height:40px;border-radius:10px;
  background:var(--white);border:1px solid var(--gray-200);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;
}
.feat-icon svg{width:18px;height:18px;stroke:var(--red);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.feat-card h3{font-size:1rem;font-weight:600;color:var(--black);margin-bottom:0.5rem;}
.feat-card p{font-size:0.875rem;color:var(--gray-500);line-height:1.7;}
.feat-link{
  display:inline-flex;align-items:center;gap:0.3rem;
  font-size:0.82rem;font-weight:500;color:var(--red);
  text-decoration:none;margin-top:0.875rem;
  transition:gap .15s;
}
.feat-link:hover{gap:0.5rem;}

/* ── CONTACT GRID ── */
.contact-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
  margin-top:3.5rem;
}
.contact-block h3{
  font-size:0.72rem;font-weight:600;color:var(--red);
  text-transform:uppercase;letter-spacing:0.08em;margin-bottom:0.5rem;
}
.contact-block p{font-size:1rem;color:var(--gray-700);line-height:1.6;}
.contact-block a{color:var(--black);text-decoration:none;border-bottom:1px solid var(--gray-200);transition:border-color .2s;}
.contact-block a:hover{border-color:var(--red);}
.contact-role{font-size:0.85rem;color:var(--gray-500);}

/* ── PROSE (long-form content) ── */
.prose{font-size:1rem;color:var(--gray-700);line-height:1.75;}
.prose h2{font-size:1.5rem;font-weight:700;color:var(--black);line-height:1.25;margin:2.5rem 0 1rem;letter-spacing:-0.01em;}
.prose h3{font-size:1.125rem;font-weight:600;color:var(--black);margin:2rem 0 0.75rem;}
.prose p{margin-bottom:1rem;}
.prose ul{list-style:disc;padding-left:1.25rem;margin-bottom:1rem;}
.prose li{margin-bottom:0.375rem;}
.prose a{color:var(--red);text-decoration:underline;}
.prose a:hover{color:var(--red-dark);}
.prose-narrow{max-width:760px;margin-top:2rem;}
.prose ol.prose-ol{list-style:decimal;padding-left:1.5rem;margin-bottom:1rem;}
.prose pre{
  background:var(--gray-100);border:1px solid var(--gray-200);border-radius:8px;
  padding:0.875rem 1rem;margin:1rem 0;
  font-family:'SFMono-Regular',Menlo,Consolas,'Liberation Mono',monospace;
  font-size:0.85rem;line-height:1.55;color:var(--gray-900);
  overflow-x:auto;white-space:pre;
}
.prose code{
  font-family:'SFMono-Regular',Menlo,Consolas,'Liberation Mono',monospace;
  font-size:0.88em;background:var(--gray-100);
  padding:0.12rem 0.35rem;border-radius:4px;color:var(--gray-900);
}
.prose pre code{background:none;padding:0;font-size:inherit;}
.prose .callout{
  padding:0.875rem 1rem;border-radius:8px;margin:1.25rem 0;
  font-size:0.95rem;line-height:1.6;border:1px solid transparent;
}
.prose .callout-ok{background:#ECFDF5;border-color:#A7F3D0;color:#065F46;}
.prose .callout-warn{background:#FEF3C7;border-color:#FCD34D;color:#92400E;}
.prose .callout a{color:inherit;text-decoration:underline;}

/* ── ANZSIC TARGETING TABLE ── */
.anzsic-wrap{margin-top:2.5rem;overflow-x:auto;}
.anzsic-table{
  width:100%;border-collapse:collapse;
  font-size:0.82rem;color:var(--gray-700);
  background:var(--white);
}
.anzsic-table th,
.anzsic-table td{
  padding:0.5rem 0.6rem;border:1px solid var(--gray-200);
  text-align:right;white-space:nowrap;
}
.anzsic-table thead th{
  background:var(--gray-100);color:var(--black);
  font-weight:600;text-align:center;
  font-size:0.75rem;text-transform:uppercase;letter-spacing:0.04em;
}
.anzsic-table tbody th,
.anzsic-table tfoot th{
  text-align:left;font-weight:500;color:var(--black);
  white-space:nowrap;
}
.anzsic-table tbody tr:hover td,
.anzsic-table tbody tr:hover th{background:var(--gray-100);}
.anzsic-table td.targeted{
  background:#FEE2E2;color:var(--red-dark);font-weight:600;
}
.anzsic-table td.total-cell{background:var(--gray-100);font-weight:600;color:var(--black);}
.anzsic-table tfoot th,
.anzsic-table tfoot td{
  background:var(--gray-100);font-weight:700;color:var(--black);
  border-top:2px solid var(--gray-700);
}
.anzsic-source{
  font-size:0.78rem;color:var(--gray-500);margin-top:0.75rem;
}
.anzsic-source a{color:var(--red);}

/* ── PROFILE ── */
.profile-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
  margin-top:2rem;
}
.profile-block{
  background:var(--gray-100);border-radius:12px;padding:1.5rem;
}
.profile-block-wide{grid-column:1 / -1;}
.profile-block h3{
  font-size:0.72rem;font-weight:600;color:var(--red);
  text-transform:uppercase;letter-spacing:0.08em;margin-bottom:0.5rem;
}
.profile-block p{
  font-size:0.95rem;color:var(--gray-700);line-height:1.6;margin-bottom:0.5rem;
}
.profile-block p:last-child{margin-bottom:0;}
.profile-block a{color:var(--red);text-decoration:none;}
.profile-block a:hover{color:var(--red-dark);text-decoration:underline;}
.profile-teaser{
  margin-top:2.5rem;padding:2rem;
  border:1px dashed var(--gray-200);border-radius:12px;
  background:var(--white);
}
.profile-teaser h3{
  font-size:0.95rem;font-weight:600;color:var(--black);margin-bottom:0.75rem;
}
.profile-teaser ul{
  list-style:none;display:flex;flex-direction:column;gap:0.4rem;
  font-size:0.9rem;color:var(--gray-500);
}
.profile-teaser li::before{
  content:'\2713';color:var(--red);font-weight:700;margin-right:0.5rem;
}

/* ── COMPANY LIST (top 100, A-Z index) ── */
.company-list{
  margin-top:2rem;max-width:760px;
  display:flex;flex-direction:column;
}
.company-list .row{
  display:flex;align-items:baseline;gap:1rem;
  padding:0.625rem 0;border-bottom:1px solid var(--gray-200);
}
.company-list .row:first-child{border-top:1px solid var(--gray-200);}
.company-list .rank{
  font-size:0.75rem;color:var(--gray-400);font-weight:600;
  width:2.5rem;flex-shrink:0;
}
.company-list a{
  color:var(--black);text-decoration:none;
  font-size:0.95rem;transition:color .15s;
}
.company-list a:hover{color:var(--red);}

/* ── PAGINATION ── */
.pagination{
  display:flex;flex-wrap:wrap;gap:0.375rem;
  margin-top:2rem;font-size:0.85rem;
}
.pagination a,
.pagination span{
  padding:0.375rem 0.625rem;border-radius:6px;
  color:var(--gray-700);text-decoration:none;
  border:1px solid var(--gray-200);
}
.pagination a:hover{border-color:var(--red);color:var(--red);}
.pagination .current{background:var(--black);color:#fff;border-color:var(--black);}
.pagination .ellipsis{border:none;color:var(--gray-400);}

/* ── SEARCH FORM ── */
.search-form{
  max-width:560px;margin-top:2rem;
  display:flex;gap:0.5rem;
}
.search-form input[type="text"]{
  flex:1;padding:0.75rem 1rem;
  border:1px solid var(--gray-200);border-radius:8px;
  font-size:0.95rem;font-family:'Inter',sans-serif;color:var(--black);
  background:var(--white);
}
.search-form input[type="text"]:focus{
  outline:none;border-color:var(--red);
  box-shadow:0 0 0 3px rgba(185,28,28,.12);
}
.search-form button{
  padding:0.75rem 1.25rem;border:none;border-radius:8px;
  background:var(--red);color:#fff;font-weight:600;font-size:0.9rem;
  cursor:pointer;transition:background .2s;
}
.search-form button:hover{background:var(--red-dark);}

/* ── SUPPLIER LIST ── */
.supplier-list{
  max-width:760px;margin-top:2rem;
  display:flex;flex-direction:column;
}
.supplier{
  border-top:1px solid var(--gray-200);
  padding:1.5rem 0;
}
.supplier:last-child{border-bottom:1px solid var(--gray-200);}
.supplier h3{
  font-size:1.05rem;font-weight:600;color:var(--black);
  margin-bottom:0.25rem;
}
.supplier p{
  font-size:0.95rem;color:var(--gray-700);line-height:1.6;
  margin-bottom:0.4rem;
}
.supplier p:last-child{margin-bottom:0;}
.supplier a{color:var(--red);text-decoration:none;}
.supplier a:hover{color:var(--red-dark);text-decoration:underline;}

/* ── ALTERNATING FEATURE ROWS ── */
.alt-section{padding:0 5rem 6rem;max-width:1280px;margin:0 auto;}
.alt-row{
  display:grid;grid-template-columns:1fr 1fr;gap:6rem;
  align-items:center;padding:5rem 0;
  border-top:1px solid var(--gray-200);
}
.alt-row.reverse{direction:rtl;}
.alt-row.reverse > *{direction:ltr;}
.alt-text .pill-tag{
  display:inline-block;background:#FEE2E2;color:var(--red);
  font-size:0.72rem;font-weight:600;padding:0.3rem 0.75rem;
  border-radius:100px;margin-bottom:1.25rem;letter-spacing:0.04em;
}
.alt-text h2{font-size:2rem;font-weight:700;color:var(--black);line-height:1.2;letter-spacing:-0.01em;margin-bottom:1rem;}
.alt-text p{font-size:0.95rem;color:var(--gray-500);line-height:1.75;margin-bottom:1.5rem;}
.alt-visual{
  background:var(--gray-100);border-radius:16px;
  border:1px solid var(--gray-200);padding:2rem;
  min-height:280px;display:flex;flex-direction:column;gap:0.875rem;
}
.mini-card{
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:10px;padding:1rem 1.25rem;
  display:flex;align-items:center;justify-content:space-between;
}
.mc-left h4{font-size:0.85rem;font-weight:600;color:var(--black);margin-bottom:0.2rem;}
.mc-left p{font-size:0.72rem;color:var(--gray-400);}
.mc-badge{font-size:0.7rem;font-weight:600;padding:0.25rem 0.6rem;border-radius:100px;}
.mc-green{background:#DCFCE7;color:#15803D;}
.mc-blue{background:#DBEAFE;color:#1D4ED8;}
.mc-amber{background:#FEF3C7;color:#92400E;}
.progress-row{display:flex;flex-direction:column;gap:0.5rem;}
.progress-item{display:flex;align-items:center;gap:0.875rem;}
.prog-label{font-size:0.72rem;color:var(--gray-500);width:100px;flex-shrink:0;}
.prog-bar-wrap{flex:1;background:var(--gray-200);border-radius:100px;height:6px;}
.prog-bar{height:6px;border-radius:100px;background:var(--red);}
.prog-val{font-size:0.72rem;font-weight:600;color:var(--black);width:36px;text-align:right;}

/* ── USE CASES ── */
.who-section{background:var(--gray-100);padding:6rem 5rem;}
.who-inner{max-width:1280px;margin:0 auto;}
.who-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.5rem;margin-top:3.5rem;
}
.who-card{
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:12px;padding:1.75rem;transition:box-shadow .2s,transform .2s;
}
.who-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.08);transform:translateY(-3px);}
.who-num{
  font-size:0.72rem;font-weight:600;color:var(--red);
  letter-spacing:0.08em;margin-bottom:1rem;
}
.who-card h3{font-size:0.95rem;font-weight:600;color:var(--black);margin-bottom:0.5rem;}
.who-card p{font-size:0.83rem;color:var(--gray-500);line-height:1.65;}

/* ── TESTIMONIALS ── */
.testi-section{padding:6rem 5rem;max-width:1280px;margin:0 auto;}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3.5rem;}
.testi-card{
  background:var(--gray-100);border-radius:12px;
  padding:2rem;border:1px solid transparent;
  transition:border-color .2s;
}
.testi-card:hover{border-color:var(--gray-200);background:var(--white);}
.stars{color:#F59E0B;font-size:0.85rem;margin-bottom:1rem;letter-spacing:0.08em;}
.testi-quote{
  font-size:0.9rem;color:var(--gray-700);line-height:1.75;
  margin-bottom:1.25rem;
}
.testi-by{font-size:0.8rem;font-weight:600;color:var(--gray-500);}

/* ── PRICING ── */
.pricing-section{background:var(--gray-100);padding:6rem 5rem;}
.pricing-inner{max-width:1280px;margin:0 auto;}
.pricing-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1.5rem;max-width:680px;margin-top:3.5rem;
}
.price-card{
  background:var(--white);border:1px solid var(--gray-200);
  border-radius:16px;padding:2.25rem;
}
.price-card.featured{
  border-color:var(--black);border-width:2px;
  position:relative;
}
.featured-badge{
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--black);color:var(--white);
  font-size:0.7rem;font-weight:600;padding:0.3rem 0.875rem;
  border-radius:100px;white-space:nowrap;letter-spacing:0.04em;
}
.price-card h3{font-size:0.875rem;font-weight:600;color:var(--gray-500);text-transform:uppercase;letter-spacing:0.06em;margin-bottom:1rem;}
.price-amount{font-size:2.75rem;font-weight:700;color:var(--black);line-height:1;margin-bottom:0.25rem;}
.price-amount span{font-size:1.25rem;font-weight:500;vertical-align:top;margin-top:0.4rem;display:inline-block;}
.price-per{font-size:0.8rem;color:var(--gray-400);margin-bottom:1.75rem;}
.price-feats{list-style:none;margin-bottom:2rem;display:flex;flex-direction:column;gap:0.625rem;}
.price-feats li{
  font-size:0.875rem;color:var(--gray-700);
  display:flex;align-items:center;gap:0.625rem;
}
.price-feats li::before{
  content:'';display:inline-block;width:16px;height:16px;flex-shrink:0;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23B91C1C'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
}
.price-btn{
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
  width:100%;padding:0.8rem;border-radius:100px;
  font-size:0.9rem;font-weight:600;text-decoration:none;transition:all .2s;
}
.price-btn-outline{
  border:1.5px solid var(--gray-200);color:var(--gray-700);
}
.price-btn-outline:hover{border-color:var(--red);color:var(--red);}
.price-btn-solid{
  background:var(--red);color:#fff;border:none;
}
.price-btn-solid:hover{background:var(--red-dark);box-shadow:0 6px 20px rgba(185,28,28,.25);}

/* ── CTA BANNER ── */
.cta-banner{
  background:var(--black);padding:6rem 5rem;text-align:center;
}
.cta-banner h2{
  font-size:2.75rem;font-weight:700;color:var(--white);
  letter-spacing:-0.02em;margin-bottom:1rem;line-height:1.15;
}
.cta-banner p{font-size:1rem;color:#9CA3AF;margin-bottom:2.25rem;}

/* ── FOOTER ── */
footer{
  background:var(--gray-900);padding:3rem 5rem;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1.5rem;
}
.footer-payments{display:flex;align-items:center;gap:1rem;}
.footer-payments .pay-mark{height:22px;width:auto;opacity:0.85;}
.footer-payments .pay-visa{color:#fff;}
footer p{font-size:0.8rem;color:#6B7280;}
.footer-links{display:flex;gap:1.75rem;}
.footer-links a{font-size:0.8rem;color:#6B7280;text-decoration:none;transition:color .2s;}
.footer-links a:hover{color:#D1D5DB;}
