/* ============================================================
   VENLINK NETWORKS — real.css
   Single source of truth for all pages
   ============================================================ */

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

/* ── DESIGN TOKENS ── */
:root {
  --red:         #c0200f;
  --red-mid:     #e03a28;
  --red-light:   #fdecea;
  --red-glow:    rgba(224, 58, 40, 0.18);
  --dark:        #0f0604;
  --dark-2:      #1a0a08;
  --dark-3:      #231210;
  --card-dark:   #1c0e0c;
  --card-mid:    #251513;
  --border:      #3a2220;
  --border-hi:   #5a3230;
  --text:        #f5e8e6;
  --text-muted:  #9a7270;
  --text-dim:    #6a4a48;
  --white:       #ffffff;
  --wa:          #25d366;
  --bg:          #fdf8f7;
  --muted:       #72524f;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Subtle noise texture on all pages */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 6, 4, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red-mid); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links .nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  text-transform: capitalize;
  white-space: nowrap;
}
.nav-links .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.nav-links .nav-link.active {
  color: var(--red-mid);
}

.nav-contact-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nci {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.nci:hover { color: var(--white); border-color: var(--border-hi); }
.nci.wa { color: var(--wa); border-color: rgba(37, 211, 102, 0.25); }
.nci.wa:hover { background: rgba(37, 211, 102, 0.08); border-color: rgba(37, 211, 102, 0.5); }

@media (max-width: 960px) {
  .nav-links .nav-link { padding: 0.4rem 0.65rem; font-size: 0.82rem; }
}
/* Hamburger toggle button (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
  .site-nav { padding: 0 1rem; flex-wrap: wrap; }
  .nav-toggle { display: flex; }

  /* Contact info (phone/email/WhatsApp) is desktop-only — never shown on mobile */
  .nav-contact-card { display: none !important; }

  .site-nav.nav-open {
    height: auto;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    gap: 0.2rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
  }
  .site-nav.nav-open .nav-links {
    max-height: 360px;
    opacity: 1;
    margin-top: 0.5rem;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--border);
  }

  .nav-links .nav-link {
    width: 100%;
    padding: 0.85rem 0.85rem;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link:active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }
  .nav-links .nav-link.active {
    background: rgba(224, 58, 40, 0.1);
  }
}


/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* Section labels & headings */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--red-mid);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* Hero badge (used on all interior pages) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(224, 58, 40, 0.1);
  border: 1px solid rgba(224, 58, 40, 0.25);
  color: var(--red-mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border-radius: 50px;
  padding: 0.8rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(192, 32, 15, 0.3);
}
.btn-red:hover { background: #9a1a0b; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.8rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--red-mid); color: var(--red-mid); }


/* ============================================================
   HOME PAGE — HERO (photo background)
   ============================================================ */
.page-hero {
  min-height: 92vh;
  min-height: 92dvh; /* avoids the mobile address-bar resize jump that vh causes */
  display: flex;
  align-items: center;
  padding: 0.3rem 0% 0.3rem;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1800&q=85&fit=crop');
  background-size: cover;
  background-position: center 40%;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, rgba(12,3,2,.88) 0%, rgba(22,6,4,.72) 50%, rgba(8,3,2,.50) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .page-hero h1 {
    font-size: 1.8rem;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-badge {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .page-hero h1 {
    font-size: 1.65rem;
    line-height: 1.1;
    letter-spacing: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 860px) {
  .page-hero {
    min-height: 100dvh;
    padding: 1rem 0 1.25rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-inner > * {
    width: 100%;
    max-width: 100%;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-width: 0;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-card,
  .hero-card .contact-tiles,
  .hero-card .c-tile-wide {
    min-width: 0;
  }

  html, body {
    width: 100%;
    overflow-x: hidden;
  }
}

/* Hero text */
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffb3a8;
  border: 1px solid rgba(255, 110, 90, 0.4);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7060;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}


.page-hero h1 {
  font-family: Arial, sans-serif !important;
  font-size: clamp(2.4rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
  color: #fff;
}
.page-hero h1 em { color: #ff8070; font-style: normal; }

.page-hero > .hero-inner > div > p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(192, 32, 15, 0.5);
}
.btn-hero:hover { background: #9a1a0b; transform: translateY(-2px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: 50px;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover { border-color: #ff8070; color: #ff8070; }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ff8070;
  display: block;
}
.hero-stat .lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}


/* ============================================================
   HOME PAGE — HERO CONTACT CARD
   ============================================================ */
.hero-card {
  background: #1e0e0c;
  border: 1px solid #3e2220;
  border-radius: 22px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #3a2020;
  padding-bottom: 1.2rem;
}
.card-header-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 0.3rem;
}
.card-header-sub {
  font-size: 0.87rem;
  color: #a88a88;
}

.contact-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.c-tile {
  border-bottom: 1px solid #3a2020;
  padding-bottom: 1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s;
}
.c-tile:hover { transform: translateY(-2px); }

.c-tile-icon,
.c-tile-wide-icon,
.hours-block-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(224, 58, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.c-tile-label,
.c-tile-wide-label,
.hours-block-title {
  font-size: 0.78rem;
  color: #7a5a58;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-tile-val {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ece0de;
  word-break: break-all;
}
.c-tile-val.red { color: var(--red-mid); }

.c-tile-wide {
  border-bottom: 1px solid #3a2020;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.c-tile-wide-icon { margin-bottom: 0; flex-shrink: 0; }
.c-tile-wide-val { font-size: 0.9rem; color: #ece0de; }

.hours-block { margin-bottom: 1.5rem; }
.hours-block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.hours-block-icon { width: 24px; height: 24px; font-size: 0.8rem; margin-bottom: 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.87rem;
  border-bottom: 1px solid rgba(58, 32, 32, 0.4);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: #a88a88; }
.hours-time { font-weight: 500; color: #ece0de; }
.hours-time.closed { color: #7a5a58; }

.card-wa-btn {
  display: block;
  text-align: center;
  background: var(--wa);
  color: #fff;
  border-radius: 12px;
  padding: 0.78rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.card-wa-btn:hover { background: #1da851; transform: translateY(-1px); }
.card-wa-btn svg { vertical-align: middle; margin-right: 6px; margin-top: -2px; }


/* ============================================================
   INTERIOR PAGE HEROES (Packages, How It Works, Installation, Contact)
   ============================================================ */

/* Pricing hero */
.pricing-hero {
  position: relative;
  padding: 1rem 0 1rem;
  text-align: center;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 120px;
  background: radial-gradient(circle, rgba(224,58,40,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}
.pricing-hero h1 em { font-style: normal; color: var(--red-mid); }
.pricing-hero p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .pricing-hero {
    padding: 3rem 1rem 1.5rem;
  }
}

/* How It Works hero */
.how-hero {
  position: relative;
  padding: 1rem 0 1rem;
  text-align: center;
  overflow: hidden;
}
.how-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 120px;
  background: radial-gradient(circle, rgba(224,58,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.how-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}
.how-hero h1 em { font-style: normal; color: var(--red-mid); }
.how-hero p.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Installation hero */
.install-hero {
  position: relative;
  padding: 1rem 0 1rem;
  text-align: center;
  overflow: hidden;
}
.install-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100px;
  background: radial-gradient(circle, rgba(224,58,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.install-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}
.install-hero h1 em { font-style: normal; color: var(--red-mid); }
.install-hero p.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-section { padding: 4rem 0 5rem; position: relative; }

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 5rem;
}

.price-card {
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hi);
  box-shadow: 0 12px 30px rgba(15, 6, 4, 0.5);
}

.price-card.featured {
  background: linear-gradient(180deg, var(--card-dark) 0%, var(--dark-2) 100%);
  border-color: var(--red-mid);
}
.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-mid), #ff6b5b);
}

.price-card.titanium {
  background: linear-gradient(180deg, var(--card-dark) 0%, #230b08 100%);
}

.pop-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--red-mid);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.package-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.price-card.featured .package-tier { color: var(--red-mid); }
.price-card.titanium .package-tier { color: #ff7060; }

.package-rate {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
}
.package-rate span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.2rem;
}

.speed-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}
.price-card.titanium .speed-box { border-color: rgba(224, 58, 40, 0.3); }

.speed-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.speed-metric strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
}
.speed-metric span { color: var(--text-dim); }
.price-card.titanium .speed-metric strong { color: #ff7060; }

.speed-divider {
  height: 1px;
  background: var(--border);
  margin: 0.4rem 0;
}
.price-card.titanium .speed-divider { background: rgba(224, 58, 40, 0.2); }

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.package-features li i { color: var(--red-mid); font-size: 1rem; margin-top: 1px; }
.price-card.titanium .package-features li i { color: #ff7060; }

.select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.select-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-hi);
  color: var(--white);
}
.price-card.featured .select-btn {
  background: linear-gradient(135deg, var(--red-mid), #c0200f);
  border: none;
}
.price-card.featured .select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 32, 15, 0.3);
}
.price-card.titanium .select-btn {
  background: var(--red-mid);
  border: none;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pricing-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.timeline-section {
  padding: 4rem 0 6rem;
  flex: 1;
}

.steps-wide-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.how-step-card {
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem 1.25rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.how-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.how-step-card.featured-step {
  border-color: var(--red-mid);
  background: linear-gradient(180deg, var(--card-dark) 0%, rgba(224, 58, 40, 0.03) 100%);
  box-shadow: 0 4px 24px var(--red-glow);
}
.how-step-card.titanium-step {
  background: linear-gradient(180deg, var(--card-dark) 0%, #230b08 100%);
  border-color: rgba(224, 58, 40, 0.3);
}

.step-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--card-mid);
  border: 2px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
  transition: all 0.3s ease;
}
.how-step-card:hover .step-badge { border-color: var(--text-muted); color: var(--white); }
.how-step-card.featured-step .step-badge { background: var(--red-mid); border-color: var(--dark); color: var(--white); }
.how-step-card.titanium-step .step-badge { background: #ff7060; border-color: var(--dark); color: var(--dark); }

.step-main-icon {
  font-size: 2.25rem;
  color: var(--red-mid);
  margin-bottom: 1.25rem;
  display: inline-block;
  line-height: 1;
}
.how-step-card.featured-step .step-main-icon { color: #ffb3a8; }
.how-step-card.titanium-step .step-main-icon { color: #ff7060; }

.step-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.process-notice-banner {
  max-width: 1350px;
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
}
.notice-inner {
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed var(--border);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.notice-inner span { color: var(--text-muted); font-size: 0.88rem; }
.notice-inner i { color: var(--red-mid); font-size: 1.1rem; }

@media (max-width: 1150px) {
  .steps-wide-row { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.25rem; }
}
@media (max-width: 850px) {
  .steps-wide-row { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}
@media (max-width: 600px) {
  .steps-wide-row { grid-template-columns: 1fr; gap: 3rem 0; }
  .how-hero { padding: 3rem 1rem 1.5rem; }
  .notice-inner { flex-direction: column; text-align: center; padding: 1.25rem 1rem; }
}


/* ============================================================
   INSTALLATION FORM PAGE
   ============================================================ */
.form-section {
  padding: 4rem 0 5rem;
  flex: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.form-card {
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-mid), #ff6b5b);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid rgba(224, 58, 40, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-mid);
  flex-shrink: 0;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.step-icon { margin-left: auto; color: var(--text-dim); font-size: 1.1rem; }

.form-section-block { margin-bottom: 2.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.field-group.full { grid-column: 1 / -1; }

.field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  outline: none;
}
.field-input::placeholder { color: var(--text-dim); }
.field-input:focus {
  border-color: var(--red-mid);
  background: rgba(224, 58, 40, 0.04);
  box-shadow: 0 0 0 3px rgba(224, 58, 40, 0.12);
}

select.field-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a4a48' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.field-input option { background: var(--card-dark); color: var(--white); }
textarea.field-input { resize: vertical; min-height: 100px; }

/* Plan selector cards */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.plan-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.02);
}
.plan-card:hover { border-color: var(--border-hi); background: rgba(255, 255, 255, 0.04); }
.plan-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.plan-card.selected { border-color: var(--red-mid); background: rgba(224, 58, 40, 0.07); }
.plan-card.selected .plan-dot::after { transform: scale(1); }

.plan-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-hi);
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-card.selected .plan-dot { border-color: var(--red-mid); background: var(--red-mid); }
.plan-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  transform: scale(0);
  transition: transform 0.2s;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.plan-card.selected .plan-name { color: var(--red-mid); }

.plan-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}
.plan-price span { font-size: 0.7rem; font-weight: 400; color: var(--text-dim); }
.plan-speed { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.3rem; }

#plan { display: none; }

/* Submit button */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--red-mid), #c0200f);
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.2px;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192, 32, 15, 0.35); }
.submit-btn:hover::before { opacity: 1; }
.submit-btn:active { transform: translateY(0); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1rem; }

.side-card {
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}
.side-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.why-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.1rem; }
.why-item:last-child { margin-bottom: 0; }
.why-icon {
  width: 34px;
  height: 34px;
  background: var(--red-glow);
  border: 1px solid rgba(224, 58, 40, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.why-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; }
.why-text p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.contact-row { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.83rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.15s;
}
.contact-link:hover { color: var(--white); border-color: var(--border-hi); background: rgba(255, 255, 255, 0.04); }
.contact-link i { font-size: 0.95rem; color: var(--red-mid); width: 16px; text-align: center; }
.contact-link.wa i { color: var(--wa); }

/* Process steps inside sidebar */
.process-step { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px; top: 26px;
  width: 1px;
  height: calc(100% - 8px);
  background: var(--border);
}
.ps-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
  background: var(--card-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--red-mid);
  flex-shrink: 0;
  z-index: 1;
}
.ps-text strong { display: block; font-size: 0.82rem; color: var(--white); font-weight: 600; margin-bottom: 0.1rem; }
.ps-text p { font-size: 0.75rem; color: var(--text-dim); margin: 0; line-height: 1.4; }

/* Alerts */
.alert-custom {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.alert-success-custom { background: rgba(37,211,102,0.07); border: 1px solid rgba(37,211,102,0.25); color: #5ddc8e; }
.alert-danger-custom  { background: rgba(224,58,40,0.07);  border: 1px solid rgba(224,58,40,0.25);  color: #ff7060; }
.alert-custom i { margin-top: 1px; flex-shrink: 0; }

/* Validation */
.field-input.is-invalid { border-color: var(--red-mid) !important; }
.was-validated .field-input:valid   { border-color: rgba(37,211,102,0.4); }
.was-validated .field-input:invalid { border-color: var(--red-mid); }

@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .install-hero { padding: 3rem 1rem 2rem; }
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080302;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
}
.footer-brand span { color: var(--red-mid); }
.footer-brand i { color: var(--red-mid); font-size: 1rem; }

footer p { font-size: 0.83rem; color: var(--text-dim); line-height: 1.65; }

.footer-col h6 {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.83rem; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

.footer-contact-item { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.6rem; }
.footer-contact-item i { color: var(--red-mid); font-size: 0.8rem; flex-shrink: 0; }
.footer-contact-item a,
.footer-contact-item span { font-size: 0.82rem; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.15s;
}
.footer-socials a:hover { border-color: var(--border-hi); color: var(--white); background: rgba(255,255,255,0.04); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); margin: 0; }

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--white); }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}


@media (max-width: 600px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero > .hero-inner > div > p {
    font-size: 0.95rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-hero,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Lighter image + adjusted crop for phone screens & mobile data */
  .page-hero {
    background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=900&q=70&fit=crop');
    background-position: center 30%;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .contact-tiles {
    gap: 0.75rem;
  }
}

@media (max-width: 400px) {
  .contact-tiles {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge        { animation: fadeUp 0.5s ease both; }
.pricing-hero h1   { animation: fadeUp 0.5s 0.1s ease both; }
.pricing-hero p    { animation: fadeUp 0.5s 0.2s ease both; }
.how-hero h1       { animation: fadeUp 0.5s 0.1s ease both; }
.how-hero p        { animation: fadeUp 0.5s 0.2s ease both; }
.install-hero h1   { animation: fadeUp 0.5s 0.1s ease both; }
.install-hero p    { animation: fadeUp 0.5s 0.2s ease both; }
.pricing-grid      { animation: fadeUp 0.6s 0.3s ease both; }
.steps-wide-row    { animation: fadeUp 0.6s 0.3s ease both; }
.form-card         { animation: fadeUp 0.6s 0.35s ease both; }
.sidebar           { animation: fadeUp 0.6s 0.45s ease both; }