/* ============================================================
   NINOTY — Baby Equipment Hire London
   Complete Redesign — styles.css
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --cream:       #FFF8F0;
  --peach:       #F5C5A3;
  --peach-light: #FEF0E6;
  --peach-mid:   #EDAB85;
  --coral:       #E86040;
  --coral-dark:  #C94E30;
  --charcoal:    #1C1917;
  --muted:       #78716C;
  --border:      #F0E4D8;
  --card:        #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(28,25,23,0.07);
  --shadow-md:   0 8px 24px rgba(28,25,23,0.10);
  --shadow-lg:   0 20px 50px rgba(28,25,23,0.14);
  --r:           16px;
  --r-sm:        10px;
  --max:         1200px;
}

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.82; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}
p { margin: 0; }
ul, ol { margin: 0; padding-left: 1.3em; }

.container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

/* --- NAVIGATION ------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,248,240,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.nav-links a { color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--charcoal); opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 99px;
  background: var(--coral);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--coral-dark) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--charcoal);
  line-height: 0;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 16px 4vw 20px;
    gap: 14px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open .nav-cta { align-self: stretch; text-align: center; justify-content: center; }
}

/* --- HERO ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 42%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(28,25,23,0.58) 0%,
    rgba(28,25,23,0.30) 60%,
    rgba(28,25,23,0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(245,197,163,0.22);
  border: 1px solid rgba(245,197,163,0.55);
  color: var(--peach);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.87);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.55;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- BUTTONS ---------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 99px;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary:hover { background: var(--coral-dark); opacity: 1; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 99px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); opacity: 1; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 99px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn-dark:hover { background: #3c3530; opacity: 1; }

/* --- TRUST BAR -------------------------------------------- */
.trust-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--peach-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
}
@media (max-width: 640px) {
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* --- SECTION HEADER --------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-header p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.65;
}

/* --- HOW IT WORKS ----------------------------------------- */
.how { padding: 88px 0; background: var(--cream); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(16.66% + 8px);
  right: calc(16.66% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--peach), var(--peach-mid), var(--peach));
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--peach);
  border: 3px solid var(--card);
  display: grid;
  place-items: center;
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 20px;
  box-shadow: 0 0 0 4px var(--peach-light), var(--shadow-sm);
}
.step h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--muted); max-width: 200px; line-height: 1.6; }
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .step { flex-direction: row; text-align: left; gap: 18px; align-items: flex-start; }
  .step-num { flex-shrink: 0; width: 56px; height: 56px; font-size: 22px; margin-bottom: 0; }
  .step p { max-width: none; }
}

/* --- PRODUCTS --------------------------------------------- */
.products { padding: 88px 0; background: var(--card); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
}
.chip-price {
  background: var(--peach);
  border-color: var(--peach-mid);
  color: var(--charcoal);
  font-weight: 700;
}
.product-body .btn-dark { margin-top: auto; width: 100%; text-align: center; }
@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}

/* --- BUNDLES ---------------------------------------------- */
.bundles { padding: 88px 0; background: var(--cream); }
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bundle-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bundle-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.bundle-card.featured {
  border-color: var(--peach-mid);
  background: linear-gradient(160deg, var(--peach-light) 0%, var(--card) 100%);
}
.bundle-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.03em;
}
.bundle-emoji { font-size: 36px; margin-bottom: 14px; line-height: 1; display: block; }
.bundle-name {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.bundle-items-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.bundle-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bundle-details li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.bundle-details li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 768px) { .bundle-grid { grid-template-columns: 1fr; } }

/* --- DELIVERY --------------------------------------------- */
.delivery { padding: 88px 0; background: var(--card); }
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.delivery-text h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.delivery-text p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.72;
}
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.zone-tag {
  padding: 7px 16px;
  border-radius: 99px;
  background: var(--peach);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}
.delivery-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.delivery-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
}
.delivery-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--peach-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.delivery-feature-icon svg {
  width: 20px; height: 20px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.delivery-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.delivery-feature span { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 768px) {
  .delivery-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* --- SAFETY ----------------------------------------------- */
.safety {
  padding: 88px 0;
  background: linear-gradient(160deg, var(--peach-light) 0%, var(--cream) 60%);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.safety-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow-sm);
}
.safety-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--peach-light);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.safety-card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.safety-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.safety-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.safety-card ul li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.safety-card ul li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 800;
  flex-shrink: 0;
}
@media (max-width: 768px) { .safety-grid { grid-template-columns: 1fr; } }

/* --- QUOTE FORM ------------------------------------------- */
.quote-section { padding: 88px 0; background: var(--card); }
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}
.quote-aside h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.quote-aside p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 28px;
}
.quote-trust-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.qtl-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--peach);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--charcoal);
  margin-top: 1px;
}
.quote-form-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--card);
  font: inherit;
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--peach-mid);
  box-shadow: 0 0 0 3px rgba(245,197,163,0.35);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.form-row .form-group { margin-bottom: 0; }
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.form-row-3 .form-group { margin-bottom: 0; }
.form-checks-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.form-check:has(input:checked) {
  border-color: var(--peach-mid);
  background: var(--peach-light);
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--coral);
  cursor: pointer;
}
.form-check-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.form-check-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}
.form-check-text span {
  font-size: 12px;
  color: var(--muted);
}
.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 99px;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--coral-dark); transform: translateY(-1px); }
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.55;
  text-align: center;
}
.success-message {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  line-height: 1.5;
}
.hp-field { display: none !important; }
@media (max-width: 900px) {
  .quote-wrapper { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .form-checks { grid-template-columns: 1fr; }
  .quote-form-box { padding: 20px 16px; }
}

/* --- FAQ -------------------------------------------------- */
.faq-section { padding: 88px 0; background: var(--cream); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
  margin-inline: auto;
}
.faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--peach-mid); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-question:focus-visible { outline: 2px solid var(--coral); outline-offset: -2px; }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--peach-light);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--coral);
  transition: transform 0.2s, background 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--peach);
}
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}
.faq-item.open .faq-answer { display: block; }

/* --- FOOTER ----------------------------------------------- */
.footer {
  background: #1a1714;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 28px;
}
.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 260px;
}
.footer-brand .footer-email {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--peach);
  opacity: 1;
}
.footer-brand .footer-email:hover { opacity: 0.8; }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.92); opacity: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  display: grid;
  place-items: center;
  transition: background 0.2s;
  opacity: 1;
}
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.75);
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* --- WHATSAPP FLOAT --------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 1;
}
.whatsapp-float:hover {
  transform: scale(1.09);
  box-shadow: 0 6px 26px rgba(37,211,102,0.55);
  opacity: 1;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* --- PRODUCT PAGE SPECIFIC -------------------------------- */
.page-hero {
  padding: 64px 0 72px;
  background: linear-gradient(160deg, var(--peach-light) 0%, var(--cream) 100%);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.page-hero-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--coral); }
.breadcrumb span { color: var(--muted); }
.page-hero-content h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.page-hero-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 24px;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 20px;
  text-align: center;
  min-width: 100px;
}
.pricing-card .value {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.1;
}
.pricing-card .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.product-features {
  padding: 72px 0;
  background: var(--card);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.feature-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 20px;
}
.feature-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.feature-item span { font-size: 13px; color: var(--muted); }
.product-cta-bar {
  background: linear-gradient(135deg, var(--peach-light), var(--cream));
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.product-cta-bar h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.product-cta-bar p { font-size: 14px; color: var(--muted); }
@media (max-width: 768px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .product-cta-bar { flex-direction: column; align-items: flex-start; }
}

/* --- LEGAL PAGES ------------------------------------------ */
.legal-page { padding: 64px 0 80px; }
.legal-page .legal-header { margin-bottom: 48px; }
.legal-page h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.legal-page .updated { font-size: 13px; color: var(--muted); }
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  color: var(--charcoal);
  margin: 36px 0 12px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: #4a4540;
  line-height: 1.82;
}
.legal-content ul, .legal-content ol { margin: 12px 0; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--coral); }
.legal-content p + p { margin-top: 12px; }

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