* { box-sizing: border-box; }

:root {
  --rust: #a8402a;
  --rust-dark: #7c2f1e;
  --rust-light: #c96a4f;
  --tan: #e4d4ad;
  --tan-light: #f6efdc;
  --page-bg: #d9cca6;
  --turquoise: #2f8a82;
  --turquoise-dark: #1f6961;
  --turquoise-light: #4fada4;
  --brown-text: #3a2c1d;
  --gold: #c99a34;
  --gold-dark: #a3781f;
  --border-tan: #b9a878;
  --ink: #33261a;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: var(--ink);
  background-color: var(--page-bg);
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 40px),
    linear-gradient(to bottom, #e6dab8, #cbb98c 400px, #cbb98c 100%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--rust-dark);
  margin-top: 0;
}

a { color: var(--turquoise-dark); }
a:hover { color: var(--rust); }

img { max-width: 100%; }

p { line-height: 1.55; }

ul.plain { list-style: none; margin: 0; padding: 0; }

.wrapper {
  width: 100%;
  margin: 0;
  background: #fffdf7;
  min-height: 100vh;
}

.utility-bar {
  width: 100%;
  background: var(--turquoise-dark);
  color: var(--tan-light);
  font-size: 11px;
  padding: 5px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-bar a {
  color: var(--tan-light);
  text-decoration: none;
  margin-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 14px;
}

.utility-bar a:first-child { border-left: none; padding-left: 0; margin-left: 0; }
.utility-bar a:hover { color: #fff; text-decoration: underline; }
.utility-bar .announce { font-style: italic; color: var(--tan); }

.site-header {
  width: 100%;
  padding: 14px 22px;
  background: linear-gradient(to bottom, #fffdf7 0%, #f1e6c8 100%);
  border-bottom: 3px solid var(--rust);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--rust-light), var(--rust-dark) 75%);
  color: #fff;
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 17px;
  text-align: center;
  line-height: 52px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.45), inset 0 -2px 4px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.brand-text h1 {
  font-size: 26px;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-text h1 span { color: var(--turquoise-dark); }

.brand-text .tagline {
  font-size: 11px;
  color: #6b5a3d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-contact {
  text-align: right;
}

.header-contact .phone-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #6b5a3d;
  letter-spacing: 1px;
}

.header-contact .phone-number {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--rust-dark);
  white-space: nowrap;
}

.header-contact .btn { margin-top: 6px; }

.main-nav {
  width: 100%;
  background: linear-gradient(to bottom, var(--rust-light) 0%, var(--rust) 45%, var(--rust-dark) 100%);
  border-bottom: 2px solid var(--rust-dark);
  border-top: 1px solid #e08a6c;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.nav-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.main-nav .nav-toggle { display: none; }

.main-nav li { border-right: 1px solid rgba(0,0,0,0.2); }
.main-nav li:first-child { border-left: 1px solid rgba(255,255,255,0.15); }

.main-nav a {
  display: block;
  padding: 11px 16px;
  color: #fff5ea;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
  letter-spacing: 0.3px;
}

.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.main-nav li.nav-order { margin-left: auto; }

.main-nav li.nav-order a {
  background: linear-gradient(to bottom, #e0b04f, var(--gold) 55%, var(--gold-dark));
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.main-nav li.nav-order a:hover { background: linear-gradient(to bottom, #ecc06a, var(--gold-dark)); }

.breadcrumb {
  width: 100%;
  background: var(--tan-light);
  border-bottom: 1px solid var(--border-tan);
  padding: 6px 22px;
  font-size: 11px;
  color: #6b5a3d;
}

.breadcrumb a { color: var(--turquoise-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.page-banner {
  width: 100%;
  background: linear-gradient(115deg, var(--rust-dark) 0%, var(--rust) 55%, var(--turquoise-dark) 130%);
  color: #fff9ef;
  padding: 26px 26px;
  border-bottom: 4px solid var(--gold);
}

.page-banner h2 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.page-banner p {
  margin: 0;
  color: var(--tan-light);
  font-size: 13px;
  max-width: 640px;
}

.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--rust-dark) 0%, var(--rust) 45%, #c9832f 85%, var(--gold) 100%);
  color: #fff9ef;
  padding: 46px 32px 40px;
  border-bottom: 4px solid var(--turquoise-dark);
}

.hero .hero-copy { max-width: 560px; position: relative; z-index: 2; }

.hero h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  text-shadow: 0 2px 3px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}

.hero p.lead {
  font-size: 14.5px;
  color: #fdf3e2;
  margin-bottom: 18px;
}

.hero .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero .hero-phone {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.hero-scene {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 420px;
  height: 220px;
  z-index: 1;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 12.5px;
  text-decoration: none;
  border: 1px solid;
  cursor: pointer;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-primary {
  background: linear-gradient(to bottom, #e0785f, var(--rust-dark));
  border-color: var(--rust-dark);
  color: #fff;
}
.btn-primary:hover { background: linear-gradient(to bottom, #ea8a71, #6f2a1a); color: #fff; }

.btn-secondary {
  background: linear-gradient(to bottom, var(--turquoise-light), var(--turquoise-dark));
  border-color: var(--turquoise-dark);
  color: #fff;
}
.btn-secondary:hover { background: linear-gradient(to bottom, #63bab0, #185a53); color: #fff; }

.btn-gold {
  background: linear-gradient(to bottom, #e7bd66, var(--gold) 55%, var(--gold-dark));
  border-color: var(--gold-dark);
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
.btn-gold:hover { background: linear-gradient(to bottom, #f0cb7c, #8f6a1c); }

.btn-block { display: block; width: 100%; text-align: center; }
.btn-small { padding: 5px 10px; font-size: 11px; }

.page-body {
  width: 100%;
  display: flex;
  gap: 22px;
  padding: 22px;
  align-items: flex-start;
}

.main-col { flex: 1; min-width: 0; max-width: 100%; }
.sidebar { width: 232px; flex-shrink: 0; max-width: 100%; }

.main-col h2 {
  font-size: 21px;
  border-bottom: 2px solid var(--tan);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.main-col h3 {
  font-size: 16px;
  color: var(--turquoise-dark);
  margin-bottom: 8px;
}

.widget {
  border: 1px solid var(--border-tan);
  margin-bottom: 18px;
  background: #fffefb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.widget-title {
  background: linear-gradient(to bottom, var(--turquoise-light), var(--turquoise-dark));
  color: #fff;
  font-weight: bold;
  font-size: 12.5px;
  padding: 7px 10px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--turquoise-dark);
}

.widget-title.rust {
  background: linear-gradient(to bottom, var(--rust-light), var(--rust-dark));
  border-bottom-color: var(--rust-dark);
}

.widget-title.gold {
  background: linear-gradient(to bottom, #e7bd66, var(--gold) 55%, var(--gold-dark));
  border-bottom-color: var(--gold-dark);
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.widget-body { padding: 12px; }

.widget-body label {
  display: block;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 3px;
  color: #5b4a30;
}

.widget-body input[type="text"],
.widget-body input[type="email"],
.widget-body input[type="password"],
.widget-body input[type="tel"] {
  width: 100%;
  padding: 5px 6px;
  margin-bottom: 10px;
  border: 1px solid #a89a78;
  background: #fffefb url("data:image/svg+xml;utf8,") no-repeat;
  font-size: 12px;
  font-family: inherit;
}

.widget-body .remember-row {
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.widget-links {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
  line-height: 1.8;
}

.widget-links a { display: block; text-decoration: none; }
.widget-links a:hover { text-decoration: underline; }

.widget-body p { font-size: 12px; margin: 0 0 10px; }

.widget-body .zip-row { display: flex; gap: 6px; }
.widget-body .zip-row input { margin-bottom: 0; }

.widget-badges { padding: 10px 12px; text-align: center; }
.widget-badges .badge {
  display: inline-block;
  border: 1px solid var(--border-tan);
  background: var(--tan-light);
  font-size: 10px;
  font-weight: bold;
  color: #6b5a3d;
  padding: 5px 6px;
  margin: 3px;
  border-radius: 3px;
}

.feature-grid {
  display: flex;
  gap: 14px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1;
  min-width: 150px;
  border: 1px solid var(--border-tan);
  background: var(--tan-light);
  padding: 16px 14px;
  text-align: center;
}

.feature-box .icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--turquoise-light), var(--turquoise-dark));
  color: #fff;
  line-height: 46px;
  font-size: 20px;
  box-shadow: inset 0 2px 3px rgba(255,255,255,0.4), 0 1px 2px rgba(0,0,0,0.3);
}

.feature-box h3 { font-size: 14px; margin-bottom: 6px; }
.feature-box p { font-size: 12px; margin: 0; color: #4a3c28; }

table.plans {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  font-size: 12.5px;
}

table.plans caption {
  text-align: left;
  font-weight: bold;
  color: var(--rust-dark);
  padding-bottom: 6px;
}

table.plans th {
  background: linear-gradient(to bottom, var(--rust-light), var(--rust-dark));
  color: #fff;
  padding: 9px 10px;
  text-align: left;
  border: 1px solid var(--rust-dark);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}

table.plans td {
  padding: 9px 10px;
  border: 1px solid #d9cba5;
}

table.plans tbody tr:nth-child(even) { background: var(--tan-light); }
table.plans tbody tr.featured { background: #fbeecb; }
table.plans td.price { font-weight: bold; color: var(--rust-dark); white-space: nowrap; }
table.plans td.center, table.plans th.center { text-align: center; }

.best-value-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
}

.info-box {
  border: 1px solid var(--border-tan);
  background: var(--tan-light);
  padding: 14px 16px;
  margin: 16px 0;
}

.info-box.callout {
  border-color: var(--gold-dark);
  background: #fbf1d8;
}

.two-col-list {
  columns: 2;
  -webkit-columns: 2;
  column-gap: 24px;
  font-size: 12.5px;
  margin: 10px 0;
}

.check-list { list-style: none; margin: 0 0 16px; padding: 0; }
.check-list li { padding: 4px 0 4px 22px; position: relative; font-size: 12.5px; }
.check-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #fff;
  background: var(--turquoise-dark);
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  font-size: 10px;
  border-radius: 50%;
  top: 5px;
}

.form-box {
  border: 1px solid var(--border-tan);
  background: var(--tan-light);
  padding: 18px 20px;
}

.form-row { margin-bottom: 12px; }
.form-row label { display: block; font-size: 12px; font-weight: bold; margin-bottom: 4px; }
.form-row .hint { font-weight: normal; color: #6b5a3d; font-size: 11px; }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 7px 8px;
  border: 1px solid #a89a78;
  background: #fffefb;
  font-size: 12.5px;
  font-family: inherit;
}

.form-cols { display: flex; gap: 14px; }
.form-cols .form-row { flex: 1; }

.form-disclaimer {
  font-size: 11px;
  color: #6b5a3d;
  border-top: 1px dashed var(--border-tan);
  margin-top: 14px;
  padding-top: 10px;
}

.form-error {
  border: 1px solid #a8402a;
  border-left: 5px solid #a8402a;
  background: #fbeee9;
  color: #7c2f1e;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 10px 13px;
  margin: 0 0 14px;
}

.form-error:before {
  content: "\26A0";
  font-weight: bold;
  margin-right: 7px;
}

.template-notice {
  border: 1px dashed var(--rust);
  background: #fbeee9;
  color: var(--rust-dark);
  font-size: 11.5px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.login-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.login-card {
  width: 360px;
  border: 1px solid var(--border-tan);
  background: #fffefb;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.login-card .widget-title { font-size: 14px; padding: 10px 14px; }
.login-card .widget-body { padding: 18px 20px; }

.login-tabs { display: flex; }
.login-tabs a {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  background: var(--tan-light);
  border: 1px solid var(--border-tan);
  border-bottom: none;
  color: #6b5a3d;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: bold;
}
.login-tabs a.active { background: #fffefb; color: var(--rust-dark); }

.faq-item { border: 1px solid var(--border-tan); margin-bottom: 8px; }
.faq-q {
  background: var(--tan-light);
  padding: 9px 12px;
  font-weight: bold;
  font-size: 12.5px;
  color: var(--rust-dark);
}
.faq-a { padding: 10px 12px; font-size: 12.5px; border-top: 1px solid var(--border-tan); }

.site-footer {
  width: 100%;
  background: var(--brown-text);
  color: var(--tan);
  padding: 26px 24px 14px;
  border-top: 4px solid var(--gold);
}

.footer-cols {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col { flex: 1; min-width: 150px; }

.footer-col h4 {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: var(--tan); text-decoration: none; font-size: 11.5px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col p { font-size: 11.5px; color: var(--tan); margin: 0 0 6px; }

.footer-badges { margin-top: 6px; }
.footer-badges span {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 7px;
  font-size: 9.5px;
  margin: 2px 4px 2px 0;
  color: var(--tan-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 20px;
  padding-top: 12px;
  font-size: 10.5px;
  color: #c9b896;
  text-align: center;
  line-height: 1.7;
}

.footer-bottom .eop {
  max-width: 720px;
  margin: 0 auto 6px;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small-muted { font-size: 11px; color: #6b5a3d; }

.stat-row { display: flex; gap: 18px; text-align: center; margin: 20px 0; }
.stat-row .stat { flex: 1; border-right: 1px solid var(--tan); }
.stat-row .stat:last-child { border-right: none; }
.stat-row .stat .num {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: bold;
  color: var(--rust-dark);
  display: block;
}
.stat-row .stat .label { font-size: 11px; color: #6b5a3d; text-transform: uppercase; }

.zip-directory {
  border: 1px solid var(--border-tan);
  background: #fffefb;
  padding: 4px 14px 12px;
  margin: 14px 0 18px;
}

.zip-region { border-bottom: 1px dashed var(--border-tan); padding: 10px 0; }
.zip-region:last-child { border-bottom: none; }

.zip-region h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--rust-dark);
  margin: 0 0 7px;
}

ul.zip-list { list-style: none; margin: 0; padding: 0; }

ul.zip-list li {
  font-size: 12px;
  padding: 3px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}

.zip-city {
  display: inline-block;
  min-width: 148px;
  font-weight: bold;
  color: var(--ink);
}

ul.zip-list a {
  display: inline-block;
  border: 1px solid var(--border-tan);
  background: var(--tan-light);
  color: var(--turquoise-dark);
  text-decoration: none;
  font-size: 11.5px;
  padding: 2px 6px;
  border-radius: 2px;
}

ul.zip-list a:hover,
ul.zip-list a:focus {
  background: var(--turquoise-dark);
  border-color: var(--turquoise-dark);
  color: #fff;
}

.zip-result { display: none; }
.zip-result:target { display: block; }

.zip-panel {
  border: 2px solid var(--turquoise-dark);
  background: #fffefb;
  margin: 0 0 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.zip-panel .zip-prompt { padding: 14px 16px; font-size: 12.5px; color: #5b4a30; }
.zip-panel:has(.zip-result:target) .zip-prompt { display: none; }

.zip-result-head {
  background: linear-gradient(to bottom, var(--turquoise-light), var(--turquoise-dark));
  color: #fff;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: bold;
  padding: 9px 14px;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}

.zip-result-head:before { content: "\2713  "; }

.zip-result-body { padding: 14px 16px; }
.zip-result-body p { margin: 0 0 8px; font-size: 12.5px; }
.zip-result-body .check-list { margin: 6px 0 12px; }

.zip-tech {
  background: var(--tan-light);
  border: 1px solid var(--border-tan);
  padding: 6px 9px;
  display: inline-block;
}

.zip-cta { margin: 12px 0 10px; }
.zip-or { margin-left: 10px; font-size: 12.5px; }

.login-switch .login-card { border-top: none; }

.login-switch .panel-business { display: none; }
.login-switch:has(.panel-business:target) .panel-residential { display: none; }
.login-switch .panel-business:target { display: block; }

.login-switch:has(.panel-business:target) .tab-business,
.login-switch .tab-residential { background: #fffefb; color: var(--rust-dark); }

.login-switch:has(.panel-business:target) .tab-residential {
  background: var(--tan-light);
  color: #6b5a3d;
}

.notice-card {
  width: 560px;
  max-width: 100%;
  border: 1px solid var(--border-tan);
  background: #fffefb;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.notice-card .widget-title { font-size: 14px; padding: 10px 14px; }
.notice-card .widget-body { padding: 18px 22px; }
.notice-card h3 { font-size: 15px; margin: 16px 0 8px; }
.notice-card .btn { margin: 0 4px; }

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0 22px;
  width: 100%;
  max-width: 100%;
}

.table-scroll table.plans { margin: 0; min-width: 520px; }

.bb-label {
  border: 3px solid #000;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  max-width: 420px;
  padding: 8px 12px 10px;
  margin: 0 0 22px;
  font-size: 12px;
  line-height: 1.35;
}

.bb-label h3,
.bb-label h4 { font-family: Arial, Helvetica, sans-serif; color: #000; }

.bb-title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -0.5px;
  margin: 0 0 2px;
  line-height: 1.05;
}

.bb-provider { font-size: 13px; font-weight: bold; margin: 0; }
.bb-plan { font-size: 13px; margin: 0 0 2px; }
.bb-type { font-size: 11px; margin: 0 0 4px; }

.bb-rule       { border-top: 1px solid #000; margin: 4px 0; }
.bb-rule-thick { border-top: 6px solid #000; margin: 5px 0; }
.bb-rule-med   { border-top: 3px solid #000; margin: 5px 0; }

.bb-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0;
}

.bb-row .bb-val { text-align: right; white-space: nowrap; }

.bb-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 19px;
  font-weight: bold;
  padding: 2px 0;
}

.bb-note { font-size: 10.5px; margin: 0 0 3px; }

.bb-section {
  font-size: 13px;
  font-weight: bold;
  margin: 4px 0 2px;
}

.bb-sub { padding-left: 14px; }
.bb-sub .bb-row { font-size: 11.5px; }

.bb-indent { padding-left: 14px; font-size: 11.5px; }

.bb-label a { color: #000; }

.bb-support { font-size: 11.5px; }

.bb-id {
  font-size: 10.5px;
  word-break: break-all;
  padding-top: 2px;
}

.bb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.bb-grid .bb-label { flex: 0 1 420px; }

.speed-files {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 20px;
}

.speed-file {
  flex: 1 1 150px;
  border: 1px solid var(--border-tan);
  background: var(--tan-light);
  padding: 14px 12px;
  text-align: center;
}

.speed-file .size {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--rust-dark);
  display: block;
  margin-bottom: 2px;
}

.speed-file .who {
  font-size: 11px;
  color: #6b5a3d;
  display: block;
  margin-bottom: 10px;
  min-height: 28px;
}

.st-console {
  border: 1px solid var(--border-tan);
  background: var(--tan-light);
  padding: 20px;
  margin: 0 0 18px;
  text-align: center;
}

.st-actions { margin-bottom: 16px; }

#startStopBtn {
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  padding: 11px 30px;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid var(--gold-dark);
  background: linear-gradient(to bottom, #e7bd66, var(--gold) 55%, var(--gold-dark));
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

#startStopBtn:hover { background: linear-gradient(to bottom, #f0cb7c, #8f6a1c); }
#startStopBtn:before { content: "Start Speed Test"; }

#startStopBtn.running {
  background: linear-gradient(to bottom, #e0785f, var(--rust-dark));
  border-color: var(--rust-dark);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
}

#startStopBtn.running:before { content: "Abort Test"; }

.st-progress-track {
  height: 14px;
  border: 1px solid var(--border-tan);
  background: #fffefb;
  margin: 0 0 18px;
  overflow: hidden;
}

#progress {
  height: 100%;
  width: 0;
  background: linear-gradient(to bottom, var(--turquoise-light), var(--turquoise-dark));
  transition: width 0.6s linear;
}

.st-readouts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.st-readout {
  flex: 1 1 150px;
  border: 1px solid var(--border-tan);
  background: #fffefb;
  padding: 14px 10px;
}

.st-readout .st-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b5a3d;
  margin-bottom: 4px;
}

.st-readout .st-value {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1;
  min-height: 34px;
  color: var(--rust-dark);
}

.st-readout .st-value:empty:before { content: "0.00"; color: #bcae8c; }
.st-readout .st-unit { font-size: 11px; color: #6b5a3d; }

.st-readout.dl .st-value { color: var(--turquoise-dark); }
.st-readout.ul .st-value { color: var(--rust-dark); }
.st-readout.ping .st-value,
.st-readout.jit .st-value  { color: var(--gold-dark); }

.st-ip {
  font-size: 11.5px;
  color: #6b5a3d;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-tan);
}

.st-noscript {
  border: 1px solid var(--gold-dark);
  background: #fbf1d8;
  padding: 14px 16px;
  margin-bottom: 18px;
}

@media (max-width: 460px) {
  .st-readout { flex: 1 1 100%; }
  .st-readout .st-value { font-size: 26px; }
}

.map-figure {
  border: 1px solid var(--border-tan);
  background: var(--tan-light);
  padding: 16px;
  margin: 16px 0;
  text-align: center;
}

.map-figure svg { width: 100%; max-width: 620px; height: auto; }

.map-legend {
  font-size: 11px;
  color: #5b4a30;
  margin-top: 10px;
}

.map-legend span { margin: 0 9px; white-space: nowrap; }

.map-key {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: baseline;
}

@media (max-width: 760px) {
  .page-body { flex-direction: column; padding: 14px; }
  .sidebar { width: 100%; }
  .site-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .header-contact { text-align: left; }
  .hero-scene { display: none; }
  .hero h2 { font-size: 24px; }
  .form-cols { flex-direction: column; gap: 0; }
  .two-col-list { columns: 1; }
  .feature-grid { flex-direction: column; }
  .stat-row { flex-direction: column; gap: 10px; }
  .stat-row .stat { border-right: none; border-bottom: 1px solid var(--tan); padding-bottom: 8px; }

  .main-nav .nav-toggle {
    display: block;
    cursor: pointer;
    background: var(--rust-dark);
    color: #fff;
    padding: 10px 16px;
    font-weight: bold;
    font-size: 13px;
  }
  .nav-checkbox:focus-visible ~ .nav-toggle { outline: 2px solid var(--gold); }
  .main-nav ul { display: none; flex-direction: column; }
  .nav-checkbox:checked ~ ul { display: flex; }
  .main-nav li.nav-order { margin-left: 0; }

  .zip-city { min-width: 0; display: block; width: 100%; }
  .footer-cols { flex-direction: column; gap: 16px; }

  .utility-bar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .utility-bar nav { display: flex; flex-wrap: wrap; }
  .utility-bar a:first-child { border-left: none; padding-left: 0; margin-left: 0; }

  .page-banner { padding: 18px 16px; }
  .page-banner h2 { font-size: 21px; }
  .hero { padding: 28px 16px 26px; }
  .brand-text h1 { font-size: 22px; }
  .header-contact .phone-number { font-size: 21px; }

  .login-card, .notice-card, .template-notice { width: 100% !important; }
  .login-shell { padding: 18px 14px; }
  .bb-label { max-width: 100%; }
  .bb-grid { display: block; }
  .form-box { padding: 14px; }
  .widget-body, .info-box { word-wrap: break-word; }
}

@media (max-width: 460px) {
  .btn { padding: 7px 12px; }
  .zip-region h4 { font-size: 11px; }
  .speed-file { flex: 1 1 100%; }
  .stat-row .stat .num { font-size: 22px; }
  table.plans th, table.plans td { padding: 7px 6px; font-size: 11.5px; }
}
