@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2E4053;
  --primary-light: #3d5166;
  --accent-yellow: #F9E79F;
  --accent-gray: #D5DBDB;
  --accent-green: #1ABC9C;
  --accent-green-dark: #17a589;
  --bg-dark: #1a2632;
  --bg-section: #f4f6f8;
  --bg-card: rgba(255,255,255,0.72);
  --text-main: #2E4053;
  --text-light: #5d6d7e;
  --text-muted: #8c9aaa;
  --border-card: rgba(255,255,255,0.55);
  --shadow-card: 0 4px 32px rgba(46,64,83,0.10);
  --shadow-hover: 0 8px 40px rgba(46,64,83,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg-section);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-green-dark);
}

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

ul, ol {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(46, 64, 83, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo span {
  color: var(--accent-green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(26,188,156,0.15);
  color: var(--accent-green);
}

.nav-contact-btn {
  background: var(--accent-green) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.nav-contact-btn:hover {
  background: var(--accent-green-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== MAIN CONTENT OFFSET ===== */
.page-content {
  padding-top: 70px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .site-logo {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.footer-editorial-note {
  background: rgba(26,188,156,0.12);
  border-left: 3px solid var(--accent-green);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-green);
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-hours {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 16px;
}

.footer-hours p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.footer-hours strong {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 780px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ===== SECTION SPACING ===== */
.section {
  padding: 90px 0;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

/* ===== SECTION HEADER ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  background: rgba(26,188,156,0.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-dark .section-title {
  color: #fff;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}

.section-dark .section-sub {
  color: rgba(255,255,255,0.7);
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-sub {
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,64,83,0.92) 0%, rgba(26,188,156,0.15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 100px 0 80px;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-content h1 .accent {
  color: var(--accent-green);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ===== DASHBOARD CARD (HERO) ===== */
.dashboard-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dashboard-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.dashboard-card-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.metric-row {
  margin-bottom: 22px;
}

.metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}

.metric-value {
  font-weight: 600;
  color: var(--accent-green);
}

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-fill.green { background: var(--accent-green); }
.progress-fill.yellow { background: var(--accent-yellow); }
.progress-fill.orange { background: #e67e22; }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-mini {
  text-align: center;
}

.stat-mini-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-yellow);
}

.stat-mini-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent-green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,188,156,0.35);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== INSIGHT CARDS ===== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--accent-gray);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.insight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26,188,156,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.insight-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-green);
}

.insight-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
}

.insight-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== SPLIT LAYOUT ===== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-layout.reverse .split-visual {
  order: -1;
}

.split-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.split-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-content .section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.content-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.content-list-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(26,188,156,0.12);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-list-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

.content-list-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== METRICS STRIP ===== */
.metrics-strip {
  background: var(--primary);
  padding: 60px 0;
}

.metrics-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.metric-item:last-child {
  border-right: none;
}

.metric-big-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-big-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ===== INGREDIENT CARDS ===== */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ingredient-card {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e8ecef;
  text-align: center;
  transition: all 0.2s;
}

.ingredient-card:hover {
  border-color: var(--accent-green);
  box-shadow: 0 4px 20px rgba(26,188,156,0.12);
  transform: translateY(-2px);
}

.ingredient-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(26,188,156,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ingredient-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.ingredient-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--accent-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--accent-green);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--accent-green);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-light);
  transition: color 0.2s;
}

.faq-item.open .faq-icon svg {
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== CONTACT PAGE ===== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
  align-items: stretch;
}

.contact-form-side {
  padding: 80px 64px 80px 0;
}

.contact-info-side {
  position: relative;
  overflow: hidden;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.contact-info-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,64,83,0.75) 0%, rgba(46,64,83,0.92) 100%);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26,188,156,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--accent-gray);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-main);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(26,188,156,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--primary);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.about-photo-dominant {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46,64,83,0.2);
}

.about-photo-dominant img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-photo-badge strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
}

.about-photo-badge span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: var(--primary);
  padding: 110px 0 60px;
}

.policy-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
}

.policy-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

.policy-content {
  padding: 60px 0 90px;
}

.policy-body {
  max-width: 820px;
}

.policy-body h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gray);
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 24px;
  margin-bottom: 10px;
}

.policy-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-body ul li {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 8px;
}

.policy-body strong {
  color: var(--text-main);
  font-weight: 600;
}

.policy-body a {
  color: var(--accent-green);
}

/* ===== PAGE HERO GENERIC ===== */
.page-hero {
  background: var(--primary);
  padding: 110px 0 60px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== 404 ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}

.error-page h1 {
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}

.error-page h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.error-page p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
  text-align: center;
}

.thankyou-card {
  max-width: 520px;
  width: 100%;
  padding: 60px 48px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-text a {
  color: var(--accent-green);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: var(--accent-green);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-cookie-accept:hover {
  background: var(--accent-green-dark);
}

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-cookie-decline:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}

/* ===== INDEX SPECIFIC ===== */
.assessment-section {
  padding: 90px 0;
  background: #fff;
}

.assessment-box {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--accent-gray);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.assessment-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--accent-gray);
  transition: background 0.3s;
}

.step-dot.active {
  background: var(--accent-green);
}

.question-block {
  display: none;
}

.question-block.active {
  display: block;
}

.question-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.option-card {
  padding: 16px 20px;
  border: 1.5px solid var(--accent-gray);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  text-align: left;
}

.option-card:hover {
  border-color: var(--accent-green);
  background: rgba(26,188,156,0.04);
}

.option-card.selected {
  border-color: var(--accent-green);
  background: rgba(26,188,156,0.08);
}

.option-card span {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.slider-group {
  margin-bottom: 8px;
}

.range-slider {
  width: 100%;
  accent-color: var(--accent-green);
  cursor: pointer;
  height: 6px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.question-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.q-counter {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Results Dashboard */
.results-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.results-dashboard {
  display: none;
}

.results-dashboard.visible {
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.result-metric-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--accent-gray);
  box-shadow: var(--shadow-card);
}

.result-circle {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.result-circle svg {
  transform: rotate(-90deg);
}

.circle-track {
  fill: none;
  stroke: var(--accent-gray);
  stroke-width: 6;
}

.circle-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 201;
  stroke-dashoffset: 201;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-fill.green { stroke: var(--accent-green); }
.circle-fill.yellow { stroke: var(--accent-yellow); }
.circle-fill.orange { stroke: #e67e22; }

.result-circle-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.result-metric-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.result-metric-status {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.status-good { background: rgba(26,188,156,0.1); color: var(--accent-green); }
.status-mid { background: rgba(249,231,159,0.25); color: #a07c00; }
.status-low { background: rgba(230,126,34,0.1); color: #c0651a; }

/* ===== INGREDIENT SECTION (INDEX) ===== */
.ingredient-section {
  padding: 90px 0;
  background: #fff;
}

/* ===== PHOTO SECTION ===== */
.photo-feature {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46,64,83,0.88) 0%, transparent 60%);
  display: flex;
  align-items: center;
}

.photo-feature-content {
  max-width: 520px;
  padding: 0 80px;
  color: #fff;
}

.photo-feature-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  color: #fff;
}

.photo-feature-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== ABOUT PAGE SPECIFICS ===== */
.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.editorial-body h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.editorial-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

.editorial-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-insight-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  color: #fff;
  margin-bottom: 20px;
}

.sidebar-insight-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sidebar-insight-card ul {
  list-style: none;
}

.sidebar-insight-card ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-insight-card ul li:last-child {
  border-bottom: none;
}

.sidebar-insight-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(46,64,83,0.99);
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent-green);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.breadcrumb-list a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb-list a:hover {
  color: rgba(255,255,255,0.85);
}

.breadcrumb-list .sep {
  color: rgba(255,255,255,0.25);
}

.breadcrumb-list .current {
  color: rgba(255,255,255,0.85);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 24px;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .editorial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 0 60px;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-layout.reverse .split-visual {
    order: 0;
  }
  .split-visual img {
    height: 300px;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-form-side {
    padding: 60px 0 40px;
  }
  .contact-info-side {
    height: 400px;
    border-radius: var(--radius);
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .options-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
  .footer-copyright {
    text-align: left;
  }
  .metrics-strip .container {
    grid-template-columns: 1fr 1fr;
  }
  .assessment-box {
    padding: 32px 24px;
  }
  .photo-feature-content {
    padding: 0 32px;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
  .hero-inner {
    padding: 70px 0 50px;
  }
  .about-hero {
    padding: 100px 0 60px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metrics-strip .container {
    grid-template-columns: 1fr 1fr;
  }
  .assessment-steps {
    gap: 4px;
  }
  .thankyou-card {
    padding: 40px 24px;
  }
}
