/* ===== INSULCOOL PRO — style.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --navy:      #0f2044;
  --navy-mid:  #1a3360;
  --steel:     #2d5f8a;
  --sky:       #4a9cc8;
  --sky-light: #7ec8e3;
  --ice:       #d6edf7;
  --white:     #ffffff;
  --off-white: #f0f6fb;
  --text-dark: #0d1b2e;
  --text-mid:  #374b62;
  --text-light:#6b849a;
  --accent:    #e8a020;
  --accent-lt: #f5c660;
  --danger:    #c0392b;
  --success:   #2e7d32;
  --border:    #c3d8e8;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15,32,68,.10);
  --shadow-md: 0 6px 24px rgba(15,32,68,.16);
  --shadow-lg: 0 16px 48px rgba(15,32,68,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--steel); text-decoration: none; }
a:hover { color: var(--sky); }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 11px;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: .02em;
  line-height: 1.4;
}
.disclaimer-bar a { color: var(--sky-light); text-decoration: underline; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -.5px;
}
.logo span { color: var(--sky); }
nav a {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  margin-left: 24px;
  transition: color .2s;
}
nav a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--steel) !important; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--steel) 100%);
  color: var(--white);
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}
.hero::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' fill-rule='evenodd'%3E%3Cg fill='%234a9cc8' fill-opacity='0.06'%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");
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sky-light);
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6;
}
.price-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-bottom: 28px;
}
.price-badge-hero .price-new {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-lt);
}
.price-badge-hero .price-old {
  font-size: 18px;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
}
.price-badge-hero .badge-save {
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #d4891a 100%);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,160,32,.45);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,.55); color: var(--white); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-1px); }
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.trust-item svg { flex-shrink: 0; }
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-image-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}

/* ===== SECTION SHARED ===== */
section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -.3px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.65;
}

/* ===== BENEFITS ===== */
.benefits { background: var(--off-white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.how-steps { display: flex; flex-direction: column; gap: 24px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.how-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.how-images img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.how-images img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--accent); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.reviewer-loc { font-size: 12px; color: var(--text-light); }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 740px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}
.faq-q:hover { color: var(--steel); }
.faq-q .faq-arrow { font-size: 20px; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-bottom: 18px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ===== ORDER SECTION ===== */
.order-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); }
.order-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.order-title {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 14px;
}
.order-sub { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.order-price-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px 48px;
  margin-bottom: 32px;
}
.order-price-new { font-size: 52px; font-weight: 800; color: var(--accent-lt); line-height: 1; }
.order-price-old { font-size: 22px; color: rgba(255,255,255,.45); text-decoration: line-through; margin-top: 4px; }
.order-discount-badge {
  margin-top: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 50px;
}
.order-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.order-form input, .order-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.order-form input::placeholder, .order-form select::placeholder { color: rgba(255,255,255,.5); }
.order-form input:focus, .order-form select:focus {
  border-color: var(--sky-light);
  background: rgba(255,255,255,.15);
}
.order-form select option { color: var(--text-dark); background: var(--white); }
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #d4891a 100%);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,160,32,.5);
  width: 100%;
  margin-top: 6px;
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,.6); }
.order-legal {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  line-height: 1.5;
}
.order-legal a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* ===== BLOG SECTION ===== */
.blog-section { background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-large {
  grid-column: 1 / -1;
  flex-direction: row;
}
.blog-card img, .blog-card-large img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-large img {
  width: 45%;
  height: auto;
  flex-shrink: 0;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'Lora', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background .2s;
  width: fit-content;
}
.blog-card-link:hover { background: var(--steel); color: var(--white); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--sky-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--sky-light); }

/* ===== ARTICLE PAGES ===== */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: var(--white);
  padding: 60px 24px 50px;
  text-align: center;
}
.article-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 760px;
  margin: 0 auto 14px;
  line-height: 1.25;
}
.article-hero .article-meta {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 52px 24px;
}
.article-body h2 {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.article-body li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}
.info-box {
  background: var(--ice);
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 22px;
  margin: 28px 0;
}
.info-box p { margin: 0; font-size: 15px; color: var(--navy-mid); }
.disclaimer-article {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 36px 0;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.article-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 40px 0;
  text-align: center;
}
.article-cta h3 {
  font-family: 'Lora', serif;
  font-size: 24px;
  color: var(--white);
  margin: 0 0 10px;
}
.article-cta p { color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 22px; }
.article-cta .btn-primary { margin: 0 auto; }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 36px;
  text-align: center;
}
.legal-hero h1 {
  font-family: 'Lora', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 24px 72px;
}
.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
.legal-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { font-size: 15px; color: var(--text-mid); margin-bottom: 6px; }

/* ===== THANK YOU PAGE ===== */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--off-white);
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.thankyou-icon { font-size: 56px; margin-bottom: 22px; }
.thankyou-card h1 {
  font-family: 'Lora', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.thankyou-card p { font-size: 16px; color: var(--text-mid); line-height: 1.65; margin-bottom: 10px; }
.thankyou-price { font-size: 22px; font-weight: 800; color: var(--accent); }

/* ===== MINI FAQ (articles) ===== */
.mini-faq { margin-top: 40px; }
.mini-faq h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 18px;
}
.mini-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.mini-faq-q {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  background: var(--off-white);
  cursor: default;
}
.mini-faq-a {
  padding: 12px 18px 16px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image-badge { right: 0; bottom: -10px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-large { flex-direction: column; }
  .blog-card-large img { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  nav { display: none; }
  .order-price-new { font-size: 38px; }
  .order-price-block { padding: 22px 28px; }
  .thankyou-card { padding: 36px 24px; }
  .hero { padding: 50px 24px 48px; }
}

/* ===== VERTICAL BLOG CARDS ===== */
.blog-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.blog-card-v {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: row;
}
.blog-card-v:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-v img {
  width: 280px;
  min-width: 280px;
  height: 210px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-card-v .blog-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card-v h3 {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card-v p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .blog-card-v { flex-direction: column; }
  .blog-card-v img { width: 100%; min-width: unset; height: 200px; }
}

/* ===== CAROUSEL ===== */
.how-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy);
  aspect-ratio: 4/3;
  max-width: 100%;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,32,68,.65);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(15,32,68,.9); }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ===== MOBILE NAV HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}
.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); }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--sky);
    padding: 16px 24px 20px;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 200;
  }
  nav.open { display: flex; }
  nav a { margin-left: 0; font-size: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); }
  nav a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; text-align: center; border-bottom: none !important; border-radius: 50px; }
}
header { position: sticky; top: 0; z-index: 150; }

/* ===== REVIEWER AVATAR — PHOTO STYLE ===== */
.reviewer-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--ice);
  background: var(--navy);
}
.reviewer-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== TEMP SCIENCE BLOCK ===== */
.temp-science {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.temp-science .section-inner {
  position: relative;
  z-index: 2;
}
.temp-science .section-label { color: var(--sky-light); }
.temp-science .section-title {
  color: var(--white) !important;
  margin-bottom: 16px;
}
.temp-science .section-sub {
  color: rgba(255,255,255,.72) !important;
}
.temp-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.temp-zone {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  transition: background .2s, transform .2s;
  position: relative;
  z-index: 2;
}
.temp-zone:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-3px);
}
.temp-zone-icon {
  font-size: 44px;
  margin-bottom: 18px;
  line-height: 1;
  display: block;
}
.temp-zone-range {
  font-size: 30px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  margin-bottom: 6px;
  letter-spacing: -.5px;
  display: block;
  color: var(--white);
}
.temp-zone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  color: rgba(255,255,255,.55);
}
.temp-zone-desc {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}
/* zone accents */
.temp-zone.zone-cold {
  border-top: 3px solid #7ec8e3;
}
.temp-zone.zone-cold .temp-zone-range { color: #7ec8e3; }
.temp-zone.zone-good {
  border-top: 3px solid #6fcf97;
  background: rgba(111,207,151,.07);
}
.temp-zone.zone-good .temp-zone-range { color: #6fcf97; }
.temp-zone.zone-danger {
  border-top: 3px solid #f4a261;
}
.temp-zone.zone-danger .temp-zone-range { color: #f4a261; }

.temp-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.temp-fact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.temp-fact-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-light);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .temp-zones { grid-template-columns: 1fr; gap: 14px; }
  .temp-cta-row { flex-direction: column; gap: 12px; }
}

/* ===== ARTICLE HERO WITH IMAGE ===== */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--steel) 100%);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.article-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 320px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.article-hero-content {
  padding: 60px 48px 60px 24px;
}
.article-hero-content h1 {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  margin: 12px 0;
  color: var(--white);
}
.article-meta { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 14px; }
.article-hero-image {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .article-hero-inner { grid-template-columns: 1fr; }
  .article-hero-image { min-height: 220px; }
  .article-hero-content { padding: 36px 24px 32px; }
}

/* ===== LEGAL PAGES — FULL NAV ===== */
.legal-nav-full {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
