@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --color-primary: #2C3E50;
  --color-accent-green: #1ABC9C;
  --color-accent-yellow: #F39C12;
  --color-accent-light: #BDC3C7;
  --color-bg: #F8F9FA;
  --color-white: #FFFFFF;
  --color-text: #2C3E50;
  --color-text-muted: #6C7A89;
  --color-border: #E8ECEF;
  --color-section-alt: #EAF4F1;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1, .h1 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--color-white);
}

h2, .h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-primary);
}

h3, .h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-primary);
}

h4, .h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-primary);
}

p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

a {
  color: var(--color-accent-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-yellow);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6em;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.text-accent-green {
  color: var(--color-accent-green);
}

.text-accent-yellow {
  color: var(--color-accent-yellow);
}

.bg-primary-dark {
  background-color: var(--color-primary);
}

.bg-section-alt {
  background-color: var(--color-section-alt);
}

.bg-white {
  background-color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 12px;
}

.divider-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-accent-green);
  margin: 16px 0 24px 0;
}

.divider-line.centered {
  margin: 16px auto 24px auto;
}

.keleza-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}

.keleza-btn-primary {
  background-color: var(--color-accent-green);
  color: var(--color-white);
  border-color: var(--color-accent-green);
}

.keleza-btn-primary:hover {
  background-color: #17a589;
  border-color: #17a589;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 188, 156, 0.3);
}

.keleza-btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.keleza-btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.keleza-btn-outline-dark {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.keleza-btn-outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* HEADER / NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.3);
}

.navbar-keleza {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  height: 68px;
}

.navbar-logo {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--color-white);
  letter-spacing: 1px;
  text-decoration: none;
}

.navbar-logo span {
  color: var(--color-accent-green);
}

.navbar-logo:hover {
  color: var(--color-white);
  text-decoration: none;
}

.navbar-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.navbar-nav-links li a {
  color: var(--color-accent-light);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav-links li a:hover,
.navbar-nav-links li a.active {
  color: var(--color-white);
  background-color: rgba(26, 188, 156, 0.2);
}

.navbar-home-btn {
  background-color: var(--color-accent-green);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.navbar-home-btn:hover {
  background-color: #17a589;
  color: var(--color-white);
}

.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(44, 62, 80, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 20px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-edu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(26, 188, 156, 0.15);
  border: 1px solid rgba(26, 188, 156, 0.4);
  color: var(--color-accent-green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* INFO CARDS GRID */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.info-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  border-top: 4px solid var(--color-accent-green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(44, 62, 80, 0.14);
}

.info-card .card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-section-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.info-card .card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* TWO COLUMN LAYOUT */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-layout.reversed {
  direction: rtl;
}

.two-col-layout.reversed > * {
  direction: ltr;
}

.two-col-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15);
}

.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.two-col-text h2 {
  margin-bottom: 8px;
}

.two-col-text p {
  color: var(--color-text-muted);
  font-size: 15.5px;
}

.two-col-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.two-col-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--color-text-muted);
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
}

.two-col-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--color-accent-green);
  border-radius: 50%;
  opacity: 0.3;
}

.two-col-text ul li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-green);
  border-radius: 50%;
}

/* INGREDIENTS CARDS */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ingredient-card {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(44, 62, 80, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(44, 62, 80, 0.14);
}

.ingredient-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ingredient-card-body {
  padding: 24px;
}

.ingredient-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.ingredient-card-body p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.ingredient-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-green);
  background-color: var(--color-section-alt);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* NUTRISI TABLE SECTION */
.nutrition-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.1);
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
}

.nutrition-table thead tr {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.nutrition-table thead th {
  padding: 16px 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: left;
}

.nutrition-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.15s ease;
}

.nutrition-table tbody tr:hover {
  background-color: var(--color-section-alt);
}

.nutrition-table tbody td {
  padding: 14px 20px;
  font-size: 14.5px;
  color: var(--color-text);
  vertical-align: top;
}

.nutrition-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-primary);
}

.nutrition-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.nutrition-tag-green {
  background-color: rgba(26, 188, 156, 0.15);
  color: #0E8C73;
}

.nutrition-tag-yellow {
  background-color: rgba(243, 156, 18, 0.15);
  color: #B7770D;
}

/* STATS STRIP */
.stats-strip {
  background-color: var(--color-primary);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-item .stat-number {
  font-family: 'Roboto Slab', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--color-accent-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* EDITORIAL PANEL */
.editorial-panel {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
}

.editorial-panel.reversed-panel {
  grid-template-columns: 1fr 2fr;
}

.editorial-img {
  height: 460px;
  object-fit: cover;
  width: 100%;
}

.editorial-text-block {
  background-color: var(--color-primary);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-text-block h2 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.editorial-text-block .divider-line {
  background-color: var(--color-accent-yellow);
}

.editorial-text-block p {
  color: rgba(255,255,255,0.8);
  font-size: 15.5px;
  margin-bottom: 14px;
}

.editorial-text-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.editorial-text-block ul li {
  padding: 8px 0;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-left: 22px;
  position: relative;
}

.editorial-text-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-yellow);
  border-radius: 50%;
}

/* TIMELINE */
.timeline-wrap {
  position: relative;
  padding: 20px 0;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-accent-green);
  transform: translateX(-50%);
  opacity: 0.3;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content-left {
  padding-right: 40px;
  text-align: right;
}

.timeline-content-right {
  padding-left: 40px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--color-accent-green);
  border-radius: 50%;
  border: 4px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent-green);
  margin: 6px auto 0;
}

.timeline-content-left h4,
.timeline-content-right h4 {
  font-size: 17px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.timeline-content-left p,
.timeline-content-right p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.timeline-item.right-side .timeline-content-left {
  opacity: 0;
}

.timeline-item.left-side .timeline-content-right {
  opacity: 0;
}

/* ANTIOXIDANT INFO */
.antioxidant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.antioxidant-card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.07);
  border-bottom: 3px solid var(--color-accent-yellow);
  transition: transform 0.2s ease;
}

.antioxidant-card:hover {
  transform: translateY(-4px);
}

.antioxidant-card .ao-value {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-accent-yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.antioxidant-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.antioxidant-card p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ROUTINE CHECKLIST */
.routine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.routine-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
  border-left: 4px solid var(--color-accent-green);
}

.routine-card h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 17px;
}

.routine-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.routine-card ul li {
  font-size: 14.5px;
  color: var(--color-text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  padding-left: 20px;
  position: relative;
}

.routine-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-green);
  border-radius: 50%;
  opacity: 0.5;
}

.routine-card ul li:last-child {
  border-bottom: none;
}

/* HYDRATION SLEEP SECTION */
.hydration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hydration-panel {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
}

.hydration-panel.accent-panel {
  background-color: var(--color-primary);
}

.hydration-panel.accent-panel h3 {
  color: var(--color-white);
}

.hydration-panel.accent-panel p {
  color: rgba(255,255,255,0.78);
}

.hydration-panel.accent-panel ul li {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.1);
}

.panel-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: var(--color-section-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.accent-panel .panel-icon-wrap {
  background-color: rgba(26, 188, 156, 0.15);
}

.panel-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hydration-panel ul {
  list-style: none;
  padding: 0;
}

.hydration-panel ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}

.hydration-panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-green);
  border-radius: 50%;
}

.hydration-panel ul li:last-child {
  border-bottom: none;
}

/* DISCLAIMER BLOCK */
.disclaimer-block {
  background-color: #FFF8EC;
  border: 1px solid rgba(243, 156, 18, 0.35);
  border-left: 5px solid var(--color-accent-yellow);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 36px 0;
}

.disclaimer-block p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.disclaimer-block strong {
  color: var(--color-primary);
}

/* EDU NOTICE */
.edu-notice {
  background-color: var(--color-section-alt);
  border-radius: 10px;
  padding: 36px 40px;
  border: 1px solid rgba(26, 188, 156, 0.25);
  text-align: center;
  margin: 60px 0 0 0;
}

.edu-notice p {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.edu-notice strong {
  color: var(--color-primary);
}

/* SOFT CTA SECTION */
.soft-cta-section {
  background-color: var(--color-primary);
  padding: 80px 20px;
  text-align: center;
}

.soft-cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.soft-cta-section p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 32px auto;
}

.soft-cta-edu-msg {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* FAQ ACCORDION */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-accent-green);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-section-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.3s ease;
}

.faq-question.open .faq-icon {
  background-color: var(--color-accent-green);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.faq-question.open .faq-icon svg {
  stroke: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ABOUT PAGE */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-mission-card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: 0 4px 18px rgba(44, 62, 80, 0.07);
  text-align: center;
}

.about-mission-card .mission-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-section-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.about-mission-card .mission-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-mission-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.about-mission-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 6px 28px rgba(44, 62, 80, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-control-keleza {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-control-keleza:focus {
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.15);
}

textarea.form-control-keleza {
  resize: vertical;
  min-height: 140px;
}

.form-disclaimer {
  background-color: var(--color-section-alt);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  border-left: 3px solid var(--color-accent-green);
}

.contact-info-block {
  padding: 20px 0;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-section-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* POLICY PAGES */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 60px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
}

.policy-content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p, .policy-content li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.policy-date {
  display: inline-block;
  font-size: 13px;
  color: var(--color-text-muted);
  background-color: var(--color-section-alt);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 32px;
}

/* THANK YOU PAGE */
.thank-you-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.thank-you-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 60px 60px;
  box-shadow: 0 8px 40px rgba(44, 62, 80, 0.1);
  max-width: 520px;
  width: 100%;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-section-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px auto;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background-color: var(--color-primary);
  padding: 70px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  background-color: #1A2535;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .footer-logo {
  font-family: 'Roboto Slab', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer-brand .footer-logo span {
  color: var(--color-accent-green);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-edu-msg {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-accent-green);
  background-color: rgba(26, 188, 156, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(26, 188, 156, 0.25);
}

.footer-col h5 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--color-accent-green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policies a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policies a:hover {
  color: var(--color-accent-green);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A2535;
  border-top: 3px solid var(--color-accent-green);
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  flex: 1;
  line-height: 1.6;
}

.cookie-banner-text strong {
  color: var(--color-white);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Open Sans', sans-serif;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.cookie-btn-accept {
  background-color: var(--color-accent-green);
  color: var(--color-white);
  border-color: var(--color-accent-green);
}

.cookie-btn-accept:hover {
  background-color: #17a589;
}

.cookie-btn-reject {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--color-accent-green);
  border-color: var(--color-accent-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  transition: background-color 0.2s ease;
}

.cookie-btn-learn:hover {
  background-color: rgba(26, 188, 156, 0.1);
  color: var(--color-accent-green);
}

/* BREADCRUMB */
.breadcrumb-wrap {
  background-color: var(--color-white);
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.breadcrumb-inner a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumb-inner a:hover {
  color: var(--color-accent-green);
}

.breadcrumb-inner span.sep {
  color: var(--color-accent-light);
}

.breadcrumb-inner span.current {
  color: var(--color-primary);
  font-weight: 600;
}

/* STRESS SECTION */
.stress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stress-card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 30px 24px;
  box-shadow: 0 3px 16px rgba(44, 62, 80, 0.07);
  border-top: 4px solid var(--color-accent-yellow);
  transition: transform 0.2s ease;
}

.stress-card:hover {
  transform: translateY(-3px);
}

.stress-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.stress-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.stress-card .stress-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-yellow);
  background-color: rgba(243, 156, 18, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* HISTORICAL STUDIES */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.history-card {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.09);
  display: grid;
  grid-template-columns: 180px 1fr;
}

.history-card img {
  width: 180px;
  height: 100%;
  object-fit: cover;
}

.history-card-body {
  padding: 24px;
}

.history-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.history-card-body h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.history-card-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.65;
}

/* FOR MENS PAGE */
.mens-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mens-topic-card {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(44, 62, 80, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mens-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(44, 62, 80, 0.14);
}

.mens-topic-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mens-topic-card-body {
  padding: 24px;
}

.mens-topic-card-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.mens-topic-card-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .antioxidant-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mens-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  h1, .h1 {
    font-size: 36px;
  }

  h2, .h2 {
    font-size: 28px;
  }

  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .two-col-layout.reversed {
    direction: ltr;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-wrap::before {
    left: 24px;
  }

  .timeline-item {
    grid-template-columns: 0 40px 1fr;
  }

  .timeline-content-left {
    display: none;
  }

  .timeline-item.right-side .timeline-content-left {
    display: none;
  }

  .timeline-item.left-side .timeline-content-right {
    opacity: 1;
  }

  .history-grid {
    grid-template-columns: 1fr;
  }

  .editorial-panel {
    grid-template-columns: 1fr;
  }

  .editorial-panel.reversed-panel {
    grid-template-columns: 1fr;
  }

  .editorial-img {
    height: 300px;
  }

  .routine-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hydration-grid {
    grid-template-columns: 1fr;
  }

  .policy-content {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .navbar-collapse.open {
    display: flex;
  }

  .navbar-nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-nav-links li {
    width: 100%;
  }

  .navbar-nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 14px;
  }

  .navbar-toggler {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .antioxidant-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stress-grid {
    grid-template-columns: 1fr;
  }

  .mens-topics-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policies {
    justify-content: center;
  }

  .history-card {
    grid-template-columns: 1fr;
  }

  .history-card img {
    width: 100%;
    height: 200px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .thank-you-card {
    padding: 40px 28px;
  }

  .two-col-img img {
    height: 280px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  h1, .h1 {
    font-size: 28px;
  }

  h2, .h2 {
    font-size: 24px;
  }

  h3, .h3 {
    font-size: 20px;
  }

  .antioxidant-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn,
  .cookie-btn-learn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  .policy-content {
    padding: 24px 18px;
  }
}

.faq-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.faq-col-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--color-border);
}

.faq-col-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.faq-col-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-col-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-border);
}

.faq-item.borderless {
  border-bottom: none;
}

.faq-item.borderless:last-child {
  margin-bottom: 0;
}

.faq-wide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item-wide {
  border-bottom: 1px solid var(--color-border) !important;
  border-right: 1px solid var(--color-border);
  margin: 0 !important;
  padding: 0;
}

.faq-item-wide:nth-child(even) {
  border-right: none;
}

.faq-item-wide:nth-last-child(-n+2) {
  border-bottom: none !important;
}

.faq-item-wide .faq-question {
  padding: 22px 24px;
  border-radius: 0;
  background: var(--color-white);
}

.faq-item-wide .faq-answer {
  padding: 0 24px;
}

.faq-item-wide .faq-answer.open {
  padding: 16px 24px 22px;
}

.timeline-list {
  position: relative;
  padding-left: 28px;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--color-accent-green);
  opacity: 0.35;
}

.timeline-list .timeline-item {
  position: relative;
  margin-bottom: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-list .timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-list .timeline-dot {
  position: absolute;
  left: -24px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent-green);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent-green);
  flex-shrink: 0;
}

.timeline-content h4 {
  margin-bottom: 6px;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 15px;
}

.nutrient-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.nutrient-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.nutrient-badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  flex-shrink: 0;
}

.nutrient-item h4 {
  margin-bottom: 4px;
}

.nutrient-item p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .faq-three-col {
    grid-template-columns: 1fr;
  }

  .faq-wide-grid {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }

  .faq-item-wide {
    border-right: none !important;
  }

  .faq-item-wide:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--color-border) !important;
  }

  .faq-item-wide:last-child {
    border-bottom: none !important;
  }

  .timeline-list .timeline-dot {
    left: -22px;
  }
}
