/* =========================================================
   SMART WATER BOX — MASTER STYLESHEET
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-width: 320px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid #ffc847; outline-offset: 2px; }

/* ---------- VARIABLES ---------- */
:root {
  --blue: #3281B5;
  --blue-d: #235e87;
  --blue-l: #eaf3f9;
  --blue-l2: #d3e7f2;
  --grey: #C8C7CD;
  --grey-d: #6b6a72;
  --grey-l: #f4f4f6;
  --ink: #1c2530;
  --ink-soft: #4a5361;
  --gold: #FFC847;
  --gold-d: #e0a91f;
  --white: #ffffff;
  --green: #2e9e5b;
  --shadow-sm: 0 2px 10px rgba(28,37,48,.08);
  --shadow-md: 0 10px 30px rgba(28,37,48,.12);
  --shadow-lg: 0 20px 50px rgba(28,37,48,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- UTILITIES ---------- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-l);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.sec-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.sec-h {
  font-family: var(--ff-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.sec-h em { color: var(--blue); font-style: normal; }

.sec-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.sec-head-center { text-align: center; }

.btn-green, .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 50px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
  line-height: 1.2;
}
.btn-gold {
  background: linear-gradient(180deg, #ffd569, var(--gold));
  color: #5a3d00;
  box-shadow: 0 10px 24px rgba(255,200,71,.45);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255,200,71,.55); }
.btn-green {
  background: linear-gradient(180deg, #3a97cf, var(--blue));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(50,129,181,.4);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(50,129,181,.5); }
.btn-sub { display: block; font-size: 12px; font-weight: 500; opacity: .85; margin-top: 2px; }

.btn-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.btn-note { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }

section { padding: 90px 0; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 9px 16px;
}
.topbar span { color: var(--gold); }

/* ---------- HEADER ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eceef1;
  transition: box-shadow .25s ease;
}
header.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 38px; height: 38px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--ff-head); font-weight: 700; font-size: 20px; color: var(--ink); }
.logo-tag { font-size: 11px; color: var(--grey-d); letter-spacing: .3px; }

.nav-desktop { display: flex; align-items: center; gap: 34px; }
.nav-desktop a {
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
  transition: color .2s ease; position: relative;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--blue); }
.nav-desktop a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -20px;
  height: 3px; background: var(--blue); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 18px; }
.h-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 40px;
  box-shadow: 0 8px 18px rgba(50,129,181,.35);
  transition: transform .18s ease;
}
.h-btn:hover { transform: translateY(-2px); }
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255,200,71,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,200,71,.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,200,71,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,200,71,0); }
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; padding: 4px;
}
.hamburger span {
  height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.o span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.o span:nth-child(2) { opacity: 0; }
.hamburger.o span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mob-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #eceef1;
  padding: 10px 24px 20px;
}
.mob-menu.show { display: flex; }
.mob-menu a {
  padding: 13px 0; font-weight: 600; font-size: 15px;
  color: var(--ink-soft); border-bottom: 1px solid #f1f2f4;
}
.mob-menu .h-btn { margin-top: 14px; justify-content: center; }

/* ---------- HERO ---------- */
.hero { padding: 60px 0 80px; background: linear-gradient(180deg, var(--blue-l), var(--white) 70%); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}
.hero-img-col { order: 1; text-align: center; position: relative; }
.hero-img-wrap { position: relative; display: inline-block; }
.hero-img-wrap img { animation: floaty 4.5s ease-in-out infinite; filter: drop-shadow(0 30px 40px rgba(28,37,48,.25)); max-width: 480px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-badge {
  position: absolute; bottom: 6%; right: 2%;
  background: var(--white); border-radius: 50%;
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; box-shadow: var(--shadow-md);
  text-align: center; line-height: 1.1;
}
.hero-badge b { font-size: 22px; color: var(--blue); font-family: var(--ff-head); }
.hero-badge span { font-size: 9px; font-weight: 700; color: var(--grey-d); text-transform: uppercase; letter-spacing: .5px; }

.hero-text-col { order: 2; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--blue-l2);
  padding: 8px 16px; border-radius: 30px;
  font-size: 12.5px; font-weight: 700; color: var(--blue);
  letter-spacing: .4px; text-transform: uppercase;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.hero-text-col h1 {
  font-family: var(--ff-head);
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.15; font-weight: 700;
  margin-bottom: 20px; color: var(--ink);
}
.hero-text-col h1 em { color: var(--blue); font-style: normal; }
.hero-text-col h1 strong { color: var(--gold-d); font-weight: 800; }
.hero-desc { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 24px; max-width: 540px; }
.hero-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.hero-stars .stars { color: var(--gold-d); font-size: 18px; letter-spacing: 2px; }
.hero-stars span { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.hero-cta { margin-bottom: 26px; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  background: var(--grey-l); padding: 8px 14px; border-radius: 30px;
}
.trust-pill svg { color: var(--green); flex-shrink: 0; }

/* ---------- REVIEWS ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--white); border: 1px solid #eceef1;
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 700; font-size: 15px; }
.review-loc { font-size: 12.5px; color: var(--grey-d); }
.review-stars { color: var(--gold-d); font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #e9f7ef; color: var(--green);
  font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 20px;
}
.review-headline { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.review-story { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- WHY CHOOSE ---------- */
.why-choose { background: var(--grey-l); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); padding: 20px 22px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-l); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.why-item p { font-size: 15px; font-weight: 600; color: var(--ink); }

/* ---------- PRICING ---------- */
.pricing { background: linear-gradient(160deg, var(--blue-d), var(--blue)); color: var(--white); text-align: center; }
.pricing .sec-tag { background: rgba(255,255,255,.15); color: var(--white); }
.pricing .sec-tag::before { background: var(--gold); }
.pricing h2 { font-family: var(--ff-head); font-size: clamp(28px,4vw,40px); margin-bottom: 14px; }
.pricing .sec-sub2 { color: #d6e8f5; max-width: 560px; margin: 0 auto 40px; font-size: 16px; }
.offer-card {
  background: var(--white); color: var(--ink);
  border-radius: 22px; max-width: 480px; margin: 0 auto;
  padding: 36px 32px; box-shadow: var(--shadow-lg);
  position: relative;
}
.offer-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #5a3d00; font-weight: 800; font-size: 12.5px;
  padding: 8px 20px; border-radius: 30px; letter-spacing: .4px; white-space: nowrap;
}
.offer-bundle-img { display: flex; justify-content: center; margin: 18px 0 20px; }
.offer-bundle-img img { max-width: 100%; width: 320px; border-radius: 10px; }

/* ---------- COMPARISON TABLE ---------- */
.compare-wrap { overflow-x: auto; max-width: 980px; margin: 0 auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 760px; background: var(--white); }
.compare-table th, .compare-table td { padding: 15px 16px; text-align: center; font-size: 13.5px; border-bottom: 1px solid #eceef1; color: var(--ink-soft); }
.compare-table th { background: var(--blue-l); color: var(--blue-d); font-weight: 700; font-size: 13px; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; font-weight: 700; color: var(--ink); }
.compare-table tr:last-child td { border-bottom: none; }

/* ---------- PROS & CONS ---------- */
.proscons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto; }
.proscons-col { background: var(--white); border: 1px solid #eceef1; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.proscons-col h3 { font-size: 18px; margin-bottom: 18px; }
.proscons-col ul li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); padding: 8px 0; align-items: flex-start; line-height: 1.55; }
.proscons-col.cons svg { color: #c0392b; flex-shrink: 0; margin-top: 3px; }
.proscons-col.pros svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ---------- AUDIENCE GRID ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card { background: var(--white); border: 1px solid #eceef1; border-radius: var(--radius-sm); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.audience-card .why-icon { margin: 0 auto 14px; width: 44px; height: 44px; }
.audience-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.audience-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- CAUSE LIST ---------- */
.cause-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 940px; margin: 0 auto; }
.cause-item { background: var(--white); border-left: 4px solid var(--blue); padding: 18px 22px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.cause-item b { display: block; margin-bottom: 5px; font-size: 14.5px; color: var(--ink); }
.cause-item span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.offer-price-row { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 14px 0 6px; }
.offer-old { font-size: 20px; color: var(--grey-d); text-decoration: line-through; }
.offer-new { font-size: 46px; font-weight: 800; color: var(--blue); font-family: var(--ff-head); }
.offer-save { color: var(--green); font-weight: 700; font-size: 14px; margin-bottom: 22px; }
.offer-list { text-align: left; margin: 0 auto 26px; max-width: 340px; }
.offer-list li { display: flex; gap: 10px; font-size: 14.5px; padding: 6px 0; color: var(--ink-soft); }
.offer-list svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ---------- WHAT IS ---------- */
.what-is-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.what-is-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.what-is-text p { font-size: 16px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.75; }

/* ---------- HOW IT WORKS PROCESS GRID ---------- */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 980px; margin: 0 auto; }
.process-col { background: var(--white); border: 1px solid #e4e7eb; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.process-col p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.process-col p:last-child { margin-bottom: 0; }
.how-works { background: var(--grey-l); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 24px;
  text-align: center; position: relative; box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.how-card:hover { transform: translateY(-6px); }
.how-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: #5a3d00; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.how-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--blue-l); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin: 14px auto 18px;
}
.how-card h3 { font-size: 17px; margin-bottom: 10px; }
.how-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- ADVANTAGE ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.adv-item { display: flex; gap: 16px; align-items: flex-start; }
.adv-dot {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.adv-item h3 { font-size: 16.5px; margin-bottom: 6px; }
.adv-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

/* ---------- BENEFITS ---------- */
.benefits { background: linear-gradient(160deg, var(--blue-d), var(--blue)); color: var(--white); }
.benefits .sec-tag { background: rgba(255,255,255,.15); color: var(--white); }
.benefits .sec-tag::before { background: var(--gold); }
.benefits .sec-sub { color: #d6e8f5; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 940px; margin: 0 auto; }
.benefit-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 16px 20px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 600;
}
.benefit-item svg { flex-shrink: 0; color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eceef1; }
.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 22px 6px; font-weight: 700; font-size: 16px; cursor: pointer; gap: 20px;
}
.faq-q-text { flex: 1; line-height: 1.5; padding-top: 2px; }
.faq-q .plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-l); color: var(--blue); display: flex; align-items: center; justify-content: center; transition: transform .25s ease; font-size: 16px; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a p { padding: 0 40px 22px 6px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* ---------- FINAL CTA ---------- */
.final-cta { background: var(--ink); color: var(--white); text-align: center; }
.urgency-box {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,200,71,.14); border: 1px solid rgba(255,200,71,.35);
  color: var(--gold); font-weight: 700; font-size: 13px;
  padding: 9px 20px; border-radius: 30px; margin-bottom: 22px; letter-spacing: .3px;
}
.final-cta h2 { font-family: var(--ff-head); font-size: clamp(28px,4.4vw,44px); margin-bottom: 16px; }
.final-cta .sec-sub { color: #b9c0ca; }
.final-cta img.order-img { max-width: 300px; margin: 0 auto 26px; border-radius: 14px; cursor: pointer; transition: transform .2s ease; }
.final-cta img.order-img:hover { transform: scale(1.03); }
.price-note { font-size: 14px; color: #9aa3af; margin-top: 14px; }
.pay-logos { display: flex; justify-content: center; gap: 18px; margin-top: 34px; opacity: .7; flex-wrap: wrap; }
.pay-logos span { font-size: 12px; font-weight: 700; letter-spacing: .5px; border: 1px solid #444c58; padding: 6px 14px; border-radius: 6px; }

/* ---------- SECURITY STRIP ---------- */
.security-strip { padding: 30px 0; border-top: 1px solid #eceef1; border-bottom: 1px solid #eceef1; }
.security-strip .container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.sec-strip-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.sec-strip-item svg { color: var(--blue); }

/* ---------- GUARANTEE ---------- */
.guarantee-sec { text-align: center; }
.guarantee-sec .sec-h { margin-bottom: 40px; }
.guarantee-grid { display: grid; grid-template-columns: .5fr 1fr; gap: 50px; align-items: center; max-width: 840px; margin: 0 auto; text-align: left; }
.guarantee-img { text-align: center; }
.guarantee-img img { width: 170px; }
.guarantee-text p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }
.guarantee-text p:last-child { margin-bottom: 0; }

/* ---------- FOOTER ---------- */
footer.site-footer { background: #14191f; color: #aeb5c0; padding: 60px 0 30px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.footer-brand { max-width: 320px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand p { font-size: 13.5px; margin-top: 12px; line-height: 1.7; color: #8b93a0; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; letter-spacing: .3px; }
.footer-col a, .footer-col span { display: block; font-size: 13.5px; color: #8b93a0; padding: 6px 0; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-order { background: var(--gold); color: #5a3d00 !important; display: inline-block; padding: 10px 20px; border-radius: 30px; font-weight: 800; margin-top: 6px; }
.footer-legal { border-top: 1px solid #262c35; padding-top: 24px; font-size: 12px; color: #6b7280; line-height: 1.8; }
.footer-legal p { margin-bottom: 12px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 20px; font-size: 12.5px; color: #6b7280; }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--white); border-top: 1px solid #eceef1; padding: 12px 16px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.1);
}
.sticky-mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: #5a3d00; font-weight: 800; font-size: 15px;
  padding: 15px; border-radius: 40px; width: 100%;
}

/* ---------- LEGAL PAGES ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--blue-l), var(--white));
  text-align: center; padding: 70px 0 50px;
}
.page-hero h1 { font-family: var(--ff-head); font-size: clamp(30px,4.4vw,46px); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); font-size: 15.5px; }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 60px 24px; }
.legal-wrap h2 { font-family: var(--ff-head); font-size: 24px; margin: 36px 0 14px; color: var(--blue-d); }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p, .legal-wrap li { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 20px; list-style: disc; }
.legal-note {
  background: var(--grey-l); border-left: 4px solid var(--blue);
  padding: 18px 22px; border-radius: 8px; font-size: 14px; margin: 24px 0;
}
.legal-cta-box {
  background: var(--blue-l); border-radius: var(--radius);
  padding: 44px 30px; text-align: center; margin-top: 50px;
}
.legal-cta-box h3 { font-family: var(--ff-head); font-size: 24px; margin-bottom: 10px; }
.legal-cta-box p { margin-bottom: 22px; color: var(--ink-soft); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; max-width: 1080px; margin: 0 auto; padding: 70px 24px; }
.contact-form-wrap { background: var(--white); border: 1px solid #eceef1; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { font-family: var(--ff-head); font-size: 24px; margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1px solid #dfe2e7; border-radius: 10px;
  font-size: 14.5px; transition: border-color .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-submit-btn {
  background: var(--blue); color: var(--white); font-weight: 700; font-size: 15px;
  padding: 15px 30px; border-radius: 40px; width: 100%;
}
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card { display: flex; gap: 14px; background: var(--grey-l); padding: 20px; border-radius: var(--radius-sm); }
.info-card .info-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card h4 { font-size: 14.5px; margin-bottom: 4px; }
.info-card p { font-size: 13px; color: var(--ink-soft); }
.faq-cta-box { background: var(--blue); color: var(--white); border-radius: var(--radius-sm); padding: 24px; text-align: center; }
.faq-cta-box p { font-size: 13.5px; margin-bottom: 14px; color: #d6e8f5; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-img-col { order: 1; }
  .hero-text-col { order: 2; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .trust-pills { justify-content: center; }
  .what-is-grid { grid-template-columns: 1fr; }
  .what-is-img { order: 1; text-align: center; }
  .what-is-text { order: 2; }
  .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding: 50px 24px; }
  .proscons-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .cause-list { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .header-actions .h-btn.desktop-only { display: none; }
}

@media (max-width: 560px) {
  section { padding: 60px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .hero-img-wrap img { max-width: 320px; }
  .hero-badge { width: 76px; height: 76px; }
  .hero-badge b { font-size: 17px; }
  .offer-card { padding: 28px 20px; }
  .offer-new { font-size: 36px; }
  .sticky-mobile-cta { display: block; }
  .final-cta { padding-bottom: 110px; }
  .footer-cols { gap: 30px; }
  .security-strip .container { gap: 20px; }
  .audience-grid { grid-template-columns: 1fr; }
}
