/* ============================================================
   INSUVIT — Dermaza | style.css
   CSS Architecture: Section-scoped Semantic
   Token Family: --brand / --brand-alt / --highlight
   Generated: 2026-04-28
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --brand:            #1260C4;
  --brand-alt:        #3D9BE9;
  --brand-light:      #6DC0F5;
  --brand-pale:       #DAEEFF;
  --brand-faint:      #EEF6FF;
  --highlight:        #F07B22;
  --highlight-hover:  #D4631A;
  --highlight-pale:   #FEF3E8;

  --text-primary:     #0C1F35;
  --text-secondary:   #2D4A68;
  --text-muted:       #6B8BAF;
  --text-white:       #FFFFFF;

  --bg-base:          #F5F9FF;
  --bg-white:         #FFFFFF;
  --bg-card:          #EBF4FD;
  --bg-section-alt:   #F0F8FF;
  --bg-dark:          #0D1E30;

  --pastel-1:         #D6EDFF;
  --pastel-2:         #C5E5FF;
  --pastel-3:         #E2F2FB;
  --pastel-4:         #D0EFFD;

  --border-soft:      #C8DFF5;
  --border-card:      #B8D8F0;
  --shadow-card:      0 4px 24px rgba(18, 96, 196, 0.08);
  --shadow-elevated:  0 8px 40px rgba(18, 96, 196, 0.13);
  --shadow-btn:       0 4px 16px rgba(240, 123, 34, 0.30);

  --radius-sm:        8px;
  --radius-md:        14px;
  --radius-lg:        22px;
  --radius-xl:        32px;
  --radius-pill:      999px;

  --font-heading:     'Nunito', sans-serif;
  --font-body:        'Source Sans 3', sans-serif;

  --spacing-xs:       0.5rem;
  --spacing-sm:       1rem;
  --spacing-md:       2rem;
  --spacing-lg:       3.5rem;
  --spacing-xl:       5.5rem;

  --transition-base:  0.22s ease;
  --max-width:        1180px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--pastel-1);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--highlight);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.88rem 2.1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform 0.18s, box-shadow var(--transition-base);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--highlight-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 123, 34, 0.36);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.88rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--brand);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--brand);
  color: #fff;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: #ccd9e8;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.cookie-banner.cookie-visible {
  transform: translateY(0);
}

.cookie-banner p {
  flex: 1;
  min-width: 240px;
  line-height: 1.55;
  color: #b0c6de;
}

.cookie-banner p a {
  color: var(--brand-light);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-accept-btn {
  background: var(--highlight);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition-base);
}

.cookie-accept-btn:hover { background: var(--highlight-hover); }

.cookie-decline-btn {
  background: transparent;
  color: #7fa0bf;
  border: 1px solid #4a6278;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color var(--transition-base);
}

.cookie-decline-btn:hover { border-color: #7fa0bf; color: #b0c6de; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px rgba(18, 96, 196, 0.06);
  transition: box-shadow 0.3s;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo svg { width: 180px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}

.main-nav a:hover {
  color: var(--brand);
  background: var(--brand-faint);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--highlight);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 12px rgba(240,123,34,0.28);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.header-cta-btn:hover {
  background: var(--highlight-hover);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text-primary);
  font-size: 1.4rem;
}

.mobile-nav-open .main-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  padding: 1rem 1.5rem;
  gap: 0.2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #E8F5FF 0%, #F4F9FF 50%, #EEF6FF 100%);
  padding: 5rem 1.5rem 4.5rem;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 155, 233, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--brand-pale);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.3rem;
  border: 1px solid var(--pastel-2);
}

.hero-badge span { font-size: 1rem; }

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.hero-heading em {
  font-style: normal;
  color: var(--brand);
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 490px;
  line-height: 1.72;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero-trust-row {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-trust-item .trust-check {
  width: 18px;
  height: 18px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.hero-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -28px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--border-soft);
  min-width: 200px;
}

.float-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.float-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand);
}

.float-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.6rem 1.5rem;
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}

.trust-strip-item .t-icon {
  font-size: 1.5rem;
}

.trust-strip-item .t-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.trust-strip-divider {
  width: 1px;
  height: 24px;
  background: var(--border-soft);
}

/* ============================================================
   AUDIENCE SECTION — Kinek szól?
   ============================================================ */
.audience-section {
  padding: var(--spacing-xl) 1.5rem;
  background: var(--bg-base);
}

.audience-section .container { }

.audience-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.audience-header .section-subtext {
  margin: 0 auto;
}

.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.audience-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.aud-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 220px;
}

.aud-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aud-img-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 170px;
}

.aud-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audience-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.aud-card-icon {
  width: 46px;
  height: 46px;
  background: var(--brand-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.aud-card-body strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.aud-card-body p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.product-section {
  padding: var(--spacing-xl) 1.5rem;
  background: linear-gradient(160deg, #EBF4FD 0%, #F8FBFF 60%, #E8F5FF 100%);
}

.product-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.product-img-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-img-bg {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--pastel-2) 0%, var(--pastel-1) 60%, transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.product-img-bg img {
  max-width: 300px;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(18,96,196,0.20));
}

.product-badge-strip {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-badge {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-content .section-subtext { max-width: 480px; margin-bottom: 1.8rem; }

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.product-feature-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.96rem;
  color: var(--text-secondary);
}

.product-feature-row .pf-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-alt);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--highlight-pale);
  border: 1px solid #fddcbc;
  border-radius: var(--radius-lg);
  padding: 1rem 1.6rem;
  margin-bottom: 1.8rem;
}

.product-price-block .price-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--highlight);
}

.product-price-block .price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================================
   LIFESTYLE SECTION — 4 Cards
   ============================================================ */
.lifestyle-section {
  padding: var(--spacing-xl) 1.5rem;
  background: var(--bg-white);
}

.lifestyle-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lifestyle-header .section-subtext { margin: 0 auto; }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lifestyle-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.lifestyle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
}

.lifestyle-card-img {
  height: 180px;
  overflow: hidden;
}

.lifestyle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.lifestyle-card:hover .lifestyle-card-img img {
  transform: scale(1.05);
}

.lifestyle-card-body {
  padding: 1.2rem;
}

.lifestyle-card-body .lc-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  display: block;
}

.lifestyle-card-body strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.97rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.lifestyle-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   ROUTINE SECTION — How to use
   ============================================================ */
.routine-section {
  padding: var(--spacing-xl) 1.5rem;
  background: var(--bg-base);
}

.routine-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.routine-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.routine-steps {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.routine-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(18, 96, 196, 0.28);
}

.step-body strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.step-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.routine-img-block {
  position: relative;
}

.routine-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.routine-img-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.routine-note {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border-soft);
  font-size: 0.84rem;
  color: var(--text-secondary);
  max-width: 210px;
  text-align: center;
  font-weight: 600;
}

.routine-note strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: var(--spacing-xl) 1.5rem;
  background: linear-gradient(160deg, #EEF6FF 0%, var(--bg-white) 100%);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-header .section-subtext { margin: 0 auto; }

.reviews-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-pale);
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review-stars span {
  color: #F5A623;
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid var(--border-soft);
}

.review-author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text-primary);
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--spacing-xl) 1.5rem;
  background: var(--bg-base);
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header .section-subtext { margin: 0 auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}

.faq-item.faq-open {
  border-color: var(--brand-alt);
  box-shadow: 0 0 0 2px rgba(18, 96, 196, 0.08), var(--shadow-card);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text-primary);
  transition: background 0.18s;
}

.faq-question:hover { background: var(--bg-card); }

.faq-question .faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--brand-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--brand);
  transition: transform 0.3s, background 0.2s;
}

.faq-item.faq-open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0, 1, 0, 1);
}

.faq-item.faq-open .faq-answer {
  max-height: 400px;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-soft);
  padding-top: 1rem;
}

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section {
  padding: var(--spacing-xl) 1.5rem;
  background: linear-gradient(135deg, #E3F1FF 0%, #EFF7FF 40%, #F4FBFF 100%);
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,96,196,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.order-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}

.order-promo .section-subtext { max-width: 440px; margin-bottom: 2rem; }

.order-perks {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.order-perk {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.perk-dot {
  width: 10px;
  height: 10px;
  background: var(--brand-alt);
  border-radius: 50%;
  flex-shrink: 0;
}

.order-guarantee {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

.guarantee-icon { font-size: 1.8rem; flex-shrink: 0; }

.guarantee-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.guarantee-text p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.order-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-elevated);
}

.order-form-card .form-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.order-form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.price-showcase {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--highlight-pale);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  margin-bottom: 1.6rem;
  border: 1px solid #fddcbc;
}

.price-showcase .price-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-showcase .price-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--highlight);
  margin-left: auto;
}

.order-form .form-group {
  margin-bottom: 1.1rem;
}

.order-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 0.82rem 1.1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-primary);
  background: var(--bg-base);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--brand-alt);
  box-shadow: 0 0 0 3px rgba(18, 96, 196, 0.10);
  background: #fff;
}

.order-form input::placeholder { color: var(--text-muted); }

.order-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.4rem;
  padding: 1rem;
  font-size: 1.05rem;
  justify-content: center;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.5;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--spacing-lg) 1.5rem;
  background: var(--bg-white);
  border-top: 1px solid var(--border-soft);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.contact-info-block p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.91rem;
  color: var(--text-secondary);
}

.contact-item .ci-icon {
  width: 32px;
  height: 32px;
  background: var(--brand-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--brand);
}

.contact-item a:hover { text-decoration: underline; }

.contact-disclaimer-box {
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.contact-disclaimer-box p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: #8ba5c0;
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.87rem;
  color: #6b8baa;
  margin-top: 1rem;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #c5d8ea;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #6b8baa;
  transition: color var(--transition-base);
}

.footer-col ul li a:hover { color: var(--brand-light); }

.footer-bottom {
  border-top: 1px solid #1e3550;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #4a6a88;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: #4a6a88;
  transition: color var(--transition-base);
}

.footer-legal-links a:hover { color: var(--brand-light); }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E3F1FF 0%, #F5F9FF 100%);
  padding: 2rem;
}

.success-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
  padding: 3rem 3.5rem;
  text-align: center;
  max-width: 520px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #e3f9f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.success-card h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.success-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 2rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page-body {
  background: var(--bg-base);
  color: var(--text-primary);
}

.legal-header-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.legal-back-link {
  font-size: 0.88rem;
  color: var(--brand);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.legal-back-link:hover { text-decoration: underline; }

.legal-content-wrap {
  max-width: 760px;
  margin: 3rem auto;
  padding: 0 1.5rem 4rem;
}

.legal-content-wrap h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: block;
}

.legal-content-wrap h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 2rem 0 0.8rem;
}

.legal-content-wrap p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content-wrap ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content-wrap ul li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-img-frame img { height: 380px; }
  .hero-float-card { left: 0; }
}

@media (max-width: 840px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-img-frame img { height: 300px; }
  .hero-float-card { left: 0; bottom: 10px; }
  .audience-layout { grid-template-columns: 1fr; }
  .audience-visuals { grid-template-columns: 1fr 1fr; }
  .product-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-img-bg { max-width: 280px; aspect-ratio: 1; }
  .product-img-bg img { max-width: 200px; }
  .routine-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .routine-img-frame img { height: 300px; }
  .routine-note { position: static; margin-top: 1rem; max-width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .order-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .header-cta-btn { display: none; }
}

@media (max-width: 520px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
  .audience-visuals { grid-template-columns: 1fr; }
  .aud-img-secondary:last-child { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-strip-divider { display: none; }
  .order-form .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust-row { flex-direction: column; gap: 0.6rem; }
}
