/* ============================================================
   SOKWELL — css/style.css
   Architecture: Section-scoped semantic
   Variables: --tone-* family
   Typography: Fraunces (display) + Plus Jakarta Sans (body)
   Palette: Soft blue-pastel wellness
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --tone-main:       #2C6E9B;
  --tone-support:    #5B9DC5;
  --tone-cta:        #E07B52;
  --tone-cta-hover:  #C96840;
  --tone-light:      #EAF4FB;
  --tone-pale:       #F5FAFF;
  --tone-mist:       #D6EAF8;
  --tone-soft-green: #E8F5EF;
  --tone-sand:       #FDF6EE;
  --tone-text:       #1E2D3D;
  --tone-muted:      #6B7F93;
  --tone-border:     #D4E6F3;
  --tone-white:      #FFFFFF;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-pill: 60px;

  --shadow-soft: 0 4px 20px rgba(44, 110, 155, 0.08);
  --shadow-card: 0 2px 16px rgba(44, 110, 155, 0.10);
  --shadow-lift: 0 8px 32px rgba(44, 110, 155, 0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --max-w: 1140px;
  --gap-section: 88px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--tone-text);
  background: var(--tone-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.wrap { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tone-cta); color: var(--tone-white);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 34px; border-radius: var(--radius-pill);
  transition: background 0.25s, transform 0.18s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(224, 123, 82, 0.28);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--tone-cta-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,123,82,.36); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--tone-main);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 12px 28px; border-radius: var(--radius-pill);
  border: 2px solid var(--tone-main);
  transition: background 0.22s, color 0.22s;
}
.btn-outline:hover { background: var(--tone-main); color: var(--tone-white); }

.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tone-support); background: var(--tone-light);
  padding: 5px 14px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-display); font-weight: 500; line-height: 1.2;
  color: var(--tone-text);
}
.section-heading.large { font-size: clamp(2rem, 3.8vw, 2.8rem); }
.section-heading.medium { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.section-subtext { color: var(--tone-muted); font-size: 1.05rem; line-height: 1.7; margin-top: 12px; }
.text-center { text-align: center; }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--tone-border);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 24px rgba(44,110,155,0.10);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.9rem; color: var(--tone-muted); max-width: 680px; }
#cookie-banner a { color: var(--tone-main); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept {
  background: var(--tone-main); color: white; font-size: 0.88rem; font-weight: 600;
  padding: 9px 22px; border-radius: var(--radius-pill); transition: background 0.2s;
}
.cookie-accept:hover { background: var(--tone-support); }
.cookie-reject {
  background: transparent; color: var(--tone-muted); font-size: 0.88rem; font-weight: 500;
  padding: 9px 16px; border-radius: var(--radius-pill); border: 1px solid var(--tone-border);
  transition: border-color 0.2s;
}
.cookie-reject:hover { border-color: var(--tone-muted); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 800;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--tone-border);
  backdrop-filter: blur(12px);
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-logo { display: flex; align-items: center; gap: 10px; }
.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  color: var(--tone-main); letter-spacing: -0.02em;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--tone-muted);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--tone-main); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-size: 0.85rem; color: var(--tone-muted); }
.header-phone a { color: var(--tone-main); font-weight: 600; }

.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  background: transparent; border: none;
}
.mobile-menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--tone-main); border-radius: 2px; transition: 0.3s;
}

/* ── HERO ── */
.section-hero {
  background: linear-gradient(135deg, var(--tone-pale) 0%, var(--tone-light) 60%, #EBF6FF 100%);
  padding: 72px 0 0;
  overflow: hidden;
  position: relative;
}
.section-hero::before {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,157,197,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
}
.hero-content { padding-bottom: 72px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--tone-white); border: 1px solid var(--tone-border);
  border-radius: var(--radius-pill); padding: 7px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--tone-main);
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--tone-cta); border-radius: 50%; }
.hero-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.15;
  color: var(--tone-text); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--tone-main); }
.hero-desc { color: var(--tone-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust-strip {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--tone-border);
}
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--tone-muted); }
.hero-trust-icon { font-size: 1rem; }
.hero-visual { position: relative; display: flex; justify-content: flex-end; align-items: flex-end; }
.hero-img-wrap {
  position: relative; width: 100%; max-width: 540px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: 40px; left: -24px;
  background: var(--tone-white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px; min-width: 200px;
}
.hero-float-icon { font-size: 1.8rem; }
.hero-float-text strong { font-size: 0.9rem; color: var(--tone-text); display: block; }
.hero-float-text span { font-size: 0.78rem; color: var(--tone-muted); }

/* ── TRUST STRIP ── */
.section-trust-strip {
  background: var(--tone-white);
  padding: 36px 0;
  border-bottom: 1px solid var(--tone-border);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item-icon {
  width: 42px; height: 42px;
  background: var(--tone-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-item-text strong { font-size: 0.92rem; color: var(--tone-text); display: block; font-weight: 600; }
.trust-item-text span { font-size: 0.78rem; color: var(--tone-muted); }

/* ── AWARENESS ── */
.section-awareness {
  padding: var(--gap-section) 0;
  background: var(--tone-white);
}
.awareness-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.awareness-visual { position: relative; }
.awareness-img { border-radius: var(--radius-lg); overflow: hidden; }
.awareness-img img { width: 100%; height: 420px; object-fit: cover; }
.awareness-stat-chip {
  position: absolute; top: -18px; right: -18px;
  background: var(--tone-main); color: white;
  border-radius: var(--radius-md); padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow-lift);
}
.awareness-stat-chip strong { font-size: 1.6rem; font-family: var(--font-display); display: block; }
.awareness-stat-chip span { font-size: 0.75rem; opacity: 0.85; }
.awareness-text { }
.awareness-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.awareness-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; background: var(--tone-pale);
  border-radius: var(--radius-md); border-left: 3px solid var(--tone-support);
}
.awareness-list-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.awareness-list-item p { font-size: 0.93rem; color: var(--tone-muted); line-height: 1.6; }

/* ── CARE CARDS ── */
.section-care-cards {
  padding: var(--gap-section) 0;
  background: var(--tone-pale);
}
.care-cards-header { text-align: center; max-width: 580px; margin-inline: auto; margin-bottom: 52px; }
.care-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.care-card {
  background: var(--tone-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.28s, box-shadow 0.28s;
  display: flex; flex-direction: column;
}
.care-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.care-card-img { height: 180px; overflow: hidden; }
.care-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.care-card:hover .care-card-img img { transform: scale(1.04); }
.care-card-body { padding: 22px 20px 26px; flex: 1; display: flex; flex-direction: column; }
.care-card-icon { font-size: 1.5rem; margin-bottom: 10px; }
.care-card-body h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.1rem;
  color: var(--tone-text); margin-bottom: 8px; line-height: 1.3;
}
.care-card-body p { font-size: 0.87rem; color: var(--tone-muted); line-height: 1.6; flex: 1; }

/* ── PRODUCT ── */
.section-product {
  padding: var(--gap-section) 0;
  background: var(--tone-white);
}
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.product-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.product-img-frame {
  background: linear-gradient(145deg, var(--tone-light) 0%, var(--tone-mist) 100%);
  border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.product-img-frame img { max-width: 320px; filter: drop-shadow(0 12px 32px rgba(44,110,155,0.18)); }
.product-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.product-badge {
  background: var(--tone-pale); border: 1px solid var(--tone-border);
  border-radius: var(--radius-pill); padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--tone-main);
}
.product-content { }
.product-features { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 36px; }
.product-feature {
  display: flex; align-items: flex-start; gap: 14px;
}
.feature-bullet {
  width: 38px; height: 38px; background: var(--tone-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.feature-text strong { font-size: 0.95rem; color: var(--tone-text); display: block; margin-bottom: 2px; }
.feature-text p { font-size: 0.87rem; color: var(--tone-muted); line-height: 1.6; }
.product-note {
  background: var(--tone-pale); border: 1px solid var(--tone-border);
  border-radius: var(--radius-md); padding: 16px 20px;
  font-size: 0.85rem; color: var(--tone-muted); line-height: 1.65;
}
.product-note strong { color: var(--tone-main); }

/* ── ROUTINE STEPS ── */
.section-routine {
  padding: var(--gap-section) 0;
  background: linear-gradient(160deg, var(--tone-pale) 0%, #EBF6FF 100%);
}
.routine-header { text-align: center; max-width: 560px; margin-inline: auto; margin-bottom: 56px; }
.routine-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.routine-steps::before {
  content: '';
  position: absolute; top: 38px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px; background: var(--tone-mist);
}
.routine-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--tone-white); border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow-card);
  position: relative;
}
.routine-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--tone-main); color: white;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(44,110,155,0.25);
}
.routine-step h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  color: var(--tone-text); margin-bottom: 10px;
}
.routine-step p { font-size: 0.88rem; color: var(--tone-muted); line-height: 1.65; }
.routine-icon { font-size: 1.6rem; margin-bottom: 12px; }

/* ── REVIEWS ── */
.section-reviews {
  padding: var(--gap-section) 0;
  background: var(--tone-white);
}
.reviews-header { text-align: center; max-width: 500px; margin-inline: auto; margin-bottom: 52px; }
.reviews-stars-big { font-size: 1.5rem; color: #F5A623; margin-bottom: 8px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--tone-pale); border: 1px solid var(--tone-border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.25s;
}
.review-card:hover { box-shadow: var(--shadow-lift); }
.review-stars { font-size: 1rem; color: #F5A623; letter-spacing: 2px; }
.review-quote {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--tone-text); line-height: 1.55;
}
.review-meta { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tone-support), var(--tone-main));
  color: white; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-author strong { font-size: 0.92rem; color: var(--tone-text); display: block; }
.review-author span { font-size: 0.78rem; color: var(--tone-muted); }

/* ── FAQ ── */
.section-faq {
  padding: var(--gap-section) 0;
  background: var(--tone-pale);
}
.faq-layout { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.faq-sidebar { position: sticky; top: 120px; }
.faq-sidebar .section-heading.medium { margin-bottom: 16px; }
.faq-sidebar p { font-size: 0.95rem; color: var(--tone-muted); line-height: 1.7; margin-bottom: 28px; }
.faq-contact-card {
  background: var(--tone-white); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-card);
  border: 1px solid var(--tone-border);
}
.faq-contact-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--tone-text); margin-bottom: 12px; }
.faq-contact-info { display: flex; flex-direction: column; gap: 8px; }
.faq-contact-row { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--tone-muted); }
.faq-contact-row a { color: var(--tone-main); font-weight: 500; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--tone-white); border-radius: var(--radius-md);
  border: 1px solid var(--tone-border); overflow: hidden;
  transition: box-shadow 0.22s;
}
.faq-item.open { box-shadow: var(--shadow-card); }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 24px;
  font-size: 0.97rem; font-weight: 600; color: var(--tone-text);
  cursor: pointer; background: transparent; border: none; text-align: left;
  gap: 12px; transition: color 0.2s;
}
.faq-trigger:hover { color: var(--tone-main); }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--tone-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--tone-main); }
.faq-chevron svg { fill: none; stroke: var(--tone-main); stroke-width: 2; transition: stroke 0.2s; }
.faq-item.open .faq-chevron svg { stroke: white; }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.faq-body-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem; color: var(--tone-muted); line-height: 1.72;
}

/* ── ORDER ── */
.section-order {
  padding: var(--gap-section) 0;
  background: linear-gradient(145deg, var(--tone-main) 0%, #1e5580 100%);
  color: white; position: relative; overflow: hidden;
}
.section-order::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.order-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.order-info h2 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem,3vw,2.5rem);
  line-height: 1.2; margin-bottom: 16px;
}
.order-info p { opacity: 0.82; font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.order-highlights { display: flex; flex-direction: column; gap: 14px; }
.order-highlight-row { display: flex; align-items: center; gap: 12px; }
.order-highlight-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.order-highlight-row span { font-size: 0.92rem; opacity: 0.88; }
.order-form-card {
  background: var(--tone-white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: 0 16px 56px rgba(0,0,0,0.22);
}
.order-form-card h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.4rem;
  color: var(--tone-text); margin-bottom: 8px;
}
.order-form-card .price-line {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px;
}
.price-amount {
  font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--tone-cta);
}
.price-currency { font-size: 1.1rem; font-weight: 600; color: var(--tone-muted); }
.price-note { font-size: 0.8rem; color: var(--tone-muted); }
.order-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--tone-muted); }
.form-group input, .form-group select {
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--tone-border); font-family: var(--font-body);
  font-size: 0.93rem; color: var(--tone-text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--tone-white);
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--tone-support); box-shadow: 0 0 0 3px rgba(91,157,197,0.14);
}
.form-group input::placeholder { color: #b0c4d4; }
.form-full { grid-column: 1 / -1; }
.form-submit-btn {
  width: 100%; padding: 16px; background: var(--tone-cta);
  color: white; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 700; font-size: 1.05rem;
  transition: background 0.22s, transform 0.18s; margin-top: 4px;
  box-shadow: 0 6px 24px rgba(224,123,82,0.3);
}
.form-submit-btn:hover { background: var(--tone-cta-hover); transform: translateY(-2px); }
.form-privacy-note { font-size: 0.78rem; color: var(--tone-muted); text-align: center; line-height: 1.55; }
.form-privacy-note a { color: var(--tone-main); text-decoration: underline; }

/* ── FOOTER ── */
.site-footer {
  background: #0f1e2d; color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-name-footer {
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  color: white; margin: 12px 0 14px;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; margin-bottom: 8px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem;
}
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 16px; line-height: 1.65; }

/* ── LEGAL PAGES ── */
.legal-header {
  background: linear-gradient(135deg, var(--tone-pale), var(--tone-light));
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--tone-border);
}
.legal-header h1 {
  font-family: var(--font-display); font-weight: 500; font-size: 2.2rem;
  color: var(--tone-text); margin-bottom: 10px;
}
.legal-header .section-label { margin-bottom: 16px; }
.legal-body { padding: 56px 0 80px; }
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.35rem;
  color: var(--tone-text); margin: 40px 0 12px;
}
.legal-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--tone-text); margin: 24px 0 8px; }
.legal-content p { font-size: 0.95rem; color: var(--tone-muted); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.93rem; color: var(--tone-muted); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--tone-main); text-decoration: underline; }

/* ── SUCCESS PAGE ── */
.success-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--tone-pale), var(--tone-light));
  padding: 40px 24px;
}
.success-card {
  background: var(--tone-white); border-radius: var(--radius-lg);
  padding: 56px 48px; max-width: 560px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lift);
}
.success-icon { font-size: 3.5rem; margin-bottom: 20px; }
.success-card h1 {
  font-family: var(--font-display); font-weight: 500; font-size: 2rem;
  color: var(--tone-text); margin-bottom: 12px;
}
.success-card p { color: var(--tone-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 8px; }
.success-card .btn-primary { margin-top: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .care-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
}

@media (max-width: 820px) {
  :root { --gap-section: 64px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding-bottom: 48px; }
  .awareness-grid { grid-template-columns: 1fr; }
  .awareness-visual { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .routine-steps { grid-template-columns: 1fr; }
  .routine-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-phone { display: none; }
}

@media (max-width: 560px) {
  .care-cards-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 24px; }
  .hero-trust-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .order-form-card { padding: 28px 20px; }
  .success-card { padding: 40px 24px; }
}

/* ── MOBILE NAV MENU ── */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav-panel {
  position: fixed; top: 0; right: -320px; bottom: 0; width: 300px;
  background: var(--tone-white); z-index: 901;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 20px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  overflow-y: auto;
}
.mobile-nav-panel.open { right: 0; }
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-close {
  align-self: flex-end; width: 36px; height: 36px;
  background: var(--tone-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  font-size: 1rem; font-weight: 500; color: var(--tone-text);
  padding: 12px 0; border-bottom: 1px solid var(--tone-border);
  display: block; transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--tone-main); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
