:root {
  --red: #db001b;
  --red-dark: #9f0014;
  --yellow: #f2b600;
  --yellow-soft: #fff3c7;
  --white: #ffffff;
  --ink: #17120f;
  --muted: #706963;
  --line: rgba(23, 18, 15, .12);
  --shadow: 0 24px 70px rgba(56, 28, 0, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(219, 0, 27, .12), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(242, 182, 0, .20), transparent 30rem),
    #fffdf8;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
  z-index: -1;
}
.page-glow--red { background: var(--red); left: -8rem; top: 12rem; }
.page-glow--yellow { background: var(--yellow); right: -9rem; bottom: 10rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(60, 34, 0, .08);
}
.brand img { width: 170px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a:not(.btn) {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4c433e;
  font-weight: 700;
  font-size: .95rem;
}
.site-nav a:not(.btn):hover { background: var(--yellow-soft); color: var(--red-dark); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-weight: 900;
  letter-spacing: -.02em;
  box-shadow: 0 16px 30px rgba(219, 0, 27, .24);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--ghost {
  background: var(--white);
  color: var(--red-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--small { min-height: 42px; padding: 0 18px; font-size: .95rem; }

main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 48px;
  padding: 76px 0 44px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.4rem, 8vw, 7.9rem);
  line-height: .88;
  letter-spacing: -.085em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.06em;
  margin-bottom: 18px;
}
h3 { font-size: 1.35rem; letter-spacing: -.03em; margin-bottom: 10px; }
.lead {
  max-width: 680px;
  color: #514942;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.proof-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.proof-strip span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(242, 182, 0, .14);
  border: 1px solid rgba(242, 182, 0, .36);
  font-weight: 800;
  color: #6f5100;
}
.hero-card {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(219, 0, 27, .94), rgba(219, 0, 27, .78) 44%, rgba(242, 182, 0, .95)),
    var(--red);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,.32);
}
.hero-card::after {
  content: "RIGBEX";
  position: absolute;
  right: -34px;
  bottom: 26px;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -.09em;
  color: rgba(255,255,255,.16);
  transform: rotate(-90deg);
  transform-origin: center;
}
.price-card {
  position: relative;
  z-index: 1;
  margin-top: 120px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 44px rgba(52, 25, 0, .14);
}
.price-card__label { color: var(--red); font-weight: 900; text-transform: uppercase; font-size: .78rem; letter-spacing: .13em; }
.price-card strong { display: block; margin: 12px 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: .96; letter-spacing: -.07em; }
.price-card p { color: var(--muted); line-height: 1.6; margin: 0; }

section { padding: 82px 0; }
.statement {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement > p { font-size: 1.22rem; line-height: 1.75; color: #4d453f; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(48, 25, 0, .05);
}
.service-card.featured { background: var(--ink); color: var(--white); }
.service-card p { color: var(--muted); line-height: 1.65; }
.service-card.featured p { color: rgba(255,255,255,.76); }
.service-card__number { display: inline-block; margin-bottom: 42px; color: var(--yellow); font-weight: 900; }

.ecommerce-showcase {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}
.showcase-copy {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--yellow-soft);
  border: 1px solid rgba(242, 182, 0, .36);
}
.showcase-copy p:not(.eyebrow) { color: #584d42; line-height: 1.7; font-size: 1.08rem; }
.text-link { color: var(--red-dark); font-weight: 900; }
.model-card {
  margin: 0;
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}
.model-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(219,0,27,.93), rgba(23,18,15,.84));
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.about {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}
.about__panel, .stats {
  padding: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
}
.about__panel p:not(.eyebrow) { color: var(--muted); line-height: 1.75; font-size: 1.1rem; }
.stats { display: grid; gap: 16px; background: linear-gradient(145deg, var(--red), var(--yellow)); }
.stats div { padding: 24px; border-radius: 20px; background: rgba(255,255,255,.88); }
.stats strong { display: block; font-size: 3.4rem; line-height: .9; letter-spacing: -.07em; }
.stats span { display: block; margin-top: 8px; color: var(--muted); font-weight: 800; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline div {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}
.timeline p { color: var(--muted); line-height: 1.6; }

.cta {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 60px;
  padding: 46px;
  border-radius: 34px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -150px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .22;
}
.cta > * { position: relative; z-index: 1; }
.cta p:not(.eyebrow) { color: rgba(255,255,255,.75); line-height: 1.7; }
.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
label { display: grid; gap: 8px; color: rgba(255,255,255,.82); font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font: inherit;
}
textarea { resize: vertical; }
.contact-form small { color: rgba(255,255,255,.52); }

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}
.site-footer img { width: 142px; }
.site-footer a { color: var(--red-dark); font-weight: 900; }

@media (max-width: 920px) {
  .site-header { border-radius: 24px; align-items: flex-start; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .hero, .statement, .ecommerce-showcase, .about, .cta { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-card { min-height: 420px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .brand img { width: 132px; }
  main, .site-header, .site-footer { width: min(100% - 20px, 1180px); }
  section { padding: 56px 0; }
  h1 { font-size: clamp(3.2rem, 18vw, 5rem); }
  .service-grid, .timeline { grid-template-columns: 1fr; }
  .hero-card { min-height: 360px; padding: 18px; }
  .price-card { margin-top: 80px; }
  .model-card { min-height: 480px; }
  .cta { padding: 28px 18px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

.ecom-proof {
  margin: 24px 0 22px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(219, 0, 27, .16);
  box-shadow: 0 16px 34px rgba(75, 35, 0, .08);
}
.ecom-proof strong {
  display: block;
  color: var(--red);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: .82;
  letter-spacing: -.08em;
}
.ecom-proof span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.35;
}
.reveal-contact { margin: 8px 0 18px; }
.quick-contact-box {
  display: grid;
  gap: 8px;
  margin: 2px 0 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}
.quick-contact-box p { margin: 0; color: rgba(255,255,255,.72); font-weight: 800; }
.quick-contact-box a {
  display: inline-flex;
  width: fit-content;
  color: var(--yellow);
  font-weight: 900;
}
.company-data {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.company-data p { margin: 0; color: rgba(255,255,255,.78); }
.company-data a { color: var(--yellow); font-weight: 900; }
.quick-contact {
  font: inherit;
}

.media-proof {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  padding-top: 24px;
}
.media-proof__content {
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: var(--shadow);
}
.media-proof__content .eyebrow { color: var(--yellow); }
.media-proof__content p:not(.eyebrow) {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 1.08rem;
}
.press-quote {
  margin: 0;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(60, 34, 0, .08);
}
.press-quote blockquote {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 900;
}
.press-quote figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
}
.press-quote a { color: var(--red-dark); font-weight: 900; }
.quick-contact-box strong {
  display: inline-flex;
  width: fit-content;
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.06rem;
}
.contact-direct {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.contact-direct__badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 182, 0, .18);
  color: var(--yellow);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}
.contact-direct h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.contact-direct p { margin-bottom: 4px; }
.contact-row {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}
.contact-row span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
}
.contact-row strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  letter-spacing: -.03em;
}
.contact-row--small strong { font-size: 1.12rem; }

@media (max-width: 920px) {
  .media-proof { grid-template-columns: 1fr; }
}


.trusted-heading p:last-child {
  max-width: 760px;
  color: #5d554e;
  line-height: 1.7;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trusted-card {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 24px;
  min-height: 250px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 32px rgba(60, 34, 0, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trusted-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(60, 34, 0, .12);
  border-color: rgba(219, 0, 27, .18);
}
.trusted-card__name {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 182, 0, .14);
  color: #765600;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trusted-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin: auto 0;
}
@media (max-width: 920px) {
  .trusted-grid { grid-template-columns: 1fr; }
}


.media-proof__content .proof-strip {
  margin-top: 20px;
}
.media-proof__content .proof-strip span {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}
.brand img {
  width: 170px;
  height: auto;
  background: transparent;
}
.site-footer img {
  width: 142px;
  background: transparent;
}
/* FINAL FIXES */
.media-proof__content .proof-strip {
  margin-top: 20px;
}
.media-proof__content .proof-strip span {
  background: rgba(255, 255, 255, .18) !important;
  border: 1px solid rgba(255, 255, 255, .42) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}
.brand img,
.site-footer img {
  background: transparent !important;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trusted-card {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 24px;
  min-height: 250px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 32px rgba(60, 34, 0, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trusted-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(60, 34, 0, .12);
  border-color: rgba(219, 0, 27, .18);
}
.trusted-card__name {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 182, 0, .14);
  color: #765600;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trusted-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin: auto 0;
}
@media (max-width: 920px) {
  .trusted-grid { grid-template-columns: 1fr; }
}


/* RESTORED 15 MLN SECTION */
.media-proof {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  padding-top: 24px;
}
.media-proof__content {
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: var(--shadow);
}
.media-proof__content .eyebrow { color: var(--yellow); }
.media-proof__content p:not(.eyebrow) {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 1.08rem;
}
.media-proof__content .proof-strip {
  margin-top: 20px;
}
.media-proof__content .proof-strip span {
  background: rgba(255, 255, 255, .18) !important;
  border: 1px solid rgba(255, 255, 255, .42) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}
.press-quote {
  margin: 0;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(60, 34, 0, .08);
}
.press-quote blockquote {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 900;
}
.press-quote figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
}
.press-quote a { color: var(--red-dark); font-weight: 900; }
@media (max-width: 920px) {
  .media-proof { grid-template-columns: 1fr; }
}
/* CONTACT INFO ONLY */
.cta {
  grid-template-columns: .9fr 1.1fr;
}
.contact-direct {
  min-height: 100%;
}
.contact-direct a,
.company-data a,
.quick-contact-box a {
  pointer-events: none;
  text-decoration: none;
}
@media (max-width: 920px) {
  .cta { grid-template-columns: 1fr; }
}


/* BETTER CONTACT LAYOUT */
.cta {
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  gap: 34px;
}
.cta-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-info > h2, .cta-info > p, .cta-info > .eyebrow {
  max-width: 520px;
}
.reveal-contact {
  align-self: flex-start;
}
.quick-contact-box,
.company-data,
.contact-direct {
  border-radius: 24px;
}
.quick-contact-box,
.company-data {
  max-width: 520px;
}
.quick-contact-box {
  gap: 12px;
  margin-top: 4px;
  padding: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.quick-contact-box strong {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.company-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  margin-top: 16px;
  background: rgba(255,255,255,.08);
}
.company-data p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.contact-direct {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  justify-self: center;
  align-self: center;
}
.contact-row strong {
  font-size: 1.28rem;
}
@media (max-width: 920px) {
  .cta {
    grid-template-columns: 1fr;
  }
  .cta-info,
  .contact-direct,
  .quick-contact-box,
  .company-data {
    max-width: 100%;
  }
}
@media (max-width: 620px) {
  .company-data {
    grid-template-columns: 1fr;
  }
  .quick-contact-box strong,
  .contact-row strong {
    font-size: 1.08rem;
  }
}


/* CONTACT CENTER OVERRIDE */
.cta.cta--centered {
  grid-template-columns: 1fr !important;
  padding: 58px 32px !important;
}
.cta-center {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-center .eyebrow,
.cta-center h2,
.cta-center .cta-lead {
  max-width: 760px;
}
.cta-center .eyebrow {
  margin-bottom: 14px;
}
.cta-center .cta-lead {
  margin-bottom: 24px;
}
.cta-center .reveal-contact {
  align-self: center;
  margin: 4px auto 18px;
}
.cta-center .quick-contact-box {
  width: min(100%, 560px);
  margin: 0 auto 18px;
  justify-items: center;
  text-align: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 22px;
}
.cta-center .quick-contact-box p {
  margin: 0 0 4px;
}
.cta-center .quick-contact-box strong {
  display: block;
  color: var(--yellow);
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.company-data.company-data--centered {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin-top: 4px;
  background: transparent;
  border: 0;
}
.company-data.company-data--centered p {
  margin: 0;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  text-align: center;
}
.company-data.company-data--centered span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.company-data.company-data--centered strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
@media (max-width: 720px) {
  .cta.cta--centered {
    padding: 34px 18px !important;
  }
  .company-data.company-data--centered {
    grid-template-columns: 1fr;
  }
}
/* SEO LOCAL SECTION */
.local-seo {
  padding-top: 74px;
}
.local-seo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.local-seo__grid article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(48, 25, 0, .05);
}
.local-seo__grid h3 {
  color: var(--red-dark);
}
.local-seo__grid p {
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 920px) {
  .local-seo__grid {
    grid-template-columns: 1fr;
  }
}

/* LOCAL SEO 2026 ADDITIONS */
.local-services .section-heading p:not(.eyebrow),
.local-seo .section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
}
.local-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.local-services__grid a {
  display: block;
  min-height: 240px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(48, 25, 0, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.local-services__grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(219,0,27,.22);
  box-shadow: 0 18px 38px rgba(48, 25, 0, .10);
}
.local-services__grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}
.local-services__grid p,
.areas-card p,
.faq-card p,
.seo-page__content p,
.seo-page__content li {
  color: var(--muted);
  line-height: 1.75;
}
.areas-faq {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 20px;
  align-items: stretch;
}
.areas-card,
.faq-card {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(48, 25, 0, .06);
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.area-tags span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(242, 182, 0, .14);
  border: 1px solid rgba(242, 182, 0, .34);
  color: #6f5100;
  font-weight: 900;
}
.faq-card details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq-card details:last-child { border-bottom: 1px solid var(--line); }
.faq-card summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.02em;
}
.faq-card details p { margin: 12px 0 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.footer-links a {
  color: var(--red-dark);
  font-weight: 900;
}
.seo-page-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 42px;
  padding: 74px 0 42px;
}
.seo-page-hero__card {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--red), var(--yellow));
  color: #fff;
  box-shadow: var(--shadow);
}
.seo-page-hero__card p { color: rgba(255,255,255,.84); line-height: 1.7; }
.seo-page__content {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}
.seo-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
}
.seo-list {
  margin: 0;
  padding-left: 1.1rem;
}
.related-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.related-links a {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--yellow-soft);
  color: var(--red-dark);
  font-weight: 900;
}
@media (max-width: 1080px) {
  .local-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .areas-faq, .seo-page-hero, .seo-page__content { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; }
}
@media (max-width: 620px) {
  .local-services__grid { grid-template-columns: 1fr; }
  .areas-card, .faq-card, .seo-panel, .seo-page-hero__card { padding: 24px; }
}
