:root {
  --mango: #f7aa24;
  --mango-deep: #d87316;
  --leaf: #28633d;
  --leaf-soft: #dbe9c5;
  --cream: #fffaf0;
  --paper: #ffffff;
  --ink: #241b12;
  --muted: #70675b;
  --line: rgba(36, 27, 18, 0.14);
  --shadow: 0 24px 70px rgba(36, 27, 18, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.noscript-banner {
  position: relative;
  z-index: 40;
  padding: 12px 18px;
  background: #fff4d9;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--mango);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(36, 27, 18, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.logo-brand img {
  width: clamp(44px, 4.8vw, 56px);
  height: clamp(44px, 4.8vw, 56px);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 22px rgba(36, 27, 18, 0.16);
}

.site-header.scrolled .logo-brand img {
  border-color: rgba(40, 99, 61, 0.22);
}

.logo-brand small {
  font-size: 11px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 86px) 56px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.94) contrast(0.96);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 42, 25, 0.9) 0%, rgba(20, 42, 25, 0.66) 46%, rgba(20, 42, 25, 0.34) 100%),
    linear-gradient(0deg, rgba(36, 27, 18, 0.62), rgba(36, 27, 18, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-product-board {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  gap: 14px;
  max-width: 430px;
  justify-self: end;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-product-board img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-product-main {
  aspect-ratio: 1.05 / 1;
}

.hero-product-pair {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 12px;
}

.hero-product-pair img {
  aspect-ratio: 1 / 1.12;
}

.hero-product-board p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mango);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(50px, 10vw, 118px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, 0.88);
}

.service-area-card {
  width: fit-content;
  max-width: 650px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(10, 20, 12, 0.18);
}

.service-area-card span,
.service-area-card small {
  display: block;
}

.service-area-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-area-card strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(20px, 2.4vw, 30px);
  font-family: "Fraunces", Georgia, serif;
}

.service-area-card small {
  max-width: 560px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.delivery-timing-note {
  width: fit-content;
  max-width: 640px;
  margin: 18px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.16);
  padding: 9px 14px;
  color: #fff8df;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary,
.submit {
  background: var(--mango);
  color: #1d140b;
  box-shadow: 0 14px 35px rgba(247, 170, 36, 0.28);
}

.secondary {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.leaf {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 26px;
  border-radius: 100% 0 100% 0;
  background: rgba(217, 233, 197, 0.72);
  transform: rotate(-25deg);
  animation: drift 8s ease-in-out infinite;
}

.leaf-one {
  right: 12%;
  top: 28%;
}

.leaf-two {
  right: 26%;
  bottom: 18%;
  animation-delay: 1.8s;
}

.order-section,
.discount-strip,
.usp-section,
.real-proof-section,
.ripening-section,
.faq-section,
.story-section,
.delivery-band {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.discount-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  background: #fff4d9;
  overflow: hidden;
}

.discount-strip .eyebrow {
  color: var(--mango-deep);
}

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

.discount-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.discount-motion {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  isolation: isolate;
}

.discount-motion::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(40, 99, 61, 0.12), rgba(247, 170, 36, 0.24), rgba(40, 99, 61, 0.12));
  transform: translateX(-20%);
  animation: discountSweep 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.discount-motion span,
.discount-motion strong {
  display: grid;
  min-height: 86px;
  place-items: center;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 18px 42px rgba(95, 49, 9, 0.1);
}

.discount-motion span {
  background: var(--leaf);
  color: #fff;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
}

.discount-motion .old-price {
  background: #fff4d9;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: #c63f1f;
}

.discount-motion strong {
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(18px, 2.2vw, 30px);
}

.usp-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(40, 99, 61, 0.93), rgba(23, 54, 31, 0.96)),
    url("assets/mangomitra-logo.jpeg");
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.usp-section .eyebrow {
  color: #ffd25a;
}

.usp-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.usp-metrics article {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 240, 0.11);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.usp-metrics article::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 86px;
  height: 86px;
  border-radius: 54% 46% 58% 42% / 46% 56% 44% 54%;
  background: linear-gradient(145deg, #ffd25a, #df7419);
  opacity: 0.22;
  animation: uspPulse 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.usp-metrics span,
.usp-metrics small {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.usp-metrics strong {
  display: block;
  margin: 10px 0 6px;
  color: #ffd25a;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.real-proof-section {
  background: #fffaf0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 0.88fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.proof-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(95, 49, 9, 0.1);
}

.proof-feature {
  grid-row: span 2;
  min-height: 516px;
}

.proof-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.proof-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(23, 54, 31, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.customer-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 24px auto 0;
}

.customer-video-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.customer-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 520px;
  background: #120c08;
  object-fit: cover;
}

.customer-video-grid h3,
.customer-video-grid p {
  margin: 0;
  padding-inline: 16px;
}

.customer-video-grid h3 {
  padding-top: 16px;
  color: var(--ink);
  font-size: 18px;
}

.customer-video-grid p {
  padding-top: 6px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.ripening-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.ripening-section p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.ripening-checks {
  display: grid;
  gap: 14px;
}

.ripening-checks article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fffaf0;
  box-shadow: 0 14px 34px rgba(95, 49, 9, 0.08);
}

.ripening-checks span {
  grid-row: span 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-weight: 900;
}

.ripening-checks strong {
  color: var(--ink);
  font-size: 18px;
}

.ripening-checks p {
  margin: 0;
  color: var(--muted);
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.order-card,
.product-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.order-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 7px;
}

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

label {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  font-size: 13px;
  font-weight: 800;
}

.required-label::after {
  content: "*";
  position: absolute;
  top: -7px;
  right: -10px;
  color: #c63f1f;
  font-size: 15px;
  line-height: 1;
}

.optional-label {
  color: var(--muted);
  font-weight: 700;
  margin-left: 4px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 27, 18, 0.2);
  border-radius: var(--radius);
  background: #fffcf6;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(40, 99, 61, 0.12);
}

.hidden {
  display: none;
}

.total-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(190px, 1fr);
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(247, 170, 36, 0.55);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff4d9;
}

.total-panel span {
  color: var(--muted);
  font-weight: 800;
}

.total-panel strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
}

.cart-breakdown {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cart-breakdown small {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-breakdown b {
  color: var(--ink);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 900;
}

.form-status.error {
  color: #b32912;
}

.submit {
  width: 100%;
  border: 0;
}

.submit.loading {
  cursor: wait;
  opacity: 0.88;
}

.submit.loading::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: submitSpin 700ms linear infinite;
}

.product-panel {
  padding: 16px;
}

.photo-stack {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.photo-stack img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-stack img:first-child {
  margin-top: 42px;
}

.quality-strip {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.quality-strip span {
  border-left: 4px solid var(--leaf);
  padding: 10px 12px;
  background: #f4f8ec;
  font-weight: 800;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: #17361f;
  color: #fff;
}

.story-copy p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.sound-button {
  margin-top: 12px;
}

.floating-cod-art {
  position: fixed;
  z-index: 29;
  left: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 30px);
  width: clamp(92px, 10vw, 132px);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 20px 36px rgba(95, 49, 9, 0.28));
  animation: codFloat 5s ease-in-out infinite;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 30px);
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  background: #25d366;
  color: #102516;
  box-shadow: 0 18px 42px rgba(10, 65, 28, 0.26);
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 180ms ease;
}

.floating-whatsapp.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover {
  box-shadow: 0 22px 50px rgba(10, 65, 28, 0.34);
  transform: translateY(-3px);
}

.order-ribbon {
  position: fixed;
  inset: 96px clamp(14px, 4vw, 56px) auto;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.order-ribbon.hidden {
  display: none;
}

.order-ribbon-inner {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 199, 74, 0.98), rgba(255, 143, 31, 0.98)),
    var(--mango);
  color: #2a1704;
  box-shadow: 0 28px 70px rgba(18, 37, 22, 0.35);
  overflow: hidden;
  pointer-events: auto;
  animation: ribbonDrop 420ms ease both;
}

.order-ribbon-inner::before,
.order-ribbon-inner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 54px;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-18deg);
}

.order-ribbon-inner::before {
  left: -28px;
}

.order-ribbon-inner::after {
  right: -28px;
}

.order-ribbon-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(42, 23, 4, 0.14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-ribbon h2 {
  position: relative;
  z-index: 1;
  margin: 10px 0 6px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
}

.order-ribbon p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: #432304;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.order-ribbon-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.order-ribbon-actions .button {
  min-width: 190px;
  justify-content: center;
}

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.media-frame video {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  background: #000;
}

.media-caption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.delivery-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: end;
  background: var(--leaf-soft);
}

.delivery-band .eyebrow {
  color: var(--leaf);
}

.delivery-range {
  margin: 14px 0 0;
  color: #415040;
  font-size: 18px;
  font-weight: 800;
}

.delivery-band p:not(.eyebrow) {
  margin: 0;
  color: #415040;
  font-size: 18px;
}

.faq-section {
  background: #fffaf0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(95, 49, 9, 0.08);
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

footer a {
  color: var(--mango);
  text-decoration: none;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-25deg);
  }
  50% {
    transform: translate3d(-18px, 16px, 0) rotate(-12deg);
  }
}

@keyframes codFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-8px) rotate(-7deg);
  }
}

@keyframes discountSweep {
  0%,
  100% {
    transform: translateX(-20%) scaleX(0.9);
  }
  50% {
    transform: translateX(20%) scaleX(1.08);
  }
}

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

@keyframes uspPulse {
  0%,
  100% {
    transform: scale(0.92) rotate(-8deg);
  }
  50% {
    transform: scale(1.12) rotate(4deg);
  }
}

@keyframes ribbonDrop {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .logo-brand img {
    width: 44px;
    height: 44px;
  }

  .logo-brand span {
    font-size: 13px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(20, 42, 25, 0.82), rgba(20, 42, 25, 0.35));
  }

  .order-grid,
  .discount-strip,
  .usp-section,
  .ripening-section,
  .story-section,
  .delivery-band {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .customer-video-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-board {
    justify-self: stretch;
    max-width: none;
  }

  .proof-feature,
  .proof-grid figure {
    min-height: 320px;
  }

  .form-split,
  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack img,
  .photo-stack img:first-child {
    height: auto;
    max-height: 440px;
    margin-top: 0;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 46px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .total-panel {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
  }

  .floating-cod-art {
    width: 78px;
    bottom: 82px;
  }

  .usp-metrics {
    grid-template-columns: 1fr;
  }
}
