/* ThermoCalm RO — style_b5n2kw.css — Design 7: Încredere / Familie */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Lora:wght@400;700&display=swap');

:root {
  --sky: #eef6ff;
  --blue: #1e4fa0;
  --blue-light: #2d63c8;
  --blue-mid: #4a7dd4;
  --warm-white: #fffef9;
  --amber: #f0a500;
  --amber-light: #fff8e6;
  --amber-mid: #ffd97a;
  --text-main: #1a2e4a;
  --text-body: #3d5272;
  --gray-text: #6b7fa0;
  --gray-line: #dde8f8;
  --gray-bg: #f4f8ff;
  --white: #ffffff;
  --error: #dc2626;
  --success: #16a34a;
  --accent: var(--amber);
  --accent-rgb: 240,165,0;
  --blue-rgb: 30,79,160;
}

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

/* ===== DISCLAIMER ===== */
.disclaimer-bar {
  background: var(--blue);
  text-align: center;
  padding: 7px 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.advertorial-label {
  background: var(--amber-light);
  border-bottom: 1px solid var(--amber-mid);
  text-align: center;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 800;
  color: #b37a00;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== NAV C — minimalist + drawer ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--sky);
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(30,79,160,0.07);
}
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--amber); }
.nav-right-group { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--amber);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(240,165,0,0.35);
}
.nav-cta:hover { background: #d49200; box-shadow: 0 6px 20px rgba(240,165,0,0.45); transform: translateY(-1px); }
/* hamburger */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--sky); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* drawer */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(30,79,160,0.25);
  backdrop-filter: blur(3px);
  z-index: 150;
}
.nav-overlay.open { display: block; }
.nav-drawer {
  position: fixed;
  right: -320px; top: 0;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 200;
  transition: right 0.3s ease;
  padding: 28px 24px;
  box-shadow: -4px 0 32px rgba(30,79,160,0.15);
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }
.nav-drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.nav-drawer-logo { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: var(--blue); }
.nav-drawer-logo span { color: var(--amber); }
.nav-drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray-text); }
.nav-drawer-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.nav-drawer-links a {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  transition: background 0.2s, color 0.2s;
}
.nav-drawer-links a:hover { background: var(--sky); color: var(--blue); }
.nav-drawer-legal { border-top: 1px solid var(--gray-line); padding-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.nav-drawer-legal a { font-size: 13px; color: var(--gray-text); transition: color 0.2s; }
.nav-drawer-legal a:hover { color: var(--blue); }
/* hidden nav links (in drawer only) */
.nav-product-link, .nav-blog-link { display: none; }
@media (max-width: 600px) {
  .site-nav { padding: 0 16px; }
  .nav-logo { font-size: 18px; }
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, var(--blue) 0%, #2458b8 55%, #1a4a9a 100%);
  padding: 72px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 85%, rgba(240,165,0,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}
/* wave bottom */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 64px;
  background: var(--warm-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
/* IMAGE */
.hero-img-wrap { position: relative; }
.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 2px solid rgba(240,165,0,0.35);
  border-radius: 24px;
  pointer-events: none;
}
.hero-img-inner {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #163d82 0%, #1a4a9a 60%, #0f2d6e 100%);
  box-shadow: 0 0 0 1px rgba(240,165,0,0.2), 0 32px 80px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 32px 28px 20px;
  min-height: 440px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-inner::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.hero-img-inner img {
  width: 100%; max-width: 380px; height: auto; max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}
.hero-img-inner:hover img { transform: scale(1.04) translateY(-4px); }
.hero-img-badge {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(15,29,78,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240,165,0,0.4);
  border-radius: 12px;
  padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
}
.hero-img-badge-icon { font-size: 20px; }
.hero-img-badge-text { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.4; font-family: 'Nunito', sans-serif; }
.hero-img-badge-text strong { color: var(--amber); font-size: 14px; display: block; }
/* TEXT */
.hero-text { }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.4);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px; font-weight: 800;
  color: var(--amber-mid);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Nunito', sans-serif;
}
.hero-title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700; color: var(--white);
  margin-bottom: 16px; line-height: 1.15;
}
.hero-title .highlight { color: var(--amber); }
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.75);
  margin-bottom: 28px; line-height: 1.75;
  font-family: 'Nunito', sans-serif;
}
.hero-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.85);
  font-family: 'Nunito', sans-serif;
}
.hero-feature-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(240,165,0,0.2);
  border: 1px solid rgba(240,165,0,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--amber); flex-shrink: 0; font-weight: 800;
}
.hero-price-block {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px; padding: 18px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 16px;
}
.hero-price-new { font-size: 40px; font-weight: 800; color: var(--white); font-family: 'Lora', serif; line-height: 1; }
.hero-price-old { font-size: 20px; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.hero-discount { background: #ef4444; color: #fff; padding: 4px 12px; border-radius: 8px; font-size: 13px; font-weight: 800; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--white);
  padding: 16px 36px; border-radius: 999px;
  font-size: 17px; font-weight: 800;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 8px 28px rgba(240,165,0,0.45);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-cta::after { content: '→'; font-size: 18px; }
.hero-cta:hover { background: #d49200; box-shadow: 0 12px 36px rgba(240,165,0,0.55); transform: translateY(-2px); }
.hero-trust {
  display: flex; align-items: center; gap: 16px; margin-top: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap;
  font-family: 'Nunito', sans-serif;
}
.hero-trust-item { display: flex; align-items: center; gap: 5px; }
.hero-trust-item::before { content: '✓'; color: var(--amber); font-weight: 800; }
@media (max-width: 900px) { .hero-inner { gap: 36px; } .hero-img-inner img { max-height: 280px; } }
@media (max-width: 768px) {
  .hero-section { padding: 48px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-img-wrap::before { display: none; }
  .hero-img-inner { min-height: 300px; padding: 24px 20px 16px; }
  .hero-img-inner img { max-height: 240px; }
}

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

/* ===== PROBLEM / SOLUTION (Structure C) ===== */
.problem-solution-section { }
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30,79,160,0.12);
  margin-top: 8px;
}
.ps-col { padding: 40px 36px; }
.ps-problem {
  background: linear-gradient(135deg, #1a2e4a 0%, #233d62 100%);
  color: var(--white);
}
.ps-solution {
  background: linear-gradient(135deg, var(--amber-light) 0%, #fff9ed 100%);
  color: var(--text-main);
  border: 2px solid var(--amber-mid);
  border-left: none;
}
.ps-title {
  font-size: 20px; font-weight: 700;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.ps-problem .ps-title { color: #ff6b6b; }
.ps-solution .ps-title { color: var(--blue); }
.ps-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 15px; line-height: 1.55;
  font-family: 'Nunito', sans-serif;
}
.ps-problem .ps-item { color: rgba(255,255,255,0.85); }
.ps-solution .ps-item { color: var(--text-body); }
.ps-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 768px) {
  .ps-grid { grid-template-columns: 1fr; }
  .ps-solution { border-left: 2px solid var(--amber-mid); border-top: none; }
  .ps-col { padding: 28px 24px; }
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border: 2px solid var(--gray-line);
  border-radius: 20px; padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), #ffd060);
  opacity: 0; transition: opacity 0.3s;
}
.benefit-card:hover { border-color: var(--amber); box-shadow: 0 8px 32px rgba(240,165,0,0.12); transform: translateY(-3px); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--amber-light);
  border: 1px solid var(--amber-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.benefit-title { font-size: 16px; font-weight: 800; color: var(--blue); margin-bottom: 8px; font-family: 'Nunito', sans-serif; }
.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-wrap { position: relative; border-radius: 20px; overflow: hidden; border: 2px solid var(--gray-line); box-shadow: 0 8px 32px rgba(30,79,160,0.1); }
.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: 460px; object-fit: cover; }
.carousel-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,46,74,0.88));
  padding: 48px 32px 24px; color: #fff;
}
.carousel-slide-caption h3 { font-size: 20px; margin-bottom: 6px; }
.carousel-slide-caption p { font-size: 14px; color: rgba(255,255,255,0.8); font-family: 'Nunito', sans-serif; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: 2px solid var(--gray-line); color: var(--blue);
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 18px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12); transition: all 0.2s;
}
.carousel-btn:hover { background: var(--amber); color: #fff; border-color: var(--amber); }
.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, transform 0.2s; }
.carousel-dot.active { background: var(--amber); transform: scale(1.3); }
@media (max-width: 768px) { .carousel-slide img { height: 280px; } }

/* ===== ORDER FORM 1 — classic vertical ===== */
.order-section { background: var(--sky); }
.order-section-inner { max-width: 620px; margin: 0 auto; }
.order-form-card {
  background: var(--white);
  border: 2px solid var(--gray-line);
  border-radius: 24px; padding: 40px;
  box-shadow: 0 8px 40px rgba(30,79,160,0.1);
}
.order-form-title { font-size: 26px; font-weight: 700; color: var(--blue); text-align: center; margin-bottom: 6px; }
.order-form-subtitle { text-align: center; font-size: 15px; color: var(--gray-text); margin-bottom: 24px; }
.form-price-badge {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 28px; padding: 16px;
  background: var(--amber-light); border: 2px solid var(--amber-mid); border-radius: 16px;
}
.form-price-new { font-size: 32px; font-weight: 800; color: var(--blue); font-family: 'Lora', serif; }
.form-price-old { font-size: 18px; color: var(--gray-text); text-decoration: line-through; }
.form-discount-badge { background: #ef4444; color: #fff; padding: 4px 12px; border-radius: 8px; font-size: 13px; font-weight: 800; }
/* classic vertical form */
.order-form { display: flex; flex-direction: column; gap: 14px; }
.field-group { display: flex; flex-direction: column; gap: 5px; }
.field-group label { font-size: 14px; font-weight: 700; color: var(--text-body); }
.field-group input, .field-group select {
  background: var(--gray-bg);
  border: 2px solid var(--gray-line);
  border-radius: 12px; padding: 12px 16px;
  color: var(--text-main); font-size: 15px;
  font-family: 'Nunito', sans-serif; outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-group input::placeholder { color: #a0aec0; }
.field-group input:focus, .field-group select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(74,125,212,0.12);
  background: var(--white);
}
.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; font-family: 'Nunito', sans-serif; }
.field-group.error .field-error { display: block; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; }
.consent-row input[type=checkbox] { margin-top: 3px; accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }
.consent-row label { font-size: 13px; color: var(--gray-text); line-height: 1.5; font-family: 'Nunito', sans-serif; }
.consent-row a { color: var(--blue); text-decoration: underline; }
.submit-btn {
  width: 100%; padding: 17px;
  background: var(--amber); color: var(--white);
  border: none; border-radius: 999px;
  font-size: 18px; font-weight: 800;
  font-family: 'Nunito', sans-serif; cursor: pointer;
  box-shadow: 0 8px 28px rgba(240,165,0,0.4);
  transition: background 0.2s, transform 0.2s;
  margin-top: 6px;
}
.submit-btn:hover:not(:disabled) { background: #d49200; transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
@media (max-width: 600px) { .order-form-card { padding: 24px 18px; } }

/* ===== DELIVERY PROGRESS ===== */
.delivery-progress { margin-top: 32px; }
.delivery-title { font-size: 14px; color: var(--gray-text); text-align: center; margin-bottom: 24px; font-family: 'Nunito', sans-serif; }
.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: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--sky); border: 2px solid var(--gray-line);
}
.delivery-step.active .delivery-step-icon { background: var(--amber-light); border-color: var(--amber); }
.delivery-step-label { font-size: 11px; color: var(--gray-text); text-align: center; line-height: 1.3; font-family: 'Nunito', sans-serif; }
.delivery-step.active .delivery-step-label { color: #b37a00; font-weight: 700; }
.delivery-line { flex: 1; height: 2px; background: var(--gray-line); min-width: 20px; }

/* ===== RATING BAR ===== */
.rating-bar-section { background: var(--warm-white); }
.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(--blue); font-family: 'Lora', serif; line-height: 1; }
.rating-stars { font-size: 24px; color: var(--amber); margin: 6px 0; }
.rating-count { font-size: 13px; color: var(--gray-text); font-family: 'Nunito', sans-serif; }
.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; font-family: 'Nunito', sans-serif; }
.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(--amber), #ffd060); }
.rating-pct { font-size: 12px; color: var(--gray-text); width: 34px; text-align: right; font-family: 'Nunito', sans-serif; }

/* ===== 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: 2px solid var(--gray-line);
  border-radius: 20px; padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover { border-color: var(--amber); box-shadow: 0 6px 24px rgba(240,165,0,0.1); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar { border-radius: 50%; flex-shrink: 0; }
.review-name { font-weight: 800; color: var(--blue); font-size: 15px; font-family: 'Nunito', sans-serif; }
.review-city { font-size: 12px; color: var(--gray-text); }
.review-stars { color: var(--amber); font-size: 15px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-body); line-height: 1.65; font-family: 'Nunito', sans-serif; }

/* ===== FAQ — chat style ===== */
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 2px solid var(--gray-line); border-radius: 16px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--blue-mid); }
.faq-question {
  width: 100%; padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'Nunito', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--blue);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-question:hover { background: var(--sky); }
.faq-icon { font-size: 20px; color: var(--amber); 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(--text-body); line-height: 1.7; font-family: 'Nunito', sans-serif;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 20px; }

/* ===== BLOG variant 3 ===== */
.blog-section { }
.blog-grid-v3 { margin-top: 36px; }
.blog-featured {
  display: flex; border-radius: 20px; overflow: hidden;
  border: 2px 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(--amber); box-shadow: 0 8px 32px rgba(240,165,0,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(--amber-light); border: 1px solid var(--amber-mid);
  color: #b37a00; font-size: 11px; font-weight: 800;
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em;
  font-family: 'Nunito', sans-serif;
}
.blog-card-title { font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--gray-text); margin-bottom: 14px; line-height: 1.6; font-family: 'Nunito', sans-serif; }
.blog-card-meta { font-size: 12px; color: #a0aec0; margin-bottom: 14px; font-family: 'Nunito', sans-serif; }
.blog-card-cta {
  display: inline-block; background: var(--blue); color: var(--white);
  padding: 9px 20px; border-radius: 999px; font-size: 13px; font-weight: 800;
  transition: background 0.2s; font-family: 'Nunito', sans-serif; align-self: flex-start;
}
.blog-card-cta:hover { background: var(--blue-light); }
.blog-small-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card-v {
  background: var(--white); border: 2px solid var(--gray-line);
  border-radius: 16px; 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(--amber); box-shadow: 0 6px 20px rgba(240,165,0,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(--blue); 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 .nav-logo span { color: var(--amber); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 260px; font-family: 'Nunito', sans-serif; }
.footer-links h4 { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-family: 'Nunito', sans-serif; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; font-family: 'Nunito', sans-serif; }
.footer-links ul li a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); font-family: 'Nunito', sans-serif; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; font-family: 'Nunito', sans-serif; }
.footer-legal a:hover { color: var(--amber); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(30,79,160,0.4); backdrop-filter: blur(6px);
  z-index: 999; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.active { display: flex; }
.modal-card {
  background: var(--white); border-radius: 24px; padding: 44px;
  max-width: 460px; width: 100%; text-align: center;
  box-shadow: 0 24px 64px rgba(30,79,160,0.25);
  border: 2px solid var(--amber-mid);
}
.modal-check { font-size: 60px; 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(--blue); margin-bottom: 10px; }
.modal-sub { font-size: 15px; color: var(--gray-text); margin-bottom: 16px; font-family: 'Nunito', sans-serif; }
.modal-price { font-size: 28px; font-weight: 800; color: var(--amber); margin-bottom: 20px; font-family: 'Lora', serif; }
.modal-close { background: var(--amber); color: #fff; border: none; padding: 12px 28px; border-radius: 999px; font-size: 15px; font-weight: 800; cursor: pointer; font-family: 'Nunito', sans-serif; }

/* ===== THANK YOU ===== */
.thankyou-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 48px 24px; background: var(--sky); }
.thankyou-card { background: var(--white); border: 2px solid var(--gray-line); border-radius: 24px; padding: 56px 40px; max-width: 520px; text-align: center; box-shadow: 0 8px 40px rgba(30,79,160,0.1); }
.thankyou-icon { font-size: 64px; margin-bottom: 20px; }
.thankyou-title { font-size: 32px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.thankyou-sub { font-size: 16px; color: var(--gray-text); margin-bottom: 24px; font-family: 'Nunito', sans-serif; }

/* ===== BLOG PAGE ===== */
.blog-hero-section { background: linear-gradient(135deg, var(--blue), var(--blue-light)); padding: 64px 24px 48px; border-bottom: 2px solid rgba(240,165,0,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; font-family: 'Nunito', sans-serif; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.blog-tag-pill { background: rgba(240,165,0,0.15); border: 1px solid rgba(240,165,0,0.4); color: var(--amber-mid); padding: 5px 16px; border-radius: 999px; font-size: 13px; font-weight: 800; font-family: 'Nunito', sans-serif; }
.blog-count-bar { text-align: center; padding: 14px; border-bottom: 1px solid var(--gray-line); font-size: 13px; color: var(--gray-text); background: var(--sky); font-family: 'Nunito', sans-serif; }
.blog-content-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.blog-bottom-cta { background: var(--amber-light); border: 2px solid var(--amber-mid); border-radius: 20px; padding: 40px; text-align: center; margin-top: 48px; }
.blog-bottom-cta h3 { font-size: 24px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.blog-bottom-cta p { color: var(--gray-text); margin-bottom: 20px; font-family: 'Nunito', sans-serif; }
.blog-bottom-cta a { display: inline-block; background: var(--amber); color: #fff; padding: 14px 32px; border-radius: 999px; font-weight: 800; font-size: 16px; font-family: 'Nunito', sans-serif; }

/* ===== ARTICLE ===== */
.article-hero { background: linear-gradient(135deg, var(--blue), var(--blue-light)); padding: 56px 24px 0; }
.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; font-family: 'Nunito', sans-serif; }
.article-hero img { width: 100%; border-radius: 12px 12px 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(--blue); margin: 32px 0 14px; }
.article-body p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; font-family: 'Nunito', sans-serif; }
.article-body ul { padding-left: 20px; margin-bottom: 16px; }
.article-body ul li { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 6px; font-family: 'Nunito', sans-serif; }
.info-box { background: var(--amber-light); border-left: 3px solid var(--amber); border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 24px 0; font-size: 14px; color: var(--text-body); line-height: 1.7; font-family: 'Nunito', sans-serif; }
.disclaimer-article { background: var(--sky); border: 1px solid var(--gray-line); border-radius: 12px; padding: 14px 18px; margin-top: 32px; font-size: 12px; color: var(--gray-text); line-height: 1.6; font-family: 'Nunito', sans-serif; }
.article-cta { background: var(--amber-light); border: 2px solid var(--amber-mid); border-radius: 16px; padding: 28px; text-align: center; margin-top: 36px; }
.article-cta h3 { font-size: 20px; color: var(--blue); margin-bottom: 8px; }
.article-cta p { font-size: 14px; color: var(--gray-text); margin-bottom: 16px; font-family: 'Nunito', sans-serif; }
.article-cta a { display: inline-block; background: var(--amber); color: #fff; padding: 12px 28px; border-radius: 999px; font-weight: 800; font-size: 15px; font-family: 'Nunito', sans-serif; }
.mini-faq { margin-top: 36px; }
.mini-faq h3 { font-size: 18px; color: var(--blue); margin-bottom: 16px; }

/* ===== LEGAL ===== */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 56px 24px; }
.legal-wrap h1 { font-size: 32px; color: var(--blue); margin-bottom: 32px; }
.legal-wrap h2 { font-size: 20px; color: var(--blue); margin: 28px 0 12px; }
.legal-wrap p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 14px; font-family: 'Nunito', sans-serif; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap ul li { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 6px; font-family: 'Nunito', sans-serif; }
.legal-wrap a { color: var(--blue-mid); }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.btn-primary { display: inline-block; background: var(--amber); color: #fff; padding: 14px 32px; border-radius: 999px; font-size: 16px; font-weight: 800; font-family: 'Nunito', sans-serif; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: #d49200; transform: translateY(-2px); }
