/* ============================================================
   TRUMP MOBILE — Brand CSS
   Exact replica of www.trumpmobile.com
   Colors, fonts, and layout from original site
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Cormorant+SC:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (Brand Variables)
   ============================================================ */
:root {
  /* Core brand colors */
  --trump-blue: hsl(217, 91%, 20%);        /* #0a2d6e deep navy */
  --trump-gold: #d1b371;                   /* exact original — #d1b371 */
  --text-gold: #d1b371;                    /* same */
  --text-gold-hover: #e8ca88;             /* slightly lighter on hover */

  /* Background variants */
  --navy-mid: #2a3f6f;
  --navy-dark: #22294f;
  --navy-deeper: #0d1b3e;
  --bg-dark: #231f1f;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --cream: #fbf9f1;
  --light-gray: #f1f2f6;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-accent: 'Cormorant SC', serif;

  /* Spacing */
  --section-padding: 3.5rem 1.5rem;
  --container-max: 1200px;

  /* Transitions */
  --transition: 0.2s ease-in-out;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gold { color: var(--text-gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--trump-blue); }
.bg-navy { background-color: var(--trump-blue); }
.bg-navy-mid { background-color: var(--navy-mid); }
.bg-navy-dark { background-color: var(--navy-dark); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-light { background: var(--light-gray); }

.text-center { text-align: center; }
.text-left { text-align: left; }

.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-gold {
  background: var(--trump-gold);
  color: var(--trump-blue);
  border: 2px solid var(--trump-gold);
}
.btn-gold:hover {
  background: var(--text-gold-hover);
  border-color: var(--text-gold-hover);
  color: var(--trump-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(209, 179, 113, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--trump-gold);
  border: 2px solid var(--trump-gold);
}
.btn-outline-gold:hover {
  background: var(--trump-gold);
  color: var(--trump-blue);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--trump-blue);
}

/* Section heading pattern */
.section-eyebrow {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--trump-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--trump-blue);
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.8);
}

.gold-divider {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--trump-gold);
  margin: 1rem 0;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: #f5f5f5;
  color: #231f1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid #e0e0e0;
}
.announcement-text {
  color: #231f1f;
}
.announcement-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.announcement-links a {
  color: #231f1f;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.announcement-links a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .announcement-bar { flex-direction: column; gap: 0.2rem; text-align: center; }
  .announcement-links { gap: 1rem; }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
}
.nav-right .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}
.nav-left a, .nav-right a:not(.btn) {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #231f1f;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-left a:hover, .nav-right a:not(.btn):hover,
.nav-left a.active, .nav-right a.active {
  color: hsl(var(--trump-blue));
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--trump-gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-tagline {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-gold);
  display: block;
  margin-top: 2px;
}

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

.nav-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #231f1f;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: hsl(var(--trump-blue));
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #231f1f;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #231f1f;
  border-top: 1px solid rgba(209,179,113,0.2);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  padding: 0.75rem 0;
}
.mobile-nav ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav ul li a:hover {
  color: var(--trump-gold);
  background: rgba(255,255,255,0.03);
}
.mobile-nav-cta {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: #04091e;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/home-banner.png');
  background-size: cover;
  background-position: 66% center;
  background-repeat: no-repeat;
  filter: saturate(1.4) brightness(1.08) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.60) 25%,
    rgba(0, 0, 0, 0.18) 50%,
    rgba(0, 0, 0, 0.0) 62%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 5.5rem 1.5rem 4rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--trump-gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--trump-gold);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  max-width: 700px;
}

.hero-title .gold { color: var(--trump-gold); }

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  background: rgba(209, 179, 113, 0.1);
  border: 1px solid rgba(209, 179, 113, 0.4);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.hero-price-amount {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--trump-gold);
  line-height: 1;
}

.hero-price-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.hero-price-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  font-style: italic;
}

.hero-plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 0.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ============================================================
   FEATURES GRID SECTION
   ============================================================ */
.features-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.features-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 45, 110, 0.12);
  border-color: var(--trump-gold);
}

.feature-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(209, 179, 113, 0.1);
}

.feature-icon-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-card h3 {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--trump-blue);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

.feature-card a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--trump-blue);
  border-bottom: 2px solid var(--trump-gold);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.feature-card a:hover { color: var(--trump-gold); }

/* ============================================================
   KEEP YOUR PHONE / PLAN SECTION
   ============================================================ */
.plan-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
  color: var(--white);
}

.plan-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.plan-copy .section-eyebrow { color: var(--trump-gold); }
.plan-copy .section-title { color: var(--white); }

.plan-copy p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1.25rem;
}

.plan-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--text-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--trump-gold);
  color: var(--trump-blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--trump-gold);
  text-align: center;
  margin-bottom: 0.25rem;
}

.plan-price {
  text-align: center;
  margin-bottom: 0.5rem;
}

.plan-price-amount {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.plan-price-period {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 0.25rem;
}

.plan-divider {
  width: 100%;
  height: 1px;
  background: rgba(209,179,113,0.3);
  margin: 1.25rem 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.plan-features li .check {
  width: 18px;
  height: 18px;
  background: var(--trump-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li .check svg {
  width: 10px;
  height: 10px;
  fill: var(--trump-blue);
}

.plan-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
  margin-top: 1rem;
}

.plan-note a {
  color: var(--text-gold);
  text-decoration: underline;
}

/* ============================================================
   COVERAGE SECTION
   ============================================================ */
.coverage-section {
  padding: var(--section-padding);
  background: var(--light-gray);
  text-align: center;
}

.coverage-map-wrap {
  margin: 3rem auto;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,45,110,0.15);
  position: relative;
}

.coverage-map-wrap iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

.coverage-placeholder {
  background: var(--trump-blue);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.coverage-placeholder p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.coverage-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.coverage-stat .number {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--trump-blue);
  line-height: 1;
}

.coverage-stat .label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-top: 0.25rem;
}

/* ============================================================
   T1 PHONE SECTION
   ============================================================ */
.t1-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.t1-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(209,179,113,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.t1-section .section-eyebrow { margin-bottom: 0.5rem; }
.t1-section .section-title { color: var(--white); }

.t1-price-notice {
  background: rgba(209,179,113,0.1);
  border: 1px solid rgba(209,179,113,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  max-width: 480px;
  margin: 1.5rem auto;
}

.t1-price-notice p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

.t1-price-notice strong {
  color: var(--trump-gold);
}

.t1-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 2.5rem auto;
}

.t1-step {
  text-align: center;
}

.t1-step-number {
  width: 48px;
  height: 48px;
  background: var(--trump-gold);
  color: var(--trump-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.t1-step h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.t1-step p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   STAY CONNECTED / VALUE PROP SECTION
   ============================================================ */
.value-section {
  padding: var(--section-padding);
  background: var(--white);
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: var(--container-max);
  margin: 3rem auto 0;
}

.value-item {
  padding: 2rem 1rem;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(10,45,110,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--trump-blue);
}

.value-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--trump-blue);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

/* ============================================================
   "HAVE QUESTIONS?" CTA SECTION
   ============================================================ */
.questions-section {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.questions-section .bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/have-questions.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.questions-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.questions-content {
  position: relative;
  z-index: 1;
}

.questions-content h2 {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.questions-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.questions-phone {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 600;
  color: var(--trump-gold);
  margin-bottom: 1.5rem;
}

/* ============================================================
   EMAIL SIGNUP SECTION
   ============================================================ */
.email-section {
  background: var(--bg-dark);
  padding: 3rem 1.5rem;
  text-align: center;
}

.email-section h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--trump-gold);
  margin-bottom: 0.5rem;
}

.email-section p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.email-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(209,179,113,0.4);
}

.email-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  outline: none;
}

.email-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.email-form button {
  padding: 0.85rem 1.5rem;
  background: var(--trump-gold);
  color: var(--trump-blue);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.email-form button:hover {
  background: var(--text-gold-hover);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #231f1f;
  color: rgba(255,255,255,0.65);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo-text {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--trump-gold);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  transition: fill var(--transition);
}

.footer-social a:hover svg { fill: var(--trump-blue); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trump-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--trump-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--text-gold);
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--trump-blue);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0));
}

.page-hero .breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero .breadcrumb a { color: var(--text-gold); }

.page-hero h1 {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  position: relative;
  letter-spacing: 0.02em;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 1rem auto 0;
  position: relative;
  line-height: 1.7;
}

/* ============================================================
   DEALER PAGE
   ============================================================ */
.dealer-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.dealer-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 3rem auto;
}

.dealer-benefit {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 4px solid var(--trump-gold);
}

.dealer-benefit .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.dealer-benefit h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--trump-blue);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dealer-benefit p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

.dealer-form-section {
  background: var(--trump-blue);
  padding: var(--section-padding);
}

.dealer-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.dealer-form-wrap h2 {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 600;
  color: var(--trump-gold);
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(209,179,113,0.3);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--trump-gold);
}

.form-group select {
  appearance: none;
}

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

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--trump-blue);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--trump-gold);
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--trump-blue);
  line-height: 1.4;
  flex: 1;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--trump-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.faq-toggle svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
  transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--trump-gold);
}

.faq-item.open .faq-toggle svg {
  transform: rotate(45deg);
  fill: var(--trump-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.faq-answer ul { list-style: disc; padding-left: 1.5rem; }
.faq-answer ol { list-style: decimal; padding-left: 1.5rem; }
.faq-answer li { margin-bottom: 0.4rem; }

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.support-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #eee;
  transition: transform var(--transition), box-shadow var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10,45,110,0.1);
}

.support-card .icon {
  width: 64px;
  height: 64px;
  background: rgba(10,45,110,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.support-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--trump-blue);
  margin-bottom: 0.5rem;
}

.support-card p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* ============================================================
   TELEHEALTH PAGE
   ============================================================ */
.telehealth-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 3rem auto;
}

.telehealth-benefit {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.telehealth-benefit .icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--trump-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.telehealth-benefit .icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--trump-blue);
}

.telehealth-benefit h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--trump-blue);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.telehealth-benefit p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

/* ============================================================
   COVERAGE PAGE
   ============================================================ */
.coverage-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem 0;
}

.coverage-intro p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,45,110,0.15);
}

.about-copy .section-title {
  margin-bottom: 1.25rem;
}

.about-copy p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 3rem auto;
}

.about-value {
  text-align: center;
  padding: 1.5rem;
}

.about-value h3 {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--trump-blue);
  margin-bottom: 0.5rem;
}

.about-value p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

/* ============================================================
   ROADSIDE PAGE
   ============================================================ */
.roadside-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 3rem auto;
}

.roadside-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-bottom: 4px solid var(--trump-gold);
}

.roadside-feature .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.roadside-feature h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--trump-blue);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roadside-feature p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE / MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .t1-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 1.25rem;
  }

  .nav-wrapper { display: flex; justify-content: space-between; }
  .nav-left { display: none; }
  .nav-right a:not(.btn) { display: none; }
  .nav-right .btn { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 5rem 1.25rem 4rem;
  }

  .plan-section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .telehealth-benefits {
    grid-template-columns: 1fr;
  }

  .dealer-benefits {
    grid-template-columns: 1fr;
  }

  .roadside-features {
    grid-template-columns: 1fr 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .t1-steps {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

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

  .coverage-stats {
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    max-width: 280px;
  }

  .hero-actions .btn {
    text-align: center;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .roadside-features {
    grid-template-columns: 1fr;
  }

  .coverage-stats {
    gap: 2rem;
  }

  .email-form {
    flex-direction: column;
    border-radius: var(--radius-sm);
    overflow: visible;
    border: none;
    gap: 0.75rem;
  }

  .email-form input[type="email"] {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(209,179,113,0.4);
  }

  .email-form button {
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.5rem;
    width: 100%;
  }
}
