:root {
  --ink: #17201d;
  --muted: #62706a;
  --line: #dce5df;
  --paper: #fffdf8;
  --soft: #f3f7ef;
  --green: #1f7a4d;
  --green-dark: #135236;
  --coral: #e95f42;
  --gold: #f4b942;
  --shadow: 0 22px 70px rgba(23, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentlePulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(31, 122, 77, 0.28);
  }

  50% {
    box-shadow: 0 18px 42px rgba(31, 122, 77, 0.45);
  }
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 229, 223, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 122, 77, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.primary-nav a:hover {
  color: var(--green-dark);
  background: var(--soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, 86vh);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/pharmacy-hero.png") center / cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(16, 28, 23, 0.8), rgba(16, 28, 23, 0.5) 44%, rgba(16, 28, 23, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 90px);
  color: white;
  padding-block: 70px;
}

.hero-content > * {
  opacity: 0;
  animation: heroTextIn 720ms ease forwards;
}

.hero-content h1 {
  animation-delay: 140ms;
}

.hero-content .hero-copy:nth-of-type(2) {
  animation-delay: 260ms;
}

.hero-content .hero-copy:nth-of-type(3) {
  animation-delay: 380ms;
}

.hero-content .hero-actions {
  animation-delay: 520ms;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd18a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.45rem, 8vw, 5.6rem);
  font-weight: 900;
  line-height: 0.95;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 580px;
  margin: 16px 0 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-copy strong {
  color: white;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: white;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(31, 122, 77, 0.28);
}

.hero .button.primary,
.floating-order {
  animation: gentlePulse 2.8s ease-in-out infinite;
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  color: white;
  background: var(--ink);
}

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

.strip div {
  padding: 24px clamp(18px, 4vw, 44px);
  background: white;
  transition: transform 180ms ease, background 180ms ease;
}

.strip div:hover {
  transform: translateY(-4px);
  background: #f8fbf7;
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  font-size: 1.1rem;
}

.strip span {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 40px rgba(23, 32, 29, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(23, 32, 29, 0.12);
}

.code-section {
  background: white;
}

.code-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.code-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
  box-shadow: 0 14px 40px rgba(23, 32, 29, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.code-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(23, 32, 29, 0.12);
}

.code-card p {
  color: var(--muted);
}

.code-card strong {
  color: var(--ink);
}

.code-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--green-dark);
  background: #e4f3ea;
  border-radius: 8px;
  font-weight: 800;
}

.product-card:nth-child(2) .product-icon {
  color: #8a461a;
  background: #fff0d2;
}

.product-card:nth-child(3) .product-icon {
  color: #9e3321;
  background: #ffe2dc;
}

.product-card:nth-child(4) .product-icon {
  color: #214f84;
  background: #e2efff;
}

.product-card p,
.split p,
.contact-panel p {
  color: var(--muted);
}

.section-note {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.order-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  margin: clamp(34px, 7vw, 80px) clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(120deg, rgba(19, 82, 54, 0.97), rgba(31, 122, 77, 0.92)),
    radial-gradient(circle at 86% 18%, rgba(244, 185, 66, 0.55), transparent 34%);
  box-shadow: var(--shadow);
}

.order-copy .eyebrow {
  color: #ffe6a9;
}

.order-copy h2 {
  max-width: 720px;
}

.order-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.order-card {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.order-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.order-card input,
.order-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfdf9;
}

.order-card input:focus,
.order-card textarea:focus {
  outline: 3px solid rgba(31, 122, 77, 0.18);
  border-color: var(--green);
}

.order-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.whatsapp-section {
  background: white;
}

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

.wa-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff, #f5faf7);
  box-shadow: 0 14px 34px rgba(23, 32, 29, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wa-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 122, 77, 0.4);
  box-shadow: 0 18px 42px rgba(23, 32, 29, 0.1);
}

.wa-card strong {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.wa-card span {
  color: var(--muted);
  font-weight: 700;
}

.brands-section {
  background: #f8fbf7;
}

.brand-shelf {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 16px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 239, 0.94)),
    repeating-linear-gradient(180deg, transparent 0 108px, rgba(31, 122, 77, 0.14) 108px 116px);
  box-shadow: 0 18px 50px rgba(23, 32, 29, 0.08);
}

.brand-card {
  position: relative;
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(220, 229, 223, 0.9);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(23, 32, 29, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-card::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -8px;
  height: 7px;
  border-radius: 99px;
  background: rgba(23, 32, 29, 0.08);
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 122, 77, 0.45);
  box-shadow: 0 18px 36px rgba(23, 32, 29, 0.12);
}

.brand-card span {
  color: var(--green-dark);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 900;
  text-align: center;
}

.health-update-section {
  background: white;
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.update-card {
  min-height: 200px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
  box-shadow: 0 14px 34px rgba(23, 32, 29, 0.05);
}

.update-card p {
  color: var(--muted);
}

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 54px);
  color: white;
  background:
    linear-gradient(120deg, rgba(31, 122, 77, 0.98), rgba(19, 82, 54, 0.96)),
    radial-gradient(circle at 90% 20%, rgba(244, 185, 66, 0.55), transparent 35%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-band .eyebrow {
  color: #ffe6a9;
}

.feature-band h2 {
  max-width: 760px;
}

.trust-band {
  margin-top: clamp(24px, 5vw, 40px);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.helper-section {
  background: #fbfdf9;
}

.helper-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.helper-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 36px rgba(23, 32, 29, 0.06);
}

.helper-card p {
  margin: 0;
  color: var(--muted);
}

.helper-card .button {
  width: 100%;
  margin-top: auto;
  color: white;
  border: 1px solid var(--green);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(31, 122, 77, 0.22);
}

.helper-card .button.secondary.light {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 8vw, 90px);
  align-items: start;
}

.split > p {
  margin: 8px 0 0;
  font-size: 1.15rem;
}

.about-section > div:last-child > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.owner-panel {
  margin-top: 24px;
  padding: 22px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 36px rgba(23, 32, 29, 0.06);
}

.owner-panel h3 {
  margin-bottom: 14px;
}

.owner-panel p {
  display: grid;
  gap: 2px;
  margin: 6px 0;
}

.owner-panel strong {
  color: var(--ink);
  font-weight: 900;
}

.owner-panel span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.achievement-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-inline: clamp(18px, 5vw, 72px);
  padding: clamp(30px, 5vw, 58px);
  color: white;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(19, 82, 54, 0.97), rgba(23, 32, 29, 0.96)),
    linear-gradient(45deg, rgba(244, 185, 66, 0.55), rgba(233, 95, 66, 0.2));
  box-shadow: var(--shadow);
}

.achievement-band .eyebrow {
  color: #ffe6a9;
}

.achievement-band h2 {
  max-width: 820px;
}

.achievement-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.award-image {
  width: 100%;
  border-radius: 8px;
  background: white;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.contact-panel,
.contact-form,
.map-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.contact-panel a {
  color: var(--green-dark);
  font-weight: 700;
}

.contact-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
}

.address-line {
  margin: 6px 0;
  font-size: 1.08rem;
}

.address-line strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.call-options {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.call-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 13px 16px;
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
  background: var(--green);
  font-weight: 900 !important;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.secondary.light {
  color: var(--green-dark);
  border: 1px solid var(--line);
  background: white;
}

.map-panel {
  display: grid;
  gap: 16px;
}

.map-frame {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e9f0ec;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-note {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.review-section {
  padding-top: 12px;
}

.review-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 239, 0.96));
  box-shadow: 0 18px 44px rgba(23, 32, 29, 0.07);
}

.review-panel p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form label,
.modal-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.modal-card input,
.modal-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfdf9;
}

.contact-form input:focus,
.contact-form textarea:focus,
.modal-card input:focus,
.modal-card textarea:focus {
  outline: 3px solid rgba(31, 122, 77, 0.18);
  border-color: var(--green);
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
}

.floating-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.chat-launch {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 45;
  min-height: 52px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(23, 32, 29, 0.22);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 148px;
  z-index: 48;
  width: min(390px, calc(100% - 24px));
  display: none;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 64px rgba(23, 32, 29, 0.2);
  backdrop-filter: blur(14px);
}

.chat-widget.is-open {
  display: grid;
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.chat-header .eyebrow {
  margin-bottom: 6px;
}

.chat-header h3 {
  margin: 0;
  font-size: 1.15rem;
}

.chat-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.chat-body {
  display: grid;
  gap: 12px;
  max-height: 330px;
  padding-right: 4px;
  overflow: auto;
}

.chat-message {
  display: grid;
  gap: 8px;
}

.chat-message.user {
  justify-items: end;
}

.chat-bubble {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f3f7ef;
}

.chat-message.user .chat-bubble {
  color: white;
  background: var(--green);
}

.chat-bubble p {
  margin: 0;
  font-weight: 700;
}

.chat-actions,
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-action,
.chat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  background: white;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.chat-action.primary,
.chat-chip:hover {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.chat-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfdf9;
}

.chat-form input:focus {
  outline: 3px solid rgba(31, 122, 77, 0.18);
  border-color: var(--green);
}

.enquiry-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 15, 0.62);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin-bottom: 18px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.enquiry-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.enquiry-types label {
  cursor: pointer;
}

.enquiry-types input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.enquiry-types span {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfdf9;
  font-weight: 900;
  text-align: center;
}

.enquiry-types input:checked + span {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .brand-card,
  .reveal,
  .hero-media,
  .hero-content > *,
  .floating-order {
    animation: none;
    transition: none;
  }

  .reveal,
  .hero-content > * {
    opacity: 1;
    transform: none;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #bce3c8;
  font-weight: 700;
}

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

@media (max-width: 920px) {
  .product-grid,
  .code-grid,
  .helper-grid,
  .update-grid,
  .brand-shelf,
  .strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-grid,
  .order-section,
  .achievement-band {
    grid-template-columns: 1fr;
  }

  .feature-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-points,
  .review-panel {
    justify-content: flex-start;
  }

  .review-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 75px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(16, 28, 23, 0.82), rgba(16, 28, 23, 0.52));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    align-self: end;
  }

  h1 {
    max-width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 520px) {
  .brand strong {
    max-width: 150px;
  }

  .product-grid,
  .code-grid,
  .helper-grid,
  .whatsapp-grid,
  .update-grid,
  .brand-shelf,
  .strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-actions,
  .code-actions,
  .floating-order,
  .button {
    width: 100%;
  }

  .floating-order {
    bottom: 88px;
    left: 18px;
    right: 18px;
  }

  .chat-launch {
    right: 18px;
    bottom: 18px;
  }

  .chat-widget {
    right: 12px;
    left: 12px;
    bottom: 148px;
    width: auto;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

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

  .enquiry-types {
    grid-template-columns: 1fr;
  }
}
