:root {
  --navy:   #0a192f;
  --blue:   #004080;
  --sky:    #00c2ff;
  --gold:   #ffd700;
  --gold2:  #f0a500;
  --white:  #ffffff;
  --light:  #f4f6f9;
  --gray:   #6b7280;
  --border: #e2e8f0;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Barlow', Arial, sans-serif;
  background: var(--white);
  color: #1a1a2e;
  font-size: 16px;
  line-height: 1.6;
}

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

/* TOP BAR */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar a { color: var(--gold); }
.top-bar-login { margin-left: auto; color: var(--sky) !important; font-weight: 600; }

/* HEADER */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo img { height: 44px; }
.logo-fallback {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 2px;
}
.logo-fallback em { color: var(--sky); font-style: normal; }

.main-nav { display: flex; gap: 22px; margin-left: auto; }
.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--blue); border-color: var(--gold); }

.header-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--blue); color: white; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 10px rgba(240,165,0,0.35);
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(240,165,0,0.45); }
.btn-gold.large { padding: 15px 36px; font-size: 17px; border-radius: 12px; }

.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--navy); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 30px;
  background: var(--navy);
}
.mobile-nav a { color: white; font-weight: 600; }
.mobile-nav .btn-gold { text-align: center; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #005a9e 100%);
  color: white;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 600px; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.18);
  border: 1px solid rgba(255,215,0,0.5);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-highlight { color: var(--gold); }
.hero-sub { font-size: 19px; opacity: 0.9; margin-bottom: 36px; }

/* ZIP CHECKER */
.zip-checker {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.zip-label { font-size: 14px; font-weight: 600; margin-bottom: 12px; opacity: 0.85; }
.zip-form { display: flex; gap: 10px; }
.zip-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  color: #111;
  transition: border-color 0.2s;
}
.zip-form input:focus { border-color: var(--gold); }
.zip-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  transition: transform 0.15s;
}
.zip-form button:hover { transform: translateY(-1px); }
.zip-error { color: #ff9999; font-size: 13px; margin-top: 8px; }
.zip-result {
  margin-top: 12px;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gold);
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-item { font-size: 14px; font-weight: 600; opacity: 0.9; }

.hero-image { position: relative; z-index: 1; }
.hero-s-logo { height: 260px; opacity: 0.85; filter: drop-shadow(0 0 40px rgba(0,194,255,0.4)); }
.hero-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(0,194,255,0.2), transparent 70%);
  pointer-events: none;
}

/* STATS STRIP */
.stats-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 28px 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; color: var(--navy); }
.stat strong { display: block; font-size: 30px; font-weight: 900; font-family: 'Barlow Condensed', sans-serif; }
.stat span { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.75; }

/* SECTIONS */
.section { padding: 90px 20px; }
.container { max-width: 1160px; margin: auto; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-header p { font-size: 18px; color: var(--gray); max-width: 540px; margin: auto; }

/* PLAN TABS */
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: white;
  border-radius: 12px;
  padding: 6px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}
.plan-tab {
  flex: 1;
  padding: 12px 28px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.plan-tab.active {
  background: linear-gradient(135deg, var(--blue), #005a9e);
  color: white;
  box-shadow: 0 4px 12px rgba(0,64,128,0.3);
}
.plan-tab:hover:not(.active) { color: var(--blue); }
.tab-content { animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* PLANS */
.plans-section { background: var(--light); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.plan-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.plan-card.featured { border-color: var(--gold); box-shadow: 0 8px 32px rgba(240,165,0,0.2); transform: scale(1.02); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.plan-tag {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.plan-tag.best { background: var(--gold); color: var(--navy); }

.plan-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.plan-rate {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-rate span { font-size: 22px; color: var(--gray); font-weight: 600; }
.plan-term { font-size: 13px; color: var(--gray); margin-bottom: 24px; font-weight: 600; text-transform: uppercase; }

.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 15px; color: #334155; }

.btn-plan {
  display: block; text-align: center;
  padding: 13px; border-radius: 8px;
  font-weight: 800; font-size: 15px;
  background: var(--blue); color: white;
  transition: all 0.2s; border: 2px solid var(--blue);
}
.btn-plan:hover { background: var(--navy); border-color: var(--navy); }
.btn-plan.gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); border-color: transparent; }
.btn-plan.gold:hover { box-shadow: 0 6px 20px rgba(240,165,0,0.5); }

.plans-cta { text-align: center; margin-top: 36px; }
.plans-cta a { color: var(--blue); font-weight: 700; font-size: 15px; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

/* WHY SUNARA */
.why-section { background: var(--navy); }
.why-section .section-header h2 { color: white; }
.why-section .section-header p { color: rgba(255,255,255,0.65); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px 28px;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h4 { color: var(--gold); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; }

/* STEPS */
.steps-section { background: var(--light); }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.step { text-align: center; max-width: 260px; padding: 20px; flex: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white; font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Barlow Condensed', sans-serif;
}
.step h4 { color: var(--navy); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 15px; }
.step-arrow { font-size: 32px; color: var(--gold); padding: 50px 10px 0; }
.steps-cta { text-align: center; margin-top: 52px; }

/* REVIEWS */
.reviews-section { background: white; }
.overall-rating { color: var(--gray); margin-top: 8px; font-size: 15px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--light); border-radius: 14px; padding: 28px; border-left: 4px solid var(--gold); }
.review-stars { font-size: 18px; margin-bottom: 14px; }
.review-card p { color: #334155; font-size: 15px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { font-weight: 700; color: var(--navy); font-size: 14px; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--blue), var(--navy)); color: white; text-align: center; padding: 80px 20px; }
.cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 46px; font-weight: 900; text-transform: uppercase; margin-bottom: 14px; }
.cta-banner p { font-size: 19px; opacity: 0.85; margin-bottom: 36px; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-inner {
  max-width: 1160px; margin: auto; padding: 60px 40px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo { height: 40px; margin-bottom: 16px; }
.brand-col p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-phone a { color: var(--sky); font-weight: 700; }
.footer-col h5 { color: var(--gold); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 10px; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 20px 40px; font-size: 12px; }
.footer-bottom a { color: var(--sky); }

/* PAGE HERO (sub-pages) */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; padding: 70px 40px; text-align: center; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 50px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.page-hero p { font-size: 19px; opacity: 0.85; max-width: 600px; margin: auto; }

/* FORMS */
.form-section { background: var(--light); padding: 80px 20px; }
.form-card { background: white; border-radius: 18px; padding: 48px 52px; max-width: 600px; margin: auto; box-shadow: 0 8px 40px rgba(0,0,0,0.09); }
.form-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.form-card .subtitle { color: var(--gray); margin-bottom: 30px; font-size: 15px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 2px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: 'Barlow', sans-serif; color: var(--navy);
  outline: none; transition: border-color 0.2s; background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sky); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy); border: none; border-radius: 10px;
  font-size: 17px; font-weight: 800; cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: transform 0.15s, box-shadow 0.15s; margin-top: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,165,0,0.4); }

.form-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 18px; justify-content: center; }
.form-trust span { font-size: 13px; color: var(--gray); }

.success-box { background: #d1fae5; border: 2px solid #10b981; border-radius: 10px; padding: 20px 24px; color: #065f46; font-weight: 600; margin-top: 20px; display: none; }
.error-box { background: #fee2e2; border: 2px solid #ef4444; border-radius: 10px; padding: 20px 24px; color: #991b1b; font-weight: 600; margin-top: 20px; display: none; }

/* FAQ */
.faq-section { padding: 80px 20px; background: white; }
.faq-container { max-width: 800px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 17px; color: var(--navy); gap: 20px; }
.faq-icon { color: var(--gold); font-size: 22px; transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { font-size: 15px; color: var(--gray); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin-top 0.2s; }
.faq-item.open .faq-answer { max-height: 400px; margin-top: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 40px; max-width: 1160px; margin: auto; }
.about-text h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
.about-text p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-image { border-radius: 16px; background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 60px; text-align: center; }
.about-image img { height: 180px; opacity: 0.9; filter: drop-shadow(0 0 30px rgba(0,194,255,0.5)); }

.values-section { background: var(--light); padding: 80px 20px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: white; border-radius: 12px; padding: 28px 22px; text-align: center; box-shadow: var(--shadow); }
.value-card .icon { font-size: 36px; margin-bottom: 12px; }
.value-card h4 { color: var(--navy); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.value-card p { color: var(--gray); font-size: 14px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: auto; padding: 80px 20px; align-items: start; }
.contact-info h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-icon { font-size: 24px; flex-shrink: 0; }
.contact-item h5 { color: var(--navy); font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.contact-item p { color: var(--gray); font-size: 14px; }
.contact-item a { color: var(--blue); font-weight: 700; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.hours-table td { padding: 8px 0; font-size: 14px; color: var(--gray); border-bottom: 1px solid var(--border); }
.hours-table td:first-child { color: var(--navy); font-weight: 700; width: 50%; }

/* LOGIN */
.login-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; background: var(--light); padding: 40px 20px; }
.login-card { background: white; border-radius: 18px; padding: 52px; max-width: 440px; width: 100%; box-shadow: 0 8px 40px rgba(0,0,0,0.09); text-align: center; }
.login-card .login-logo img { height: 50px; margin-bottom: 28px; }
.login-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 6px; }
.login-card .sub { color: var(--gray); font-size: 14px; margin-bottom: 32px; }
.login-card .form-group { text-align: left; }
.forgot-link { text-align: right; margin-top: -10px; margin-bottom: 20px; }
.forgot-link a { color: var(--blue); font-size: 13px; font-weight: 600; }
.login-footer { margin-top: 24px; font-size: 14px; color: var(--gray); }
.login-footer a { color: var(--blue); font-weight: 700; }

/* STEP INDICATOR */
.step-ind { flex: 1; display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--gray); border-bottom: 3px solid var(--border); cursor: pointer; transition: all 0.2s; }
.step-ind.active { color: var(--blue); border-color: var(--gold); opacity: 1 !important; }
.step-ind span { width: 24px; height: 24px; border-radius: 50%; background: var(--border); color: var(--gray); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.step-ind.active span { background: var(--blue); color: white; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .main-nav { gap: 14px; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav, .header-actions { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .mobile-nav.open { display: flex; }
  .hero { flex-direction: column; padding: 60px 20px; text-align: center; min-height: auto; }
  .hero h1 { font-size: 40px; }
  .hero-s-logo { height: 160px; }
  .hero-trust { justify-content: center; }
  .zip-form { flex-direction: column; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { gap: 30px; }
  .form-card { padding: 32px 24px; }
  .plan-tabs { max-width: 100%; }
}
@media (max-width: 480px) {
  .header-inner { padding: 14px 20px; }
  .hero h1 { font-size: 34px; }
  .section-header h2 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-cta a { display: block; margin-bottom: 12px; text-align: center; margin-right: 0 !important; }
}
  --blue:   #004080;
  --sky:    #00c2ff;
  --gold:   #ffd700;
  --gold2:  #f0a500;
  --white:  #ffffff;
  --light:  #f4f6f9;
  --gray:   #6b7280;
  --border: #e2e8f0;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Barlow', Arial, sans-serif;
  background: var(--white);
  color: #1a1a2e;
  font-size: 16px;
  line-height: 1.6;
}

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

/* TOP BAR */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar a { color: var(--gold); }
.top-bar-login { margin-left: auto; color: var(--sky) !important; font-weight: 600; }

/* HEADER */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo img { height: 44px; }
.logo-fallback {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 2px;
}
.logo-fallback em { color: var(--sky); font-style: normal; }

.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover { color: var(--blue); border-color: var(--gold); }

.header-actions { display: flex; gap: 12px; align-items: center; }

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue); color: white; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 10px rgba(240,165,0,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(240,165,0,0.45); }
.btn-gold.large { padding: 15px 36px; font-size: 17px; border-radius: 12px; }

.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--navy); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 30px;
  background: var(--navy);
}
.mobile-nav a { color: white; font-weight: 600; }
.mobile-nav .btn-gold { text-align: center; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #005a9e 100%);
  color: white;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 600px; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.18);
  border: 1px solid rgba(255,215,0,0.5);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-highlight { color: var(--gold); }
.hero-sub { font-size: 19px; opacity: 0.9; margin-bottom: 36px; }

/* ZIP CHECKER */
.zip-checker {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.zip-label { font-size: 14px; font-weight: 600; margin-bottom: 12px; opacity: 0.85; }
.zip-form { display: flex; gap: 10px; }
.zip-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  color: #111;
  transition: border-color 0.2s;
}
.zip-form input:focus { border-color: var(--gold); }
.zip-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  transition: transform 0.15s;
}
.zip-form button:hover { transform: translateY(-1px); }
.zip-error { color: #ff9999; font-size: 13px; margin-top: 8px; }
.zip-result {
  margin-top: 12px;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gold);
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-item { font-size: 14px; font-weight: 600; opacity: 0.9; }

.hero-image { position: relative; z-index: 1; }
.hero-s-logo { height: 260px; opacity: 0.85; filter: drop-shadow(0 0 40px rgba(0,194,255,0.4)); }
.hero-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(0,194,255,0.2), transparent 70%);
  pointer-events: none;
}

/* STATS STRIP */
.stats-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 28px 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; color: var(--navy); }
.stat strong { display: block; font-size: 30px; font-weight: 900; font-family: 'Barlow Condensed', sans-serif; }
.stat span { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.75; }

/* SECTIONS */
.section { padding: 90px 20px; }
.container { max-width: 1160px; margin: auto; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-header p { font-size: 18px; color: var(--gray); max-width: 540px; margin: auto; }

/* PLANS */
.plans-section { background: var(--light); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.plan-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.plan-card.featured { border-color: var(--gold); box-shadow: 0 8px 32px rgba(240,165,0,0.2); transform: scale(1.02); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.plan-tag {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.plan-tag.best { background: var(--gold); color: var(--navy); }

.plan-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.plan-rate {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-rate span { font-size: 22px; color: var(--gray); font-weight: 600; }
.plan-term { font-size: 13px; color: var(--gray); margin-bottom: 24px; font-weight: 600; text-transform: uppercase; }

.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 15px; color: #334155; }

.btn-plan {
  display: block; text-align: center;
  padding: 13px; border-radius: 8px;
  font-weight: 800; font-size: 15px;
  background: var(--blue); color: white;
  transition: all 0.2s; border: 2px solid var(--blue);
}
.btn-plan:hover { background: var(--navy); border-color: var(--navy); }
.btn-plan.gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); border-color: transparent; }
.btn-plan.gold:hover { box-shadow: 0 6px 20px rgba(240,165,0,0.5); }

.plans-cta { text-align: center; margin-top: 36px; }
.plans-cta a { color: var(--blue); font-weight: 700; font-size: 15px; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

/* WHY SUNARA */
.why-section { background: var(--navy); }
.why-section .section-header h2 { color: white; }
.why-section .section-header p { color: rgba(255,255,255,0.65); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px 28px;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h4 { color: var(--gold); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; }

/* STEPS */
.steps-section { background: var(--light); }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.step { text-align: center; max-width: 260px; padding: 20px; flex: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white; font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Barlow Condensed', sans-serif;
}
.step h4 { color: var(--navy); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 15px; }
.step-arrow { font-size: 32px; color: var(--gold); padding: 50px 10px 0; }
.steps-cta { text-align: center; margin-top: 52px; }

/* REVIEWS */
.reviews-section { background: white; }
.overall-rating { color: var(--gray); margin-top: 8px; font-size: 15px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--light); border-radius: 14px; padding: 28px; border-left: 4px solid var(--gold); }
.review-stars { font-size: 18px; margin-bottom: 14px; }
.review-card p { color: #334155; font-size: 15px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { font-weight: 700; color: var(--navy); font-size: 14px; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--blue), var(--navy)); color: white; text-align: center; padding: 80px 20px; }
.cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 46px; font-weight: 900; text-transform: uppercase; margin-bottom: 14px; }
.cta-banner p { font-size: 19px; opacity: 0.85; margin-bottom: 36px; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-inner {
  max-width: 1160px; margin: auto; padding: 60px 40px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo { height: 40px; margin-bottom: 16px; }
.brand-col p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-phone a { color: var(--sky); font-weight: 700; }
.footer-col h5 { color: var(--gold); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 10px; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding: 20px 40px; font-size: 12px; }
.footer-bottom a { color: var(--sky); }

/* PAGE HERO (sub-pages) */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; padding: 70px 40px; text-align: center; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 50px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.page-hero p { font-size: 19px; opacity: 0.85; max-width: 600px; margin: auto; }

/* FORMS */
.form-section { background: var(--light); padding: 80px 20px; }
.form-card { background: white; border-radius: 18px; padding: 48px 52px; max-width: 600px; margin: auto; box-shadow: 0 8px 40px rgba(0,0,0,0.09); }
.form-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.form-card .subtitle { color: var(--gray); margin-bottom: 30px; font-size: 15px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 2px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: 'Barlow', sans-serif; color: var(--navy);
  outline: none; transition: border-color 0.2s; background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sky); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy); border: none; border-radius: 10px;
  font-size: 17px; font-weight: 800; cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: transform 0.15s, box-shadow 0.15s; margin-top: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,165,0,0.4); }

.form-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 18px; justify-content: center; }
.form-trust span { font-size: 13px; color: var(--gray); }

.success-box { background: #d1fae5; border: 2px solid #10b981; border-radius: 10px; padding: 20px 24px; color: #065f46; font-weight: 600; margin-top: 20px; display: none; }
.error-box { background: #fee2e2; border: 2px solid #ef4444; border-radius: 10px; padding: 20px 24px; color: #991b1b; font-weight: 600; margin-top: 20px; display: none; }

/* FAQ */
.faq-section { padding: 80px 20px; background: white; }
.faq-container { max-width: 800px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 17px; color: var(--navy); gap: 20px; }
.faq-icon { color: var(--gold); font-size: 22px; transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { font-size: 15px; color: var(--gray); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin-top 0.2s; }
.faq-item.open .faq-answer { max-height: 400px; margin-top: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 40px; max-width: 1160px; margin: auto; }
.about-text h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
.about-text p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-image { border-radius: 16px; background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 60px; text-align: center; }
.about-image img { height: 180px; opacity: 0.9; filter: drop-shadow(0 0 30px rgba(0,194,255,0.5)); }

.values-section { background: var(--light); padding: 80px 20px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: white; border-radius: 12px; padding: 28px 22px; text-align: center; box-shadow: var(--shadow); }
.value-card .icon { font-size: 36px; margin-bottom: 12px; }
.value-card h4 { color: var(--navy); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.value-card p { color: var(--gray); font-size: 14px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: auto; padding: 80px 20px; align-items: start; }
.contact-info h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-icon { font-size: 24px; flex-shrink: 0; }
.contact-item h5 { color: var(--navy); font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.contact-item p { color: var(--gray); font-size: 14px; }
.contact-item a { color: var(--blue); font-weight: 700; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.hours-table td { padding: 8px 0; font-size: 14px; color: var(--gray); border-bottom: 1px solid var(--border); }
.hours-table td:first-child { color: var(--navy); font-weight: 700; width: 50%; }

/* LOGIN */
.login-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; background: var(--light); padding: 40px 20px; }
.login-card { background: white; border-radius: 18px; padding: 52px; max-width: 440px; width: 100%; box-shadow: 0 8px 40px rgba(0,0,0,0.09); text-align: center; }
.login-card .login-logo img { height: 50px; margin-bottom: 28px; }
.login-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 6px; }
.login-card .sub { color: var(--gray); font-size: 14px; margin-bottom: 32px; }
.login-card .form-group { text-align: left; }
.forgot-link { text-align: right; margin-top: -10px; margin-bottom: 20px; }
.forgot-link a { color: var(--blue); font-size: 13px; font-weight: 600; }
.login-footer { margin-top: 24px; font-size: 14px; color: var(--gray); }
.login-footer a { color: var(--blue); font-weight: 700; }

/* STEP INDICATOR (signup) */
.step-ind { flex: 1; display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--gray); border-bottom: 3px solid var(--border); cursor: pointer; transition: all 0.2s; }
.step-ind.active { color: var(--blue); border-color: var(--gold); opacity: 1 !important; }
.step-ind span { width: 24px; height: 24px; border-radius: 50%; background: var(--border); color: var(--gray); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.step-ind.active span { background: var(--blue); color: white; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav, .header-actions { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .mobile-nav.open { display: flex; }
  .hero { flex-direction: column; padding: 60px 20px; text-align: center; min-height: auto; }
  .hero h1 { font-size: 40px; }
  .hero-s-logo { height: 160px; }
  .hero-trust { justify-content: center; }
  .zip-form { flex-direction: column; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { gap: 30px; }
  .form-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 14px 20px; }
  .hero h1 { font-size: 34px; }
  .section-header h2 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* MOBILE RESPONSIVE HELPERS */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }

@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr !important; }
  .contact-layout { grid-template-columns: 1fr !important; }
  .dash-quick-actions { grid-template-columns: 1fr 1fr !important; }
  /* State page hero ZIP form */
  .zip-hero-form { flex-direction: column !important; }
  /* About who-we-serve grid */
  .who-serve-grid { grid-template-columns: 1fr !important; }
  /* Commercial grid */
  .commercial-features { grid-template-columns: 1fr 1fr !important; }
  /* Stats strip */
  .stats-strip { gap: 20px !important; padding: 24px 16px !important; }
  /* CTA banner buttons */
  .cta-banner .btn-gold { display: block !important; margin: 0 auto 12px !important; text-align: center; }
  /* Section header */
  .section-header h2 { font-size: 30px !important; }
  /* Form card padding */
  .state-cta { padding: 32px 20px !important; }
  /* Features grid on state pages */
  .features-grid { grid-template-columns: 1fr 1fr !important; }
  /* Cities grid */
  .cities-grid { gap: 8px !important; }
  /* Dropdown cols on mobile - single column */
  .dropdown-cols { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .two-col-grid { grid-template-columns: 1fr !important; }
  .features-grid { grid-template-columns: 1fr !important; }
  .stats-strip .stat strong { font-size: 24px !important; }
  .plan-rate { font-size: 40px !important; }
  .state-hero-content h1 { font-size: 28px !important; }
  .zip-hero-form input, .zip-hero-form button { width: 100% !important; }
}

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