:root {
  --ink: #071b18;
  --muted: #65736f;
  --cream: #f5f8f3;
  --white: #ffffff;
  --mint: #dff8eb;
  --green: #08745f;
  --green-2: #062f29;
  --cyan: #28d7c0;
  --amber: #f6be45;
  --brick: #e15d48;
  --line: rgba(7, 27, 24, 0.12);
  --shadow: 0 30px 90px rgba(6, 47, 41, 0.18);
  --soft-shadow: 0 18px 44px rgba(6, 47, 41, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbf6 0%, var(--cream) 45%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: clamp(12px, 3vw, 46px);
  right: clamp(12px, 3vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(6, 47, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(4, 24, 21, 0.2);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(6, 47, 41, 0.96);
  box-shadow: 0 14px 44px rgba(4, 24, 21, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #ffe499);
  color: #1b1407;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(246, 190, 69, 0.36);
}

.brand-logo {
  width: 54px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav a {
  border-radius: 999px;
  padding: 11px 13px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 42px);
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.language-switcher button {
  min-height: 36px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  border-radius: 999px;
}

.language-switcher button.is-active {
  background: var(--amber);
  color: #1b1407;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: 138px clamp(20px, 5vw, 78px) 68px;
  background:
    radial-gradient(circle at 12% 18%, rgba(40, 215, 192, 0.22), transparent 30%),
    radial-gradient(circle at 78% 16%, rgba(246, 190, 69, 0.2), transparent 28%),
    linear-gradient(135deg, #f4fff9 0%, #edf7ef 48%, #fff8e7 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 86px clamp(18px, 5vw, 82px) 42px;
  border: 1px solid rgba(8, 116, 95, 0.12);
  border-radius: 34px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber), var(--brick));
}

.hero-image,
.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 58px 36px;
  overflow: hidden;
  background: var(--green-2);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.03);
}

.deal-ticket {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(360px, 92%);
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(6, 47, 41, 0.2);
  backdrop-filter: blur(16px);
}

.deal-ticket small {
  display: block;
  color: var(--brick);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deal-ticket strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1;
}

.deal-ticket span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--brick);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  color: var(--green-2);
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--green-2);
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.hero-copy {
  max-width: 620px;
  color: #4a5c56;
  font-size: clamp(1.03rem, 1.7vw, 1.26rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #0aa889);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(8, 116, 95, 0.24);
}

.btn-primary:hover {
  background: var(--green-2);
}

.btn-secondary {
  border-color: rgba(23, 73, 61, 0.24);
  color: var(--green);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 30px rgba(7, 27, 24, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(740px, 100%);
  margin-top: 46px;
}

.hero-stats div {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 73, 61, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(6, 47, 41, 0.08);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--green);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
}

.hero-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px clamp(20px, 5vw, 78px);
  background: var(--green-2);
}

.trust-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  text-align: center;
  color: var(--white);
  font-weight: 900;
}

.charting-panel,
.hotline-section,
.gallery-section,
.forum-events,
.support-feedback,
.whatsapp-section {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 5vw, 74px);
}

.charting-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,243,0.9));
}

.chart-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(260px, 1fr);
  gap: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(40, 215, 192, 0.22), transparent 34%),
    linear-gradient(135deg, var(--green-2), #063f36);
  color: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.chart-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(52px, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 260px;
}

.bar {
  display: grid;
  align-content: end;
  gap: 10px;
  min-width: 0;
  height: 100%;
}

.bar span:first-child {
  display: block;
  min-height: 20px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--cyan), var(--amber));
  box-shadow: 0 12px 26px rgba(40, 215, 192, 0.18);
}

.bar strong,
.bar small {
  display: block;
  text-align: center;
}

.bar strong {
  color: var(--amber);
  font-size: 0.95rem;
}

.bar small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.hotline-section {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  background: var(--cream);
}

.hotline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hotline-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hotline-grid article:hover,
.deal-card:hover,
.whatsapp-grid article:hover,
.forum-panel:hover,
.events-panel:hover,
.support-box:hover,
.feedback-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hotline-grid span {
  color: var(--brick);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hotline-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--green);
  font-size: 1.32rem;
  line-height: 1.12;
}

.hotline-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.gallery-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(40, 215, 192, 0.16), transparent 28%),
    linear-gradient(135deg, #041d19, var(--green-2));
  color: var(--white);
}

.gallery-section h2 {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 42px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.gallery-filters button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-weight: 900;
  padding: 0 16px;
  cursor: pointer;
}

.gallery-filters button.is-active {
  background: var(--amber);
  border-color: var(--amber);
  color: #1b1407;
}

.gallery-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #0a1b18;
  border-radius: 26px;
  cursor: zoom-in;
}

.gallery-grid figure.wide {
  min-height: 480px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(251, 247, 239, 0.92);
  color: var(--green-2);
  font-weight: 900;
  border-radius: 16px;
}

.gallery-grid figcaption span {
  color: var(--brick);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: clamp(18px, 5vw, 54px);
  background: rgba(2, 16, 14, 0.86);
  backdrop-filter: blur(12px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  max-width: min(1080px, 100%);
  max-height: 78vh;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.forum-events {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: 18px;
  background: linear-gradient(135deg, var(--mint), #f8fff9);
}

.forum-panel,
.events-panel,
.support-box,
.feedback-box {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(23, 73, 61, 0.12);
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.mini-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mini-form input,
.mini-form select,
.mini-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 32, 29, 0.16);
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  border-radius: 14px;
}

.mini-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.event-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.event-list article,
.forum-list article {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 18px;
}

.forum-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.forum-list strong {
  display: block;
  color: var(--green);
}

.forum-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.event-list time {
  color: var(--brick);
  font-weight: 900;
}

.event-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-feedback {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.82fr);
  gap: 18px;
  background: var(--cream);
}

.feedback-box {
  background:
    radial-gradient(circle at 90% 8%, rgba(246, 190, 69, 0.28), transparent 30%),
    linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
}

.feedback-box h2 {
  color: var(--white);
}

.feedback-box .mini-form input,
.feedback-box .mini-form select,
.feedback-box .mini-form textarea {
  background: rgba(255, 255, 255, 0.94);
}

.feedback-box .btn-primary {
  background: var(--amber);
  color: #1b1407;
}

.qr-code {
  width: 152px;
  height: 152px;
  object-fit: contain;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.feedback-box .qr-code {
  margin-top: 22px;
}

.whatsapp-section {
  background: var(--white);
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.whatsapp-grid article {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.whatsapp-grid .btn-secondary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 5vw, 74px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.82;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 5vw, 74px) clamp(74px, 10vw, 128px);
  gap: 18px;
}

.deal-card {
  min-height: 308px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.deal-card.featured {
  background:
    radial-gradient(circle at 88% 14%, rgba(246, 190, 69, 0.28), transparent 28%),
    linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
  box-shadow: var(--shadow);
}

.deal-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.deal-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.icon-pill {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 34px;
  margin-bottom: 72px;
  padding: 0 12px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
  border-radius: 999px;
}

.featured .icon-pill {
  background: var(--amber);
  color: #1b1407;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background:
    linear-gradient(135deg, #ecfff5, var(--mint));
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 73, 61, 0.12);
  border-radius: 20px;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.66;
}

.check {
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  background: var(--green);
  border-radius: 50%;
}

.check::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 7px;
  height: 13px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.process {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 5vw, 74px);
  background:
    linear-gradient(180deg, var(--white), #f8fbf6);
}

.centered {
  width: min(780px, 100%);
  margin-inline: auto;
  text-align: center;
}

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

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
}

.timeline div {
  position: relative;
  min-height: 252px;
  padding: 58px 24px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.timeline strong {
  position: absolute;
  top: 0;
  left: 24px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  background: var(--amber);
  color: #1b1407;
  font-weight: 900;
  border-radius: 50%;
}

.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
  gap: 34px;
  align-items: end;
  padding: clamp(62px, 9vw, 106px) clamp(20px, 8vw, 130px);
  background:
    radial-gradient(circle at 90% 20%, rgba(40, 215, 192, 0.2), transparent 32%),
    linear-gradient(135deg, #041d19, var(--green-2));
  color: var(--white);
}

.quote-section blockquote {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(1.8rem, 4.2vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.quote-section p {
  margin: 0;
  color: var(--amber);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.76fr);
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(70px, 10vw, 124px) clamp(20px, 5vw, 74px);
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-lines a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(246, 190, 69, 0.24), transparent 28%),
    linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  border-radius: 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  background: var(--amber);
  color: #1b1407;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 74px);
  background: #061b18;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--amber);
  font-weight: 900;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 185, 66, 0.62);
  background: var(--amber);
  color: #061b18;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1080px) {
  .nav a {
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 126px;
  }

  .hero-media {
    min-height: 470px;
  }

  .hero-photo {
    inset: 0 0 42px 26px;
  }

  .deal-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .service-band,
  .contact,
  .quote-section,
  .charting-panel,
  .hotline-section,
  .forum-events,
  .support-feedback {
    grid-template-columns: 1fr;
  }

  .chart-card,
  .gallery-grid,
  .whatsapp-grid {
    grid-template-columns: 1fr;
  }

  .hotline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .language-switcher {
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    background: rgba(15, 48, 42, 0.98);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    border-radius: 20px;
  }

  .nav.is-open {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 118px 18px 42px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-photo {
    inset: 0 0 70px 0;
    border-radius: 24px;
  }

  .deal-ticket {
    width: calc(100% - 24px);
    left: 12px;
  }

  .hero-stats,
  .trust-strip,
  .deal-grid,
  .timeline,
  .hotline-grid {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    gap: 34px;
  }

  .timeline::before {
    display: none;
  }

  .deal-grid {
    padding-inline: 18px;
  }

  .deal-card,
  .timeline div,
  .contact-form {
    padding: 22px;
  }

  .timeline div {
    padding-top: 56px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Vodacom-inspired service portal refresh for Done Deal Dealers. */
:root {
  --brand-red: #00866f;
  --brand-red-dark: #06463e;
  --brand-red-soft: #e9fbf4;
  --portal-dark: #1f1f1f;
  --portal-gray: #f3f4f5;
}

.site-header {
  top: 0;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: transparent;
  box-shadow: none;
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  padding: 0 clamp(18px, 5vw, 76px);
  background: #063b36;
  color: var(--white);
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 800;
}

.utility-links a {
  opacity: 0.9;
}

.utility-links a:hover {
  opacity: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 0 clamp(18px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.brand {
  color: var(--portal-dark);
}

.brand-mark {
  border-radius: 50%;
  background: linear-gradient(135deg, #00866f, #23d0b3);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 134, 111, 0.28);
}

.brand small {
  color: #00866f;
}

.nav {
  color: var(--portal-dark);
}

.nav a {
  color: #333333;
  border-radius: 6px;
  padding: 13px 12px;
}

.nav a:hover {
  background: var(--brand-red-soft);
  color: #00866f;
}

.nav .nav-cta {
  background: linear-gradient(135deg, #00866f, #0bb99d);
  color: var(--white);
  border-radius: 999px;
  padding-inline: 18px;
  box-shadow: 0 12px 26px rgba(0, 134, 111, 0.22);
}

.nav .nav-cta:hover {
  background: var(--brand-red-dark);
  color: var(--white);
}

.language-switcher {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}

.language-switcher button.is-active {
  background: var(--white);
  color: #00866f;
}

.hero {
  min-height: 760px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  padding-top: 154px;
  background:
    linear-gradient(100deg, rgba(4, 47, 42, 0.96) 0%, rgba(0, 134, 111, 0.9) 46%, rgba(0, 134, 111, 0.2) 78%),
    url("assets/zanzibar-float-service.png") right center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  display: none;
}

.hero::after {
  height: 0;
}

.hero-content {
  max-width: 680px;
}

.hero-media {
  min-height: 500px;
}

.hero-photo {
  inset: 26px 0 80px 30px;
  border: 10px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.hero-photo img {
  object-position: center;
}

.hero .eyebrow,
.hero h1,
.hero-copy {
  color: var(--white);
}

.hero .eyebrow::before {
  background: var(--white);
}

.hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions .btn-primary {
  background: var(--white);
  color: #00866f;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.hero-actions .btn-primary:hover {
  background: #e9fbf4;
}

.hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.hero-stats strong,
.hero-stats span {
  color: var(--white);
}

.deal-ticket {
  background: var(--white);
  color: var(--portal-dark);
  border-radius: 10px;
}

.deal-ticket small {
  color: #00866f;
}

.quick-actions {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 36px));
  margin: -64px auto 0;
}

.quick-actions a {
  display: grid;
  gap: 10px;
  min-height: 156px;
  padding: 22px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quick-actions a:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

.quick-actions span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00866f, #23d0b3);
  color: var(--white);
  font-weight: 900;
}

.quick-actions strong {
  color: var(--portal-dark);
  font-size: 1.1rem;
}

.quick-actions small {
  color: var(--muted);
  line-height: 1.45;
}

.trust-strip {
  margin-top: 70px;
  background: var(--portal-gray);
}

.trust-strip span {
  background: var(--white);
  color: var(--portal-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.charting-panel,
.hotline-section,
.section.intro,
.process,
.support-feedback,
.whatsapp-section {
  background: var(--portal-gray);
}

.eyebrow,
.eyebrow.dark {
  color: #00866f;
}

h2 {
  color: var(--portal-dark);
}

.btn-primary,
.whatsapp-grid .btn-secondary {
  background: linear-gradient(135deg, #00866f, #0bb99d);
  color: var(--white);
}

.btn-primary:hover,
.whatsapp-grid .btn-secondary:hover {
  background: var(--brand-red-dark);
}

.chart-card,
.deal-card.featured,
.feedback-box,
.contact-form,
.quote-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #00866f, #06463e);
}

.bar span:first-child {
  background: linear-gradient(180deg, #ffffff, #f7c957);
}

.bar strong {
  color: var(--white);
}

.hotline-grid article,
.deal-card,
.timeline div,
.whatsapp-grid article,
.forum-panel,
.events-panel,
.support-box {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.deal-card.featured p {
  color: rgba(255, 255, 255, 0.86);
}

.featured .icon-pill,
.timeline strong,
.contact-form .btn-primary,
.feedback-box .btn-primary,
.gallery-filters button.is-active {
  background: var(--white);
  color: #00866f;
}

.icon-pill,
.check {
  background: var(--brand-red-soft);
  color: #00866f;
}

.check::after {
  border-color: #00866f;
}

.gallery-section {
  background:
    linear-gradient(135deg, #042f2a, #06463e);
}

.gallery-grid figure,
.gallery-lightbox img {
  border-radius: 10px;
}

.gallery-grid figcaption {
  border-radius: 8px;
}

.contact-lines a {
  border-radius: 8px;
  color: #00866f;
}

.site-footer {
  background: #161616;
}

.site-footer a {
  color: #8ff3df;
}

.site-footer .footer-social a {
  color: #ffffff;
}

.site-footer .footer-social a:hover {
  color: #061b18;
}

/* Standalone service forms. */
.service-form-body {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(3, 47, 41, 0.94), rgba(0, 134, 111, 0.84)),
    url("assets/zanzibar-agent-recruitment.png") center / cover fixed;
  color: var(--white);
}

.service-form-shell {
  width: min(1160px, calc(100% - 36px));
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  margin-inline: auto;
  padding: clamp(28px, 6vw, 78px) 0;
}

.service-form-hero {
  display: grid;
  gap: 20px;
  align-content: center;
}

.float-page-hero {
  background-image: none;
}

.form-brand {
  width: fit-content;
  margin-bottom: clamp(18px, 4vw, 42px);
  padding: 10px 14px 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #07372d;
}

.service-form-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: 0.95;
}

.service-form-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.72;
}

.form-page-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.form-language-switcher {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.lang-toggle {
  min-width: 44px;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.lang-toggle.is-active {
  background: #ffffff;
  color: #07372d;
}

.service-form-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 90px rgba(1, 24, 20, 0.34);
  color: #07372d;
}

.service-form-card h2 {
  margin: 0;
  color: #07372d;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.standalone-form {
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: #07372d;
}

.standalone-form .form-label {
  color: #ffffff;
}

.standalone-form input,
.standalone-form select,
.standalone-form textarea {
  border-color: rgba(0, 117, 94, 0.16);
  background: #f8fbfa;
}

.standalone-form .btn-primary {
  background: linear-gradient(135deg, #00755e, #0bb99d);
  color: #ffffff;
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-status.is-success {
  color: #00755e;
  font-weight: 900;
}

.form-status.is-error {
  color: #b42318;
  font-weight: 900;
}

.lookup-status {
  min-height: 20px;
  margin: -8px 0 0;
  color: #5d6f6b;
  font-size: 0.9rem;
  font-weight: 800;
}

.lookup-status.is-success {
  color: #00755e;
}

.lookup-status.is-error {
  color: #b42318;
}

.control-history {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 55, 45, 0.14);
}

.control-history-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.control-history-header h3 {
  margin: 4px 0 0;
  color: #07372d;
  font-size: 1.05rem;
}

.control-history-header .btn {
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
}

.control-history-empty {
  margin: 0;
  color: #5d6f6b;
  font-size: 0.95rem;
}

.control-history-list {
  display: grid;
  gap: 10px;
}

.control-history-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(0, 117, 94, 0.14);
  border-radius: 8px;
  background: #f8fbfa;
}

.control-history-item strong {
  color: #07372d;
  font-size: 1rem;
}

.control-history-item span,
.control-history-item small {
  color: #425c56;
}

@media (max-width: 900px) {
  .service-form-shell {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 28px));
  }

  .service-form-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .form-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .site-header {
    position: fixed;
  }

  .main-nav {
    min-height: 70px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background:
      linear-gradient(100deg, rgba(4, 47, 42, 0.96) 0%, rgba(0, 134, 111, 0.9) 62%, rgba(0, 134, 111, 0.5) 100%),
      url("assets/zanzibar-float-service.png") center / cover no-repeat;
  }

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }

  .main-nav {
    padding-inline: 12px;
  }

  .nav-toggle {
    border-color: rgba(0, 0, 0, 0.12);
    color: var(--portal-dark);
    background: var(--portal-gray);
  }

  .nav {
    top: 70px;
    background: var(--white);
    color: var(--portal-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav a {
    color: var(--portal-dark);
  }

  .language-switcher {
    background: var(--portal-gray);
    border-color: rgba(0, 0, 0, 0.08);
  }

  .language-switcher button {
    color: var(--portal-dark);
  }

  .language-switcher button.is-active {
    background: #00866f;
    color: var(--white);
  }

  .hero {
    padding-top: 112px;
  }

  .hero-media {
    display: none;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .trust-strip {
    margin-top: 32px;
  }
}

/* Layout polish: clearer content flow and stronger section hierarchy. */
.section.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  padding-top: clamp(80px, 10vw, 132px);
  padding-bottom: 34px;
}

.section.intro h2 {
  max-width: 860px;
}

.deal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 20px 0 clamp(74px, 10vw, 126px);
}

.deal-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
}

.deal-card.featured {
  transform: translateY(-18px);
}

.service-band {
  position: relative;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.72fr);
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 118px);
  border-radius: 18px;
  padding: clamp(38px, 6vw, 74px);
  overflow: hidden;
}

.service-band::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0, 134, 111, 0.1);
}

.operations-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 74px);
  background:
    linear-gradient(180deg, #ffffff, var(--portal-gray));
}

.operations-band .charting-panel,
.operations-band .hotline-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: start;
  padding: 0;
  background: transparent;
}

.operations-band .chart-card {
  min-height: 430px;
}

.operations-band .hotline-grid {
  grid-template-columns: 1fr;
}

.operations-band .hotline-grid article {
  min-height: 142px;
}

.gallery-section {
  padding-top: clamp(82px, 10vw, 132px);
}

.process {
  padding-top: clamp(82px, 10vw, 132px);
}

.timeline {
  width: min(1220px, 100%);
  margin-inline: auto;
}

.forum-events {
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  padding-block: clamp(72px, 9vw, 118px);
}

.quote-section {
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}

.quote-section blockquote {
  margin-inline: auto;
}

.contact {
  align-items: stretch;
  background:
    linear-gradient(180deg, var(--portal-gray), #ffffff);
}

.support-feedback {
  padding-top: 0;
}

.whatsapp-section {
  padding-top: clamp(76px, 9vw, 120px);
}

@media (max-width: 1080px) {
  .section.intro,
  .operations-band {
    grid-template-columns: 1fr;
  }

  .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .section.intro {
    padding-inline: 18px;
  }

  .deal-grid,
  .operations-band,
  .service-band {
    width: auto;
    margin-inline: 18px;
  }

  .deal-grid {
    grid-template-columns: 1fr;
  }

  .service-band {
    padding: 26px;
  }

  .operations-band {
    padding-inline: 0;
  }
}

/* Centered page layout refinements. */
.hero {
  grid-template-columns: minmax(0, 620px) minmax(340px, 520px);
  justify-content: center;
}

.trust-strip,
.charting-panel,
.hotline-section,
.gallery-section,
.forum-events,
.support-feedback,
.whatsapp-section,
.process,
.contact {
  padding-left: max(18px, calc((100vw - 1220px) / 2));
  padding-right: max(18px, calc((100vw - 1220px) / 2));
}

.section.intro,
.service-band,
.operations-band,
.deal-grid,
.timeline,
.gallery-grid,
.quick-actions,
.whatsapp-grid,
.forum-events,
.support-feedback,
.contact {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.operations-band {
  width: 100%;
}

.gallery-section .section-heading,
.process .section-heading,
.whatsapp-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid,
.whatsapp-grid {
  width: 100%;
}

.quote-section {
  justify-items: center;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 760px);
  }
}

@media (max-width: 760px) {
  .trust-strip,
  .charting-panel,
  .hotline-section,
  .gallery-section,
  .forum-events,
  .support-feedback,
  .whatsapp-section,
  .process,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .deal-grid,
  .operations-band,
  .service-band {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Forum and events layout refresh. */
.forum-events {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 34px);
  width: min(1220px, calc(100% - 36px));
  padding: clamp(72px, 9vw, 118px) 0;
  background: transparent;
}

.forum-panel,
.events-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(0, 117, 94, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 255, 251, 0.96));
  box-shadow: 0 24px 70px rgba(7, 55, 45, 0.1);
}

.forum-panel h2,
.events-panel h2 {
  max-width: 12ch;
  margin-bottom: 0;
  line-height: 1.04;
}

.forum-list,
.event-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.forum-list article,
.event-list article {
  border: 1px solid rgba(0, 117, 94, 0.13);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 46, 39, 0.06);
}

.forum-list article {
  position: relative;
  padding: 20px 20px 20px 26px;
}

.forum-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--amber));
}

.forum-list strong {
  color: #06483b;
  font-size: 1.02rem;
}

.forum-list p,
.event-list p {
  color: #516660;
}

.forum-panel .mini-form {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 117, 94, 0.12);
}

.event-list article {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px;
}

.event-list time {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(0, 117, 94, 0.11), rgba(246, 190, 69, 0.22));
  color: #006d5a;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.event-list h3 {
  margin: 2px 0 8px;
  color: #07372d;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.2;
}

.events-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 255, 252, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(246, 190, 69, 0.22), transparent 34%);
}

@media (max-width: 980px) {
  .forum-events {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 36px));
  }

  .forum-panel h2,
  .events-panel h2 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .forum-events {
    width: calc(100% - 28px);
    padding-block: 54px;
  }

  .forum-panel,
  .events-panel {
    padding: 22px;
    border-radius: 16px;
  }

  .event-list article {
    grid-template-columns: 1fr;
  }

  .event-list time {
    justify-self: start;
    min-height: auto;
    min-width: 132px;
  }
}

/* Active menu state. */
.nav a {
  position: relative;
}

.nav a.is-active,
.nav a[aria-current="page"] {
  background: rgba(0, 117, 94, 0.11);
  color: #006d5a;
}

.nav a.is-active::after,
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
}

.nav .nav-cta.is-active,
.nav .nav-cta[aria-current="page"] {
  background: linear-gradient(135deg, #006d5a, #0aa78e);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 117, 94, 0.22);
}

.nav .nav-cta.is-active::after,
.nav .nav-cta[aria-current="page"]::after {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 760px) {
  .nav a.is-active,
  .nav a[aria-current="page"] {
    background: rgba(0, 117, 94, 0.1);
    color: #006d5a;
  }

  .nav .nav-cta.is-active,
  .nav .nav-cta[aria-current="page"] {
    color: var(--white);
  }
}

/* Start now and customer support layout refresh. */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  width: min(1220px, calc(100% - 36px));
  padding: clamp(76px, 9vw, 124px) 0;
  background: transparent;
}

.contact-copy {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(10px, 2vw, 24px) 0;
}

.contact-copy h2 {
  max-width: 12ch;
  margin-bottom: 16px;
  line-height: 1.04;
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 0;
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: center;
  gap: 12px;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-color: rgba(0, 117, 94, 0.16);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 55, 45, 0.06);
}

.contact-form {
  align-self: stretch;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(145deg, #006d5a 0%, #07372d 100%);
  box-shadow: 0 28px 80px rgba(6, 47, 41, 0.2);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.support-feedback .mini-form input,
.support-feedback .mini-form select,
.support-feedback .mini-form textarea {
  min-height: 48px;
  border-radius: 12px;
}

.contact-form textarea,
.support-feedback .mini-form textarea {
  min-height: 120px;
}

.support-feedback {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.82fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 32px);
  width: min(1220px, calc(100% - 36px));
  padding: 0 0 clamp(76px, 9vw, 124px);
  background: transparent;
}

.support-box,
.feedback-box {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
}

.support-box {
  border: 1px solid rgba(0, 117, 94, 0.14);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 55, 45, 0.1);
}

.support-box h2,
.feedback-box h2 {
  max-width: 13ch;
  margin-bottom: 6px;
  line-height: 1.05;
}

.support-feedback .mini-form {
  gap: 14px;
  margin-top: 24px;
}

.support-box .mini-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-box .mini-form select,
.support-box .mini-form textarea,
.support-box .mini-form button,
.support-box .mini-form .form-status {
  grid-column: 1 / -1;
}

.feedback-box {
  background: linear-gradient(145deg, #07372d 0%, #006d5a 100%);
  box-shadow: 0 24px 70px rgba(7, 55, 45, 0.16);
}

.feedback-box .eyebrow,
.feedback-box h2 {
  color: #ffffff;
}

.feedback-box .qr-code {
  width: 132px;
  height: 132px;
  margin: 22px 0 2px;
  border-radius: 14px;
  background: #ffffff;
}

.feedback-box .mini-form {
  margin-top: 20px;
}

.support-feedback .btn {
  min-height: 50px;
  justify-content: center;
}

@media (max-width: 980px) {
  .contact,
  .support-feedback {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 36px));
  }

  .contact-copy h2,
  .support-box h2,
  .feedback-box h2 {
    max-width: 100%;
  }

  .contact-form {
    align-self: auto;
  }
}

@media (max-width: 620px) {
  .contact,
  .support-feedback {
    width: calc(100% - 28px);
  }

  .contact {
    padding-block: 56px;
  }

  .support-feedback {
    padding-bottom: 58px;
  }

  .contact-lines,
  .support-box .mini-form {
    grid-template-columns: 1fr;
  }

  .contact-lines a {
    justify-content: center;
    text-align: center;
  }
}

/* Centered menu layout. */
.utility-bar {
  padding-left: max(18px, calc((100vw - 1220px) / 2));
  padding-right: max(18px, calc((100vw - 1220px) / 2));
}

.main-nav {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  padding-left: max(18px, calc((100vw - 1220px) / 2));
  padding-right: max(18px, calc((100vw - 1220px) / 2));
}

.main-nav .brand {
  justify-self: start;
}

.main-nav .nav {
  justify-self: center;
  justify-content: center;
}

.main-nav .nav-toggle {
  justify-self: end;
}

.nav {
  gap: clamp(4px, 0.8vw, 10px);
}

.nav a {
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .main-nav {
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.6fr);
  }

  .main-nav .nav {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }

  .main-nav {
    display: flex;
    justify-content: space-between;
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-nav .nav {
    justify-content: stretch;
  }

  .nav a {
    white-space: normal;
  }
}

/* Slightly off-center menu placement. */
@media (min-width: 1101px) {
  .main-nav {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .main-nav .nav {
    justify-self: end;
  }
}

/* Dynamic charting system. */
.chart-card {
  grid-template-columns: minmax(230px, 0.55fr) minmax(360px, 1fr);
  align-items: stretch;
}

.chart-copy {
  display: flex;
  flex-direction: column;
}

.chart-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.chart-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.chart-tabs button.is-active {
  background: var(--white);
  color: #006d5a;
}

.chart-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.chart-summary article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.chart-summary span,
.chart-summary strong {
  display: block;
}

.chart-summary span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
}

.chart-summary strong {
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.chart-visual {
  display: grid;
  grid-template-rows: minmax(230px, 1fr) auto;
  gap: 18px;
  min-width: 0;
}

.chart-visual .bar-chart {
  min-height: 250px;
  padding: 14px 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.trend-chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.trend-point {
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 8px;
  min-width: 0;
}

.trend-point span {
  display: block;
  width: 100%;
  max-width: 34px;
  min-height: 8px;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--amber));
}

.trend-point small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 900px) {
  .chart-card {
    grid-template-columns: 1fr;
  }

  .chart-summary {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .chart-tabs,
  .chart-summary {
    grid-template-columns: 1fr;
  }

  .chart-visual .bar-chart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trend-chart {
    gap: 5px;
    padding: 12px 8px;
  }
}

/* Branches and Google Maps. */
.branches-section {
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(76px, 9vw, 124px) 0;
  background: #ffffff;
}

.branches-section .section-heading {
  margin-inline: auto;
}

.branches-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.branches-grid article {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(360px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(0, 117, 94, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 255, 251, 0.96));
  box-shadow: 0 24px 70px rgba(7, 55, 45, 0.1);
}

.branches-grid article > div {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
}

.branch-content {
  grid-template-rows: auto 1fr;
}

.branch-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  object-fit: cover;
  background: var(--portal-gray);
  box-shadow: 0 16px 40px rgba(7, 55, 45, 0.12);
}

.branch-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.branches-grid span {
  color: #006d5a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branches-grid h3 {
  margin: 0;
  color: #07372d;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.branches-grid p {
  max-width: 520px;
  margin: 0;
  color: #516660;
  line-height: 1.65;
}

.branch-meta {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0, 117, 94, 0.08);
}

.branch-meta strong,
.branch-meta a {
  color: #07372d;
  font-weight: 900;
}

.branch-meta a {
  color: #006d5a;
}

.branches-grid iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
  background: var(--portal-gray);
}

@media (max-width: 900px) {
  .branches-grid article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .branches-section {
    width: calc(100% - 28px);
    padding-block: 56px;
  }

  .branches-grid iframe {
    min-height: 260px;
  }
}

/* Dynamic event cards with images. */
.event-list article {
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-areas:
    "image date"
    "image title"
    "image text"
    "image location";
}

.event-list article > img {
  grid-area: image;
  width: 112px;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  border-radius: 13px;
}

.event-list time {
  grid-area: date;
  justify-self: start;
}

.event-list h3 {
  grid-area: title;
}

.event-list p {
  grid-area: text;
}

.event-location {
  grid-area: location;
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 117, 94, 0.09);
  color: #006d5a;
  font-size: 0.78rem;
  font-weight: 900;
}

@media (max-width: 560px) {
  .event-list article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "date"
      "title"
      "text"
      "location";
  }

  .event-list article > img {
    width: 100%;
    height: 190px;
    min-height: 0;
  }
}

/* Charting and hotline layout refresh. */
.operations-band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 36px);
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(76px, 9vw, 122px) 0;
}

.operations-band .charting-panel,
.operations-band .hotline-section {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 20px;
  padding: 0;
  background: transparent;
}

.operations-band .section-heading,
.hotline-section > div:first-child {
  min-height: 132px;
}

.operations-band .section-heading h2,
.hotline-section h2 {
  max-width: 720px;
  margin-bottom: 0;
  line-height: 1.08;
}

.operations-band .chart-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.52fr) minmax(360px, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
  min-height: 520px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, #07372d 0%, #006d5a 68%, #0aa78e 100%);
  box-shadow: 0 28px 80px rgba(6, 47, 41, 0.2);
}

.operations-band .chart-copy h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.operations-band .chart-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.operations-band .chart-tabs {
  margin-top: 22px;
}

.operations-band .chart-summary {
  margin-top: auto;
}

.operations-band .chart-visual {
  grid-template-rows: minmax(280px, 1fr) auto;
}

.operations-band .chart-visual .bar-chart {
  min-height: 300px;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  align-items: end;
  gap: 16px;
}

.operations-band .bar {
  min-height: 250px;
}

.operations-band .bar span:first-child {
  width: min(100%, 54px);
  margin-inline: auto;
}

.operations-band .trend-chart {
  min-height: 122px;
}

.hotline-section {
  border-radius: 18px;
}

.operations-band .hotline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.operations-band .hotline-grid article {
  position: relative;
  display: grid;
  min-height: 0;
  gap: 10px;
  padding: 22px 22px 22px 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 117, 94, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 55, 45, 0.08);
}

.operations-band .hotline-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--green), var(--amber));
}

.operations-band .hotline-grid span {
  color: #006d5a;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.operations-band .hotline-grid strong {
  margin-top: 0;
  color: #07372d;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.15;
}

.operations-band .hotline-grid p {
  margin: 0;
  color: #516660;
}

@media (max-width: 1060px) {
  .operations-band {
    grid-template-columns: 1fr;
    width: min(860px, calc(100% - 36px));
  }

  .operations-band .section-heading,
  .hotline-section > div:first-child {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .operations-band {
    width: calc(100% - 28px);
    padding-block: 58px;
  }

  .operations-band .chart-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .operations-band .chart-visual {
    grid-template-rows: auto auto;
  }

  .operations-band .chart-visual .bar-chart {
    min-height: 260px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-band .bar {
    min-height: 220px;
  }
}

/* Login beside language switcher. */
.utility-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.utility-login:hover {
  background: var(--white);
  color: #006d5a;
}

/* Keep language and login on the right side. */
.utility-bar {
  justify-content: flex-start;
}

.utility-links {
  margin-right: auto;
}

.language-switcher {
  margin-left: 0;
}

/* Softer small labels. */
.eyebrow,
.form-label,
.chart-summary span,
.hotline-grid span,
.gallery-grid figcaption span,
.whatsapp-grid span,
.branches-grid span,
.event-location,
.deal-ticket small,
.service-list strong,
.quick-actions span {
  font-size: 0.58rem;
  font-weight: 650;
}

.form-label {
  font-size: 0.68rem;
}

.hotline-grid span,
.branches-grid span {
  letter-spacing: 0.06em;
}

/* Dynamic service images. */
.deal-card {
  overflow: hidden;
}

.service-image {
  width: calc(100% + 52px);
  height: 138px;
  margin: -26px -26px 20px;
  object-fit: cover;
  border-bottom: 1px solid rgba(7, 27, 24, 0.1);
}

.deal-card.featured .service-image {
  opacity: 0.88;
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 760px) {
.service-image {
    width: calc(100% + 44px);
    height: 180px;
    margin: -22px -22px 18px;
  }
}

/* Done Deal Dealers logo asset. */
.brand-logo {
  flex: 0 0 auto;
  width: 58px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 117, 94, 0.12);
}

.login-brand .brand-logo {
  width: 72px;
  height: 56px;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 50px;
    height: 40px;
  }
}

/* Dynamic hero background slideshow. */
.hero .hero-image {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 460ms ease;
}

.hero .hero-image.is-active {
  opacity: 1;
}

.hero .hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(4, 47, 42, 0.96) 0%, rgba(0, 117, 94, 0.84) 48%, rgba(0, 117, 94, 0.2) 82%);
}

.hero .hero-content,
.hero .hero-media {
  position: relative;
  z-index: 2;
}

.hero-photo img {
  transition: opacity 320ms ease;
}

/* Buy float form. */
.float-purchase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.88fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 54px);
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(74px, 9vw, 118px) 0;
}

.float-purchase-copy {
  display: grid;
  align-content: center;
  padding: clamp(12px, 2vw, 24px) 0;
}

.float-purchase-copy h2 {
  max-width: 13ch;
  margin-bottom: 16px;
  line-height: 1.04;
}

.float-purchase-copy p {
  max-width: 640px;
  color: #516660;
  line-height: 1.72;
}

.float-purchase-action {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  min-height: 320px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(0, 117, 94, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(241, 250, 247, 0.96)),
    url("assets/zanzibar-float-service.png") center / cover;
  box-shadow: 0 24px 70px rgba(7, 55, 45, 0.11);
}

.float-purchase-action strong {
  max-width: 12ch;
  color: #07372d;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.float-purchase-action p {
  max-width: 420px;
  margin: 0;
  color: #516660;
  line-height: 1.65;
}

.float-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, #07372d 0%, #006d5a 100%);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(6, 47, 41, 0.18);
}

.float-form label {
  display: grid;
  gap: 8px;
}

.float-form input,
.float-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.float-form button,
.float-form .form-status {
  grid-column: 1 / -1;
}

.float-form .btn-primary {
  min-height: 52px;
  justify-content: center;
  background: var(--amber);
  color: #1b1407;
}

.control-status {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@media (max-width: 900px) {
  .float-purchase {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 36px));
  }

  .float-purchase-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .float-purchase {
    width: calc(100% - 28px);
    padding-block: 56px;
  }

.float-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* Partners logos. */
.partners-section {
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(52px, 7vw, 92px) 0 clamp(70px, 8vw, 110px);
}

.partners-section .section-heading {
  margin-inline: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.partners-grid article {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(0, 117, 94, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 55, 45, 0.07);
}

.partners-grid img {
  width: 100%;
  max-width: 118px;
  height: 70px;
  object-fit: contain;
}

.partners-grid strong {
  color: #07372d;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .partners-section {
    width: calc(100% - 28px);
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
