/* NervoPad IT — style_p4m7nt.css — Design 1: Medico/Clinico */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:wght@400;700&display=swap');

:root {
  --white: #ffffff;
  --navy: #0d2b4e;
  --mint: #3aaa8c;
  --mint-light: #e8f7f3;
  --mint-mid: #a8ddd1;
  --navy-light: #1a3d66;
  --gray-bg: #f7f9fc;
  --gray-line: #e2e8f0;
  --gray-text: #64748b;
  --gray-dark: #334155;
  --text-main: #1e293b;
  --accent: var(--mint);
  --accent-rgb: 58,170,140;
  --error: #dc2626;
  --success: #16a34a;
  --price-new: #0d2b4e;
  --price-old: #94a3b8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 16px;
}
h1,h2,h3,h4 { font-family: 'Merriweather', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== DISCLAIMER ===== */
.disclaimer-bar {
  background: var(--navy);
  text-align: center;
  padding: 7px 16px;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.04em;
}
.advertorial-label {
  background: #f0fdf4;
  border-bottom: 1px solid #bbf7d0;
  text-align: center;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== NAV A — transparent → sticky ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  /* Always has a subtle dark bg so logo is always readable */
  background: rgba(13,43,78,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,170,140,0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  gap: 16px;
}
.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,43,78,0.12);
  border-bottom-color: var(--gray-line);
}
.nav-logo {
  font-family: 'Merriweather', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.nav-logo span { color: var(--mint); }
.site-nav.scrolled .nav-logo { color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-product-link, .nav-blog-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.site-nav.scrolled .nav-product-link,
.site-nav.scrolled .nav-blog-link { color: var(--gray-dark); }
.nav-product-link:hover, .nav-blog-link:hover { color: var(--mint); }
.nav-cta {
  background: var(--mint);
  border: 2px solid var(--mint);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(58,170,140,0.35);
}
.site-nav.scrolled .nav-cta {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--white);
}
.nav-cta:hover { background: #2d9478; border-color: #2d9478; box-shadow: 0 4px 20px rgba(58,170,140,0.5); transform: translateY(-1px); }
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links .nav-product-link { display: none; }
}
@media (max-width: 600px) {
  .site-nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 18px; }
}

/* ===== HERO — premium, foto sinistra + testo destra ===== */
.hero-section {
  background: linear-gradient(135deg, #071d36 0%, #0d2b4e 45%, #0f3460 100%);
  padding: 72px 40px 80px;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
/* decorative grid pattern */
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,170,140,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,170,140,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* mint glow orb */
.hero-section::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,170,140,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* IMAGE — left side, premium framing */
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap::before {
  /* accent border frame offset */
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid rgba(58,170,140,0.35);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}
.hero-img-inner {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #0f3460 0%, #0d2b4e 50%, #071d36 100%);
  box-shadow:
    0 0 0 1px rgba(58,170,140,0.25),
    0 40px 100px rgba(0,0,0,0.55),
    0 8px 32px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 36px 32px 20px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-img-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  border-radius: 999px;
}
.hero-img-inner img {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.6));
}
.hero-img-inner:hover img { transform: scale(1.04) translateY(-4px); }
/* floating badge on image */
.hero-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(7,29,54,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(58,170,140,0.4);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-img-badge-icon { font-size: 22px; }
.hero-img-badge-text { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.4; }
.hero-img-badge-text strong { color: var(--mint); font-size: 14px; display: block; }

/* TEXT — right side */
.hero-text { padding-left: 8px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,170,140,0.12);
  border: 1px solid rgba(58,170,140,0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #6dd8be;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 8px; color: var(--mint); }
.hero-title {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-title .highlight {
  color: var(--mint);
  position: relative;
}
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  max-width: 440px;
}
/* features mini-list */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
}
.hero-feature-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(58,170,140,0.2);
  border: 1px solid rgba(58,170,140,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--mint);
  flex-shrink: 0;
}
.hero-price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(58,170,140,0.2);
  border-radius: 12px;
}
.hero-price-new {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Merriweather', serif;
  line-height: 1;
}
.hero-price-old {
  font-size: 20px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.hero-discount {
  background: #ef4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mint);
  color: var(--white);
  padding: 17px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 32px rgba(58,170,140,0.45), 0 2px 8px rgba(58,170,140,0.3);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.hero-cta::after { content: '→'; font-size: 20px; }
.hero-cta:hover { background: #2d9478; box-shadow: 0 12px 40px rgba(58,170,140,0.55); transform: translateY(-2px); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 5px; }
.hero-trust-item::before { content: '✓'; color: var(--mint); font-weight: 700; }

@media (max-width: 900px) {
  .hero-inner { gap: 40px; }
  .hero-img-inner img { height: 380px; }
}
@media (max-width: 768px) {
  .hero-section { padding: 48px 20px 56px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-img-inner img { height: 280px; }
  .hero-img-wrap::before { display: none; }
  .hero-text { padding-left: 0; }
  .hero-title { font-size: clamp(24px, 6vw, 34px); }
}

/* ===== SECTIONS ===== */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 72px 0; }
.section-title { font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--gray-text); margin-bottom: 40px; }
.section-alt { background: var(--gray-bg); }

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: 16px;
  padding: 32px 26px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
/* top accent bar */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), #5cc8ae);
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card:hover {
  border-color: var(--mint);
  box-shadow: 0 8px 32px rgba(58,170,140,0.12);
  transform: translateY(-3px);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint-light), #c8ede6);
  border: 1px solid var(--mint-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}
.benefit-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== CAROUSEL ===== */
.carousel-section {}
.carousel-wrap { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-line); box-shadow: 0 4px 24px rgba(13,43,78,0.08); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 100%; position: relative; }
.carousel-slide img { width: 100%; height: 480px; object-fit: cover; }
.carousel-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,43,78,0.88));
  padding: 48px 32px 28px;
  color: #fff;
}
.carousel-slide-caption h3 { font-size: 20px; margin-bottom: 6px; font-family: 'Merriweather', serif; }
.carousel-slide-caption p { font-size: 14px; color: rgba(255,255,255,0.8); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--gray-line);
  color: var(--navy);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 20px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.carousel-btn:hover { background: var(--mint); color: #fff; }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-line); cursor: pointer; transition: background 0.2s; }
.carousel-dot.active { background: var(--mint); }
@media (max-width: 768px) { .carousel-slide img { height: 260px; } }

/* ===== RATING BAR ===== */
.rating-bar-section { background: var(--gray-bg); border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
.rating-inner { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.rating-big { text-align: center; min-width: 120px; }
.rating-number { font-size: 64px; font-weight: 700; color: var(--navy); font-family: 'Merriweather', serif; line-height: 1; }
.rating-stars { font-size: 22px; color: #f59e0b; margin: 6px 0; }
.rating-count { font-size: 13px; color: var(--gray-text); }
.rating-bars { flex: 1; min-width: 260px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-label { font-size: 13px; color: var(--gray-text); width: 72px; flex-shrink: 0; }
.rating-bar-track { flex: 1; background: var(--gray-line); border-radius: 999px; height: 8px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--mint), #5cc8ae); }
.rating-pct { font-size: 12px; color: var(--gray-text); width: 34px; text-align: right; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover { border-color: var(--mint); box-shadow: 0 4px 20px rgba(58,170,140,0.08); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar { border-radius: 50%; flex-shrink: 0; }
.review-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.review-city { font-size: 12px; color: var(--gray-text); }
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--gray-dark); line-height: 1.65; }

/* ===== FAQ ===== */
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--gray-line); border-radius: 10px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--mint); }
.faq-question {
  width: 100%; padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-icon { font-size: 20px; color: var(--mint); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 15px; color: var(--gray-dark); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 20px; }

/* ===== STEPPER FORM ===== */
.order-section { background: var(--gray-bg); }
.order-section-inner { max-width: 680px; margin: 0 auto; }
.order-form-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(13,43,78,0.07);
}
.order-form-title { font-size: 24px; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 6px; }
.order-form-subtitle { text-align: center; font-size: 14px; color: var(--gray-text); margin-bottom: 28px; }
.form-price-badge {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 28px; padding: 14px;
  background: var(--mint-light);
  border: 1px solid var(--mint-mid);
  border-radius: 10px;
}
.form-price-new { font-size: 30px; font-weight: 700; color: var(--navy); font-family: 'Merriweather', serif; }
.form-price-old { font-size: 18px; color: var(--price-old); text-decoration: line-through; }
.form-discount-badge { background: #ef4444; color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 13px; font-weight: 700; }

/* Step indicator */
.form-stepper { }
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  gap: 0;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--gray-line); color: var(--gray-text);
  flex-shrink: 0; transition: all 0.3s;
  position: relative; z-index: 1;
}
.step-dot.active { background: var(--mint); color: #fff; }
.step-dot.done { background: var(--navy); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--gray-line); max-width: 80px; transition: background 0.3s; }
.step-line.done { background: var(--navy); }
.step-labels {
  display: flex; justify-content: space-between;
  margin-top: 8px; margin-bottom: 28px;
  padding: 0 0;
}
.step-label-item { font-size: 11px; color: var(--gray-text); text-align: center; flex: 1; }
.step-label-item.active { color: var(--mint); font-weight: 600; }

/* Step panels */
.step-panel { display: none; }
.step-panel.active { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.form-grid .field-full { grid-column: 1 / -1; }
.field-group { display: flex; flex-direction: column; gap: 5px; }
.field-group label { font-size: 13px; font-weight: 600; color: var(--gray-dark); }
.field-group input, .field-group select {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text-main);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field-group input::placeholder { color: #cbd5e1; }
.field-group input:focus, .field-group select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(58,170,140,0.12);
}
.field-group.error input, .field-group.error select { border-color: var(--error); }
.field-group.valid input, .field-group.valid select { border-color: var(--success); }
.field-error { font-size: 12px; color: var(--error); margin-top: 3px; display: none; }
.field-group.error .field-error { display: block; }

/* Step 3 summary */
.order-summary {
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.order-summary h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray-dark); margin-bottom: 6px; }
.summary-row.total { font-weight: 700; color: var(--navy); font-size: 16px; border-top: 1px solid var(--gray-line); padding-top: 10px; margin-top: 8px; }

.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.consent-row input[type=checkbox] { margin-top: 3px; accent-color: var(--mint); width: 16px; height: 16px; flex-shrink: 0; }
.consent-row label { font-size: 13px; color: var(--gray-text); line-height: 1.5; }
.consent-row a { color: var(--mint); text-decoration: underline; }

.step-nav { display: flex; gap: 12px; margin-top: 20px; }
.btn-back {
  flex: 1;
  padding: 13px;
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-back:hover { border-color: var(--mint); color: var(--mint); }
.btn-next {
  flex: 2;
  padding: 13px;
  background: var(--mint);
  border: none;
  border-radius: 8px;
  font-size: 15px; font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-next:hover { background: #2d9478; transform: translateY(-1px); }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--mint);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 17px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(58,170,140,0.35);
  transition: background 0.2s, transform 0.2s;
}
.submit-btn:hover:not(:disabled) { background: #2d9478; transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .order-form-card { padding: 24px 16px; }
}

/* ===== DELIVERY PROGRESS ===== */
.delivery-progress { margin-top: 32px; }
.delivery-title { font-size: 14px; color: var(--gray-text); text-align: center; margin-bottom: 24px; }
.delivery-steps { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.delivery-step { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 90px; }
.delivery-step-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: var(--gray-bg);
  border: 2px solid var(--gray-line);
}
.delivery-step.active .delivery-step-icon { background: var(--mint-light); border-color: var(--mint); }
.delivery-step-label { font-size: 11px; color: var(--gray-text); text-align: center; line-height: 1.3; }
.delivery-step.active .delivery-step-label { color: var(--mint); font-weight: 600; }
.delivery-line { flex: 1; height: 2px; background: var(--gray-line); min-width: 20px; }

/* ===== BLOG SECTION (variant 3 featured+list) ===== */
.blog-section {}
.blog-grid-v3 { margin-top: 36px; }
.blog-featured {
  display: flex; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gray-line);
  margin-bottom: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.blog-featured:hover { border-color: var(--mint); box-shadow: 0 4px 20px rgba(58,170,140,0.1); }
.blog-featured-img { width: 45%; flex-shrink: 0; }
.blog-featured-img img { width: 100%; height: 280px; object-fit: cover; }
.blog-featured-body {
  padding: 32px 28px;
  background: var(--white);
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.blog-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--mint-light);
  border: 1px solid var(--mint-mid);
  color: var(--mint);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.blog-card-title {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
  font-family: 'Merriweather', serif;
}
.blog-card-excerpt { font-size: 14px; color: var(--gray-text); margin-bottom: 14px; line-height: 1.6; }
.blog-card-meta { font-size: 12px; color: #94a3b8; margin-bottom: 14px; }
.blog-card-cta {
  display: inline-block;
  background: var(--mint);
  color: var(--white);
  padding: 9px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  transition: background 0.2s;
  align-self: flex-start;
}
.blog-card-cta:hover { background: #2d9478; }
.blog-small-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card-v {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.blog-card-v:hover { border-color: var(--mint); box-shadow: 0 4px 16px rgba(58,170,140,0.1); }
.blog-card-v img { width: 100%; height: 160px; object-fit: cover; }
.blog-card-v-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.blog-card-v-body .blog-card-title { font-size: 15px; margin-bottom: 8px; }
.blog-card-v-body .blog-card-cta { font-size: 12px; padding: 7px 14px; margin-top: auto; }
@media (max-width: 768px) {
  .blog-featured { flex-direction: column; }
  .blog-featured-img { width: 100%; }
  .blog-featured-img img { height: 220px; }
  .blog-small-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; margin-bottom: 36px; }
.footer-brand .nav-logo { font-size: 20px; margin-bottom: 12px; display: block; color: var(--white); }
.footer-brand p { font-size: 13px; color: #94a3b8; line-height: 1.6; max-width: 260px; }
.footer-links h4 { font-size: 12px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a { font-size: 13px; color: #94a3b8; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: #475569; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { font-size: 12px; color: #475569; transition: color 0.2s; }
.footer-legal a:hover { color: var(--mint); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  z-index: 999; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal-card {
  background: var(--white);
  border-radius: 16px; padding: 40px;
  max-width: 460px; width: 100%; text-align: center;
  box-shadow: 0 24px 64px rgba(13,43,78,0.2);
}
.modal-check { font-size: 56px; margin-bottom: 16px; animation: popIn 0.4s ease; }
@keyframes popIn { 0%{transform:scale(0)}80%{transform:scale(1.1)}100%{transform:scale(1)} }
.modal-title { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.modal-sub { font-size: 15px; color: var(--gray-text); margin-bottom: 16px; }
.modal-price { font-size: 28px; font-weight: 700; color: var(--mint); margin-bottom: 20px; font-family: 'Merriweather', serif; }
.modal-close { background: var(--mint); color: #fff; border: none; padding: 12px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; }

/* ===== THANK YOU ===== */
.thankyou-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 48px 24px; background: var(--gray-bg); }
.thankyou-card { background: var(--white); border: 1px solid var(--gray-line); border-radius: 16px; padding: 56px 40px; max-width: 520px; text-align: center; box-shadow: 0 4px 24px rgba(13,43,78,0.07); }
.thankyou-icon { font-size: 64px; margin-bottom: 20px; }
.thankyou-title { font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.thankyou-sub { font-size: 16px; color: var(--gray-text); margin-bottom: 24px; }

/* ===== BLOG PAGE ===== */
.blog-hero-section { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 64px 24px 48px; border-bottom: 1px solid rgba(58,170,140,0.2); }
.blog-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.blog-hero-title { font-size: clamp(26px,4vw,42px); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.blog-hero-sub { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.blog-tag-pill { background: rgba(58,170,140,0.15); border: 1px solid rgba(58,170,140,0.4); color: var(--mint-mid); padding: 5px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.blog-count-bar { text-align: center; padding: 14px; border-bottom: 1px solid var(--gray-line); font-size: 13px; color: var(--gray-text); background: var(--gray-bg); }
.blog-content-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.blog-bottom-cta { background: var(--mint-light); border: 1px solid var(--mint-mid); border-radius: 16px; padding: 40px; text-align: center; margin-top: 48px; }
.blog-bottom-cta h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.blog-bottom-cta p { color: var(--gray-text); margin-bottom: 20px; }
.blog-bottom-cta a { display: inline-block; background: var(--mint); color: #fff; padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 16px; }

/* ===== ARTICLE ===== */
.article-hero { background: var(--navy); padding: 56px 24px 0; border-bottom: 1px solid var(--gray-line); }
.article-hero-inner { max-width: 780px; margin: 0 auto; }
.article-hero .blog-tag { margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(22px,4vw,38px); color: var(--white); margin-bottom: 14px; }
.article-hero-meta { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.article-hero img { width: 100%; border-radius: 10px 10px 0 0; max-height: 420px; object-fit: cover; margin-top: 24px; }
.article-body { max-width: 780px; margin: 0 auto; padding: 40px 24px 64px; }
.article-body h2 { font-size: 22px; color: var(--navy); margin: 32px 0 14px; }
.article-body p { font-size: 15px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 16px; }
.article-body ul { padding-left: 20px; margin-bottom: 16px; }
.article-body ul li { font-size: 15px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 6px; }
.info-box { background: var(--mint-light); border-left: 3px solid var(--mint); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0; font-size: 14px; color: var(--gray-dark); line-height: 1.7; }
.disclaimer-article { background: var(--gray-bg); border: 1px solid var(--gray-line); border-radius: 8px; padding: 14px 18px; margin-top: 32px; font-size: 12px; color: var(--gray-text); line-height: 1.6; }
.article-cta { background: var(--mint-light); border: 1px solid var(--mint-mid); border-radius: 12px; padding: 28px; text-align: center; margin-top: 36px; }
.article-cta h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.article-cta p { font-size: 14px; color: var(--gray-text); margin-bottom: 16px; }
.article-cta a { display: inline-block; background: var(--mint); color: #fff; padding: 12px 28px; border-radius: 7px; font-weight: 700; font-size: 15px; }
.mini-faq { margin-top: 36px; }
.mini-faq h3 { font-size: 18px; color: var(--navy); margin-bottom: 16px; }

/* ===== LEGAL ===== */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 56px 24px; }
.legal-wrap h1 { font-size: 32px; color: var(--navy); margin-bottom: 32px; }
.legal-wrap h2 { font-size: 20px; color: var(--navy); margin: 28px 0 12px; }
.legal-wrap p { font-size: 15px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 14px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap ul li { font-size: 15px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 6px; }
.legal-wrap a { color: var(--mint); }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.btn-primary { display: inline-block; background: var(--mint); color: #fff; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: #2d9478; transform: translateY(-2px); }
