@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Merriweather:wght@300;400;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #34495E;
  --color-accent-green: #2ECC71;
  --color-accent-orange: #F39C12;
  --color-neutral: #BDC3C7;
  --color-dark: #1a2a38;
  --color-light-bg: #f4f6f8;
  --color-white: #ffffff;
  --color-text-body: #4a5568;
  --color-text-light: #7f8c8d;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  --shadow-card: 0 4px 20px rgba(52,73,94,0.10);
  --shadow-card-hover: 0 10px 36px rgba(52,73,94,0.18);
  --radius: 6px;
  --transition: 0.32s ease;
  --max-width: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacer {
  padding: 96px 0;
}

.section-spacer-sm {
  padding: 64px 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-body);
  margin-bottom: 1.2rem;
}

p:last-child { margin-bottom: 0; }

.text-accent-green { color: var(--color-accent-green); }
.text-accent-orange { color: var(--color-accent-orange); }
.text-neutral { color: var(--color-neutral); }
.text-white { color: var(--color-white); }
.text-primary { color: var(--color-primary); }

.bg-primary { background: var(--color-primary); }
.bg-light { background: var(--color-light-bg); }
.bg-dark { background: var(--color-dark); }
.bg-white { background: var(--color-white); }

.divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent-green);
  margin: 16px 0 28px 0;
  border-radius: 2px;
}

.divider-orange {
  background: var(--color-accent-orange);
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 12px;
  display: block;
}

.section-label-orange {
  color: var(--color-accent-orange);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent-green);
  color: var(--color-white);
  border-color: var(--color-accent-green);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-accent-green);
  border-color: var(--color-accent-green);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-orange {
  background: var(--color-accent-orange);
  color: var(--color-white);
  border-color: var(--color-accent-orange);
}

.btn-orange:hover {
  background: transparent;
  color: var(--color-accent-orange);
  border-color: var(--color-accent-orange);
}

/* ======== SITE HEADER ======== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 42, 56, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(189,195,199,0.12);
  transition: box-shadow var(--transition), background var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}

.header-logo span {
  color: var(--color-accent-green);
}

.header-logo:hover {
  color: var(--color-neutral);
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-accent-green);
  background: rgba(46,204,113,0.08);
}

.header-nav a.nav-contact {
  border: 1.5px solid rgba(189,195,199,0.35);
  color: rgba(255,255,255,0.85);
  margin-left: 8px;
}

.header-nav a.nav-contact:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  background: rgba(46,204,113,0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.28s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ======== HERO ======== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,42,56,0.55) 0%,
    rgba(26,42,56,0.82) 60%,
    rgba(26,42,56,0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  max-width: 720px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.12;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--color-accent-green);
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 540px;
}

.hero-disclaimer {
  margin-top: 48px;
  padding: 14px 20px;
  border-left: 3px solid var(--color-accent-orange);
  background: rgba(243,156,18,0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 480px;
}

.hero-disclaimer p {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ======== TWO-COLUMN SECTIONS ======== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

.two-col-text {
  padding: 80px 64px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col-text.padded-left {
  padding: 80px 0 80px 64px;
}

.two-col-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.two-col-image:hover img {
  transform: scale(1.03);
}

.two-col-image .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(52,73,94,0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* ======== STAT STRIP ======== */
.stat-strip {
  background: var(--color-primary);
  padding: 56px 0;
}

.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  border-right: 1px solid rgba(189,195,199,0.18);
  padding: 0 24px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ======== FOOD GROUP LIST ======== */
.food-group-list {
  margin: 28px 0;
}

.food-group-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-neutral);
}

.food-group-item:last-child {
  border-bottom: none;
}

.food-group-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(46,204,113,0.1);
  border: 1.5px solid var(--color-accent-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-group-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
}

.food-group-content h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.food-group-content p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* ======== PHOTO STRIP ======== */
.photo-strip {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-top: 64px;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(52,73,94,0.55) 0%, transparent 40%, transparent 60%, rgba(52,73,94,0.55) 100%);
}

/* ======== ACTIVITY TYPES ======== */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.activity-card {
  background: var(--color-white);
  border: 1px solid rgba(189,195,199,0.5);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.activity-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.activity-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: rgba(46,204,113,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(46,204,113,0.25);
}

.activity-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
}

.activity-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.activity-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ======== HYDRATION SECTION ======== */
.hydration-image-wrap {
  position: relative;
  margin-bottom: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 460px;
}

.hydration-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hydration-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(transparent, var(--color-light-bg));
  pointer-events: none;
}

.hydration-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.hydration-fact-box {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(189,195,199,0.4);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.hydration-fact-box h3 {
  margin-bottom: 16px;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(189,195,199,0.5);
}

.fact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent-green);
  flex-shrink: 0;
  margin-top: 7px;
}

.fact-dot-orange {
  background: var(--color-accent-orange);
}

.fact-item p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.65;
}

/* ======== INGREDIENT CARDS ======== */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.ingredient-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(189,195,199,0.35);
  transition: box-shadow var(--transition), transform var(--transition);
}

.ingredient-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.ingredient-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.ingredient-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ingredient-card:hover .ingredient-card-img img {
  transform: scale(1.06);
}

.ingredient-card-body {
  padding: 24px 22px 28px;
}

.ingredient-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  background: rgba(46,204,113,0.08);
  padding: 4px 10px;
  border-radius: 40px;
  margin-bottom: 10px;
  border: 1px solid rgba(46,204,113,0.2);
}

.ingredient-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.ingredient-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.65;
}

/* ======== HABITS SECTION ======== */
.habits-section {
  background: var(--color-light-bg);
  position: relative;
  overflow: hidden;
}

.habits-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid rgba(46,204,113,0.08);
  pointer-events: none;
}

.habits-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(243,156,18,0.07);
  pointer-events: none;
}

.checklist {
  margin: 24px 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(189,195,199,0.4);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-check svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.checklist-text h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.checklist-text p {
  font-size: 0.87rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

.misconception-box {
  background: rgba(243,156,18,0.07);
  border: 1px solid rgba(243,156,18,0.25);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  border-left: 4px solid var(--color-accent-orange);
  margin-top: 32px;
}

.misconception-box h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-orange);
  margin-bottom: 12px;
}

.misconception-box p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* ======== SLEEP SECTION ======== */
.sleep-section {
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.sleep-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23BDC3C7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.sleep-section p {
  color: rgba(255,255,255,0.75);
}

.sleep-section h2 {
  color: var(--color-white);
}

.sleep-section h3 {
  color: var(--color-white);
}

.sleep-principle {
  padding: 24px 0;
  border-bottom: 1px solid rgba(189,195,199,0.12);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sleep-principle:last-child {
  border-bottom: none;
}

.sleep-principle-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(46,204,113,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.sleep-principle-text h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.sleep-principle-text p {
  font-size: 0.9rem;
  margin: 0;
}

/* ======== PULL QUOTES ======== */
.pull-quote {
  position: relative;
  padding: 36px 36px 36px 48px;
  border-left: 4px solid var(--color-accent-green);
  background: rgba(46,204,113,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-green);
  opacity: 0.35;
  font-family: Georgia, serif;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

.pull-quote-orange {
  border-left-color: var(--color-accent-orange);
  background: rgba(243,156,18,0.04);
}

.pull-quote-orange::before {
  color: var(--color-accent-orange);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-family: var(--font-heading);
}

.comparison-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(189,195,199,0.35);
  color: var(--color-text-body);
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
  background: var(--color-light-bg);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .tag-gentle {
  color: var(--color-accent-green);
  font-weight: 700;
}

.comparison-table .tag-intense {
  color: var(--color-text-light);
}

/* ======== FAQ ======== */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  border: 1px solid rgba(189,195,199,0.4);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  padding: 22px 56px 22px 28px;
  background: var(--color-white);
  cursor: pointer;
  position: relative;
  user-select: none;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  padding-right: 16px;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334495E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.28s ease;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item.open .faq-question {
  border-bottom: 1px solid rgba(189,195,199,0.4);
}

.faq-answer {
  display: none;
  padding: 22px 28px;
  background: var(--color-light-bg);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.75;
}

.faq-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-green);
  letter-spacing: 0.1em;
  margin-right: 12px;
}

/* ======== SOFT CTA SECTION ======== */
.cta-section {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 104px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,204,113,0.07) 0%, transparent 50%, rgba(243,156,18,0.06) 100%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent-green), var(--color-accent-orange));
}

.cta-section h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======== INFO CONTEXT BLOCK ======== */
.info-context-block {
  background: rgba(52,73,94,0.05);
  border: 1px solid rgba(52,73,94,0.12);
  border-top: 3px solid var(--color-accent-orange);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 28px 32px;
  margin-top: 56px;
}

.info-context-block h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-orange);
  margin-bottom: 12px;
}

.info-context-block p {
  font-size: 0.87rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.7;
}

/* ======== FOOTER ======== */
#site-footer {
  background: #111c26;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(189,195,199,0.1);
}

.footer-brand .header-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-accent-green);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-hours {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(189,195,199,0.1);
}

.footer-hours h6 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.footer-hours p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.7;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  font-family: var(--font-heading);
}

.footer-edu-note {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-orange) !important;
  letter-spacing: 0.05em;
}

/* ======== COOKIE BANNER ======== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #111c26;
  border-top: 2px solid var(--color-accent-green);
  padding: 20px 0;
  display: none;
  animation: slideUpBanner 0.4s ease;
}

@keyframes slideUpBanner {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text p {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}

.cookie-text p a {
  color: var(--color-accent-green);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--color-accent-green);
  color: white;
}

.cookie-accept:hover {
  background: #27ae60;
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(189,195,199,0.3);
}

.cookie-decline:hover {
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.cookie-learn {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  padding: 9px 12px;
  font-size: 0.78rem;
  text-decoration: underline;
  cursor: pointer;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.cookie-learn:hover {
  color: rgba(255,255,255,0.8);
}

/* ======== LEGAL PAGES ======== */
.legal-hero {
  background: var(--color-primary);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-accent-green), var(--color-accent-orange));
}

.legal-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.legal-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.legal-body h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(189,195,199,0.35);
  color: var(--color-primary);
}

.legal-body h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.legal-body h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
  color: var(--color-primary);
}

.legal-body p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--color-text-body);
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0 20px;
}

.legal-body ul li {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text-body);
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-body ol {
  padding-left: 24px;
  margin: 12px 0 20px;
}

.legal-body ol li {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text-body);
  line-height: 1.75;
  margin-bottom: 8px;
}

.glossary-rail {
  position: sticky;
  top: 100px;
}

.glossary-rail h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(189,195,199,0.4);
}

.glossary-term {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(189,195,199,0.25);
}

.glossary-term:last-child {
  border-bottom: none;
}

.glossary-term dt {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.glossary-term dd {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin: 0;
}

.key-takeaway {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  border-left: 4px solid var(--color-accent-green);
  margin: 32px 0;
}

.key-takeaway h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 10px;
}

.key-takeaway p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.7;
}

.alert-block {
  background: rgba(243,156,18,0.07);
  border: 1.5px solid rgba(243,156,18,0.35);
  border-left: 5px solid var(--color-accent-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 32px 32px 28px;
  margin-bottom: 40px;
}

.alert-block h3 {
  font-size: 1.1rem;
  color: var(--color-accent-orange);
  margin-bottom: 12px;
}

.alert-block p {
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.8;
}

.terms-rule {
  counter-reset: rule-counter;
}

.terms-rule > div {
  counter-increment: rule-counter;
}

.terms-rule > div::before {
  content: counter(rule-counter) '.';
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent-green);
  font-size: 1.1rem;
  margin-right: 8px;
}

.cookie-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.cookie-card {
  background: var(--color-white);
  border: 1px solid rgba(189,195,199,0.4);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

.cookie-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.cookie-icon {
  width: 44px;
  height: 44px;
  background: rgba(46,204,113,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1.5px solid rgba(46,204,113,0.2);
}

.cookie-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
}

.cookie-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cookie-card p {
  font-size: 0.87rem;
  color: var(--color-text-light);
  margin: 0;
}

.iconography-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 20px;
  background: var(--color-light-bg);
  border-radius: var(--radius);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
}

.legend-item span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ======== CATALOG ======== */
.catalog-hero {
  background: var(--color-dark);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,204,113,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.catalog-hero h1 {
  color: var(--color-white);
}

.catalog-hero p {
  color: rgba(255,255,255,0.65);
}

.catalog-disclaimer {
  background: rgba(243,156,18,0.1);
  border: 1px solid rgba(243,156,18,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.catalog-disclaimer svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.catalog-disclaimer p {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.featured-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  margin-bottom: 56px;
}

.featured-item-img {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.featured-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-item-body {
  background: var(--color-primary);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-item-body h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.featured-item-body p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.benefit-list {
  margin: 20px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(189,195,199,0.12);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-item span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.catalog-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(189,195,199,0.35);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.catalog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.catalog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-card-img img {
  transform: scale(1.07);
}

.catalog-card-body {
  padding: 24px;
}

.catalog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.catalog-card-body p {
  font-size: 0.87rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}

.catalog-card-benefits {
  margin: 16px 0;
  padding: 16px;
  background: var(--color-light-bg);
  border-radius: 4px;
}

.catalog-card-benefits p {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.catalog-card-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catalog-card-benefits li {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--color-primary);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-card-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-green);
  flex-shrink: 0;
}

.catalog-comparison-table {
  margin-top: 64px;
}

.catalog-comparison-table h2 {
  margin-bottom: 32px;
}

/* ======== ABOUT ======== */
.about-hero {
  background: var(--color-primary);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero h1 {
  color: var(--color-white);
}

.about-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
}

.editorial-flow {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-flow p {
  font-size: 1.05rem;
  line-height: 1.9;
}

.image-text-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-text-pair.reversed {
  direction: rtl;
}

.image-text-pair.reversed > * {
  direction: ltr;
}

.itp-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.itp-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.timeline-principles {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(189,195,199,0.3);
  margin: 48px 0;
}

.timeline-point {
  position: relative;
  padding: 0 0 40px 32px;
}

.timeline-point:last-child {
  padding-bottom: 0;
}

.timeline-point::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent-green);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent-green);
}

.timeline-point h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.timeline-point p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.7;
}

/* ======== CONTACT ======== */
.contact-hero {
  background: var(--color-dark);
  padding: 120px 0 80px;
}

.contact-hero h1 {
  color: var(--color-white);
}

.contact-hero p {
  color: rgba(255,255,255,0.6);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-panel {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(189,195,199,0.3);
}

.contact-form-panel h2 {
  margin-bottom: 8px;
}

.contact-form-panel > p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-primary);
  border: 1.5px solid rgba(189,195,199,0.5);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.12);
}

.form-disclaimer {
  background: rgba(243,156,18,0.06);
  border: 1px solid rgba(243,156,18,0.25);
  border-left: 3px solid var(--color-accent-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
  margin-bottom: 24px;
}

.form-disclaimer p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.65;
}

.contact-sidebar h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(189,195,199,0.4);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(189,195,199,0.25);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item div span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 4px;
}

.contact-info-item div p {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.6;
}

.map-placeholder {
  background: var(--color-light-bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(189,195,199,0.4);
}

.map-visual {
  height: 180px;
  background: linear-gradient(135deg, #e8ecef 0%, #d5dce3 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='grid' width='32' height='32' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 32 0 L 0 0 0 32' fill='none' stroke='%23c5cdd5' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
}

.map-pin {
  position: relative;
  z-index: 1;
  background: var(--color-accent-green);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46,204,113,0.4);
}

.map-pin svg {
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.map-label {
  padding: 14px 20px;
  background: var(--color-white);
}

.map-label p {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ======== THANK YOU ======== */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light-bg);
  position: relative;
  overflow: hidden;
}

.thankyou-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2334495E' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.thankyou-box {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  border-top: 4px solid var(--color-accent-green);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(46,204,113,0.1);
  border: 2px solid var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2.5;
}

/* ======== PAGE TOP PADDING ======== */
.page-top-offset {
  padding-top: 72px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .legal-layout {
    grid-template-columns: 1fr 260px;
    gap: 48px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .two-col-section {
    grid-template-columns: 1fr;
  }

  .two-col-text {
    padding: 56px 0;
    order: 2;
  }

  .two-col-text.padded-left {
    padding: 56px 0;
    order: 2;
  }

  .two-col-image {
    order: 1;
    min-height: 300px;
  }

  .stat-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(189,195,199,0.18);
    padding-bottom: 24px;
  }

  .hydration-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .glossary-rail {
    position: static;
  }

  .featured-item {
    grid-template-columns: 1fr;
  }

  .featured-item-img {
    min-height: 280px;
  }

  .image-text-pair,
  .image-text-pair.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cookie-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(26,42,56,0.98);
    padding: 16px 0;
    border-bottom: 1px solid rgba(189,195,199,0.1);
    gap: 4px;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    padding: 12px 24px;
    border-radius: 0;
    width: 100%;
    text-align: left;
  }

  .header-nav a.nav-contact {
    margin-left: 0;
    border: none;
    border-top: 1px solid rgba(189,195,199,0.1);
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ingredient-grid {
    grid-template-columns: 1fr;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 32px 24px;
  }

  .thankyou-box {
    padding: 48px 24px;
  }

  .section-spacer {
    padding: 64px 0;
  }

  .hero-content {
    padding: 100px 0 72px;
  }
}

@media (max-width: 480px) {
  .stat-strip-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }
}
