/* Replete Rx — Wholesale Peptide API Distributor */
/* Critical CSS inlined, non-critical deferred via script.js */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #0A2540;
  --navy-dark: #061829;
  --navy-mid: #123560;
  --teal: #00C2CB;
  --teal-dark: #009fa7;
  --teal-light: #e0f9fa;
  --white: #FFFFFF;
  --gray-bg: #F5F7FA;
  --gray-100: #EEF1F5;
  --gray-200: #DDE3EC;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(10, 37, 64, 0.08);
  --shadow-hover: 0 8px 32px rgba(10, 37, 64, 0.14);
  --transition: 0.2s ease;
  --max-w: 1200px;
  --header-h: 72px;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--gray { background: var(--gray-bg); }
.section--navy { background: var(--navy); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.btn--primary {
  background: var(--teal);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 194, 203, 0.35);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--teal-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn--teal-outline:hover {
  background: var(--teal);
  color: var(--navy);
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 9px 20px; font-size: 0.875rem; }

/* ── Header / Nav ── */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(10,37,64,0.25);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(10,37,64,0.35); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.logo__mark {
  display: block;
  flex-shrink: 0;
}
.logo span { color: var(--teal); }
.nav {
  display: flex;
  align-items: center;
  gap: 1px;
}
.nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 9px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 8px;
  min-width: 200px;
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  color: var(--gray-700);
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
}
.nav__dropdown-menu a:hover { background: var(--gray-bg); color: var(--navy); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  background: var(--navy-dark);
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── Mobile Floating CTA ── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,194,203,0.45);
  white-space: nowrap;
  font-size: 0.9rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.float-cta:hover { box-shadow: 0 8px 28px rgba(0,194,203,0.55); transform: translateX(-50%) translateY(-2px); }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}
.breadcrumb__list a { color: var(--teal); }
.breadcrumb__list a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--gray-400); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 48px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,194,203,0.12) 0%, transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,203,0.12);
  border: 1px solid rgba(0,194,203,0.3);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 8px;
  max-width: 640px;
}
.hero__disclaimer {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  margin-bottom: 36px;
  max-width: 600px;
  font-style: italic;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid var(--gray-200);
}
.trust-item:last-child { border-right: none; }
.trust-item__icon {
  width: 38px;
  height: 38px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-item__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.trust-item__text span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card__icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; }
.card__link {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card__link:hover { text-decoration: underline; }

/* ── Channel Cards ── */
.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.channel-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.channel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.channel-card__badge {
  display: inline-block;
  background: var(--navy);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.channel-card__img {
  width: 100%;
  height: 160px;
  background: var(--gray-bg);
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--teal);
}
.channel-card h3 { margin-bottom: 10px; }
.channel-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 20px; }

/* ── Stats Bar ── */
.stats-bar { background: var(--navy); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; text-align: center; }
.stat__number { font-size: 2.5rem; font-weight: 700; color: var(--teal); display: block; }
.stat__label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; }

/* ── Steps / How It Works ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; position: relative; }
.step {
  text-align: center;
  padding: 24px;
}
.step__num {
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--gray-600); font-size: 0.92rem; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-bottom: 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,194,203,0.12) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Compliance Footer Banner ── */
.compliance-bar {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 16px 0;
}
.compliance-bar p {
  font-size: 0.78rem;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .logo { margin-bottom: 16px; }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  margin-top: 16px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--teal); }
.footer__contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer__contact p span { color: var(--teal); flex-shrink: 0; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: var(--teal); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,194,203,0.1) 0%, transparent 55%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero__sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 640px; margin: 0; }

/* ── Product Category Cards ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card__img {
  width: 100%;
  height: 180px;
  background: var(--gray-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--teal);
  gap: 8px;
}
.product-card__img span { font-size: 0.7rem; color: var(--gray-400); font-family: var(--font); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.product-card__body { padding: 24px; }
.product-card h3 { margin-bottom: 8px; }
.product-card p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 16px; }

/* ── Quality / Feature Lists ── */
.feature-list { padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: 0.95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Tier Cards ── */
.tier-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-200);
  padding: 32px 28px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tier-card.featured {
  border-color: var(--teal);
  position: relative;
}
.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.tier-card:hover { border-color: var(--teal); box-shadow: var(--shadow-hover); }
.tier-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.tier-card h3 { margin-bottom: 8px; }
.tier-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0;
}
.tier-card__price span { font-size: 0.9rem; color: var(--gray-600); font-weight: 400; }
.tier-card ul { text-align: left; margin: 16px 0 24px; }
.tier-card ul li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tier-card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; }
.tier-card ul li:last-child { border-bottom: none; }

/* ── Form ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,194,203,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ── Blog Cards ── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card__img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.blog-card p { color: var(--gray-600); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }
.blog-card__meta { font-size: 0.8rem; color: var(--gray-400); }

/* ── Aside Info Box ── */
.info-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { color: var(--navy); font-size: 0.9rem; margin: 0; }
.info-box strong { color: var(--teal-dark); }

/* ── Two-col content ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-grid--wide { grid-template-columns: 1.2fr 1fr; }
.sticky-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 90px;
}
.sticky-card h3 { margin-bottom: 16px; }

/* ── Process Steps ── */
.process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.process-step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.process-step p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }

/* ── Contact Info ── */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 3px; font-weight: 600; }
.contact-info-item p { font-size: 0.95rem; color: var(--navy); font-weight: 500; margin: 0; }

/* ── Testimonial Cards ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.testimonial-card__quote {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__quote::before { content: '\201C'; }
.testimonial-card__quote::after { content: '\201D'; }
.testimonial-card__author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 700;
}
.testimonial-card__author span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 3px;
}

/* ── Scroll Animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays — assigned by script.js */
.fade-up[data-delay="1"] { transition-delay: 0.07s; }
.fade-up[data-delay="2"] { transition-delay: 0.14s; }
.fade-up[data-delay="3"] { transition-delay: 0.21s; }
.fade-up[data-delay="4"] { transition-delay: 0.28s; }
.fade-up[data-delay="5"] { transition-delay: 0.35s; }
.fade-up[data-delay="6"] { transition-delay: 0.42s; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav, .header .btn { display: none; }
  .hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .float-cta { display: block; }
  .trust-bar__grid { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-200); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .hero { padding: 60px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 24px; }
}

/* ── Announcement Bar ── */
:root { --announce-h: 36px; }
.announce-bar {
  background: #040f1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.announce-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.announce-bar__text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.announce-bar__phone {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.announce-bar__phone:hover { color: var(--white); }
.header { top: var(--announce-h); }

/* ── Nav fix — desktop always visible ── */
@media (min-width: 769px) {
  .nav { display: flex !important; }
  .header .btn--primary.btn--sm { display: inline-flex !important; }
  .hamburger { display: none !important; }
}
@media (max-width: 768px) {
  .announce-bar__inner { flex-direction: column; text-align: center; gap: 4px; }
  .announce-bar__text { font-size: 0.72rem; }
  --announce-h: 52px;
}

/* ── Social Icons ── */
.footer__social { display: flex; gap: 10px; margin-top: 16px; margin-bottom: 4px; }
.footer__social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer__social-link:hover { background: var(--teal); color: var(--navy); }

/* ── Channel Selector (Hero) ── */
.hero__inner--split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
  max-width: 100%;
}
.channel-selector {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.channel-selector__heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 2px;
}
.channel-selector__btn {
  display: block;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}
.channel-selector__btn:hover { border-color: var(--teal); color: var(--white); transform: translateX(3px); }
.channel-selector__btn--fill { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.channel-selector__btn--fill:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--navy); transform: none; }
.channel-selector__link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  text-decoration: underline;
  padding: 4px;
  transition: color var(--transition);
}
.channel-selector__link:hover { color: rgba(255,255,255,0.65); }
@media (max-width: 920px) {
  .hero__inner--split { grid-template-columns: 1fr; gap: 28px; }
  .channel-selector { max-width: 400px; }
}

/* ── Chat Widget ── */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9998; }
.chat-btn {
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,194,203,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-left: auto;
}
.chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,194,203,0.6); }
.chat-modal {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 280px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(10,37,64,0.18);
  padding: 24px;
  display: none;
  border: 1px solid var(--gray-200);
}
.chat-modal.open { display: block; animation: fadeUp 0.2s ease; }
.chat-modal__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.chat-modal__sub { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 16px; }
@keyframes fadeUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
@media (max-width: 600px) { .chat-widget { bottom: 80px; right: 16px; } }

/* ═══════════════════════════════════════════════════════
   ANIMATION LAYER — pure UI, zero SEO impact
   ═══════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes rrxEnter {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rrxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.55; }
  50%       { transform: translateY(-48px) translateX(24px); opacity: 0.85; }
}
@keyframes shimmerPass {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(0,194,203,0)); }
  50%       { filter: drop-shadow(0 0 9px rgba(0,194,203,0.7)); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Hero floating orb (::after, hero already has ::before) ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: 6%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,194,203,0.07) 0%, transparent 65%);
  border-radius: 50%;
  animation: orbFloat 15s ease-in-out infinite;
  pointer-events: none;
}

/* ── Hero Entrance (class added by JS) ── */
.hero--entered .hero__tag        { animation: rrxEnter  0.62s cubic-bezier(0.22,1,0.36,1) 0.08s both; }
.hero--entered h1                { animation: rrxEnter  0.75s cubic-bezier(0.22,1,0.36,1) 0.20s both; }
.hero--entered .hero__sub        { animation: rrxEnter  0.70s cubic-bezier(0.22,1,0.36,1) 0.34s both; }
.hero--entered .hero__disclaimer { animation: rrxFadeIn 0.60s ease                        0.46s both; }
.hero--entered .hero__ctas       { animation: rrxEnter  0.65s cubic-bezier(0.22,1,0.36,1) 0.54s both; }
.hero--entered .channel-selector { animation: rrxEnter  0.72s cubic-bezier(0.22,1,0.36,1) 0.42s both; }

/* ── Page-hero Entrance (inner pages) ── */
.page-hero--entered .hero__tag       { animation: rrxEnter 0.55s cubic-bezier(0.22,1,0.36,1) 0.08s both; }
.page-hero--entered h1               { animation: rrxEnter 0.68s cubic-bezier(0.22,1,0.36,1) 0.20s both; }
.page-hero--entered .page-hero__sub  { animation: rrxEnter 0.62s cubic-bezier(0.22,1,0.36,1) 0.32s both; }

/* ── Logo hexagon glow + bounce ── */
.logo__mark {
  animation: pulseGlow 5s ease-in-out infinite;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover .logo__mark { transform: scale(1.15) rotate(10deg); }

/* ── Section-label animated underline ── */
.section-label {
  position: relative;
  padding-bottom: 4px;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.section-label.label-visible::after { transform: scaleX(1); }

/* ── Cards: smoother lift + icon bounce ── */
.card {
  transition: transform 0.34s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.34s ease,
              border-top-color 0.25s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(10,37,64,0.15); }
.card__icon {
  transition: transform 0.40s cubic-bezier(0.34,1.56,0.64,1), background 0.28s ease;
}
.card:hover .card__icon { transform: scale(1.18) rotate(-6deg); background: var(--teal); }

/* ── Channel selector shimmer on hover ── */
.channel-selector__btn { position: relative; overflow: hidden; }
.channel-selector__btn:not(.channel-selector__btn--fill)::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s;
}
.channel-selector__btn:not(.channel-selector__btn--fill):hover::before {
  opacity: 1;
  animation: shimmerPass 0.65s ease forwards;
}

/* ── Trust items ── */
.trust-item { transition: transform 0.25s ease; }
.trust-item:hover { transform: translateY(-3px); }
.trust-item__icon {
  transition: transform 0.40s cubic-bezier(0.34,1.56,0.64,1), background 0.28s ease;
}
.trust-item:hover .trust-item__icon { transform: scale(1.2); background: rgba(0,194,203,0.25); }

/* ── Steps: number bounce ── */
.step__num {
  transition: transform 0.40s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.step:hover .step__num { transform: scale(1.18); box-shadow: 0 8px 26px rgba(0,194,203,0.45); }

/* ── CTA banner secondary orb ── */
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -50px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,194,203,0.09) 0%, transparent 65%);
  border-radius: 50%;
  animation: orbFloat 12s ease-in-out infinite reverse;
  pointer-events: none;
}

/* ── Product cards ── */
.product-card {
  transition: transform 0.34s cubic-bezier(0.22,1,0.36,1), box-shadow 0.34s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(10,37,64,0.13); }
.product-card__img { transition: background 0.3s ease; }
.product-card:hover .product-card__img { background: rgba(0,194,203,0.1); }

/* ── Feature list item hover indent ── */
.feature-list li { transition: padding-left 0.2s ease, color 0.2s ease; }
.feature-list li:hover { padding-left: 8px; color: var(--navy); }

/* ── Announce bar shimmer sweep ── */
.announce-bar { position: relative; overflow: hidden; }
.announce-bar::before {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  animation: shimmerPass 6s ease 2s infinite;
  pointer-events: none;
}

/* ── Scroll progress bar ── */
#rrx-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), rgba(0,194,203,0.45));
  z-index: 10000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Input focus ring ── */
input, select, textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* ── Footer link hover underline draw ── */
.footer ul a { position: relative; display: inline-block; }
.footer ul a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.25s ease;
}
.footer ul a:hover::after { width: 100%; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .logo__mark { animation: none; }
}

/* ═══════════════════════════════════════════════════════
   AMPHORA-INSPIRED LAYER — particles, blobs, marquee, splits
   ═══════════════════════════════════════════════════════ */

/* ── Ambient blob drift keyframes ── */
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-44px, 30px) scale(1.07); }
  66%       { transform: translate(28px, -22px) scale(0.95); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(55px, -40px) scale(1.09); }
  75%       { transform: translate(-28px, 22px) scale(0.97); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(24px, -54px) scale(1.04); }
}

/* ── Gradient accent text ── */
.text--teal-gradient {
  background: linear-gradient(130deg, var(--teal) 0%, #00eaf2 55%, #a8ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Channel selector floating bob ── */
@keyframes floatPanel {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.channel-selector.is-floating {
  animation: floatPanel 7s ease-in-out infinite;
}

/* ── Marquee ticker ── */
.marquee-section {
  background: var(--navy-dark);
  border-top: 1px solid rgba(0, 194, 203, 0.2);
  border-bottom: 1px solid rgba(0, 194, 203, 0.2);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.marquee-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Page-hero animated layer ── */

/* Soft static glow — canvas handles the actual motion */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(0,194,203,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Ripple rings emitted from a fixed point */
@keyframes rippleExpand {
  0%   { transform: translate(-50%, -50%) scale(0.2); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(6);   opacity: 0; }
}

/* Glow: breathe + lateral drift */
.page-hero::after {
  animation: pageHeroGlowBreathe 9s ease-in-out infinite;
}
@keyframes pageHeroGlowBreathe {
  0%   { opacity: 0.6;  transform: scale(1)    translate(0, 0); }
  30%  { opacity: 1;    transform: scale(1.15) translate(-25px, 8px); }
  65%  { opacity: 0.75; transform: scale(1.22) translate(15px, -6px); }
  100% { opacity: 0.6;  transform: scale(1)    translate(0, 0); }
}

/*
 * Flowing color keyframes — multi-stop paths that trace wave/circular arcs.
 * No visible shape borders; these are only applied to blurred radial-gradient
 * divs so the result is smooth color washing across the hero.
 */
@keyframes pageHeroFlow1 {
  0%   { transform: translate(  0px,   0px) scale(1.00); opacity: 0.75; }
  18%  { transform: translate(-70px, -35px) scale(1.12); opacity: 1.00; }
  36%  { transform: translate(-25px,  55px) scale(0.92); opacity: 0.80; }
  54%  { transform: translate( 65px,  18px) scale(1.18); opacity: 1.00; }
  72%  { transform: translate( 30px, -55px) scale(0.95); opacity: 0.82; }
  88%  { transform: translate(-55px,  10px) scale(1.08); opacity: 0.90; }
  100% { transform: translate(  0px,   0px) scale(1.00); opacity: 0.75; }
}
@keyframes pageHeroFlow2 {
  0%   { transform: translate(  0px,  0px) scale(1.00); opacity: 0.65; }
  22%  { transform: translate( 50px,-48px) scale(1.10); opacity: 0.95; }
  45%  { transform: translate(-70px, 35px) scale(0.90); opacity: 0.72; }
  68%  { transform: translate( 25px, 55px) scale(1.14); opacity: 1.00; }
  85%  { transform: translate(-35px,-25px) scale(0.96); opacity: 0.78; }
  100% { transform: translate(  0px,  0px) scale(1.00); opacity: 0.65; }
}
@keyframes pageHeroFlow3 {
  0%   { transform: translate(  0px,  0px) scale(1.00); opacity: 0.60; }
  30%  { transform: translate(-40px, 40px) scale(1.08); opacity: 0.88; }
  60%  { transform: translate( 55px,-30px) scale(0.93); opacity: 1.00; }
  100% { transform: translate(  0px,  0px) scale(1.00); opacity: 0.60; }
}

/* ── Word-by-word split reveal ── */
.split-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-reveal.visible .word {
  opacity: 1;
  transform: translateY(0);
}
