/* ============================================
   TRIPTIEK INTERNET — styles.css
   Design: Dark navy/teal with electric blue accents
   Fonts: Syne (display) + DM Sans (body)
   ============================================ */

/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a0e1a;
  --navy-mid: #111827;
  --navy-card: #141e30;
  --navy-light: #1e2d45;
  --teal: #00c2a8;
  --teal-dim: #009e88;
  --blue: #1d8cf8;
  --blue-glow: rgba(29, 140, 248, 0.18);
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --gold: #f5c842;
  --white: #f0f4ff;
  --muted: #8899bb;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 68px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(0, 194, 168, 0.15);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--white);
}
address {
  font-style: normal;
}

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2.8rem;
  line-height: 1.8;
}

.accent {
  color: var(--teal);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 194, 168, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0, 194, 168, 0.55);
  color: var(--navy);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  background: #20bb5a;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.btn-pkg {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 10px 22px;
  font-size: 0.85rem;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-pkg:hover {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 194, 168, 0.4);
}

.btn-map {
  background: var(--navy-light);
  color: var(--white);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  padding: 11px 20px;
  margin-top: 1rem;
}
.btn-map:hover {
  background: var(--navy-card);
  color: var(--teal);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: fit;
  border: 1.5px solid var(--teal);
  transition: transform var(--transition);
}
.header-logo-link:hover .header-logo {
  transform: rotate(-15deg) scale(1.08);
}

.header-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.header-brand .accent {
  color: var(--teal);
}

#main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

#main-nav a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 50px;
  transition:
    color var(--transition),
    background var(--transition);
}
#main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-wa-btn {
  background: var(--wa-green) !important;
  color: #fff !important;
  padding: 7px 16px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-wa-btn:hover {
  background: #20bb5a !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.07);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition),
    width var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 194, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 168, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(29, 140, 248, 0.12) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: 50px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 1.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  animation: fadeDown 0.7s ease both;
}
.award-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-accent {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.4s ease both;
}
.partner-logo {
  height: 38px;
  width: auto;
  border-radius: 10px;
}

/* Signal animation */
.hero-visual {
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 120px;
  height: 120px;
  z-index: 1;
  opacity: 0.4;
}
.signal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  animation: signalPulse 2.5s ease-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.r1 {
  width: 30px;
  height: 30px;
  animation-delay: 0s;
}
.r2 {
  width: 60px;
  height: 60px;
  animation-delay: 0.5s;
}
.r3 {
  width: 100px;
  height: 100px;
  animation-delay: 1s;
}
.signal-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--teal);
}

/* ── ABOUT ── */
#about {
  background: var(--navy-mid);
  padding: 100px 0;
  position: relative;
}
#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-text p strong {
  color: var(--white);
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
}
.about-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-features li div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.about-features li div p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.about-axxess {
  width: 180px;
  border-radius: 10px;
}
.about-award {
  width: 110px;
  border-radius: 50%;
}

/* ── PACKAGES ── */
#packages {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}
#packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* ── PACKAGE INFO BANNER ── */
.pkg-info-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 3rem; /* Spaces it nicely above your package cards */
  box-shadow: var(--shadow-card);
}

.pkg-info-col {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pkg-info-icon {
  font-size: 1.5rem;
  background: var(--navy-light);
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  line-height: 1;
  flex-shrink: 0;
}

.pkg-info-col strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.pkg-info-col p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.tc-link {
  display: inline-block;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition:
    color var(--transition),
    transform var(--transition);
}

.tc-link:hover {
  color: var(--white);
  transform: translateX(2px);
}

/* ── RESPONSIVE MOBILE STYLES ── */
@media (max-width: 992px) {
  .pkg-info-banner {
    grid-template-columns: 1fr; /* Stack vertically on tablets & mobile */
    gap: 20px;
    padding: 20px;
  }

  .pkg-info-col:not(:last-child) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }
}
/*end of aup and free-router-info */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.pkg-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  cursor: pointer;
  overflow: hidden;
}
.pkg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity var(--transition);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(0, 194, 168, 0.3);
}
.pkg-card:hover::before {
  opacity: 1;
}

.pkg-featured {
  border-color: var(--teal);
  background: linear-gradient(145deg, var(--navy-card), var(--navy-light));
  box-shadow:
    0 0 0 1px rgba(0, 194, 168, 0.2),
    var(--shadow-card);
}
.pkg-featured::before {
  opacity: 1;
}

.pkg-pro {
  border-color: var(--blue);
  background: linear-gradient(145deg, var(--navy-card), #0f1d30);
}
.pkg-pro::before {
  background: linear-gradient(90deg, var(--blue), #6b4cf8);
}

.pkg-popular {
  position: absolute;
  top: -1px;
  right: 16px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 10px 10px;
}

.pkg-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.pkg-name sup {
  font-size: 0.7em;
  color: var(--teal);
}

.pkg-data {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pkg-data span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}

.pkg-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pkg-price .was {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.8rem;
}
.pkg-price .now {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.pkg-price .now small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--muted);
  flex: 1;
}
.pkg-features li {
  line-height: 1.4;
}

.pkg-router {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin: 4px 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition);
}

.pkg-card:hover .pkg-router {
  transform: scale(1.04);
}

/* ── COVERAGE SECTION ── */
#coverage {
  padding: 60px 0;
  background: var(--navy);
}

.coverage-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
  position: relative;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Map Visuals */
.coverage-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── UPDATED MAP STYLES ── */
.map-container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background: radial-gradient(
    circle,
    rgba(0, 194, 168, 0.08) 0%,
    transparent 70%
  );
}

.sa-map {
  position: relative;
  top: 30px;
  left: 30px;
  width: 100%;
  height: auto;
  transform: rotate(0deg); /* Adjust if needed */
}

/* Highlight the Free State specifically */
.highlight-province {
  fill: rgba(0, 194, 168, 0.15);
  stroke-width: 2px;
}

.provinces path {
  transition:
    fill var(--transition),
    stroke var(--transition);
}

.provinces path:hover {
  fill: rgba(29, 140, 248, 0.2);
  stroke: var(--blue);
  cursor: pointer;
}

/* High-Energy Pulse Animation */
.pulse {
  fill: var(--teal);
  filter: drop-shadow(0 0 8px var(--teal));
  animation: mapPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes mapPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(2.5);
    opacity: 0.4;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.tower-markers circle {
  transform-origin: center;
  transform-box: fill-box;
}

/* Content */
.coverage-text {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.coverage-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(136, 153, 187, 0.5);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .coverage-card {
    padding: 2.5rem 1.5rem;
  }
  .coverage-visual {
    order: -1; /* Map on top on mobile */
  }
}

/* ============================================
         FIBRE PACKAGES SECTION
         ============================================ */
#fibre {
  padding: 100px 0;
  background: var(--navy-mid);
  position: relative;
}
#fibre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* Tabs */
.fibre-tabs {
  display: inline-flex;
  gap: 6px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px;
  margin-bottom: 2.4rem;
}
.fibre-tab {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}
.fibre-tab.active {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: var(--navy);
}
.fibre-tab:not(.active):hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.fibre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.fibre-grid[hidden] {
  display: none;
}

.fibre-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  overflow: hidden;
}
.fibre-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0;
  transition: opacity var(--transition);
}
.fibre-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(0, 194, 168, 0.3);
}
.fibre-card:hover::before {
  opacity: 1;
}

.fibre-card.popular {
  border-color: var(--teal);
  background: linear-gradient(145deg, var(--navy-card), var(--navy-light));
  box-shadow:
    0 0 0 1px rgba(0, 194, 168, 0.2),
    var(--shadow-card);
}
.fibre-card.popular::before {
  opacity: 1;
}

.fibre-popular-tag {
  position: absolute;
  top: -1px;
  right: 16px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 10px 10px;
}

.fibre-speed {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.fibre-speed span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 3px;
}
.fibre-speed-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fibre-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-top: 4px;
}
.fibre-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}

.fibre-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
  margin: 4px 0 0;
}

.fibre-card .btn-pkg {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  border-radius: 50px;
  margin-top: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}
.fibre-card .btn-pkg:hover {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 194, 168, 0.4);
}

/* Info banner (re-uses pkg-info-banner pattern) */
.fibre-info-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 2.6rem;
  box-shadow: var(--shadow-card);
}
.fibre-info-col {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fibre-info-icon {
  font-size: 1.5rem;
  background: var(--navy-light);
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  line-height: 1;
  flex-shrink: 0;
}
.fibre-info-col strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.fibre-info-col p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .fibre-info-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .fibre-info-col:not(:last-child) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .fibre-grid {
    grid-template-columns: 1fr;
  }
  .fibre-tabs {
    width: 100%;
  }
  .fibre-tab {
    flex: 1;
    text-align: center;
  }
}

/* ============================================
         FAQ SECTION
         ============================================ */
#faq {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}
#faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.faq-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(0, 194, 168, 0.3);
}
.faq-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.005em;
}
.faq-card p {
  font-size: 0.85rem;
  color: var(--muted);
  /* truncate preview text */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.faq-card .faq-more {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* ============================================
         MODALS (re-uses live-site modal pattern)
         ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay[hidden] {
  display: none;
}

.modal-box {
  background: var(--navy-card);
  border: 1px solid rgba(0, 194, 168, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 194, 168, 0.1);
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 85vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    color var(--transition);
  line-height: 1;
}
.modal-close:hover {
  background: rgba(224, 92, 92, 0.2);
  color: #e05c5c;
}

.modal-box h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
  padding-right: 30px;
}
.modal-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.modal-box p.modal-answer {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}
.modal-box p.modal-answer + p.modal-answer {
  margin-top: 0.9rem;
}

.faq-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 1.8rem;
}
.faq-nav-btn {
  flex: 1;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
  text-align: center;
}
.faq-nav-btn:hover {
  background: var(--teal);
  color: var(--navy);
}

/* Form styling (matches live-site contact / package modal) */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder {
  color: rgba(136, 153, 187, 0.6);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.15);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300c2a8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option {
  background: var(--navy-card);
}
.form-group input.error,
.form-group select.error {
  border-color: #e05c5c;
}
.form-error {
  font-size: 0.82rem;
  color: #e05c5c;
  min-height: 18px;
  margin-bottom: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Demo-only spacer so both sections are visible nicely */
.demo-note {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

/* ── CONTACT ── */
#contact {
  padding: 100px 0;
  background: var(--navy-mid);
  position: relative;
}
#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.contact-pad {
  padding: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.contact-info address p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.contact-info address a {
  color: var(--teal);
  font-size: 0.9rem;
}
.contact-info address a:hover {
  color: var(--white);
}

.contact-partner {
  margin-top: 1.6rem;
}
.contact-partner img {
  height: 36px;
  width: auto;
  border-radius: 8px;
}

/* Form */
.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.optional {
  font-weight: 400;
  text-transform: none;
  font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 153, 187, 0.6);
}
.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, 168, 0.15);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300c2a8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option {
  background: var(--navy-card);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05c5c;
}

.form-error {
  font-size: 0.82rem;
  color: #e05c5c;
  min-height: 18px;
  margin-bottom: 8px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay[hidden] {
  display: none;
}

.modal-box {
  background: var(--navy-card);
  border: 1px solid rgba(0, 194, 168, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 194, 168, 0.1);
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    color var(--transition);
  line-height: 1;
}
.modal-close:hover {
  background: rgba(224, 92, 92, 0.2);
  color: #e05c5c;
}

.modal-box h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.modal-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 48px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 12px;
  justify-items: center;
}
.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
}
.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand span {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-partner {
  height: 40px;
  width: auto;
  border-radius: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.footer-links a,
.footer-links span {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: var(--teal);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ── FLOATING WA ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  color: #fff;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease infinite;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes signalPulse {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes waPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.35);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-badges {
    flex-direction: row;
    justify-content: flex-start;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .hamburger {
    display: flex;
  }

  #main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    display: none;
    flex-direction: column;
    z-index: 999;
    animation: fadeDown 0.2s ease;
  }
  #main-nav.open {
    display: flex;
  }
  #main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  #main-nav a {
    padding: 11px 16px;
    font-size: 1rem;
  }
  .nav-wa-btn {
    text-align: center;
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
  #hero {
    padding-top: calc(var(--header-h) + 30px);
  }

  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }

  .modal-box {
    padding: 28px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
}

/* ── FOCUS VISIBLE (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* AUP modal dialog */
/* ── MODAL TRIGGER BUTTON RESET ── */
.aup-trigger-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

/* ── MODAL OVERLAY ── */

/* Toggle class when modal is opened via JavaScript */
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ── MODAL CARD container ── */
.modal-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  width: 100%;
  max-width: 420px;
  padding: 32px 24px 24px;
  position: relative;
  transform: translateY(15px);
  transition: transform var(--transition);
}

.modal-overlay:not([hidden]) .modal-card {
  transform: translateY(0);
}

/* Close button positioning */
.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--white);
}

/* Typography styles inside modal */
.modal-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.modal-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.modal-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.modal-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

/* Clean structured list format for speed caps */
.modal-speed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 350px;
}

.modal-speed-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy-mid);
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.plan-name {
  color: var(--muted);
  font-family: var(--font-body);
}

.plan-speed {
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
}

/*testing terms modal */
/* Custom sizing for the Terms Modal */
.terms-large {
  max-width: 900px; /* Much wider */
  width: 95%;
  max-height: 85vh; /* Stops before hitting bottom of screen */
  display: flex;
  flex-direction: column;
}

.terms-scroll-area {
  overflow-y: auto; /* Makes the text scrollable */
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: left;
  background: var(--navy-card);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.terms-scroll-area h3 {
  margin-top: 1.5rem;
  color: var(--navy-dark);
}

.modal-footer {
  margin-top: 10px;
}

/*js footer links terms modals - inline html*/
.terms-sub_title {
  padding-bottom: 0.75rem;
}

.terms-desc {
  line-height: 1.6;
  padding-bottom: 0.125rem;
}

.terms-bullet {
  font-size: 0.83rem;
  color: var(--muted);
  margin-left: 20px;
}

.terms-bullet li {
  line-height: 2;
}

.terms-small {
  margin-top: 30px;
  text-align: center;
}
