/* ============================================
   DIMOKA — SECTION-SCOPED SEMANTIC CSS
   Token Family: --tone-* / --surface-* / --text-*
   Generated: April 2026
   ============================================ */

:root {
  --tone-main:        #18C17A;
  --tone-support:     #0EA865;
  --tone-deep:        #076E43;
  --tone-cta:         #FF5820;
  --tone-cta-hover:   #E04A18;
  --tone-accent-soft: #FFF1EB;
  --tone-green-soft:  #EDFAF4;
  --tone-green-mid:   #D2F2E6;
  --tone-green-pale:  #F3FDF8;

  --surface-base:     #F6FEFB;
  --surface-white:    #FFFFFF;
  --surface-card:     #FFFFFF;
  --surface-dark:     #0D2016;
  --surface-footer:   #0B1C12;

  --text-primary:     #152A1E;
  --text-secondary:   #385247;
  --text-muted:       #7A9A8A;
  --text-on-dark:     #FFFFFF;
  --text-on-cta:      #FFFFFF;

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-pill: 999px;

  --shadow-card:  0 4px 28px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-btn:   0 4px 18px rgba(255, 88, 32, 0.35);
  --shadow-green: 0 4px 18px rgba(24, 193, 122, 0.25);

  --border-soft:  1px solid #DDF0E9;
  --border-card:  1px solid #EAF7F1;

  --font-head: 'Nunito', sans-serif;
  --font-body: 'Mulish', sans-serif;

  --container-w: 1140px;
  --container-pad: 0 24px;
  --section-py: 88px;
  --section-py-sm: 56px;
  --transition: 0.22s ease;
}

/* ── 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);
  background: var(--surface-base);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.wrap {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: var(--container-pad);
}

.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tone-green-mid);
  color: var(--tone-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.section-subtext.centered { margin-inline: auto; text-align: center; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tone-cta);
  color: var(--text-on-cta);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 88, 32, 0.42);
}
.btn-cta:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--tone-support);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--tone-main);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--tone-green-soft);
  border-color: var(--tone-support);
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface-dark);
  color: #D4EDE0;
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: 14px; line-height: 1.6; flex: 1; min-width: 260px; }
.cookie-banner p a { color: var(--tone-main); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--tone-main);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-btn-accept:hover { background: var(--tone-support); }
.cookie-btn-decline {
  background: transparent;
  color: #8FBBA4;
  border: 1px solid #3D5A47;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-decline:hover { color: #fff; border-color: #6A9C82; }

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-soft);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container-w);
  margin-inline: auto;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--tone-deep);
  letter-spacing: -0.02em;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover {
  color: var(--tone-deep);
  background: var(--tone-green-soft);
}

.header-cta .btn-cta { font-size: 14px; padding: 11px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--tone-main); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-secondary);
}

/* ── Hero ── */
.hero-section {
  background: linear-gradient(135deg, #EDFAF4 0%, #F3FDF8 50%, #FFF8F5 100%);
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(24,193,122,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,88,32,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: var(--tone-support);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-white);
  border: var(--border-card);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.hero-badge .badge-icon { font-size: 15px; }

.hero-visual { position: relative; z-index: 2; }

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(24, 193, 122, 0.18), 0 8px 32px rgba(0,0,0,0.10);
}
.hero-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-float-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--surface-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.hero-float-badge .hfb-icon {
  width: 44px; height: 44px;
  background: var(--tone-green-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-float-badge .hfb-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--text-primary);
}
.hero-float-badge .hfb-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--tone-main);
  padding: 0 24px;
}
.stats-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 24px; margin-bottom: 6px; }
.stat-value {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: #FFFFFF;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

/* ── Awareness Section ── */
.awareness-section {
  padding: var(--section-py) 24px;
  background: var(--surface-white);
}
.awareness-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.awareness-content {}
.awareness-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.awareness-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--tone-green-pale);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.awareness-item .ai-icon {
  width: 38px; height: 38px;
  background: var(--tone-green-mid);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.awareness-item .ai-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.awareness-item .ai-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.awareness-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 480px;
}
.awareness-img-main,
.awareness-img-secondary {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.awareness-img-main { flex: 3; }
.awareness-img-secondary { flex: 2; }
.awareness-img-main img,
.awareness-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Product Section ── */
.product-section {
  padding: var(--section-py) 24px;
  background: linear-gradient(180deg, #F0FBF5 0%, #E8F9F0 100%);
  position: relative;
  overflow: hidden;
}
.product-section::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(24,193,122,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product-img-bg {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #D2F2E6 0%, #EDFAF4 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-green);
}
.product-img-bg img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.12));
}
.product-badge-float {
  position: absolute;
  top: -10px; right: -20px;
  background: var(--tone-cta);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--shadow-btn);
  text-align: center;
  line-height: 1.4;
}

.product-details {}
.product-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.15;
}
.product-tagline {
  font-size: 17px;
  color: var(--tone-support);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 24px;
}
.product-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.product-feature::before {
  content: '';
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--tone-main);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.product-feature strong { color: var(--text-primary); font-weight: 600; }

/* ── How It Works ── */
.how-section {
  padding: var(--section-py) 24px;
  background: var(--surface-white);
}
.how-inner {
  max-width: var(--container-w);
  margin-inline: auto;
}
.how-header {
  text-align: center;
  margin-bottom: 52px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--tone-main), var(--tone-support));
  border-radius: 2px;
}

.how-step {
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--tone-main), var(--tone-support));
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 2;
}
.step-icon-area { font-size: 28px; margin-bottom: 14px; }
.step-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ── Lifestyle Cards ── */
.lifestyle-section {
  padding: var(--section-py) 24px;
  background: var(--tone-green-pale);
}
.lifestyle-inner {
  max-width: var(--container-w);
  margin-inline: auto;
}
.lifestyle-header {
  text-align: center;
  margin-bottom: 48px;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lifestyle-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: var(--border-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.lifestyle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.lifestyle-card__img {
  height: 180px;
  overflow: hidden;
}
.lifestyle-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lifestyle-card:hover .lifestyle-card__img img {
  transform: scale(1.05);
}
.lifestyle-card__body {
  padding: 20px 20px 24px;
}
.lifestyle-card__icon { font-size: 24px; margin-bottom: 10px; }
.lifestyle-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.lifestyle-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Testimonials ── */
.reviews-section {
  padding: var(--section-py) 24px;
  background: var(--surface-white);
}
.reviews-inner {
  max-width: var(--container-w);
  margin-inline: auto;
}
.reviews-header { text-align: center; margin-bottom: 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 18px; right: 24px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: var(--tone-green-mid);
  line-height: 1;
}
.review-stars { font-size: 18px; margin-bottom: 14px; color: #F59E0B; }
.review-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: var(--border-soft);
  padding-top: 16px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tone-main), var(--tone-support));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}
.review-location { font-size: 13px; color: var(--text-muted); }

/* ── Order Section ── */
.order-section {
  padding: var(--section-py) 24px;
  background: linear-gradient(135deg, #0B3D22 0%, #0D5C34 100%);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(24,193,122,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.order-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,88,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.order-inner {
  max-width: 980px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.order-header { text-align: center; margin-bottom: 48px; }
.order-header .section-heading { color: var(--text-on-dark); }
.order-header .section-subtext { color: rgba(255,255,255,0.75); margin-inline: auto; }

.order-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.order-product-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.order-product-img {
  width: 160px; height: 160px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}
.order-product-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}
.order-product-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.order-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.order-price-value {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 42px;
  color: var(--tone-main);
}
.order-price-currency {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--tone-main);
}
.order-price-note { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }

.order-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.order-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.order-perk .perk-icon {
  font-size: 16px;
  width: 28px;
  flex-shrink: 0;
  text-align: center;
}

.order-form-wrap {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}
.form-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  background: var(--surface-base);
  border: 2px solid var(--tone-green-mid);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--tone-main);
  box-shadow: 0 0 0 3px rgba(24,193,122,0.14);
}
.form-input::placeholder { color: var(--text-muted); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit-btn {
  width: 100%;
  background: var(--tone-cta);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 18px 24px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.form-submit-btn:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ── FAQ Section ── */
.faq-section {
  padding: var(--section-py) 24px;
  background: var(--tone-green-pale);
}
.faq-inner {
  max-width: 780px;
  margin-inline: auto;
}
.faq-header { text-align: center; margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface-white);
  border: var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item.open { border-color: var(--tone-main); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-question-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-icon {
  width: 30px; height: 30px;
  background: var(--tone-green-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--tone-support);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { background: var(--tone-main); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: var(--border-soft);
  padding-top: 14px;
}

/* ── Contact / Trust ── */
.contact-section {
  padding: var(--section-py-sm) 24px;
  background: var(--surface-white);
  border-top: var(--border-soft);
}
.contact-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info-block {}
.contact-info-block .section-heading { font-size: clamp(22px, 3vw, 30px); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
}
.contact-detail .cd-icon {
  width: 42px; height: 42px;
  background: var(--tone-green-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail .cd-body { }
.contact-detail .cd-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-detail .cd-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}
.contact-detail .cd-value a { transition: color var(--transition); }
.contact-detail .cd-value a:hover { color: var(--tone-main); }

.disclaimer-trust-block {
  background: var(--tone-green-pale);
  border: var(--border-card);
  border-left: 4px solid var(--tone-main);
  border-radius: var(--radius-md);
  padding: 24px 24px;
}
.disclaimer-trust-block h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.disclaimer-trust-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Footer ── */
.site-footer {
  background: var(--surface-footer);
  padding: 48px 24px 28px;
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  max-width: var(--container-w);
  margin-inline: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-brand {}
.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  color: var(--tone-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--tone-main); }

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.footer-contact-line a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-line a:hover { color: var(--tone-main); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--tone-main); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; max-width: 480px; margin-inline: auto; }
  .hero-img-frame img { height: 340px; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-float-badge { left: 0; bottom: 16px; }

  .awareness-inner { grid-template-columns: 1fr; }
  .awareness-images { height: 300px; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }

  .product-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .product-visual-wrap { order: 1; }
  .product-details { order: 2; }
  .product-features { align-items: flex-start; text-align: left; }

  .how-steps::before { display: none; }
  .how-steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .order-layout { grid-template-columns: 1fr; }
  .order-product-card { max-width: 380px; margin-inline: auto; }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 60px; --section-py-sm: 40px; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-bottom: none; }

  .lifestyle-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .order-form-wrap { padding: 28px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-float-badge { position: static; margin-top: 16px; }
  .hero-img-frame { border-radius: var(--radius-lg); }
  .hero-img-frame img { height: 260px; }
}
