@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Outfit:wght@500;600;700&display=swap");

:root {
  --bg: #eef2f7;
  --surface: #ffffff;
  --surface-elevated: #f8fafc;
  --text: #0f1c2e;
  --muted: #5a6b82;
  --primary: #0d4f8b;
  --primary-light: #1a6bb5;
  --accent: #00a896;
  --accent-glow: rgba(0, 168, 150, 0.35);
  --highlight: #ff6b4a;
  --highlight-soft: #fff0ec;
  --line: #d8e2ef;
  --hero-bg: linear-gradient(125deg, #071a2e 0%, #0d4f8b 42%, #00a896 100%);
  --footer-bg: #071a2e;
  --footer-text: #b8c9de;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow: 0 20px 50px rgba(15, 28, 46, 0.12);
  --shadow-card: 0 4px 20px rgba(15, 28, 46, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cairo", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--accent)) 1;
}

.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand::before {
  content: "";
  width: 10px;
  height: 36px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--highlight) 0%, var(--accent) 100%);
  flex-shrink: 0;
}

.brand__name {
  font-family: "Outfit", "Cairo", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand__tag {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: -2px;
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--primary);
  background: var(--surface-elevated);
  border-color: var(--line);
}

.nav a.is-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(13, 79, 139, 0.35);
}

.main {
  padding: 0 0 56px;
}

.container,
.page-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.main__left {
  max-width: 100%;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--hero-bg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 56px 48px 64px;
  margin: 0 -28px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 107, 74, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--highlight), var(--accent), var(--primary-light));
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: #e8f4ff;
  backdrop-filter: blur(6px);
}

.hero h1 {
  margin: 0 0 16px;
  font-family: "Outfit", "Cairo", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

.hero h1 span {
  color: #7ee8d8;
}

.hero p {
  margin: 0 0 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  opacity: 0.4;
  z-index: -1;
  filter: blur(20px);
}

.hero__visual img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.btn-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--highlight);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(255, 107, 74, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-cta:hover {
  color: #fff;
  background: #ff8266;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255, 107, 74, 0.5);
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 20px;
  border-inline-start: 1px solid var(--line);
  transition: background 0.2s ease;
}

.trust-item:first-child {
  border-inline-start: none;
}

.trust-item:hover {
  background: var(--surface-elevated);
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-item__text {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.35;
}

/* Section titles */
.section-title {
  font-family: "Outfit", "Cairo", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: "";
  width: 5px;
  height: 1.1em;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--highlight), var(--accent));
  flex-shrink: 0;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 680px;
  font-size: 1.02rem;
}

/* Feature grid — bento */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:nth-child(1) {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, #0a3d6e 100%);
  border-color: transparent;
}

.feature-card:nth-child(1) h3,
.feature-card:nth-child(1) p {
  color: #fff;
}

.feature-card:nth-child(1) p {
  opacity: 0.9;
}

.feature-card:nth-child(1) .feature-card__icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  color: var(--text);
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Steps — horizontal timeline on desktop */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 20px 16px;
  background: var(--surface-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-bottom: none;
  text-align: center;
}

.step-item__num {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(13, 79, 139, 0.3);
}

.step-item__body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--primary);
}

.step-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Ingredients */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ingredient-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ingredient-card:hover {
  border-color: var(--accent);
  background: #f0fffc;
}

.ingredient-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 800;
}

.ingredient-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Benefits */
.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.benefits-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  margin: 0;
  color: var(--text);
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
}

.benefits-list li::before {
  content: "◆";
  position: absolute;
  inset-inline-start: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.65rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  background: var(--surface-elevated);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: left;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--accent);
}

.faq-item__answer {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Content */
.main__title {
  font-family: "Outfit", "Cairo", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  line-height: 1.3;
  margin: 0 0 16px;
}

.main__subtitle {
  font-family: "Outfit", "Cairo", sans-serif;
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.25rem;
}

.main__text,
.main__item {
  color: var(--muted);
}

.main__text {
  margin-bottom: 14px;
}

.main__image {
  margin: 24px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 240px;
  border: 3px solid var(--surface);
  outline: 1px solid var(--line);
  background: var(--surface-elevated)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect fill='%23d8e2ef' width='100' height='100' rx='8'/%3E%3Cpath stroke='%2300a896' stroke-width='2' fill='none' d='M30 60 Q50 35 70 60'/%3E%3C/svg%3E")
    center / 72px no-repeat;
}

.main__image img {
  display: block;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
}

.main__list {
  margin: 0 0 20px;
  padding-inline-start: 22px;
}

.main__item {
  margin-bottom: 8px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 36px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
}

.card--highlight {
  border: none;
  background: linear-gradient(160deg, #e8f7f5 0%, #fff 50%, #f0f6ff 100%);
  box-shadow: var(--shadow);
}

.card--order {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-item {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: 18px;
  border-inline-start: 4px solid var(--accent);
}

.info-item__label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-item__value {
  margin-top: 6px;
  color: var(--text);
  font-weight: 700;
  word-break: break-word;
}

.btn,
.submitButton {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, var(--highlight) 0%, #e84a2f 100%);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  font-weight: 800;
  font-family: inherit;
  font-size: 1.05rem;
  box-shadow: 0 12px 28px rgba(255, 107, 74, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.submitButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 107, 74, 0.5);
}

/* Footer */
.site-footer {
  margin-top: 0;
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 48px 28px 40px;
  text-align: center;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--highlight), var(--accent), var(--primary-light));
}

.site-footer .nav {
  justify-content: center;
  margin-bottom: 24px;
}

.site-footer .nav a {
  color: #8aa8c8;
  border-color: rgba(255, 255, 255, 0.1);
}

.site-footer .nav a:hover,
.site-footer .nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.legal-list {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: right;
}

.legal-list p {
  margin: 8px 0;
  color: #8aa8c8;
  font-size: 0.88rem;
}

.disclaimer {
  max-width: 780px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  color: #6a849e;
  line-height: 1.65;
  text-align: right;
}

/* Inner pages */
.page {
  padding: 40px 0 56px;
  min-height: 50vh;
}

.page .page-container > h1 {
  font-family: "Outfit", "Cairo", sans-serif;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--primary);
}

.page .section-lead {
  margin-bottom: 32px;
}

.page .card p,
.page .card li {
  color: var(--muted);
  margin: 0 0 12px;
}

.page .card h2 {
  font-size: 1.12rem;
  color: var(--primary);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}

.page .card h2:first-of-type {
  margin-top: 0;
}

.page .card ul {
  padding-inline-start: 22px;
  margin: 0 0 16px;
}

.contact-card {
  display: grid;
  gap: 20px;
}

.contact-hours {
  background: var(--surface-elevated);
  border-radius: var(--radius);
  padding: 22px;
  border-inline-start: 4px solid var(--highlight);
}

.contact-hours strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px 48px;
    margin-inline: -28px;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero__visual {
    max-width: 320px;
    margin-inline: auto;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-inline-start: none;
    border-top: 1px solid var(--line);
  }

  .trust-item:first-child {
    border-top: none;
  }

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

  .feature-card:nth-child(1) {
    grid-column: span 1;
  }

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

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

  .benefits-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .container,
  .page-container {
    padding: 0 18px;
  }

  .hero {
    margin-inline: -18px;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 32px 20px 40px;
  }

  .site-header__inner {
    padding: 12px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .card {
    padding: 22px 20px;
  }

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