/*
Theme Name: WCP Wireless
Theme URI: https://www.wcpwireless.com
Author: Wireless Communications Plus
Description: Custom WordPress theme for Wireless Communications Plus.
Version: 1.0.0
Text Domain: wcp-wireless
*//* ===== WCP Wireless — Shared Stylesheet ===== */

:root {
  --red: #DA291C;
  --red-dark: #AE2016;
  --dark: #14161A;
  --text: #222222;
  --text-muted: #5B5B5B;
  --border: #E3E3E3;
  --surface: #F6F6F4;
  --white: #FFFFFF;
  --radius: 8px;
  --max-width: 1120px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.5;
  background: var(--white);
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Top utility bar ---- */
.top-bar {
  background: var(--red);
  color: var(--white);
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
}
.top-bar a { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.top-bar nav { display: flex; gap: 20px; }
.top-bar nav a:hover { text-decoration: underline; }

/* ---- Header ---- */
header.site-header {
  border-bottom: 1px solid var(--border);
}
header.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo-block { display: flex; flex-direction: row; align-items: center; gap: 16px; }
.logo-block .divider { width: 1px; height: 30px; background: var(--border); flex: 0 0 auto; }
.logo-block .company { font-size: 13px; color: var(--text-muted); letter-spacing: 0.03em; text-transform: uppercase; }
.logo-block .rogers { font-size: 17px; font-weight: 700; color: var(--red); }
.main-nav { display: flex; gap: 28px; font-size: 15px; }
.main-nav a:hover { color: var(--red); }

/* ---- Nav dropdown (Rogers Business Services) ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; padding-bottom: 8px; margin-bottom: -8px; }
.nav-dropdown-toggle svg { flex: 0 0 auto; transition: transform 0.15s ease; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
  padding: 8px;
  min-width: 210px;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 6px;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--surface); color: var(--red); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75)), var(--dark);
  color: var(--white);
  padding: 72px 0;
}
.hero .container { max-width: 640px; }
.hero h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}
.hero p {
  font-size: 17px;
  color: #DDDDDD;
  margin: 0 0 28px;
}
.hero .actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ---- Split hero: image contained left, content box right ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.hero-split-image { position: relative; overflow: hidden; }
.hero-split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  background: var(--white);
}
.hero-split-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.hero-split-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 460px;
  margin: 0 0 28px;
}
.hero-split-content .actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.link-inline-dark { color: var(--red); text-decoration: underline; font-size: 15px; font-weight: 600; }
@media (max-width: 800px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-image { height: 260px; }
  .hero-split-content { padding: 40px 24px; }
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.link-inline { color: var(--white); text-decoration: underline; font-size: 15px; }

/* ---- Trust bar ---- */
.credibility-section { padding: 64px 0; }
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.credibility-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border-radius: 14px;
}
.credibility-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(180,14,42,0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.credibility-num {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.credibility-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 700px) {
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Storefront photo band ---- */
.photo-band {
  position: relative;
  height: clamp(240px, 26vw, 520px);
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-band .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,11,14,0.15), rgba(10,11,14,0.55));
  display: flex;
  align-items: flex-end;
}
.photo-band .overlay .container { padding-bottom: 36px; }
.photo-band p {
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  max-width: 520px;
  margin: 0;
}
@media (max-width: 700px) {
  .photo-band p { font-size: 17px; }
}

/* ---- Section ---- */
.section { padding: 120px 0; }
.section + .section { padding-top: 0; }
.hero + .section { padding-top: 24px; }
.section h2 { font-family: var(--font-display); font-weight: 600; font-size: 32px; letter-spacing: -0.01em; margin: 0 0 10px; }
.section .lede { color: var(--text-muted); margin: 0 0 48px; font-size: 16px; max-width: 480px; }
.eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }

/* ---- Card grid ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .card-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .card-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .card-grid.cols-5 { grid-template-columns: 1fr; }
}
.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  background: var(--white);
}
.card-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card.featured {
  border: 2px solid var(--red);
  position: relative;
}
.badge {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(180,14,42,0.3);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--dark); margin: 0 0 8px; }
.card p { font-size: 14px; color: var(--text-muted); margin: 0 0 14px; line-height: 1.45; flex: 1 0 auto; }
.btn-card {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
}
.btn-card:hover { background: var(--red); color: var(--white); }

/* ---- Why WCP ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.why-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-muted); }

/* ---- Why WCP: 3-card layout + highlighted banner ---- */
.why-numbered-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-numbered-item {
  flex: 1 1 240px;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.why-numbered-item:last-child { border-right: none; }
.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
}
.why-numbered-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 8px;
}
.why-numbered-item p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (max-width: 700px) {
  .why-numbered-grid { flex-direction: column; }
  .why-numbered-item { border-right: none; border-bottom: 1px solid var(--border); }
  .why-numbered-item:last-child { border-bottom: none; }
}

.why-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-radius: 16px;
  overflow: hidden;
  padding: 40px 36px;
  margin-top: 40px;
  background-image: linear-gradient(120deg, rgba(10,11,14,0.9), rgba(10,11,14,0.72)), url('images/hero-office-meeting.jpg');
  background-size: cover;
  background-position: center;
}
.why-banner-text { max-width: 480px; }
.why-banner-eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8B4BC;
  margin-bottom: 10px;
}
.why-banner h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.why-banner p { font-size: 14.5px; color: rgba(255,255,255,0.72); margin: 0; }
.why-banner .btn-primary { flex: 0 0 auto; white-space: nowrap; }

.why-tagline { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 24px; }
.why-item .icon { color: var(--red); font-weight: 700; font-size: 18px; line-height: 1; }

/* ---- Responsive video embed ---- */
.video-embed {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20,22,26,0.12);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Lead form ---- */
.form-section { background: var(--surface); }
.lead-form {
  max-width: 460px;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.lead-form input,
.lead-form select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.lead-form button {
  margin-top: 4px;
}

/* ---- Footer CTA ---- */
.footer-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 40px 0;
}
.footer-cta p { margin: 0; font-size: 15px; }
.footer-cta strong { font-weight: 700; }

footer.site-footer {
  background: var(--dark);
  color: #BBBBBB;
  font-size: 13px;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.footer-brand img { width: 100%; max-width: 280px; height: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: #999999;
  max-width: 280px;
  margin: 0 0 20px;
}
.footer-col h4 {
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  color: #999999;
  font-size: 13.5px;
  margin-bottom: 11px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: #999999;
}
.footer-contact-item svg { flex: 0 0 auto; margin-top: 2px; color: var(--red); }
.footer-contact-item a { color: #999999; margin: 0; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---- Responsive ---- */
@media (max-width: 700px) {
  header.site-header .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .main-nav { gap: 16px; flex-wrap: wrap; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 28px; }
  .top-bar .container { justify-content: center; text-align: center; gap: 14px; }
}

/* ---- Reduced motion / focus visibility ---- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ---- Real logo images ---- */
.logo-block img.wcp-logo {
  height: 40px;
  width: auto;
  display: block;
}
.dealer-badge {
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 700px) {
  .logo-block img.wcp-logo { height: 16px; }
  .dealer-badge { height: 13px; }
  .logo-block .divider { height: 18px; }
  .logo-block { gap: 10px; }
}

/* ---- Contact page responsive ---- */
@media (max-width: 800px) {
  .section .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---- Business Wireless page ---- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  text-align: left;
  margin: 40px 0;
}
.feature-strip .feature-icon { color: var(--red); margin-bottom: 12px; }
.feature-strip h4 { font-size: 15px; margin: 0 0 4px; }
.feature-strip p { font-size: 13px; color: var(--text-muted); margin: 0; }

.team-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.team-tab-btn {
  background: none;
  border: none;
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-right: 20px;
}
.team-tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.team-tab-panel { display: none; }
.team-tab-panel.active { display: block; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  background: var(--white);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.plan-card .plan-cta-group { margin-top: auto; padding-top: 14px; }
.plan-card:hover {
  box-shadow: 0 12px 30px rgba(20,22,26,0.07);
  transform: translateY(-3px);
}
.plan-card.popular {
  border: 2px solid var(--dark);
  box-shadow: 0 14px 32px rgba(20,22,26,0.1);
  position: relative;
}
.plan-card.popular:hover { transform: translateY(-5px); }
.plan-card h4 { font-size: 15px; margin: 0 0 2px; }
.plan-card .device-note { font-size: 12px; color: var(--text-muted); margin: 0 0 14px; }
.plan-card .price { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin: 0 0 14px; }
.plan-card .price span { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--text-muted); }
.plan-card ul { list-style: none; padding: 0; margin: 16px 0 0; font-size: 13px; color: var(--text-muted); }
.plan-card ul li { padding: 6px 0; border-top: 1px solid var(--border); }
.plan-card ul li:first-child { border-top: none; }

/* ---- Plan tier tabs ---- */
.plan-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  margin: 0 0 40px;
  flex-wrap: wrap;
}
.plan-tab-btn {
  background: none;
  border: none;
  padding: 14px 4px;
  margin-right: 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.plan-tab-btn:hover { color: var(--dark); }
.plan-tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.plan-tab-panel { display: none; }
.plan-tab-panel.active { display: block; }
@media (max-width: 700px) {
  .plan-tabs { gap: 0; }
  .plan-tab-btn { margin-right: 20px; font-size: 14px; }
}

/* ---- Line-count gate (large segmentation cards) ---- */
.line-gate { text-align: center; margin: 0 0 48px; }
.line-gate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 32px auto 0;
}
.line-gate-options.cols-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1080px;
}
@media (max-width: 900px) {
  .line-gate-options.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .line-gate-options.cols-4 { grid-template-columns: 1fr; }
}
button.line-gate-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 32px 20px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}
button.line-gate-card:hover {
  border-color: var(--red);
  box-shadow: 0 14px 32px rgba(20,22,26,0.08);
  transform: translateY(-2px);
}
button.line-gate-card.active {
  border-color: var(--red);
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(180,14,42,0.1);
}
.line-gate-range {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
button.line-gate-card.active .line-gate-range { color: var(--red); }
.line-gate-unit {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin: 4px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.line-gate-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.line-gate-sublabel {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
.line-gate-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}
.line-gate-hint button {
  background: none;
  border: none;
  padding: 0;
  color: var(--red);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-size: 13px;
  font-family: inherit;
}

/* ---- Best value badge (elevated from standard "Popular" badge) ---- */
.badge-best-value {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.plan-card.best-value {
  border: 2px solid var(--red);
  box-shadow: 0 14px 32px rgba(180,14,42,0.12);
  position: relative;
}

/* ---- Benefit rows (consistent terminology, skimmable) ---- */
.plan-card ul.benefits { list-style: none; padding: 0; margin: 16px 0 0; }
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
}
.plan-card ul.benefits li:first-child.benefit-row { border-top: none; }
.benefit-icon {
  flex: 0 0 auto;
  color: var(--red);
  margin-top: 1px;
}
.plan-card ul.extras {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
}
.plan-card ul.extras li { padding: 4px 0 4px 18px; position: relative; }
.plan-card ul.extras li::before { content: "+"; position: absolute; left: 0; color: var(--text-muted); }

.include-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0 32px;
  font-size: 13px;
}
.include-strip li { list-style: none; }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.addon-card { text-align: left; }
.addon-card .addon-icon { color: var(--red); margin-bottom: 12px; }
.addon-card h4 { font-size: 15px; margin: 0 0 6px; }
.addon-card p { font-size: 13px; color: var(--text-muted); margin: 0 0 8px; }
.addon-card a { font-size: 13px; font-weight: 600; color: var(--red); }
.coming-soon-tag { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* ================= POLISH PASS ================= */

/* ---- Smooth scrolling ---- */
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---- Sticky header with scroll shadow ---- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.25s ease;
}
header.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ---- Button polish ---- */
.btn, .btn-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200,16,46,0.28);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline:hover { transform: translateY(-2px); }
.btn-card:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Card polish ---- */
.card, .plan-card, .addon-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover, .plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* ---- Link underline animation (nav + inline links) ---- */
.main-nav a, .top-bar nav a {
  position: relative;
  transition: color 0.15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

/* ---- Hamburger menu button (hidden on desktop) ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Scroll-reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Mobile nav overhaul ---- */
@media (max-width: 700px) {
  header.site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  }
  .main-nav.open { max-height: 700px; }
  .main-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    font-size: 16px;
  }
  .main-nav a::after { display: none; }

  /* Nav dropdown becomes an always-expanded inline sublist on mobile,
     since hover doesn't work on touch */
  .nav-dropdown-menu {
    display: block;
    position: static;
    margin-top: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: var(--surface);
    min-width: 0;
  }
  .nav-dropdown-menu a {
    padding: 14px 24px 14px 40px;
    border-top: 1px solid var(--border);
    font-size: 15px;
  }
  .nav-dropdown-toggle svg { display: none; }

  /* Ensure comfortable tap targets on mobile */
  .btn, .btn-card { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ---- Business Internet page ---- */
.term-note {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin: 16px 0 24px;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.bundle-card {
  border-radius: 12px;
  padding: 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.bundle-card.b1 { background: #333333; }
.bundle-card.b2 { background: #1a1a1a; }
.bundle-card.b3 { background: var(--red); }
.plan-card .plan-tier-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 4px;
}
.plan-card.popular { border: 2px solid var(--red); position: relative; }

/* ---- Business Phone page ---- */
.seat-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.seat-stepper span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 15px;
  color: var(--text-muted);
  background: var(--surface);
}
.seat-stepper .seat-count {
  width: 44px;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.dial-tone-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.dial-tone-box p { margin: 0; font-size: 14px; color: var(--text-muted); max-width: 480px; }
.dial-tone-box h4 { margin: 0 0 4px; }
.full-details-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.55;
  margin: 0 0 24px;
  flex-grow: 1;
}
.testimonial-attribution { font-size: 13.5px; font-weight: 600; color: var(--text); margin: 0; }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; flex: 0 0 38px;
  margin-right: 12px;
}
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-footer { display: flex; align-items: center; }

/* ---- Country list disclosure ---- */
.country-toggle {
  margin-top: 10px;
}
.country-toggle summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  list-style: none;
}
.country-toggle summary::-webkit-details-marker { display: none; }
.country-toggle summary::after { content: " ▾"; }
.country-toggle[open] summary::after { content: " ▴"; }
.country-list {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  columns: 2;
  column-gap: 16px;
  line-height: 1.7;
}
@media (max-width: 500px) {
  .country-list { columns: 1; }
}

/* ---- Coming soon placeholder ---- */
.tier-placeholder {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---- Hero with photo background ---- */
.hero.hero-photo {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75)), var(--hero-img);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.section-photo-bg {
  background-image: linear-gradient(180deg, rgba(10,11,14,0.82), rgba(10,11,14,0.88)), var(--section-bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-photo-bg h2 { color: #fff; }
.section-photo-bg .lede { color: rgba(255,255,255,0.75); }

/* ---- About page ---- */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.about-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}
.about-gallery .wide {
  grid-column: span 2;
  height: 340px;
}
@media (max-width: 700px) {
  .about-gallery .wide { grid-column: span 1; }
}
.award-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border-radius: 12px;
  padding: 24px;
  min-width: 0;
}
.award-card > div { min-width: 0; }
.award-card .icon { color: var(--red); }
.award-card h3 { margin: 0 0 6px; }
.award-card p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* ---- Two-column text + photo split ---- */
.split-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-width: 0;
}
.split-content > * { min-width: 0; }
.split-content img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 14px;
}
@media (max-width: 800px) {
  .split-content { grid-template-columns: 1fr; gap: 24px; }
  .split-content img { min-height: 220px; order: -1; }
}

/* ---- Footer social icons ---- */
.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #BBBBBB;
}
.footer-social a:hover svg {
  fill: #FFFFFF;
}

/* ---- Google review CTA ---- */
.review-cta {
  margin-top: 24px;
  text-align: center;
}
.review-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}
.review-cta a:hover { text-decoration: underline; }

/* =========================================================
   HOMEPAGE SALES HERO / FREE BILL REVIEW
   ========================================================= */

/* ---- Sales Hero ---- */
.hero-sales {
  padding: 88px 0;
}
.hero-sales .container {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
}
.hero-copy {
  max-width: 560px;
}
.hero-eyebrow {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.hero-sales h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hero-sales .hero-copy > p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

/* ---- Bill Review Hero Card ---- */
.bill-review-card {
  width: 100%;
  max-width: 380px;
  justify-self: end;
  background: #ffffff;
  color: var(--text);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.bill-card-label {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.bill-review-card h2 {
  color: var(--text);
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.bill-review-card > p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 14px;
}
.bill-review-steps {
  display: grid;
  gap: 12px;
  margin: 18px 0 20px;
}
.bill-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fcebeb;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.bill-card-button {
  width: 100%;
  text-align: center;
}
.bill-review-card .bill-card-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

/* ---- Bill Review Form Section ---- */
.review-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.review-form-intro {
  max-width: 460px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.review-form-intro h2 {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.review-benefits {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.review-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.review-benefit > span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fcebeb;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.review-benefit strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.review-benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* ---- Form Card ---- */
.bill-review-form {
  max-width: none;
  width: 100%;
  margin-top: 0;
  background: #ffffff;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
  box-sizing: border-box;
}
.form-heading { margin-bottom: 4px; }
.form-heading h3 { margin: 0 0 4px; font-size: 20px; }
.form-heading p { margin: 0; color: var(--text-muted); font-size: 13px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bill-review-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  resize: vertical;
  box-sizing: border-box;
}
.bill-review-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

/* ---- Bill Upload ---- */
.bill-upload {
  border: 1px dashed #bbbbbb;
  border-radius: 10px;
  background: var(--surface);
  padding: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.bill-upload:hover {
  border-color: var(--red);
  background: #fffafa;
}
.bill-upload label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}
.upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  background: #fcebeb;
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
}
.upload-copy { display: flex; flex-direction: column; min-width: 0; }
.upload-copy strong { font-size: 14px; }
.upload-copy small { margin-top: 2px; color: var(--text-muted); font-size: 11px; }
.bill-upload input[type="file"] {
  width: 100%;
  max-width: 100%;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 12px;
  box-sizing: border-box;
}
.bill-upload input[type="file"]::file-selector-button {
  border: 1px solid var(--red);
  background: #ffffff;
  color: var(--red);
  border-radius: 6px;
  padding: 8px 12px;
  margin-right: 10px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}
.bill-upload input[type="file"]::file-selector-button:hover {
  background: var(--red);
  color: #ffffff;
}

/* ---- Form Button ---- */
.bill-review-form .btn-primary { width: 100%; font-size: 15px; }
.form-disclaimer {
  text-align: center;
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--text-muted);
}
.form-disclaimer a { color: var(--red); font-weight: 600; }
.form-disclaimer a:hover { text-decoration: underline; }

/* ---- Tablet (900px) ---- */
@media (max-width: 900px) {
  .hero-sales .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-copy { max-width: 100%; }
  .bill-review-card {
    max-width: 440px;
    width: 100%;
    justify-self: stretch;
    margin: 0 auto;
  }
  .review-form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .review-form-intro { max-width: 100%; }
  .bill-review-form { max-width: 480px; margin: 0 auto; }
}

/* ---- Mobile (600px) ---- */
@media (max-width: 600px) {
  .hero-sales { padding: 40px 0; }
  .hero-eyebrow { border-radius: 10px; font-size: 11px; }
  .hero-sales h1 { font-size: 28px; }
  .hero-sales .hero-copy > p { font-size: 15px; }
  .hero-checks { display: grid; gap: 8px; }
  .bill-review-card { padding: 20px; max-width: 100%; }
  .bill-review-card h2 { font-size: 19px; }
  .form-row { grid-template-columns: 1fr; }
  .bill-review-form { padding: 18px; max-width: 100%; }
  .review-form-intro h2 { font-size: 24px; }
  .upload-copy small { display: block; }
}
/* =========================================================
   HOMEPAGE SERVICES - 6 CARDS
========================================================= */

.card-grid.home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 800px) {

    .card-grid.home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 560px) {

    .card-grid.home-services-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   MASTERCARD BENEFITS - 3 X 2
========================================================= */

.feature-strip.mastercard-benefits-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:32px 40px;
    align-items:start;
}

.feature-strip.mastercard-benefits-grid > div {
    width:100%;
}

@media (max-width:800px) {

    .feature-strip.mastercard-benefits-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:28px;
    }

}

@media (max-width:560px) {

    .feature-strip.mastercard-benefits-grid {
        grid-template-columns:1fr;
    }

}
