/* ============================================
   Mile High Wifi — Modern Stylesheet
   Brand palette: warm dark / copper-orange / gold
   ============================================ */

:root {
  /* Color system */
  --color-bg: #ffffff;
  --color-bg-alt: #fdf9f0;        /* warm cream */
  --color-bg-warm: #fbf3e0;       /* slightly deeper cream */
  --color-bg-dark: #1a1410;       /* deep warm black (matches brochure) */
  --color-bg-darker: #110d0a;
  --color-surface: #ffffff;
  --color-border: #ece4d3;
  --color-border-strong: #d6cab1;

  --color-text: #1a1410;
  --color-text-muted: #5b4f3d;
  --color-text-soft: #7a6c55;
  --color-text-inverse: #ffffff;

  /* Brand */
  --color-orange: #c2410c;        /* copper-orange */
  --color-orange-deep: #9a3412;
  --color-gold: #f59e0b;           /* warm gold */
  --color-gold-bright: #fbbf24;    /* bright gold accent */
  --color-gold-soft: #fef3c7;      /* pale gold tint for backgrounds */

  --color-primary: #c2410c;
  --color-primary-hover: #9a3412;
  --color-primary-soft: #fff4e0;

  --color-success: #15803d;

  /* Signature gradients */
  --gradient-boost: linear-gradient(90deg, #b45309 0%, #d97706 35%, #f59e0b 65%, #fbbf24 100%);
  --gradient-cta: linear-gradient(135deg, #b45309 0%, #f59e0b 55%, #fbbf24 100%);
  --gradient-hero: linear-gradient(135deg, #1a1410 0%, #261c14 60%, #1a1410 100%);
  --gradient-mountain: linear-gradient(180deg, #c2410c 0%, #f59e0b 50%, #fbbf24 100%);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 20, 16, 0.08);
  --shadow-md: 0 6px 18px rgba(26, 20, 16, 0.10);
  --shadow-lg: 0 24px 48px rgba(26, 20, 16, 0.18);
  --shadow-gold: 0 12px 32px rgba(245, 158, 11, 0.30);

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 var(--space-4); color: var(--color-text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  background: var(--color-gold-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

/* Gold gradient text — the brochure's signature "BOOST" treatment */
.gold-text {
  background: var(--gradient-boost);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section { padding: var(--space-9) 0; }
.section--tight { padding: var(--space-8) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  position: relative;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--color-text-inverse); }
.section--dark p { color: rgba(255,255,255,0.78); }
.section--dark .eyebrow {
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-gold-bright);
  border-color: rgba(245, 158, 11, 0.35);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-7);
}
.section-head p { font-size: 1.125rem; }

/* ============================================
   Navbar
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  gap: var(--space-5);
  position: relative;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.nav__brand img { height: 44px; width: auto; display: block; }
.nav__brand:hover { color: #fff; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav__link {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.15s ease;
}
.nav__link:hover { color: #fff; background: rgba(245, 158, 11, 0.12); }
.nav__link.is-active { color: var(--color-gold-bright); background: rgba(245, 158, 11, 0.14); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: #fff;
}
.nav__toggle svg { display: block; }

@media (max-width: 820px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: var(--color-bg-dark);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: var(--space-3);
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 12px 16px; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--gradient-cta);
  color: #1a1410;
  box-shadow: var(--shadow-gold);
  border: none;
}
.btn--primary:hover {
  color: #1a1410;
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.45);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn--outline {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-border-strong);
}
.btn--outline:hover { background: var(--color-gold-soft); color: var(--color-primary); }
.btn--lg { padding: 16px 28px; font-size: 1rem; }

/* ============================================
   Hero — dark, with gold "BOOST" treatment
   ============================================ */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: #fff;
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-boost);
  z-index: 2;
}

/* Hero variants with brand mountain backgrounds */
.hero.hero--bg-dark {
  background-color: #000 !important;
  background-image: url("../images/bg-home-hero.jpg") !important;
  background-position: right bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 580px;
}
.hero.hero--bg-gold {
  background-color: #f1c40f !important;
  background-image: url("../images/bg-gold-mountain.jpg") !important;
  background-position: center bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: #1a1410;
  min-height: 580px;
}
.hero.hero--bg-range {
  background-color: #f1c40f !important;
  background-image: url("../images/bg-mountain-range.jpg") !important;
  background-position: right bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: #1a1410;
  min-height: 580px;
}
/* Dark text on the gold-sky variants — !important so it wins over the .hero defaults */
.hero--bg-gold h1, .hero--bg-gold h2, .hero--bg-gold h3,
.hero--bg-range h1, .hero--bg-range h2, .hero--bg-range h3 { color: #1a1410 !important; text-shadow: 0 1px 0 rgba(255,255,255,0.2); }
.hero--bg-gold p,
.hero--bg-range p { color: #1a1410 !important; opacity: 0.9; }
.hero--bg-gold .hero__subtitle,
.hero--bg-range .hero__subtitle { color: #1a1410 !important; opacity: 0.9; }
.hero--bg-gold .hero__trust,
.hero--bg-range .hero__trust { color: #1a1410 !important; }
.hero--bg-gold .hero__trust strong,
.hero--bg-range .hero__trust strong { color: var(--color-orange-deep) !important; }
.hero--bg-gold .eyebrow,
.hero--bg-range .eyebrow {
  background: rgba(26, 20, 16, 0.85);
  color: var(--color-gold-bright);
  border-color: rgba(26, 20, 16, 0.3);
}
.hero--bg-gold .gold-text,
.hero--bg-range .gold-text {
  background: linear-gradient(135deg, #9a3412 0%, #1a1410 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}
.hero--bg-gold .btn--ghost,
.hero--bg-range .btn--ghost {
  color: #1a1410 !important;
  border-color: rgba(26, 20, 16, 0.4);
}
.hero--bg-gold .btn--ghost:hover,
.hero--bg-range .btn--ghost:hover { background: rgba(26, 20, 16, 0.08); color: #1a1410 !important; }
.hero--bg-gold .free-banner,
.hero--bg-range .free-banner {
  background: #1a1410;
  color: var(--color-gold-bright);
}

/* Soft dark overlay so text stays legible on the busiest part of the background */
.hero--bg-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero--bg-dark .container { position: relative; z-index: 2; }
.hero h1, .hero h2 { color: #fff; }
.hero p { color: rgba(255, 255, 255, 0.85); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}
.hero__title { margin-bottom: var(--space-5); }
.hero__title .boost {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: var(--space-2);
  line-height: 0.95;
}
.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-6);
  max-width: 540px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.hero__trust {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust strong { color: var(--color-gold-bright); }

@media (max-width: 820px) {
  .hero { padding: var(--space-8) 0 var(--space-7); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero__media { order: -1; }
}

/* ============================================
   Cards & Grids
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-gold);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-cta);
  color: #1a1410;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: var(--space-3); }
.card p:last-child { margin-bottom: 0; }

/* Dark variant — matches brochure panels */
.card--dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(245, 158, 11, 0.30);
  color: #fff;
}
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255,255,255,0.78); }
.card--dark .card__icon {
  background: rgba(245, 158, 11, 0.10);
  color: var(--color-gold-bright);
  box-shadow: none;
  border: 1px solid rgba(245, 158, 11, 0.30);
}
.card--dark:hover { border-color: var(--color-gold-bright); }

/* ============================================
   Feature list (check rows)
   ============================================ */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.checklist li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: 1rem;
  color: var(--color-text);
}
.checklist .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #1a1410;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.checklist .check svg { width: 14px; height: 14px; }

/* ============================================
   Pricing
   ============================================ */
.pricing-wrap { display: grid; place-items: center; }
.pricing-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gradient-boost);
}
.pricing-card__badge {
  display: inline-block;
  background: var(--color-gold-soft);
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.pricing-card__price {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
}
.pricing-card__price small {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-left: var(--space-2);
}
.pricing-card__sub {
  color: var(--color-text-muted);
  margin: var(--space-3) 0 var(--space-5);
}
.pricing-card .checklist { margin-bottom: var(--space-6); }

.trial-banner {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5);
  background: linear-gradient(135deg, var(--color-gold-soft) 0%, #fffbeb 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  margin-top: var(--space-6);
}
.trial-banner__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #fff;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.trial-banner strong { color: var(--color-text); display: block; margin-bottom: 4px; }
.trial-banner p { margin: 0; font-size: 0.95rem; }

/* FREE banner — strong call-out for the cell-boost offer */
.free-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-cta);
  color: #1a1410;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial {
  padding: var(--space-6);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testimonial__quote {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.55;
  margin: 0;
  position: relative;
  padding-left: var(--space-5);
}
.testimonial__quote::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 2.5rem;
  color: var(--color-orange);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial__author {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  font-weight: 500;
  margin-top: auto;
}
.testimonial__author strong { color: var(--color-text); }

/* ============================================
   CTA band
   ============================================ */
.cta-band {
  background: var(--color-bg-dark);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gradient-boost);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto var(--space-5); font-size: 1.1rem; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-darker);
  color: rgba(255,255,255,0.75);
  padding: var(--space-7) 0 var(--space-5);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-boost);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.footer__brand img { height: 48px; width: auto; display: block; }
.footer p, .footer a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer a:hover { color: var(--color-gold-bright); }
.footer h4 {
  color: var(--color-gold-bright);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Contact list — gold-icon style matching brochure */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1rem;
}
.contact-list .icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #1a1410;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-list .icon svg { width: 16px; height: 16px; }

/* ============================================
   Pill row
   ============================================ */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: var(--space-3); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
