@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --forest: #1a3a1a;
  --grass: #2d5a27;
  --lime: #7ab648;
  --lime-light: #a4d65e;
  --sand: #f5f0e8;
  --cream: #faf8f3;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --warm-gray: #9ca3af;
  --accent: #e8a838;
  --accent-dark: #c48a20;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: 'Source Sans 3', sans-serif; }
.font-display { font-family: 'Playfair Display', serif; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes grassWave {
  0%, 100% { transform: skewX(0deg); }
  25% { transform: skewX(3deg); }
  75% { transform: skewX(-3deg); }
}
.anim-up { animation: fadeUp .7s ease-out both; }
.anim-in { animation: fadeIn .6s ease-out both; }
.anim-scale { animation: scaleIn .5s ease-out both; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }
.d4 { animation-delay: .4s; }
.d5 { animation-delay: .5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .35s ease; padding: 0 20px;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10; cursor: pointer;
}
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--lime), var(--grass));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(122,182,72,.35);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--forest);
  transition: color .3s;
}
.home-hero .logo-text,
.podkluch-hero .logo-text { color: #fff; }
.scrolled .logo-text { color: var(--forest) !important; }

.nav { display: flex; gap: 4px; align-items: center; }
.nav-link {
  background: transparent; border: none; padding: 8px 18px; border-radius: 50px;
  cursor: pointer; font-size: 15px; font-weight: 500; color: var(--dark);
  transition: all .3s; font-family: 'Source Sans 3', sans-serif;
}
.nav-link:hover { background: rgba(122,182,72,.08); }
.nav-link.active { background: rgba(122,182,72,.12); font-weight: 700; color: var(--grass); }
.home-hero .nav-link { color: rgba(255,255,255,.85); }
.home-hero .nav-link.active { color: var(--lime-light); background: rgba(255,255,255,.1); }
.podkluch-hero .nav-link { color: rgba(255,255,255,.85); }
.podkluch-hero .nav-link.active { color: var(--lime-light); background: rgba(255,255,255,.1); }
.scrolled .nav-link { color: var(--dark) !important; }
.scrolled .nav-link.active { color: var(--grass) !important; background: rgba(122,182,72,.12) !important; }

.header-phone {
  display: flex; align-items: center; gap: 6; margin-left: 16px;
  color: var(--forest); font-weight: 700; font-size: 15px; transition: color .3s;
}
.home-hero .header-phone,
.podkluch-hero .header-phone { color: #fff; }
.scrolled .header-phone { color: var(--forest) !important; }

.burger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--forest);
}
.home-hero .burger,
.podkluch-hero .burger { color: #fff; }
.scrolled .burger { color: var(--forest) !important; }

.mobile-menu {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--gray-light);
  padding: 16px 20px; flex-direction: column; gap: 4px;
  animation: fadeIn .2s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 20px; border-radius: 12px;
  font-size: 16px; font-weight: 500; color: var(--dark);
}
.mobile-menu a:hover,
.mobile-menu a.active { background: rgba(122,182,72,.08); color: var(--grass); font-weight: 700; }

@media (max-width: 860px) {
  .nav { display: none !important; }
  .header-phone { display: none !important; }
  .burger { display: block !important; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px; font-weight: 700;
  font-size: 16px; border: none; cursor: pointer;
  transition: all .3s ease; font-family: 'Source Sans 3', sans-serif;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary {
  background: var(--lime); color: #fff;
  box-shadow: 0 4px 20px rgba(122,182,72,.3);
}
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 20px rgba(232,168,56,.3);
}
.btn-white {
  background: #fff; color: var(--forest);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.btn-secondary {
  background: transparent; color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-tg {
  background: #26a5e4; color: #fff;
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 16px;
}
.btn-tg:hover { background: #1a8fc4; }
.btn-full { width: 100%; justify-content: center; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 20px; }
.section-narrow { max-width: 900px; margin: 0 auto; }
.section-bg-white { background: var(--white); }
.section-bg-cream { background: var(--cream); }
.section-bg-sand { background: var(--sand); }
.section-bg-dark {
  background: linear-gradient(135deg, var(--forest), var(--grass));
  color: #fff;
}
.text-center { text-align: center; }

/* ─── SECTION TITLE ─── */
.section-title { text-align: center; margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block; padding: 6px 20px; border-radius: 50px;
  background: rgba(122,182,72,.1); color: var(--grass);
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-bg-dark .section-eyebrow { background: rgba(255,255,255,.12); color: var(--lime-light); }
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  color: var(--forest); line-height: 1.2; margin-bottom: 16px;
}
.section-bg-dark .section-h2 { color: #fff; }
.section-subtitle { font-size: 18px; color: var(--gray); line-height: 1.6; }
.section-bg-dark .section-subtitle { color: rgba(255,255,255,.65); }

/* ─── GRID ─── */
.grid-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.grid-2 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.grid-4 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
}
.grid-5 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px;
}

/* ─── CARDS ─── */
.card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid var(--gray-light);
  transition: all .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
}
.card-flat { border: none; box-shadow: none; }
.card-flat:hover { transform: none; box-shadow: none; }
.card-highlight { border: 2px solid var(--accent); }
.card-sm { padding: 24px; }
.card-center { text-align: center; }

/* ─── BADGE ─── */
.badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
}
.badge-lime { background: rgba(122,182,72,.1); color: var(--lime); }
.badge-accent { background: rgba(232,168,56,.12); color: var(--accent); }
.badge-forest { background: rgba(26,58,26,.08); color: var(--forest); }
.badge-white { background: rgba(255,255,255,.18); color: #fff; }

/* ─── NUMBER CIRCLE ─── */
.num-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--grass));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(122,182,72,.35);
}

/* ─── STEP ROW ─── */
.step-row { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
.step-title { font-weight: 700; font-size: 18px; color: var(--forest); margin-bottom: 6px; }
.step-desc { color: var(--gray); line-height: 1.7; font-size: 15px; }

/* ─── CHECK LIST ─── */
.check-item {
  display: flex; gap: 10px; align-items: flex-start; font-size: 14px;
}
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(122,182,72,.12); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--lime); font-size: 12px; font-weight: 700;
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-question {
  width: 100%; padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; background: none; border: none; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--forest); text-align: left;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; flex-shrink: 0;
  transition: all .3s;
  background: rgba(122,182,72,.1); color: var(--lime);
}
.faq-item.open .faq-toggle {
  background: var(--lime); color: #fff; transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-answer {
  max-height: 400px; padding-bottom: 20px;
}
.faq-answer p { color: var(--gray); line-height: 1.7; font-size: 15px; }

/* ─── FORM SECTION ─── */
.form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--forest), var(--grass));
  position: relative; overflow: hidden;
}
.form-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.form-inner {
  max-width: 560px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.form-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px); color: #fff; font-weight: 700; margin-bottom: 12px;
}
.form-sub { color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 36px; }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.form-input {
  padding: 16px 24px; border-radius: 12px;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: #fff;
  font-size: 16px; font-family: 'Source Sans 3', sans-serif;
  backdrop-filter: blur(4px); outline: none; transition: border-color .3s;
}
.form-input::placeholder { color: rgba(255,255,255,.45); }
.form-input:focus { border-color: var(--lime-light); }
.form-note { color: rgba(255,255,255,.4); font-size: 13px; margin-top: 4px; }
.form-success {
  background: rgba(255,255,255,.12); border-radius: 20px; padding: 40px;
  backdrop-filter: blur(10px); animation: scaleIn .5s ease both;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--forest); color: rgba(255,255,255,.65); padding: 60px 20px 30px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; margin-bottom: 40px;
}
.footer-title { color: #fff; font-weight: 600; margin-bottom: 12px; }
.footer-link {
  display: block; color: rgba(255,255,255,.55); font-size: 14px; line-height: 2;
  transition: color .3s;
}
.footer-link:hover { color: var(--lime-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  text-align: center; font-size: 13px; color: rgba(255,255,255,.3);
}

/* ─── HERO (Home) ─── */
.hero-home {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(165deg, var(--forest) 0%, #1e4a1e 40%, var(--grass) 100%);
  position: relative; overflow: hidden; padding: 100px 20px 80px;
}
.hero-home::before {
  content: ''; position: absolute; inset: 0; opacity: .07;
  background: radial-gradient(circle at 70% 60%, rgba(122,182,72,.5) 0%, transparent 60%),
              radial-gradient(circle at 20% 30%, rgba(122,182,72,.3) 0%, transparent 50%);
}
.hero-content { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; width: 100%; }
.hero-inner { max-width: 680px; }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.hero-h1 span { color: var(--lime-light); }
.hero-sub {
  font-size: 19px; color: rgba(255,255,255,.72); line-height: 1.6;
  margin-bottom: 36px; max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--lime-light); }
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,.45); }

/* ─── HERO (Inner pages) ─── */
.hero-inner-page {
  padding: 120px 20px 80px; position: relative;
}
.hero-split {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-center-page {
  max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.hero-page-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 800;
  line-height: 1.15; margin: 20px 0;
}
.hero-page-h1 span { color: var(--lime); }
.hero-dark .hero-page-h1 { color: #fff; }
.hero-dark .hero-page-h1 span { color: var(--lime-light); }
.hero-page-sub {
  font-size: 18px; color: var(--gray); line-height: 1.6;
  margin-bottom: 28px; max-width: 480px;
}
.hero-dark .hero-page-sub { color: rgba(255,255,255,.72); max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-perks { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.hero-perk { display: flex; gap: 8px; align-items: center; font-size: 14px; font-weight: 500; color: var(--forest); }
.hero-dark .hero-perk { color: rgba(255,255,255,.7); }

/* illustration placeholder */
.hero-illust {
  background: linear-gradient(135deg, rgba(45,90,39,.12), rgba(122,182,72,.08));
  border-radius: 24px; height: 360px; display: flex; align-items: center;
  justify-content: center; border: 1px solid rgba(122,182,72,.15);
  position: relative; overflow: hidden;
}
.hero-illust-emoji { font-size: 72px; margin-bottom: 8px; }
.hero-illust-text { color: var(--grass); font-weight: 600; font-size: 14px; }

/* ─── GRASS DECORATION ─── */
.grass-deco {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  overflow: hidden; pointer-events: none;
}
.grass-blade {
  position: absolute; bottom: 0; width: 8px; border-radius: 50% 50% 0 0;
  background: linear-gradient(to top, var(--grass), rgba(122,182,72,.5));
  transform-origin: bottom;
}

/* ─── PRICE CARD ─── */
.price-card { text-align: center; padding: 28px; }
.price-big { font-size: 36px; font-weight: 800; color: var(--lime); margin-bottom: 4px; }
.price-unit { font-size: 14px; color: var(--warm-gray); margin-bottom: 8px; }
.price-note { font-size: 13px; color: var(--gray); }

/* ─── PACKAGES ─── */
.package-card { padding: 0; overflow: hidden; position: relative; }
.package-popular-bar {
  background: var(--lime); color: #fff; text-align: center;
  padding: 6px 0; font-size: 12px; font-weight: 700; letter-spacing: 1px;
}
.package-body { padding: 32px; }
.package-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.package-price { font-size: 42px; font-weight: 800; }
.package-price-unit { font-size: 16px; color: var(--warm-gray); }
.package-note { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.package-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.package-feature {
  display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--dark); line-height: 1.5;
}
.package-check { font-weight: 700; font-size: 16px; line-height: 22px; }

/* ─── PROGRESS BAR ─── */
.progress-item { margin-bottom: 24px; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.progress-label { font-weight: 600; color: var(--forest); }
.progress-pct { font-weight: 800; color: var(--lime); }
.progress-bar {
  height: 8px; border-radius: 4px; background: rgba(122,182,72,.1); overflow: hidden; margin-bottom: 6px;
}
.progress-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--lime), var(--grass));
  transition: width 1.2s ease;
}
.progress-desc { font-size: 13px; color: var(--gray); }

/* ─── GUARANTEE CARD ─── */
.guarantee-card {
  padding: 24px; border-radius: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.guarantee-card h3 { color: var(--lime-light); font-weight: 700; margin-bottom: 8px; }
.guarantee-card p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; }

/* ─── WHY-US GRID ─── */
.why-item {
  display: flex; gap: 12px; align-items: center; padding: 16px;
  font-size: 15px; font-weight: 500; color: var(--forest);
}
.why-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(122,182,72,.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}

/* ─── ADVANTAGE ROW ─── */
.adv-item { display: flex; gap: 16px; padding: 20px; }
.adv-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(122,182,72,.08); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.adv-title { font-weight: 700; font-size: 16px; color: var(--forest); margin-bottom: 6px; }
.adv-desc { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* ─── REVIEW CARD ─── */
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--accent); font-size: 18px; }
.review-text { color: var(--dark); line-height: 1.7; font-size: 15px; margin-bottom: 16px; font-style: italic; }
.review-name { font-weight: 700; color: var(--forest); font-size: 14px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest), var(--grass));
  border-radius: 20px; padding: 48px 36px; text-align: center; border: none;
}
.cta-banner h3 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,.72); font-size: 16px; margin-bottom: 24px; line-height: 1.6; }
.cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── PRICE TABLE (kupit) ─── */
.price-table {
  border-radius: 16px; padding: 32px; border: 1px solid rgba(122,182,72,.15);
  background: linear-gradient(135deg, rgba(45,90,39,.06), rgba(122,182,72,.04));
}
.price-row {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}
.price-row:last-child { border-bottom: none; }

/* ─── RIBBON ─── */
.ribbon {
  position: absolute; top: 16px; right: -28px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 36px;
  transform: rotate(45deg); letter-spacing: 1px;
}

/* ─── CALCULATION EXAMPLES ─── */
.calc-card {
  padding: 16px; background: #fff; border-radius: 12px; border: 1px solid var(--gray-light);
}
.calc-area { font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.calc-type { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.calc-total { font-weight: 800; color: var(--lime); font-size: 20px; }

/* ─── PRODUCT CARD (kupit) ─── */
.product-card { padding: 0; overflow: hidden; }
.product-visual {
  height: 160px;
  background: linear-gradient(135deg, rgba(45,90,39,.1), rgba(122,182,72,.06));
  display: flex; align-items: center; justify-content: center;
}
.product-body { padding: 28px; }
.product-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--forest); }
.product-price { font-weight: 800; color: var(--lime); font-size: 22px; }
.product-desc { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.product-specs { display: flex; flex-direction: column; gap: 6px; }
.product-spec { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--gray); }

/* ─── DELIVERY CARD ─── */
.delivery-card { text-align: center; padding: 28px; }
.delivery-icon { font-size: 28px; margin-bottom: 12px; }
.delivery-title { font-weight: 700; font-size: 17px; color: var(--forest); margin-bottom: 8px; }
.delivery-price { font-weight: 800; color: var(--lime); font-size: 22px; margin-bottom: 8px; }
.delivery-desc { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* ─── TIMING CARD ─── */
.timing-card { text-align: center; padding: 24px; }
.timing-area { font-weight: 700; font-size: 16px; color: var(--forest); margin-bottom: 6px; }
.timing-days { font-weight: 800; font-size: 24px; color: var(--lime); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr !important; }
  .hero-illust { height: 240px; margin-top: 20px; }
  .grid-2-force { grid-template-columns: 1fr !important; }
  .section { padding: 60px 16px; }
  .hero-stats { gap: 20px; }
}
