/* ===== Reset & base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-900: #14532d;
  --green-700: #166534;
  --green-500: #22a559;
  --green-100: #dcfce7;
  --cream: #fffaf0;
  --milk: #fefefe;
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --border: #e7e5e4;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(20, 83, 45, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 83, 45, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--milk);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-900);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-700);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border: 1.5px solid var(--green-700);
}

.btn-ghost:hover {
  background: var(--green-100);
}

.btn-link {
  color: var(--green-700);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
}

.btn-link:hover {
  background: var(--green-100);
}

.btn-block {
  width: 100%;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: var(--shadow-md);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green-900);
  letter-spacing: 0.2px;
  line-height: 1;
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-900);
  background: var(--green-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  color: var(--green-900);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(34, 165, 89, 0.12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 215, 130, 0.18), transparent 60%),
    var(--cream);
  padding: 90px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--green-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  letter-spacing: 0.4px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(34, 165, 89, 0.18);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-700);
}

.hero p.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 520px;
}

.stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero visual — pure CSS dairy bottle illustration */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 460px;
  justify-self: end;
  width: 100%;
}

.hero-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff, #f7fdf9);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(34, 165, 89, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 130, 0.25), transparent 45%);
}

.hero-bottle {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 70%;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9f3 100%);
  border-radius: 24px 24px 40px 40px / 36px 36px 50px 50px;
  border: 1.5px solid #e7e5e4;
  box-shadow: inset -8px 0 18px rgba(20, 83, 45, 0.06),
    inset 8px 0 18px rgba(255, 255, 255, 0.7);
}

.hero-bottle::before {
  content: "";
  position: absolute;
  top: -14%;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 18%;
  background: var(--green-700);
  border-radius: 10px 10px 4px 4px;
  box-shadow: 0 6px 14px rgba(20, 83, 45, 0.25);
}

.hero-bottle::after {
  content: "SUNDAR DUDH";
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: var(--green-900);
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 1px;
  padding: 14px 0;
  border-top: 1.5px dashed var(--green-100);
  border-bottom: 1.5px dashed var(--green-100);
}

.hero-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-900);
}

.hero-badge .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  color: var(--green-700);
}

.hero-badge .ic svg {
  width: 20px;
  height: 20px;
}

.badge-1 {
  top: 6%;
  left: -4%;
}

.badge-2 {
  bottom: 12%;
  right: -6%;
}

/* ===== Section base ===== */
.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
}

/* ===== About ===== */
.about {
  background: var(--milk);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(20, 83, 45, 0.85), rgba(34, 165, 89, 0.7)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.06) 0 8px,
      transparent 8px 16px
    );
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.25), transparent 35%),
    radial-gradient(circle at 75% 70%, rgba(255, 215, 130, 0.3), transparent 40%);
}

.about-img .quote {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  z-index: 1;
}

.about-img .quote span {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.85;
  font-family: inherit;
}

.about h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 20px;
}

.about p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 16px;
}

.about-features {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: start;
  gap: 14px;
  color: var(--ink-soft);
}

.about-features .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
}

.about-features .check svg {
  width: 14px;
  height: 14px;
}

.about-features b {
  color: var(--green-900);
}

/* ===== Products ===== */
.products {
  background: var(--cream);
}

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

.product-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.product-icon svg {
  width: 28px;
  height: 28px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.product-price {
  font-weight: 700;
  color: var(--green-700);
  font-size: 18px;
}

.product-price small {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  margin-left: 4px;
}

/* ===== Process ===== */
.process {
  background: white;
}

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

.process-step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--milk);
}

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

.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 16px;
}

.stars svg {
  width: 18px;
  height: 18px;
}

.testimonial blockquote {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--green-900));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.t-author .name {
  font-weight: 600;
  color: var(--green-900);
  font-size: 15px;
}

.t-author .role {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Contact ===== */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: white;
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 130, 0.25),
    transparent 70%
  );
}

.contact-info h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: start;
}

.contact-list .ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.contact-list .ic svg {
  width: 20px;
  height: 20px;
  color: white;
}

.contact-list .label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.contact-list .val {
  color: white;
  font-weight: 500;
  line-height: 1.4;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  margin-bottom: 18px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-900);
  letter-spacing: 0.3px;
}

.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--milk);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(34, 165, 89, 0.14);
}

.field .help {
  font-size: 12px;
  color: var(--muted);
}

/* ===== Footer ===== */
.footer {
  background: #0c2a18;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer h4 {
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer .brand-mark {
  margin-bottom: 18px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}

.socials a:hover {
  background: var(--green-700);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 42, 24, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: white;
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: background 0.15s ease;
}

.modal-close:hover {
  background: var(--border);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.modal .sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15px;
}

.modal .field {
  margin-bottom: 16px;
}

.modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.modal-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.modal-row.consent {
  align-items: flex-start;
  line-height: 1.5;
  font-size: 13px;
}

.modal-row.consent label {
  align-items: flex-start;
  gap: 10px;
}

.modal-row.consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.modal-row a {
  color: var(--green-700);
  font-weight: 600;
}

.modal-divider {
  text-align: center;
  position: relative;
  color: var(--muted);
  font-size: 13px;
  margin: 22px 0 18px;
}

.modal-divider::before,
.modal-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  height: 1px;
  background: var(--border);
}

.modal-divider::before {
  left: 0;
}
.modal-divider::after {
  right: 0;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.social-btn:hover {
  background: var(--cream);
  border-color: var(--green-500);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.switch {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

.switch a {
  color: var(--green-700);
  font-weight: 600;
  cursor: pointer;
}

/* ===== Legal pages ===== */
.legal-hero {
  background:
    radial-gradient(ellipse at top, rgba(34, 165, 89, 0.1), transparent 60%),
    var(--cream);
  padding: 80px 0 60px;
  text-align: center;
}

.legal-hero .eyebrow {
  margin-bottom: 18px;
}

.legal-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 14px;
}

.legal-hero p {
  color: var(--ink-soft);
  font-size: 16px;
}

.legal-body {
  padding: 70px 0 110px;
}

.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  list-style: none;
  font-size: 14px;
  display: grid;
  gap: 6px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.legal-toc li.title {
  font-weight: 700;
  color: var(--green-900);
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 4px;
}

.legal-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}

.legal-toc a:hover {
  background: white;
  color: var(--green-900);
}

.legal-content section {
  margin-bottom: 44px;
  scroll-margin-top: 100px;
}

.legal-content h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-size: 16px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-content strong {
  color: var(--green-900);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-links,
  .nav-actions .btn-link,
  .nav-actions .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: white;
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    align-items: stretch;
  }

  .nav-links.mobile-open a {
    padding: 12px 16px;
  }

  .nav-links.mobile-open .mobile-actions {
    display: grid;
    gap: 8px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    justify-self: center;
    max-width: 380px;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

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

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

  .legal-wrap {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

.mobile-actions {
  display: none;
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

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

  .modal {
    padding: 28px 22px;
  }

  .contact-info,
  .contact-form {
    padding: 28px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
