/* AT&T Authorized Dealer Landing Page - Google Ads Compliant */
:root {
  --att-blue: #009fdb;
  --att-dark: #00388f;
  --att-navy: #001e3c;
  --att-light: #e8f6fc;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --success: #059669;
  --warning-bg: #fffbeb;
  --warning-border: #f59e0b;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 4px 24px rgba(0, 56, 143, 0.08);
  --radius: 12px;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--att-dark); text-decoration: underline; }
a:hover { color: var(--att-blue); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Dealer disclosure bar */
.dealer-bar {
  background: var(--att-navy);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  text-align: center;
}

.dealer-bar strong { color: #7dd3fc; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
  overflow: visible;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--att-dark);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav-desktop { display: none; }

.nav-desktop .nav-main {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-desktop a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.nav-desktop > .nav-main a,
.nav-desktop .nav-main > li > a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.nav-desktop > .nav-main a:hover,
.nav-desktop .nav-main > li > a:hover { color: var(--att-blue); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--att-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 159, 219, 0.35);
}

.btn-primary:hover { background: #0088c2; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--att-dark);
  border: 2px solid var(--att-dark);
}

.btn-outline:hover { background: var(--att-light); color: var(--att-dark); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: 0.2s;
}

.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 0;
}

.nav-mobile.open { display: block; }

.nav-mobile ul { list-style: none; }
.nav-mobile li { border-bottom: 1px solid var(--gray-100); }
.nav-mobile a {
  display: block;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
}

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--att-navy) 0%, var(--att-dark) 50%, #0057a8 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,159,219,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 1rem;
  max-width: 520px;
}

.hero-card {
  background: var(--white);
  color: var(--gray-800);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--att-dark);
}

/* Forms */
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--att-blue);
  border-color: var(--att-blue);
}

.form-consent {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.form-consent input { width: auto; margin-right: 0.5rem; }

.form-consent label { font-weight: 400; display: flex; align-items: flex-start; gap: 0.5rem; }

.form-error { color: #dc2626; font-size: 0.8rem; margin-top: 0.25rem; display: none; }

/* Sections */
section { padding: 4rem 0; }

.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--att-dark);
  margin-bottom: 0.75rem;
}

.section-header p { color: var(--gray-600); }

/* Plan cards */
.plans-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .plans-grid { grid-template-columns: repeat(4, 1fr); }
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.plan-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--att-blue);
}

.plan-card.featured {
  border-color: var(--att-blue);
  box-shadow: var(--shadow);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--att-blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 1rem;
  color: var(--att-dark);
  margin-bottom: 0.25rem;
}

.plan-speed {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--att-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-price span { font-size: 0.9rem; font-weight: 500; }

.plan-disclaimer {
  font-size: 0.68rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.25rem;
}

.plan-features li {
  font-size: 0.85rem;
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.broadband-link {
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.plan-card .btn { width: 100%; margin-top: auto; }

/* Wireless plans */
.wireless-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .wireless-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Why us */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--att-dark);
  margin-bottom: 0.5rem;
}

.feature-card p { font-size: 0.9rem; color: var(--gray-600); }

.feature-num {
  width: 36px;
  height: 36px;
  background: var(--att-light);
  color: var(--att-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-800);
}

.faq-question:hover { background: var(--gray-50); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-icon { transition: transform 0.2s; font-size: 0.8rem; }

/* Compliance notice */
.compliance-notice {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-800);
  line-height: 1.6;
}

.compliance-notice h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #92400e;
}

/* Legal pages */
.legal-page { padding: 3rem 0 4rem; }
.legal-page h1 { font-size: 2rem; color: var(--att-dark); margin-bottom: 0.5rem; }
.legal-page .updated { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.25rem; color: var(--att-dark); margin: 2rem 0 0.75rem; }
.legal-page h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
.legal-page p, .legal-page li { margin-bottom: 0.75rem; color: var(--gray-600); font-size: 0.95rem; }
.legal-page ul, .legal-page ol { margin-left: 1.5rem; margin-bottom: 1rem; }

/* Footer */
.site-footer {
  background: var(--att-navy);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 1.5rem;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1.5fr 1.5fr; }
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 700px) {
  .footer-brand { grid-column: auto; }
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-brand p { line-height: 1.6; margin-bottom: 0.5rem; }
.footer-brand a { color: #7dd3fc; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }

.footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-col a:hover { color: var(--white); text-decoration: underline; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.footer-legal p { margin-bottom: 0.75rem; }

.footer-trademark-notice {
  font-size: 0.72rem;
  line-height: 1.55;
  opacity: 0.92;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.75rem;
}

.footer-developer {
  font-size: 0.75rem;
  margin-top: 0.75rem;
  opacity: 0.9;
}

.footer-developer a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-developer a:hover {
  opacity: 0.85;
}
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--att-navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  z-index: 200;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p { font-size: 0.85rem; flex: 1; min-width: 250px; }
.cookie-inner a { color: #7dd3fc; }

.cookie-actions { display: flex; gap: 0.5rem; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 1.75rem;
}

.modal h3 { color: var(--att-dark); margin-bottom: 1rem; }
.modal p, .modal li { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.modal-close {
  float: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-600);
  line-height: 1;
}

/* CTA band */
.cta-band {
  background: var(--att-blue);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}

.cta-band h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.cta-band p { margin-bottom: 1.5rem; opacity: 0.9; }

/* Contact page */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-info-card h3 { color: var(--att-dark); margin-bottom: 1rem; }
.contact-info-item { margin-bottom: 1rem; }
.contact-info-item strong { display: block; color: var(--gray-800); }

/* Phone link */
.phone-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--att-blue);
  text-decoration: none;
}

.phone-link:hover { text-decoration: underline; }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========== ANIMATIONS ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll { opacity: 1; transform: none; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 159, 219, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(0, 159, 219, 0.55); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

.hero-animate { animation: fadeInUp 0.8s ease-out both; }
.hero-animate-d1 { animation: fadeInUp 0.8s ease-out 0.15s both; }
.hero-animate-d2 { animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-animate-d3 { animation: fadeInUp 0.8s ease-out 0.45s both; }

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero .btn-primary,
.cta-band .btn-primary,
.promo-banner .btn-primary {
  animation: pulse-glow 3s ease-in-out infinite;
}

.plan-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 56, 143, 0.15);
}

.feature-card {
  transition: transform 0.35s ease, box-shadow 0.35s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.faq-item { transition: border-color 0.25s; }
.faq-item.open { border-color: var(--att-blue); }

.faq-answer {
  animation: fadeInUp 0.3s ease-out;
}

.modal-overlay.open .modal {
  animation: scaleIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero {
  background: linear-gradient(135deg, var(--att-navy) 0%, var(--att-dark) 40%, #0057a8 70%, var(--att-navy) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 12s ease infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particle:nth-child(2) { top: 60%; left: 25%; animation-delay: 1s; width: 4px; height: 4px; }
.hero-particle:nth-child(3) { top: 30%; right: 15%; animation-delay: 2s; }
.hero-particle:nth-child(4) { bottom: 25%; right: 30%; animation-delay: 0.5s; width: 8px; height: 8px; }
.hero-particle:nth-child(5) { top: 70%; left: 60%; animation-delay: 1.5s; }

/* ========== IMAGES ========== */
.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  animation: float 5s ease-in-out infinite;
}

.hero-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-wrap:hover img { transform: scale(1.05); }

.hero-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: var(--att-dark);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-image-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.promo-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 30, 60, 0.92) 0%, rgba(0, 56, 143, 0.75) 50%, rgba(0, 56, 143, 0.4) 100%);
}

.promo-banner-content {
  position: relative;
  z-index: 1;
  padding: 2rem 2.5rem;
  color: var(--white);
  max-width: 600px;
}

.promo-banner-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.promo-banner-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.image-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .image-split { grid-template-columns: 1fr 1fr; }
  .image-split.reverse .image-split-media { order: 2; }
  .image-split.reverse .image-split-text { order: 1; }
}

.image-split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.image-split-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-split-media:hover img { transform: scale(1.04); }

.image-split-text h3 {
  font-size: 1.35rem;
  color: var(--att-dark);
  margin-bottom: 0.75rem;
}

.image-split-text p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.image-split-text ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.image-split-text li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.image-split-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.plan-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  background: var(--att-light);
}

.plan-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

@media (max-width: 700px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
}

.icon-box {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-box img {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}

.icon-box span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--att-dark);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 30, 60, 0.88) 0%, rgba(0, 87, 168, 0.8) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .gallery-row { grid-template-columns: 1fr; }
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--att-blue) 0%, var(--att-navy) 100%);
  opacity: 0.12;
}

.cta-band .container { position: relative; z-index: 1; }

.bundles-visual {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 800px) {
  .bundles-visual { grid-template-columns: 1fr 1fr; }
}

.bundles-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bundles-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ========== TOP UTILITY & NAV ========== */
.top-utility {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.8rem;
}

.top-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}

.top-utility a {
  text-decoration: none;
  color: var(--gray-600);
  margin-right: 1rem;
}

.top-utility a:hover { color: var(--att-blue); }
.top-utility-right span { color: var(--gray-400); margin: 0 0.35rem; }
.active-lang { font-weight: 700; color: var(--att-dark) !important; }

.logo-img { height: 40px; width: auto; }

.logo-dealer-img {
  height: 46px;
  width: auto;
  max-width: min(180px, 42vw);
}

@media (min-width: 768px) {
  .logo-dealer-img { height: 52px; max-width: 200px; }
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-decoration: none;
}

.logo-dealer-tag {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--att-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 160px;
}

.agents-badge {
  display: none;
  font-size: 0.75rem;
  color: var(--gray-600);
  white-space: nowrap;
}

@media (min-width: 1100px) { .agents-badge { display: block; } }

.btn-call {
  font-size: 0.75rem !important;
  padding: 0.65rem 1rem !important;
  white-space: nowrap;
}

.btn-icon { flex-shrink: 0; }

.nav-main { display: flex; list-style: none; gap: 0.25rem; align-items: center; margin: 0; padding: 0; }

.nav-has-dropdown { position: relative; }

/* Dropdown menus — hidden by default; never use generic .nav-desktop ul flex on these */
.nav-main > li.nav-has-dropdown > ul.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 56, 143, 0.12);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  z-index: 200;
  flex-direction: column;
  gap: 0;
}

.nav-main > li.nav-has-dropdown:hover > ul.nav-dropdown,
.nav-main > li.nav-has-dropdown:focus-within > ul.nav-dropdown {
  display: block;
}

.nav-dropdown li {
  display: block;
  width: 100%;
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--gray-800);
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-dropdown a:hover { background: var(--gray-50); color: var(--att-blue); }

.nav-main > li > a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gray-800);
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  display: block;
}

.nav-main > li > a:hover { background: var(--att-light); color: var(--att-dark); }

.btn-dark {
  background: var(--att-navy);
  color: var(--white);
  border: none;
}

.btn-dark:hover { background: #002a55; color: var(--white); }

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.cta-band-inner h2 { margin-bottom: 0.25rem; }

/* ========== INDEX (att-promotions style) ========== */
.promo-strip {
  background: #d6f2fc;
  padding: 0.65rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--att-dark);
}

.promo-strip strong { color: var(--att-navy); }

.home-hero-title {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
}

.home-hero-title h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gray-800);
  font-weight: 700;
}

.home-hero-split {
  display: grid;
  gap: 2rem;
  align-items: stretch;
  padding-bottom: 3rem;
}

@media (min-width: 900px) {
  .home-hero-split { grid-template-columns: 1fr 1fr; }
}

.quote-box,
.phone-cta-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.phone-cta-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--att-blue);
  margin-bottom: 0.5rem;
}

.phone-cta-box h3 {
  color: var(--att-dark);
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.phone-cta-box > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.phone-cta-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--att-blue);
  text-decoration: none;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.phone-cta-number:hover {
  color: var(--att-dark);
  text-decoration: underline;
}

.phone-cta-btn {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1.25rem;
}

.phone-cta-services-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.quote-box h3 { color: var(--att-dark); margin-bottom: 0.35rem; }
.quote-box > p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1rem; }

.service-btns { display: flex; flex-direction: column; gap: 0.65rem; }

.service-btn {
  display: block;
  text-align: center;
  padding: 0.9rem 1rem;
  background: var(--att-navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.service-btn:hover { background: var(--att-dark); color: var(--white); transform: translateY(-2px); }

.home-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.home-hero-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.promo-duo {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 800px) { .promo-duo { grid-template-columns: 1fr 1fr; } }

.promo-card {
  background: #e8f6fc;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 600px) {
  .promo-card { grid-template-columns: 1fr auto; }
}

.promo-card h3 { font-size: 1.1rem; color: var(--att-dark); margin-bottom: 0.5rem; }
.promo-card p { font-size: 0.8rem; color: var(--gray-600); }
.promo-card img { max-height: 140px; width: auto; justify-self: center; }

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.plan-tab {
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: all 0.2s;
}

.plan-tab.active, .plan-tab:hover {
  border-color: var(--att-blue);
  background: var(--att-light);
  color: var(--att-dark);
}

.plan-panel { display: none; }
.plan-panel.active { display: block; }

.internet-hero-card {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .internet-hero-card { grid-template-columns: 1fr 1fr; }
}

.internet-hero-card img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-hero {
  text-align: center;
  padding: 1rem 0;
}

.price-hero .big-price {
  font-size: 4rem;
  font-weight: 700;
  color: var(--att-dark);
  line-height: 1;
}

.content-block h2, .content-block h3 { color: var(--att-dark); margin: 1.5rem 0 0.75rem; }
.content-block p, .content-block li { color: var(--gray-600); margin-bottom: 0.75rem; }
.content-block ul { margin-left: 1.25rem; margin-bottom: 1rem; }

.check-list { list-style: none; margin: 1rem 0; }
.check-list li { padding: 0.35rem 0 0.35rem 1.5rem; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }

.fine-print { font-size: 0.75rem; color: var(--gray-600); line-height: 1.5; }

.compare-table { overflow-x: auto; }
.compare-table table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th, .compare-table td { border: 1px solid var(--gray-200); padding: 0.75rem 1rem; text-align: left; }
.compare-table th { background: var(--att-light); color: var(--att-dark); }

.footer-logo-row {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
}

.footer-dealer-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
}

.footer-dealer-name {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.footer-dealer-name span {
  font-size: 0.75rem;
  opacity: 0.85;
}

.footer-att-trademarks {
  font-size: 0.72rem;
  line-height: 1.55;
  opacity: 0.9;
}
.footer-logo { filter: brightness(0) invert(1); opacity: 0.9; }

/* ========== CUSTOMER SERVICE (attwirelessonline style) ========== */
.cs-hero {
  background: var(--att-blue);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}

.cs-hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.cs-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cs-hero p { margin-bottom: 1.5rem; opacity: 0.95; }

.cs-hero .btn-dark {
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cs-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--gray-200);
}

@media (min-width: 700px) {
  .cs-grid { grid-template-columns: repeat(3, 1fr); }
}

.cs-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  transition: background 0.2s;
}

@media (min-width: 700px) {
  .cs-card { border-right: 1px solid var(--gray-200); border-bottom: none; }
  .cs-card:nth-child(3n) { border-right: none; }
  .cs-grid + .cs-grid .cs-card { border-top: 1px solid var(--gray-200); }
}

.cs-card:hover { background: var(--gray-50); }

.cs-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--att-blue);
}

.cs-card h3 {
  font-size: 1rem;
  color: var(--att-dark);
  margin-bottom: 0.5rem;
}

.cs-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.cs-contact-box {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.cs-contact-box h2 {
  font-size: 1.25rem;
  color: var(--att-dark);
  margin-bottom: 1.5rem;
}

.cs-contact-cols {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .cs-contact-cols { grid-template-columns: repeat(3, 1fr); }
}

.cs-contact-cols h3 { font-size: 0.95rem; color: var(--att-dark); margin-bottom: 0.35rem; }
.cs-contact-cols .phone-big { font-size: 1.35rem; font-weight: 700; color: var(--att-blue); text-decoration: none; display: block; }
.cs-contact-cols .phone-big:hover { text-decoration: underline; }
.cs-contact-cols span { font-size: 0.8rem; color: var(--gray-600); }

.cs-support-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 800px) {
  .cs-support-grid { grid-template-columns: repeat(3, 1fr); }
}

.cs-support-col {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.cs-support-col h3 { color: var(--att-dark); margin: 0.75rem 0 1rem; }
.cs-support-col ul { list-style: none; margin-bottom: 1.25rem; }
.cs-support-col li { margin-bottom: 0.5rem; }
.cs-support-col a { color: var(--att-blue); text-decoration: none; font-size: 0.9rem; }
.cs-support-col a:hover { text-decoration: underline; }

.cs-footer-cta {
  background: var(--att-blue);
  color: var(--white);
  padding: 2rem 0;
}

.cs-footer-cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cs-footer-cta .label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.cs-footer-cta p { font-size: 0.95rem; max-width: 600px; }

/* ========== DEALER HERO (attsavings style) ========== */
.dealer-hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 2rem 0 3rem;
}

.dealer-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dealer-hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }
}

.dealer-hero-overline {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.dealer-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--att-blue);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.dealer-hero-tagline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.dealer-hero-copy {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  max-width: 520px;
  font-size: 0.95rem;
}

.dealer-hero-pricing {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.dealer-hero-pricing-label {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--gray-800);
}

.dealer-hero-plan-name {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
}

.dealer-hero-price {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.dealer-hero-price span {
  font-size: 1.15rem;
  font-weight: 600;
}

.btn-call-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.dealer-hero-visual {
  position: relative;
  min-height: 300px;
}

@media (min-width: 900px) {
  .dealer-hero-visual { min-height: 420px; }
}

.dealer-hero-curve {
  position: absolute;
  left: -15%;
  top: 5%;
  bottom: 5%;
  width: 75%;
  background: linear-gradient(160deg, #c5ebfa 0%, #e8f6fc 45%, #f4fbff 100%);
  border-radius: 0 55% 55% 0 / 0 50% 50% 0;
  z-index: 0;
}

.dealer-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 0 0 0 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 56, 143, 0.12);
}

@media (min-width: 900px) {
  .dealer-hero-visual img { min-height: 420px; }
}

/* ========== PRICING TABLE CARDS ========== */
.pricing-section-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.pricing-section-intro h2 {
  color: var(--att-dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.pricing-section-intro p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

.plans-grid-pricing {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 700px) {
  .plans-grid-pricing { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .plans-grid-pricing { grid-template-columns: repeat(4, 1fr); }
}

.wireless-grid-pricing {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 800px) {
  .wireless-grid-pricing { grid-template-columns: repeat(3, 1fr); }
}

.plan-card-pricing {
  border: 2px solid #b3dff5;
  border-radius: 14px;
  padding: 1.35rem 1.15rem;
  box-shadow: none;
}

.plan-card-pricing:hover {
  border-color: var(--att-blue);
  box-shadow: 0 8px 28px rgba(0, 157, 219, 0.12);
}

.plan-card-pricing.featured {
  border-color: var(--att-blue);
  box-shadow: 0 8px 28px rgba(0, 56, 143, 0.1);
}

.plan-card-pricing .plan-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--att-dark);
  margin-bottom: 0.15rem;
}

.plan-card-pricing .plan-speed {
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.plan-card-pricing .plan-price {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.plan-card-pricing .plan-price-suffix {
  font-size: 1.05rem !important;
  font-weight: 600;
}

.plan-pricing-details {
  font-size: 0.68rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 0.65rem;
}

.plan-pricing-details p { margin-bottom: 0.15rem; }

.plan-meta-links {
  font-size: 0.68rem;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.plan-meta-links a {
  display: block;
  color: var(--att-dark);
  text-decoration: underline;
}

.plan-card-pricing .plan-features li {
  font-size: 0.78rem;
  line-height: 1.45;
  padding: 0.3rem 0 0.3rem 1.15rem;
}

.plan-card-pricing .plan-features li::before {
  content: '✓';
  color: var(--gray-800);
  font-size: 0.75rem;
}

.btn-call-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.85rem 0.75rem;
  background: var(--att-navy);
  color: var(--white) !important;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none !important;
  margin-top: auto;
  transition: background 0.2s, transform 0.2s;
}

.btn-call-plan:hover {
  background: var(--att-dark);
  transform: translateY(-1px);
}

.pricing-footnotes {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.68rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.pricing-footnotes p { margin-bottom: 0.65rem; }

.pricing-footnotes a { font-size: inherit; }

.section-pricing {
  padding: 3rem 0;
}

.section-services,
.section-blog {
  padding: 3rem 0;
}

.section-services {
  background: var(--white);
}

.section-blog {
  background: var(--gray-50);
}

.section-pricing.section-alt {
  background: var(--gray-50);
}

/* ========== SERVICE SHOWCASE ========== */
.service-showcase {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .service-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .service-showcase { grid-template-columns: repeat(4, 1fr); }
}

.service-showcase-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-showcase-card:hover {
  border-color: var(--att-blue);
  box-shadow: 0 8px 28px rgba(0, 56, 143, 0.1);
}

.service-showcase-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-showcase-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-showcase-body h3 {
  font-size: 1.05rem;
  color: var(--att-dark);
  margin-bottom: 0.5rem;
}

.service-showcase-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.55;
}

.service-showcase-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--att-blue);
}

.service-showcase-link:hover { text-decoration: underline; }

.bundle-highlight {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #e8f6fc 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

@media (min-width: 900px) {
  .bundle-highlight { grid-template-columns: 1fr 1fr; }
}

.bundle-highlight h3 {
  font-size: 1.5rem;
  color: var(--att-dark);
  margin-bottom: 0.75rem;
}

.bundle-highlight ul {
  margin: 1rem 0 1.25rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.bundle-highlight li { margin-bottom: 0.35rem; }

/* ========== BLOG CARDS ========== */
.blog-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(4, 1fr); }
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 56, 143, 0.1);
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.72rem;
  color: var(--att-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.blog-card-body h3 {
  font-size: 1rem;
  color: var(--att-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card-body h3 a:hover { color: var(--att-blue); }

.blog-card-body p {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  flex: 1;
  line-height: 1.5;
}

.blog-card-read {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--att-blue);
  text-decoration: none;
}

.blog-card-read:hover { text-decoration: underline; }

/* ========== BLOG ARTICLE PAGE ========== */
.blog-article-hero {
  background: var(--att-light);
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.blog-article-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--att-dark);
  max-width: 720px;
  margin: 0 auto 0.75rem;
  line-height: 1.2;
}

.blog-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.blog-category {
  color: var(--att-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-article-body {
  padding: 2.5rem 0 3rem;
}

.blog-article-layout {
  max-width: 760px;
  margin: 0 auto;
}

.blog-featured-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}

.blog-content h2 {
  font-size: 1.2rem;
  color: var(--att-dark);
  margin: 1.75rem 0 0.65rem;
}

.blog-article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

/* ========== PROMO POPUP ========== */
.promo-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 30, 60, 0.65);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.promo-popup-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.promo-popup {
  background: var(--white);
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.4s ease;
}

.promo-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.25rem;
}

.promo-popup-close:hover { color: var(--gray-800); }

.promo-popup-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.promo-popup h2 {
  font-size: 1.45rem;
  color: var(--att-dark);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.promo-popup-lead {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.promo-popup-list {
  list-style: none;
  text-align: left;
  margin: 0 0 1.25rem;
  padding: 0;
}

.promo-popup-list li {
  font-size: 0.88rem;
  color: var(--gray-800);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.promo-popup-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.promo-popup-call {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  text-decoration: none;
}

.promo-popup-dismiss {
  background: none;
  border: none;
  color: var(--gray-600);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.25rem;
}

.promo-popup-dismiss:hover { color: var(--gray-800); }

.promo-popup-fine {
  font-size: 0.68rem;
  color: var(--gray-600);
  margin-top: 0.85rem;
  line-height: 1.45;
}

/* Text logo & image placeholders (no AT&T marketing assets) */
.logo-text .logo-business-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--att-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.footer-text-logo {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-text-logo strong {
  font-size: 1rem;
  color: #fff;
}

.footer-text-logo span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-visual-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 280px;
  padding: 2rem;
  background: linear-gradient(145deg, #e8f4fc 0%, #f0f6ff 100%);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.hero-placeholder-icon { opacity: 0.85; }

.hero-visual-placeholder p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--att-navy);
}

.page-hero-placeholder {
  background: linear-gradient(135deg, var(--att-blue) 0%, var(--att-navy) 70%);
  min-height: 220px;
}

.image-placeholder {
  min-height: 200px;
  background: linear-gradient(145deg, var(--gray-100) 0%, var(--gray-50) 100%);
  border-radius: var(--radius);
  border: 1px dashed var(--gray-300);
}

.bundles-placeholder { min-height: 260px; }
