/* ===== VitalChargIO — Wellness E-Commerce ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --teal-50: #e0f7f1;
  --teal-100: #b2f0de;
  --teal-200: #80e8c9;
  --teal-300: #4de0b4;
  --teal-400: #26d9a3;
  --teal-500: #1DE9B6;
  --teal-600: #26A69A;
  --teal-700: #1a8a7f;
  --teal-800: #0f6e64;
  --teal-900: #064d47;

  --white: #ffffff;
  --off-white: #f8fdfb;
  --gray-50: #f5f7f6;
  --gray-100: #e8edeb;
  --gray-200: #d1dad6;
  --gray-300: #a3b5ae;
  --gray-500: #6b7f76;
  --gray-700: #3a4a44;
  --gray-800: #263531;
  --gray-900: #1a2723;

  --accent-gold: #d4a853;
  --accent-coral: #ff7c6b;
  --danger: #e53935;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.14);

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

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p { margin-bottom: 1rem; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: 5rem 0;
}
.section--teal {
  background: linear-gradient(160deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white);
}
.section--light {
  background: var(--gray-50);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(29,233,182,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,233,182,.45);
}
.btn--outline {
  border: 2px solid var(--teal-500);
  color: var(--teal-600);
  background: transparent;
}
.btn--outline:hover {
  background: var(--teal-500);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--teal-700);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ---------- Header / Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: -.02em;
}
.navbar__logo span {
  color: var(--teal-500);
}
.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-500);
  transition: var(--transition);
}
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }
.navbar__links a:hover { color: var(--teal-600); }
.navbar__cta .btn { padding: .6rem 1.4rem; font-size: .85rem; }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: right .35s ease;
  }
  .navbar__links.open { right: 0; }
  .navbar__links a { font-size: 1.1rem; }
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 999;
  }
  .mobile-overlay.active { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--off-white) 40%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,233,182,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(38,166,154,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(29,233,182,.1);
  color: var(--teal-700);
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero__title {
  margin-bottom: 1.2rem;
}
.hero__title em {
  font-style: italic;
  color: var(--teal-600);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.12));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero__image-blob {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(29,233,182,.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__image { order: -1; }
  .hero__image img { max-width: 300px; }
}

/* ---------- Trust blocks ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: var(--transition);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal-50), rgba(29,233,182,.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.trust-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.trust-card__text {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---------- Product Page ---------- */
.product-hero {
  padding-top: calc(72px + 3rem);
  padding-bottom: 3rem;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.gallery {
  position: sticky;
  top: 100px;
}
.gallery__main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-50), var(--gray-50));
  padding: 2rem;
  margin-bottom: 1rem;
}
.gallery__main img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  transition: transform .4s ease;
}
.gallery__main:hover img { transform: scale(1.04); }
.gallery__thumbs {
  display: flex;
  gap: .75rem;
}
.gallery__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-50);
  padding: .5rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gallery__thumb.active,
.gallery__thumb:hover {
  border-color: var(--teal-500);
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info { padding-top: 1rem; }
.product-info__badge {
  display: inline-block;
  background: rgba(29,233,182,.1);
  color: var(--teal-700);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.product-info__title {
  margin-bottom: .75rem;
}
.product-info__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 1.5rem;
}
.product-info__price .currency { font-size: 1.1rem; font-weight: 500; }
.product-info__desc {
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Ingredient tags */
.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.ingredient-tag {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Usage instructions */
.usage-box {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.usage-box__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.usage-box ol {
  list-style: decimal;
  padding-left: 1.2rem;
}
.usage-box li {
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: .4rem;
  line-height: 1.6;
}

/* ---------- Order Form ---------- */
.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(29,233,182,.15);
}
.order-form__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.order-form__sub {
  font-size: .85rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  font-size: .95rem;
  color: var(--gray-800);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,233,182,.12);
}
.form-disclaimer {
  font-size: .75rem;
  color: var(--gray-300);
  margin-top: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
}

/* ---------- Ingredients Page ---------- */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: var(--transition);
}
.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ingredient-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ingredient-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.ingredient-card__text {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- About Page ---------- */
.about-hero {
  padding-top: calc(72px + 3rem);
  text-align: center;
}
.about-hero h1 { margin-bottom: 1rem; }
.about-hero p { max-width: 640px; margin: 0 auto 2rem; color: var(--gray-500); font-size: 1.1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card__title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .5rem; font-weight: 600; }
.value-card__text { font-size: .9rem; color: var(--gray-500); }

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-500), var(--teal-200));
}
.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: .35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal-500);
  transform: translateX(-5px);
}
.timeline__year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-600);
  font-size: .85rem;
  margin-bottom: .3rem;
}
.timeline__text {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.04);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  gap: 1rem;
  user-select: none;
  transition: var(--transition);
}
.faq-item__q:hover { color: var(--teal-600); }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--gray-500);
}
.faq-item.open .faq-item__icon {
  background: var(--teal-500);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-item__a {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}
.faq-item__a p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-50), rgba(29,233,182,.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-card__label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-300);
  margin-bottom: .2rem;
}
.contact-info-card__value {
  font-weight: 500;
  font-size: .95rem;
}
.contact-info-card__value a:hover { color: var(--teal-600); }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-400);
  margin-bottom: .75rem;
}
.footer__brand-desc {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__col-title {
  font-weight: 600;
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: .88rem;
  margin-bottom: .6rem;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--teal-400); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a:hover { color: var(--teal-400); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: calc(72px + 3rem) 0 3rem;
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--off-white) 100%);
  text-align: center;
}
.page-header h1 { margin-bottom: .75rem; }
.page-header p { color: var(--gray-500); max-width: 560px; margin: 0 auto; }

/* ---------- Success Page ---------- */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(160deg, var(--teal-50) 0%, var(--off-white) 100%);
}
.success-box {
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.success-box__check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
  animation: successPop .5s cubic-bezier(.4,0,.2,1);
}
@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.legal-content h3 {
  margin-top: 1.8rem;
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
.legal-content p, .legal-content li {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li { margin-bottom: .4rem; }

/* ---------- Cookie Modal ---------- */
.cookie-modal {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem 2rem;
  max-width: 520px;
  width: calc(100% - 2rem);
  display: none;
  border: 1px solid rgba(0,0,0,.06);
  animation: cookieSlide .4s ease;
}
@keyframes cookieSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-modal.show { display: block; }
.cookie-modal__text {
  font-size: .88rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.cookie-modal__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.cookie-modal__actions .btn { padding: .6rem 1.5rem; font-size: .85rem; }

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Misc ---------- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  border-radius: 50px;
  margin: 1rem auto 2rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .5rem; }
.section-header p { color: var(--gray-500); max-width: 560px; margin: 0 auto; }

.text-teal { color: var(--teal-600); }
.bg-white { background: var(--white); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
