.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.3fr);
  gap: 44px;
  align-items: center;
  padding: 60px 5% 60px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,250,241,0.98), rgba(255,243,216,0.84)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=75") center/cover fixed;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,170,88,0.28), transparent 68%);
  pointer-events: none;
}

.hero-actions,
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-visual {
    min-height: 580px;
  }
}

@media (min-width: 1024px) {
  .hero-visual {
    min-height: 660px;
  }
}

.network-hero {
  isolation: isolate;
}

.web-spoke {
  stroke: rgba(214,170,88,0.14);
  stroke-width: 0.65;
}

.web-ring {
  stroke: rgba(214,170,88,0.11);
  stroke-width: 0.65;
}

.network-svg {
  width: min(480px, 90%);
  filter: drop-shadow(0 8px 18px rgba(82,62,25,0.13));
  position: relative;
  z-index: 2;
  transition: width 0.3s ease;
  overflow: visible;
  will-change: transform;
}

@media (min-width: 768px) {
  .network-svg {
    width: min(580px, 95%);
  }
}

@media (min-width: 1024px) {
  .network-svg {
    width: min(640px, 85%);
  }
}

.network-svg .flow-line {
  fill: none;
  stroke: url(#flowGradient);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  animation: flowPulse 2.7s linear infinite;
}

.network-svg .hub-line {
  opacity: 0.85;
}

.network-svg .loop-line {
  stroke-width: 1.5;
  opacity: 0.44;
  stroke-dasharray: 6 12;
}

.network-svg .flow-line:nth-child(1) { animation-delay: 0s; }
.network-svg .flow-line:nth-child(2) { animation-delay: 0.3s; }
.network-svg .flow-line:nth-child(3) { animation-delay: 0.6s; }
.network-svg .flow-line:nth-child(4) { animation-delay: 0.9s; }
.network-svg .flow-line:nth-child(5) { animation-delay: 1.2s; }
.network-svg .flow-line:nth-child(6) { animation-delay: 1.5s; }

@keyframes flowPulse {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -104; }
}

.network-svg .center-ring {
  animation: centerGlow 2.5s ease-in-out infinite;
}

@keyframes centerGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

.network-svg .center-accent {
  animation: accentPulse 2.5s ease-in-out infinite;
}

@keyframes accentPulse {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 8; opacity: 0.55; }
}

.network-cards {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 90px;
  padding: 16px;
  pointer-events: none;
  z-index: 3;
}

@media (min-width: 768px) {
  .network-cards {
    gap: 120px;
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .network-cards {
    gap: 150px;
    padding: 28px;
  }
}

.network-card {
  position: relative;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(214,170,88,0.32);
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(82,62,25,0.16);
  opacity: 0;
  animation: cardFadeInUp 0.6s ease-out forwards;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

@media (min-width: 768px) {
  .network-card {
    padding: 16px;
  }
}

@media (min-width: 1024px) {
  .network-card {
    padding: 20px;
  }
}

.network-card:hover {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 48px rgba(82,62,25,0.18);
  transform: translateY(-4px);
}

.card-model   { grid-column: 1; grid-row: 1; align-self: end;   justify-self: end;   animation-delay: 0.1s; border-top: 3px solid #d6aa58; }
.card-finance { grid-column: 2; grid-row: 1; align-self: end;   justify-self: start; animation-delay: 0.2s; border-top: 3px solid #1d9e75; }
.card-sales   { grid-column: 2; grid-row: 2; align-self: start; justify-self: start; animation-delay: 0.3s; border-bottom: 3px solid #d6aa58; }
.card-legal   { grid-column: 1; grid-row: 2; align-self: start; justify-self: end;   animation-delay: 0.4s; border-bottom: 3px solid #1d9e75; }

@keyframes cardFadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.network-card .card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .network-card .card-label {
    font-size: 10px;
    margin-bottom: 6px;
  }
}

.network-card strong {
  display: block;
  font-size: 18px;
  color: var(--heading);
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .network-card strong {
    font-size: 20px;
    margin-bottom: 6px;
  }
}

@media (min-width: 1024px) {
  .network-card strong {
    font-size: 22px;
    margin-bottom: 8px;
  }
}

.network-card p {
  font-size: 11px;
  color: var(--stone);
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .network-card p {
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (min-width: 1024px) {
  .network-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.system-svg {
  width: min(430px, 100%);
  filter: drop-shadow(0 32px 60px rgba(0,0,0,0.35));
}

.system-svg .ring {
  transform-origin: center;
  animation: rotateRing 18s linear infinite;
}

.system-svg .node {
  animation: nodeGlow 2.2s ease-in-out infinite;
}

.system-svg .node:nth-child(2n) { animation-delay: 0.5s; }

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

@keyframes nodeGlow {
  50% { opacity: 0.45; transform: scale(0.96); }
}

.section {
  padding: 86px 5%;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 15%, var(--line) 85%, transparent 100%);
}

.section.alt {
  background: linear-gradient(180deg, var(--gold-soft) 0%, #fff8e6 100%);
}

.section.alt::before {
  background: linear-gradient(90deg, transparent 0%, rgba(214,170,88,0.22) 15%, rgba(214,170,88,0.22) 85%, transparent 100%);
}

.section.teal {
  background: linear-gradient(180deg, var(--teal-xsoft) 0%, #f8fefc 100%);
}

.section.teal::before {
  background: linear-gradient(90deg, transparent 0%, var(--teal-line) 15%, var(--teal-line) 85%, transparent 100%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: var(--heading);
}

.metric-grid,
.card-grid,
.solution-grid,
.values-grid,
.contact-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric-grid { grid-template-columns: repeat(4, 1fr); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.solution-grid { grid-template-columns: repeat(2, 1fr); }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 0.8fr 1.2fr; }

.metric,
.card,
.solution-card,
.value-card,
.contact-panel {
  background: var(--paper);
  padding: 28px;
}

.alt .metric,
.alt .card,
.alt .solution-card,
.alt .value-card,
.alt .contact-panel {
  background: var(--navy-900);
}

.teal .metric,
.teal .card,
.teal .solution-card,
.teal .value-card,
.teal .contact-panel {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
}

.teal .card::before,
.teal .solution-card::before,
.teal .value-card::before {
  background: var(--teal-600);
}

.teal .card-number,
.teal .metric strong {
  color: var(--teal-700);
}

.teal .card:hover,
.teal .solution-card:hover,
.teal .value-card:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: var(--teal-shadow);
}

.metric strong {
  display: block;
  color: #a77925;
  font: 700 42px "Playfair Display", Georgia, serif;
  line-height: 1;
}

.metric span,
.card p,
.solution-card p,
.value-card p,
.contact-panel p,
.download-panel p {
  color: var(--stone);
  font-size: 14px;
}

.card,
.solution-card,
.value-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.card:hover,
.solution-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: #fff7e6;
}

.card::after,
.solution-card::after,
.value-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 0;
  background: rgba(214,170,88,0.08);
  transition: width 300ms ease;
}

.card:hover::after,
.solution-card:hover::after,
.value-card:hover::after {
  width: 100%;
}

.card::before,
.solution-card::before,
.value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
}

.card-number {
  color: #a77925;
  font: 700 42px "Playfair Display", Georgia, serif;
  line-height: 1;
}

.card h3,
.solution-card h3,
.value-card h3 {
  color: var(--heading);
  font-size: 22px;
  margin-top: 26px;
}

.parallax-band {
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: 70px 5%;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,250,241,0.18) 0%, rgba(242,250,247,0.72) 50%, rgba(255,250,241,0.96) 100%),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=75") center/cover fixed;
}

.parallax-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-600), var(--gold));
  opacity: 0.5;
}

.parallax-band .content {
  max-width: 760px;
}

.parallax-band p { color: var(--stone); }

.download-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--paper), var(--gold-soft));
}

.download-icon {
  width: 86px;
  height: 112px;
  border: 1px solid var(--gold);
  background: rgba(214,170,88,0.18);
  position: relative;
  display: grid;
  place-items: center;
  color: #a77925;
  animation: documentFloat 3s ease-in-out infinite;
}

.download-icon::before {
  content: "PDF";
  font-weight: 800;
  letter-spacing: 0.08em;
}

@keyframes documentFloat {
  50% { transform: translateY(-8px); }
}

.slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 34%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
}

.auto-slider {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 18px;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
}

.auto-slider::-webkit-scrollbar {
  display: none;
}

.auto-slider .slider-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: deliverablesMarquee 39.9s linear infinite;
}

.auto-slider:hover .slider-track {
  animation-play-state: paused;
}

.auto-slider .slide {
  width: min(340px, 82vw);
  flex: 0 0 auto;
}

.deliverables-carousel {
  display: block !important;
  width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 6px 0 18px;
  scrollbar-width: none;
  cursor: grab;
}

.deliverables-carousel:active {
  cursor: grabbing;
}

.deliverables-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-shell {
  position: relative;
  padding: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(214,170,88,0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  color: var(--heading);
  box-shadow: none;
  backdrop-filter: blur(4px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.carousel-arrow:hover {
  background: rgba(214,170,88,0.18);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-left {
  left: 12px;
}

.carousel-arrow-right {
  right: 12px;
}

.deliverables-carousel .slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  width: max-content;
  gap: 18px;
  animation: deliverablesMarquee 39.9s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.deliverables-carousel:hover .slider-track {
  animation-play-state: paused;
}

.deliverables-carousel .slide {
  display: block;
  width: min(340px, 82vw) !important;
  min-width: min(340px, 82vw) !important;
  max-width: min(340px, 82vw) !important;
  flex: 0 0 min(340px, 82vw) !important;
}

@keyframes deliverablesMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-33.333% - 6px)); }
}

.slide {
  position: relative;
  min-height: 230px;
  scroll-snap-align: start;
  padding: 28px 26px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--paper), var(--gold-soft));
  transition: border-color 180ms ease, transform 180ms ease;
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 54px;
  border: 1px solid rgba(214,170,88,0.42);
  background:
    linear-gradient(135deg, rgba(255,255,255,0) 0 72%, rgba(214,170,88,0.22) 73%),
    rgba(255,255,255,0.56);
  box-shadow: 0 10px 24px rgba(82,62,25,0.1);
}

.slide::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 44px;
  width: 18px;
  height: 2px;
  background: rgba(138,100,31,0.36);
  box-shadow: 0 7px 0 rgba(138,100,31,0.26), 0 14px 0 rgba(138,100,31,0.18);
}

.slide:hover {
  border-color: var(--gold);
  transform: translateY(-6px) scale(0.985);
  box-shadow: var(--shadow);
}

.slide span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(214,170,88,0.34);
  background: rgba(255,255,255,0.72);
  color: #a77925;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slide strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--heading);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  margin-top: 42px;
  max-width: 250px;
}

.slide p {
  position: relative;
  z-index: 1;
  padding-top: 16px;
  border-top: 1px solid rgba(82,62,25,0.12);
  color: var(--stone);
  font-size: 14px;
  line-height: 1.55;
}

.slide p::before {
  content: "Preview";
  display: block;
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   STANDARDS + DIFFERENCE SECTION
   ============================================================ */

.standards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 44px;
}

.standard-item {
  background: var(--paper);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
  transition: background 220ms ease;
}

.standard-item:hover {
  background: var(--gold-soft);
}

.standard-item strong {
  display: block;
  color: var(--heading);
  font-size: 14px;
  font-family: "Playfair Display", Georgia, serif;
  margin-bottom: 10px;
  line-height: 1.3;
}

.standard-item span {
  color: var(--stone);
  font-size: 13px;
  line-height: 1.6;
}

.diff-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.diff-col {
  padding: 38px 36px;
}

.diff-col-others {
  background: var(--paper);
}

.diff-col-us {
  background: linear-gradient(145deg, #f5f0e8, var(--gold-soft));
}

.diff-divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}

.diff-col .eyebrow {
  margin-bottom: 22px;
}

.diff-col-others .eyebrow {
  color: var(--muted);
}

.diff-col-us .eyebrow {
  color: var(--teal-600);
}

.diff-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.diff-col ul li {
  font-size: 14.5px;
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}

.diff-col-others ul li {
  color: var(--muted);
}

.diff-col-others ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(82,62,25,0.3);
  font-weight: 300;
}

.diff-col-us ul li {
  color: var(--heading);
  font-weight: 500;
}

.diff-col-us ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 700;
}

.diff-col-us ul li strong {
  color: #a77925;
}

@media (max-width: 980px) {
  .standards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .standards-row {
    grid-template-columns: 1fr;
  }

  .diff-compare {
    grid-template-columns: 1fr;
  }

  .diff-divider {
    width: auto;
    height: 1px;
    align-self: auto;
  }

  .diff-col {
    padding: 28px 22px;
  }
}

/* ============================================================
   TEAL SECTION — COMPONENT OVERRIDES
   ============================================================ */

.section.teal .standard-item {
  background: rgba(255,255,255,0.72);
  border-top-color: var(--teal-600);
}

.section.teal .standard-item:hover {
  background: rgba(255,255,255,0.96);
}

.section.teal .faq-item {
  background: rgba(255,255,255,0.7);
}

.section.teal .faq-item[open] {
  border-color: rgba(29,158,117,0.45);
  box-shadow: 0 6px 28px rgba(29,158,117,0.08);
}

.section.teal .faq-item:hover {
  border-color: rgba(29,158,117,0.35);
}

.section.teal .faq-item summary::after {
  border-color: rgba(29,158,117,0.4);
  color: var(--teal-700);
}

.section.teal .faq-item[open] summary::after {
  background: rgba(29,158,117,0.1);
}

.section.teal .slide {
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(242,250,247,0.95));
}

.section.teal .slide:hover {
  border-color: var(--teal-600);
  box-shadow: var(--teal-shadow);
}

.section.teal .diff-compare {
  border-color: var(--teal-line);
}

.section.teal .diff-col-us {
  background: linear-gradient(145deg, rgba(230,244,239,0.6), rgba(242,250,247,0.8));
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-logo-link {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  text-decoration: none;
  transition: background 240ms ease, box-shadow 240ms ease;
  min-height: 150px;
}

.brand-logo-link:hover {
  background: inherit;
}

.brand-logo-link img {
  height: 80px;
  max-width: 160px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 280ms ease, transform 320ms ease;
}

.brand-logo-link:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Wow Momo */
.brand-logo-link[data-brand="wowmomo"] { background: #F5C400; }
.brand-logo-link[data-brand="wowmomo"]:hover { background: #C49A00; }
.brand-logo-link[data-brand="wowmomo"] img { filter: grayscale(0%) opacity(1); transition: transform 320ms ease; }
.brand-logo-link[data-brand="wowmomo"]:hover img { transform: scale(1.1); }

/* Rangoli */
.brand-logo-link[data-brand="rangoli"] { background: #CC1A1A; }
.brand-logo-link[data-brand="rangoli"]:hover { background: #8C0F0F; }
.brand-logo-link[data-brand="rangoli"] img { filter: grayscale(0%) opacity(1); transition: transform 320ms ease; }
.brand-logo-link[data-brand="rangoli"]:hover img { transform: scale(1.1); }

/* Tea Post */
.brand-logo-link[data-brand="teapost"] { background: #2E7D32; }
.brand-logo-link[data-brand="teapost"]:hover { background: #1B4D1E; }
.brand-logo-link[data-brand="teapost"] img { filter: grayscale(0%) opacity(1); transition: transform 320ms ease; }
.brand-logo-link[data-brand="teapost"]:hover img { transform: scale(1.1); }

/* Zeppoli */
.brand-logo-link[data-brand="zeppoli"] { background: #1A0A00; }
.brand-logo-link[data-brand="zeppoli"]:hover { background: #3D1800; }
.brand-logo-link[data-brand="zeppoli"] img { filter: grayscale(0%) opacity(1); transition: transform 320ms ease; }
.brand-logo-link[data-brand="zeppoli"]:hover img { transform: scale(1.1); }

/* Fusion Pizza */
.brand-logo-link[data-brand="fusionpizza"] { background: #1A3A7A; }
.brand-logo-link[data-brand="fusionpizza"]:hover { background: #0D2050; }
.brand-logo-link[data-brand="fusionpizza"] img { filter: grayscale(0%) opacity(1); transition: transform 320ms ease; }
.brand-logo-link[data-brand="fusionpizza"]:hover img { transform: scale(1.1); }

/* Rangoli — portrait logo, needs taller height */
.brand-logo-link[data-brand="rangoli"] img {
  height: 115px;
  max-width: 100px;
}

/* Zeppoli — wide logo with white canvas, push max-width */
.brand-logo-link[data-brand="zeppoli"] img {
  height: 90px;
  max-width: 210px;
}

/* Fusion Pizza — very wide landscape, height down, width up */
.brand-logo-link[data-brand="fusionpizza"] img {
  height: 64px;
  max-width: 220px;
}

/* Farki — always red bg, darker on hover */
.brand-logo-link[data-brand="farki"] {
  background: #CC1F1F;
}

.brand-logo-link[data-brand="farki"]:hover {
  background: #8C0F0F;
}

.brand-logo-link[data-brand="farki"] img {
  filter: grayscale(0%) opacity(1);
  transition: transform 320ms ease;
}

.brand-logo-link[data-brand="farki"]:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Atmango — gold always, darker on hover */
.brand-logo-link[data-brand="atmango"] { background: #d6aa58; }
.brand-logo-link[data-brand="atmango"]:hover { background: #a07828; }

.brand-logo-link[data-brand="atmango"] img {
  height: 100px;
  object-fit: contain;
  filter: grayscale(0%) opacity(1);
  transition: transform 320ms ease;
}

.brand-logo-link[data-brand="atmango"]:hover img {
  transform: scale(1.1);
}

.section.teal .brand-logo-link:not([data-brand]) {
  background: rgba(255,255,255,0.72);
}

.section.teal .brand-logo-link:not([data-brand]):hover {
  background: rgba(255,255,255,0.98);
}


@media (max-width: 980px) {
  .brand-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .brand-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-logo-link {
    padding: 24px 16px;
    min-height: 110px;
  }

  .brand-logo-link img {
    height: 56px;
  }

  .brand-logo-link[data-brand="atmango"] img {
    height: 56px;
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.testimonial-card {
  margin: 0;
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: background 220ms ease;
}

.testimonial-card:hover {
  background: var(--gold-soft);
}

.section.teal .testimonial-card {
  background: rgba(255,255,255,0.72);
}

.section.teal .testimonial-card:hover {
  background: rgba(255,255,255,0.96);
}

.section.teal .testimonial-card p::before {
  color: var(--teal-600);
}

.testimonial-card p {
  color: var(--heading);
  font-size: 15px;
  line-height: 1.72;
  font-style: italic;
  margin: 0;
}

.testimonial-card p::before {
  content: "\201C";
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-cite {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.testimonial-cite strong {
  color: var(--heading);
  font-size: 13px;
}

.testimonial-cite span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

/* ============================================================
   IS THIS FOR ME — QUALIFYING SECTION
   ============================================================ */

.qualify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.qualify-item {
  background: var(--paper);
  padding: 30px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 220ms ease;
}

.qualify-item:hover {
  background: var(--gold-soft);
}

.qualify-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-100);
  display: grid;
  place-items: center;
  color: var(--teal-600);
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}

.qualify-item h3 {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.qualify-item p {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

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

/* ============================================================
   DARK COMMITMENT BAND
   ============================================================ */

.dark-band {
  background: linear-gradient(135deg, #17130d 0%, #1a1f1c 60%, #141f1b 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dark-band::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 30%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,170,88,0.07), transparent 68%);
  pointer-events: none;
}

.dark-band::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,0.1), transparent 68%);
  pointer-events: none;
}

.dark-band .eyebrow {
  color: var(--gold);
  opacity: 0.8;
}

.dark-band h2 {
  color: #fffaf1;
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.2;
}

.dark-band p {
  color: rgba(255,250,241,0.62);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.dark-band .cta-row {
  justify-content: center;
}

.dark-band .btn-primary {
  background: var(--gold);
  color: #17130d;
}

.dark-band .btn-secondary {
  border-color: rgba(214,170,88,0.4);
  color: rgba(255,250,241,0.8);
}

.dark-band .btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(214,170,88,0.12);
  color: #fffaf1;
}

/* ============================================================
   FOOTER CTA BAND
   ============================================================ */

.pre-footer-band {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, var(--paper), var(--gold-soft));
}

.pre-footer-entry {
  padding: 44px 5%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pre-footer-entry .eyebrow {
  margin-bottom: 6px;
}

.pre-footer-entry h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--heading);
  margin-bottom: 6px;
}

.pre-footer-entry p {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.pre-footer-divider {
  background: var(--line);
  width: 1px;
  align-self: stretch;
}

@media (max-width: 720px) {
  .pre-footer-band {
    grid-template-columns: 1fr;
  }

  .pre-footer-divider {
    width: auto;
    height: 1px;
  }

  .pre-footer-entry {
    padding: 32px 5%;
  }
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(214,170,88,0.2));
  z-index: 0;
}

.timeline-step {
  position: relative;
  padding: 0 12px 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 220ms ease, border-color 220ms ease;
}

.timeline-step:hover .timeline-dot {
  background: var(--gold);
}

.timeline-dot span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: #a77925;
  transition: color 220ms ease;
}

.timeline-step:hover .timeline-dot span {
  color: var(--heading);
}

.timeline-content {
  padding-right: 8px;
}

.timeline-content strong {
  display: block;
  color: var(--heading);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--stone);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 980px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    padding: 0 16px 0 0;
    border-left: 2px solid var(--gold);
    padding-left: 16px;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 0;
    border-left: none;
    border-bottom: 1px solid var(--line);
  }

  .timeline-step:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   SOLUTION — TWO OFFERINGS
   ============================================================ */

.offering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.offering-card {
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.offering-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.offering-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, var(--paper), var(--gold-soft));
}

.offering-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(214,170,88,0.4);
  background: rgba(214,170,88,0.1);
  color: #a77925;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.offering-card-header h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--heading);
  margin-bottom: 10px;
}

.offering-card-header p {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.offering-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offering-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.offering-includes li {
  font-size: 14px;
  color: var(--heading);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.offering-includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 13px;
}

.offering-scope {
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .offering-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offering-card-header,
  .offering-card-body {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* ============================================================
   2-STEP FORM
   ============================================================ */

.form-progress {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--line);
}

.form-progress-step {
  flex: 1;
  padding: 12px 16px;
  background: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  border-right: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease;
}

.form-progress-step:last-child {
  border-right: none;
}

.form-progress-step.active {
  background: var(--gold-soft);
  color: var(--heading);
}

.form-progress-step.done {
  background: var(--teal-100);
  color: var(--teal-700);
}

.form-progress-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 200ms ease, color 200ms ease;
}

.form-progress-step.active .form-progress-num {
  background: var(--gold);
  color: var(--heading);
}

.form-progress-step.done .form-progress-num {
  background: var(--teal-600);
  color: #fff;
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  gap: 16px;
}

.form-step-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 480px) {
  .form-progress-step span:not(.form-progress-num) {
    display: none;
  }
}
