/* === VARIABLES === */
:root {
  --color-primary: #9b1b7e;
  --color-primary-light: #c026a3;
  --color-primary-dark: #7b1562;
  --color-accent: #10b981;
  --color-accent-dark: #059669;
  --color-secondary: #f59e0b;
  --color-mystic: #2d1b69;
  --color-mystic-light: #4c3d99;
  --color-surface: #fafaf9;
  --color-surface-alt: #f5f5f4;
  --color-text: #1c1917;
  --color-text-muted: #78716c;
  --color-text-light: #a8a29e;
  --color-border: #e7e5e4;
  --hero-bg: linear-gradient(135deg, rgba(123,21,98,0.92) 0%, rgba(155,27,126,0.85) 30%, rgba(100,15,80,0.90) 100%);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* === LAYOUT === */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

/* === HEADER === */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-mystic);
}
.header__logo-icon { width: 28px; height: 28px; }
.header__phone-top { display: flex; align-items: center; gap: 0.75rem; }
.header__offer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}
.header__offer-free {
  font-size: 0.65rem;
  color: var(--color-accent);
  font-weight: 700;
}
.header__offer-price {
  font-size: 0.55rem;
  color: var(--color-text-light);
}
.header__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  min-height: 36px;
  transition: background 0.15s ease;
}
.header__phone:hover { background: var(--color-accent-dark); }

/* Nav / TOC */
.header__nav-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 0.35rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.header__nav { display: flex; gap: 1.5rem; }
.header__nav a {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}
.header__nav a:hover { color: var(--color-primary); }

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  color: #fff;
}
.hero__inner {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.hero__bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 15% 80%, rgba(255,255,255,0.08) 0%, transparent 40%),
                     radial-gradient(circle at 85% 20%, rgba(255,255,255,0.06) 0%, transparent 35%);
  pointer-events: none;
}
.hero__dot { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.25); }
.hero__dot--1 { top: 20%; left: 20%; width: 4px; height: 4px; }
.hero__dot--2 { top: 35%; right: 40%; width: 6px; height: 6px; opacity: 0.15; }
.hero__dot--3 { bottom: 20%; left: 45%; width: 4px; height: 4px; opacity: 0.2; }

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 2.5rem 1.25rem;
  text-align: center;
}
.hero h1 {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.hero__subtitle {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Voyante image column */
.hero__image-col {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: none;
  align-self: flex-end;
}
.hero__image-col img {
  display: block;
  height: 480px;
  width: auto;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 4px 25px rgba(0,0,0,0.35));
  mask-image: linear-gradient(to bottom, black 70%, transparent 98%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 98%);
}

/* CTA group */
.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.hero__phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  min-height: 44px;
  transition: background 0.15s ease, transform 0.1s ease;
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
  width: 100%;
  max-width: 320px;
}
.hero__phone-link:hover { background: var(--color-accent-dark); }
.hero__phone-link:active { transform: scale(0.98); }

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.15s;
  width: 100%;
  max-width: 320px;
}
.hero__cta-secondary:hover { background: rgba(255,255,255,0.1); }

/* Offer text */
.hero__offer-text { margin-bottom: 1rem; }
.hero__offer-free { font-size: 0.85rem; font-weight: 700; color: #fff; }
.hero__offer-price { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-style: italic; margin-left: 0.25rem; }

/* Status badge */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.78rem;
  color: #fff;
}
.hero__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 6px rgba(16,185,129,0.6);
}

/* === TRUST BAR === */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 0.6rem 0;
}
.trust-bar__items {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.trust-bar__items span { display: flex; align-items: center; gap: 0.3rem; }
.trust-bar__items span::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: #dcfce7; color: var(--color-accent);
  font-size: 0.6rem; font-weight: 800;
}

/* === SECTIONS === */
.section { padding: 2.5rem 0; }
.section--alt { background: var(--color-surface-alt); }
.section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--color-text); }
.section h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--color-primary); }
.section p { margin-bottom: 0.85rem; color: var(--color-text-muted); font-size: 0.93rem; }

/* === TABLE === */
.info-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.85rem;
  border-radius: 0.5rem; overflow: hidden; border: 1px solid var(--color-border);
}
.info-table th {
  background: var(--color-surface-alt); color: var(--color-text); font-weight: 600;
  text-align: left; padding: 0.6rem 0.85rem; border-bottom: 1px solid var(--color-border); font-size: 0.8rem;
}
.info-table td { padding: 0.55rem 0.85rem; border-bottom: 1px solid var(--color-border); color: var(--color-text-muted); }
.info-table tr:last-child td { border-bottom: none; }
.info-table .highlight { color: var(--color-accent); font-weight: 700; }

/* === CTA BAND (same color as hero) === */
.cta-band {
  background: var(--hero-bg);
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
}
.cta-band__inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-band__text { font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.cta-band__phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--color-accent); color: #fff;
  padding: 0.5rem 1.2rem; border-radius: 0.5rem; font-weight: 700; font-size: 1rem;
  transition: background 0.15s;
}
.cta-band__phone:hover { background: var(--color-accent-dark); }
.cta-band__offer { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* === CONTACT === */
.contact-info {
  background: #fff; border-radius: 0.75rem; padding: 2rem;
  border: 1px solid var(--color-border); text-align: center;
}
.contact-info__phone { font-size: 1.8rem; font-weight: 800; color: var(--color-accent); margin-bottom: 0.3rem; }
.contact-info__hours { color: var(--color-text-muted); font-size: 0.9rem; }

/* === FOOTER === */
.footer {
  background: var(--color-surface-alt); color: var(--color-text-light);
  padding: 1.25rem 0; text-align: center; font-size: 0.72rem;
  border-top: 1px solid var(--color-border);
}
.footer a { color: var(--color-text-muted); }
.footer a:hover { color: var(--color-primary); }
.footer__links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.5rem; }

/* === STICKY CTA MOBILE === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
}
.sticky-cta__number { font-weight: 800; font-size: 1rem; letter-spacing: 0.3px; }
.sticky-cta__offer {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.sticky-cta__free { font-size: 0.68rem; font-weight: 700; color: #dcfce7; }
.sticky-cta__price { font-size: 0.52rem; font-weight: 400; opacity: 0.7; }

/* === LEGAL === */
.legal { padding: 2rem 0; }
.legal h1 { font-size: 1.4rem; margin-bottom: 1.25rem; color: var(--color-text); font-weight: 700; }
.legal h2 { font-size: 1.05rem; margin-top: 1.25rem; margin-bottom: 0.4rem; color: var(--color-primary); font-weight: 600; }
.legal p, .legal li { color: var(--color-text-muted); margin-bottom: 0.6rem; font-size: 0.88rem; }
.legal ul { padding-left: 1.25rem; }

/* === RESPONSIVE === */

/* Mobile */
@media (max-width: 479px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 3.5rem; }
  .hero__inner { position: relative; min-height: 420px; }
  .hero__content { padding: 2rem 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .hero h1 { font-size: 1.4rem; }
  /* Voyante as background on mobile */
  .hero__image-col {
    display: block;
    position: absolute;
    top: 0; right: -20px; bottom: 0;
    width: 55%;
    overflow: hidden;
  }
  .hero__image-col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.2;
    filter: none;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 80%);
  }
  .trust-bar__items { gap: 0.35rem; font-size: 0.62rem; }
  .header__nav { gap: 1rem; }
  .header__offer-info { display: flex; }
  .header__offer-free { font-size: 0.55rem; }
  .header__offer-price { font-size: 0.48rem; }
  .cta-band__inner { flex-direction: column; gap: 0.5rem; }
}

/* Tablet */
@media (min-width: 480px) {
  .sticky-cta { display: none !important; }
  .header__offer-info { display: flex; }
  .hero__cta-row { flex-direction: row; justify-content: center; }
  .hero__phone-link, .hero__cta-secondary { width: auto; }
}

/* Desktop small */
@media (min-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
  .hero__content { padding: 3rem 1.25rem 3rem 1.25rem; text-align: left; }
  .hero__subtitle { margin-left: 0; }
  .hero__cta-row { justify-content: flex-start; }
  .hero__offer-text { text-align: left; }
  .hero__status { margin: 0; }
  .hero__image-col {
    display: flex;
    align-items: flex-end;
    position: relative;
    width: auto;
    overflow: visible;
  }
  .hero__image-col img {
    height: 420px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    filter: drop-shadow(0 4px 25px rgba(0,0,0,0.35));
    mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
  }
  .section { padding: 3rem 0; }
}

/* Desktop large */
@media (min-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .hero__content { padding: 3.5rem 1.25rem; }
  .hero__inner { padding: 0; }
  .hero__image-col img { height: 500px; }
}
