/* orvionix — design system + landing */
@import url("tokens.css");

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--ox-ink);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(20, 184, 166, 0.18), transparent 55%),
    linear-gradient(180deg, #dbece9 0%, #f1f5f9 42%, #eef2f7 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* LAYOUT */
.page {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-subtle);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.section {
  padding: 28px 22px;
  border-bottom: 1px solid var(--line-border);
}

.section--no-border {
  border-bottom: none;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent-mid) 55%, var(--accent) 100%);
  text-align: center;
  padding: 11px 16px;
}

.eyebrow--accent {
  background: linear-gradient(90deg, var(--accent-dark) 0%, #2dd4bf 100%);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f766e;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-logo:hover {
  color: #0d9488;
  transform: translateY(-1px);
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  padding: 44px 24px 48px;
  border-top: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-link {
  color: #99f6e4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.65;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-image {
  width: 100%;
  height: 220px;
  background: url("../heropic.webp") center/cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
}

.hero-content {
  order: 2;
}

.hero-image-wrapper {
  order: 1;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ox-ink);
  font-weight: 600;
}

h1 {
  font-size: clamp(1.5rem, 4.2vw, 1.75rem);
  line-height: 1.25;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  line-height: 1.3;
  margin-bottom: 12px;
}

h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.subtext {
  font-size: 14px;
  color: var(--ox-muted);
  margin-bottom: 12px;
}

.muted {
  color: var(--ox-muted);
  font-size: 13px;
}

.center {
  text-align: center;
}

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

.highlight {
  color: #0f766e;
  font-weight: 600;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-sans);
}

a.btn {
  text-decoration: none;
  color: inherit;
}

.btn--primary {
  background: linear-gradient(135deg, var(--ox-cta) 0%, var(--ox-cta-dark) 100%);
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #fb923c 0%, var(--ox-cta) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
}

.btn--outline {
  background: transparent;
  color: #0f766e;
  border: 2px solid #0d9488;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 999px;
}

.btn-row {
  margin-top: 14px;
  margin-bottom: 10px;
}

/* RATING */
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 4px;
  font-size: 13px;
}

.stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}

/* TESTIMONIAL BLOCKS */
.quote-block {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 6px;
}

.quote-name {
  font-weight: 600;
  margin-top: 6px;
  font-size: 13px;
}

.quote-snippet {
  font-style: italic;
  font-size: 13px;
  margin-top: 4px;
  color: #555;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 8px;
  object-fit: cover;
  border: 2px solid var(--border-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.testimonial-item {
  padding: 22px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-sm);
}

/* Press / as seen in */
.press-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.press-label {
  font-size: 12px;
  color: var(--ox-muted);
}

.press-logos {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.press-logos img {
  height: 80px;
  object-fit: contain;
}

.verified-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}

.verified-check {
  color: var(--ox-success);
}

.verified-label {
  font-size: 11px;
}

.quote-snippet--lead {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  font-style: normal;
  color: var(--ox-ink);
}

.lead-stat {
  font-size: 18px;
  font-weight: 600;
}

.section-heading-spaced {
  margin-bottom: 32px;
}

.h3-reason {
  font-size: 20px;
  margin-bottom: 12px;
}

.img-cover-rounded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.ingredient-image--sulfur {
  background-image: url("../sulfur.avif");
}

.ingredient-image--camphor {
  background-image: url("../Camphor.avif");
}

.ingredient-image--arnica {
  background-image: url("../Arnica Montana.avif");
}

.section-title--faq {
  text-align: left;
  margin-bottom: 24px;
}

.faq-side-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.section--soft {
  background: var(--bg-soft);
}

/* BADGE / LABELS */
.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

/* INGREDIENTS */
.ingredients-header {
  text-align: center;
  margin-bottom: 30px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ingredient-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.ingredient-header {
  background: linear-gradient(90deg, #0f766e, #0d9488);
  color: #fff;
  padding: 12px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-sans);
}

.ingredient-content {
  display: flex;
  gap: 16px;
  padding: 20px;
  align-items: center;
}

.ingredient-text {
  flex: 1;
}

.ingredient-image {
  flex: 0 0 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.ingredient-text h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
}

.ingredient-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* STEPS / BENEFITS */
.steps {
  margin-top: 16px;
}

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

.step-badge {
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #fff;
  font-weight: 600;
  margin-top: 2px;
  font-family: var(--font-sans);
}

.step-text {
  font-size: 13px;
  color: #444;
}

/* REASONS LIST */
.reasons-title {
  text-align: left;
  font-size: 16px;
  margin-bottom: 8px;
}

.reasons-title span {
  color: var(--accent);
}

.reasons-list {
  list-style: decimal;
  padding-left: 18px;
  font-size: 13px;
  color: #444;
}

.reasons-list li {
  margin-bottom: 10px;
}

/* BOTTOM FAQ */
.bottom-faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bottom-faq-text {
  flex: 1;
}

.bottom-faq-image {
  flex: 1;
}

.bottom-faq-item {
  padding: 18px 0;
  border-top: 1px solid #eee;
}

.bottom-faq-item:last-child {
  border-bottom: 1px solid #eee;
}

.bottom-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}

.bottom-faq-question {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.bottom-faq-toggle {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #333;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bottom-faq-toggle.open {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
  transform: rotate(45deg);
}

.bottom-faq-answer {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.bottom-faq-answer.open {
  opacity: 1;
  margin-top: 8px;
}

/* IMAGE SECTIONS */
.image-caption {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
  text-align: center;
}

.full-width-image {
  width: 100%;
  height: 220px;
  background-position: center;
  background-size: cover;
  border: 1px solid #eee;
}

.full-width-image--offer {
  background-image: url("../offerpic.webp");
}

.image-text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-text-section--reverse {
  flex-direction: column-reverse;
}

.image-text-section__image {
  width: 100%;
  flex: 1;
}

.image-text-section__content {
  flex: 1;
}

/* UTIL */
.mt-xs { margin-top: 6px; }
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 18px; }
.mt-lg { margin-top: 24px; }

/* TABLET STYLES */
@media (min-width: 768px) {
  .page {
    max-width: 720px;
    border-left: none;
    border-right: none;
  }

  .section {
    padding: 32px 40px;
  }

  .footer {
    padding: 40px 40px;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-image {
    height: 320px;
  }

  .full-width-image {
    height: 320px;
  }

  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ingredient-content {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .ingredient-image {
    width: 100%;
    max-width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .btn--primary {
    width: auto;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
}

/* DESKTOP STYLES */
@media (min-width: 1024px) {
  .page {
    max-width: 1200px;
    padding: 0;
  }

  .section {
    padding: 48px 60px;
  }

  /* Hero Section - Two Column Layout */
  .hero-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 60px;
  }

  .hero-content {
    order: 1;
    flex: 1;
    text-align: left;
  }

  .hero-image-wrapper {
    order: 2;
    flex: 1;
  }

  .hero-image {
    height: 450px;
    border-radius: var(--radius);
  }

  /* Ingredients Grid */
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .ingredient-content {
    flex-direction: row;
    text-align: left;
    padding: 24px;
  }

  .ingredient-image {
    flex: 0 0 140px;
    height: 140px;
    max-width: none;
  }

  /* Image + Text Sections */
  .image-text-section {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .image-text-section--reverse {
    flex-direction: row-reverse;
  }

  .image-text-section__image img,
  .image-text-section__image .full-width-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
  }

  .image-text-section__content {
    flex: 1;
  }

  .bottom-faq {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  /* Testimonials Grid */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
  }

  .testimonial-item {
    padding: 30px;
  }

  /* Steps/Benefits */
  .steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .step {
    margin-bottom: 0;
  }

  /* Reasons List */
  .reasons-list {
    columns: 2;
    column-gap: 40px;
    list-style-position: inside;
  }

  .reasons-list li {
    break-inside: avoid;
    margin-bottom: 16px;
  }

  /* Full Width Image */
  .full-width-image {
    height: 500px;
  }

  /* Buttons */
  .btn-row {
    text-align: center;
  }

  .btn--primary {
    display: inline-block;
    width: auto;
    min-width: 250px;
  }

  /* Typography Adjustments */
  h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  h2 {
    font-size: 36px;
  }

  .subtext {
    font-size: 16px;
  }

  /* Avatar Sizes */
  .avatar {
    width: 80px;
    height: 80px;
  }

  /* Rating Row */
  .rating-row {
    justify-content: flex-start;
    margin: 20px 0;
  }

  /* Footer */
  .footer {
    padding: 60px 60px;
  }

  .footer-links {
    flex-direction: row;
    gap: 32px;
  }
}

/* LARGE DESKTOP */
@media (min-width: 1440px) {
  .page {
    max-width: 1400px;
  }

  .section {
    padding: 60px 80px;
  }

  .hero-wrapper {
    padding: 80px;
    gap: 80px;
  }

  .hero-image {
    height: 550px;
  }
}

/* —— Thank you —— */
.ty-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ty-card {
  max-width: 440px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.ty-card h1 {
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.ty-card p {
  color: var(--ox-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.ty-card a {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--ox-cta), var(--ox-cta-dark));
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
  transition: transform 0.2s ease;
}

.ty-card a:hover {
  transform: translateY(-1px);
}

.ty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

/* —— Legal & contact pages —— */
.page .content {
  padding: 40px 22px 52px;
}

.page .content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2rem);
  margin-bottom: 1.25rem;
  color: var(--ox-ink);
}

.page .content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  color: var(--ox-ink);
}

.page .content p,
.page .content li {
  font-size: 14px;
  color: var(--ox-muted);
  line-height: 1.75;
}

.page .content ul,
.page .content ol {
  margin-left: 1.15rem;
  margin-bottom: 1rem;
}

.page .contact-info {
  background: linear-gradient(145deg, #ecfdf5 0%, #f0fdfa 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.page .contact-item a {
  color: #0f766e;
  font-weight: 500;
}

.page .contact-item a:hover {
  color: var(--ox-cta);
}

.page .highlight-box {
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

@media (min-width: 1024px) {
  .page .content {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-meta {
  font-size: 13px;
  color: var(--ox-muted);
}

.page .content .link-accent {
  color: var(--ox-cta);
  text-decoration: underline;
}

.page .content .link-accent:hover {
  color: var(--ox-cta-dark);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ox-ink);
}
