/* ============================================================
   KAOELECTRIC LLC — WEBSITE STYLESHEET
   Design: Clean Pacific Northwest Professional
   Colors: Navy #1B2A4A | Amber #F5A623 | White #F8F9FA
   Fonts: Montserrat (headings) | Open Sans (body)
   ============================================================ */

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

:root {
  --navy:   #1B2A4A;
  --navy2:  #243558;
  --amber:  #F5A623;
  --amber2: #e09510;
  --white:  #FFFFFF;
  --offwhite: #F8F9FA;
  --gray:   #6B7280;
  --dark:   #2D3748;
  --light-gray: #E5E7EB;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber2);
  border-color: var(--amber2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.80);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.topbar a { color: var(--amber); }
.topbar a:hover { text-decoration: underline; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; }
.logo-img-new { height: 48px; width: auto; max-width: 180px; object-fit: contain; display: block; flex-shrink: 0; }
/* Logo shine wrapper — no box, no overflow clip */
.logo-shine-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img-nav {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: icon-shine 4s ease-in-out infinite;
}

@keyframes icon-shine {
  0%   { filter: brightness(1)    drop-shadow(0 0 3px rgba(245,166,35,0.2)); }
  40%  { filter: brightness(1.35) drop-shadow(0 0 10px rgba(255,230,100,0.8)); }
  55%  { filter: brightness(1)    drop-shadow(0 0 3px rgba(245,166,35,0.2)); }
  100% { filter: brightness(1)    drop-shadow(0 0 3px rgba(245,166,35,0.2)); }
}

/* Shine sweeps across KAO text letters only */
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    105deg,
    #1B2A4A 0%, #1B2A4A 28%,
    #c8a84b 44%, #fff8c0 50%, #c8a84b 56%,
    #1B2A4A 72%, #1B2A4A 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shine 4s ease-in-out infinite;
}

.logo-accent {
  background: linear-gradient(
    105deg,
    #F5A623 0%, #F5A623 28%,
    #fff8c0 44%, #ffffff 50%, #fff8c0 56%,
    #F5A623 72%, #F5A623 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shine 4s ease-in-out infinite;
}

@keyframes text-shine {
  0%   { background-position: 200% center; }
  40%  { background-position: -50% center; }
  100% { background-position: -50% center; }
}


.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav a:hover { color: var(--amber); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
  margin-left: auto;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.88) 0%, rgba(27,42,74,0.65) 60%, rgba(27,42,74,0.40) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--amber);
  padding: 14px 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  letter-spacing: 0.03em;
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ---- SERVICES ---- */
.services { background: var(--offwhite); }
.services .section-title,
.services .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.services .section-eyebrow { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--amber);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* ---- ABOUT ---- */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-list {
  list-style: none;
  margin: 20px 0 28px;
}
.about-list li {
  padding: 6px 0;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

/* ---- PANEL SECTION ---- */
.panel-section { background: var(--offwhite); }
.panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.panel-text p { color: var(--gray); margin-bottom: 16px; }
.panel-text .btn { margin-top: 8px; }
.panel-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---- SERVICE AREAS ---- */
.areas { background: var(--navy); }
.areas .section-eyebrow { color: var(--amber); text-align: center; }
.areas .section-title { color: var(--white); text-align: center; }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.area-chip {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50px;
  padding: 8px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), border-color var(--transition);
}
.area-chip:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}
.areas-note {
  text-align: center;
  color: rgba(255,255,255,0.65);
  margin-top: 28px;
  font-size: 0.95rem;
}
.areas-note a { color: var(--amber); text-decoration: underline; }

/* ---- WHY CHOOSE US ---- */
.why { background: var(--white); }
.why .section-eyebrow, .why .section-title { text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  background: var(--offwhite);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p { color: var(--gray); font-size: 0.92rem; }

/* ---- CALCULATOR CTA ---- */
.calculator-cta { background: var(--navy2); }
.calc-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-right: 0;
}
.calc-visual {
  padding-right: 20px; /* prevent chatbot overlap */
}
.calc-text .section-eyebrow { color: var(--amber); }
.calc-text .section-title { color: var(--white); }
.calc-text p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.calc-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calc-feature {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--amber);
  padding: 12px 18px;
  color: var(--white);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---- CONTACT ---- */
.contact { background: var(--offwhite); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: var(--gray); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 2px; }
.contact-detail a, .contact-detail span { color: var(--gray); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--amber); }

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 12px;
}
.form-note a { color: var(--amber); }

/* ---- FOOTER ---- */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 14px; line-height: 1.6; }
.footer-brand .license { color: var(--amber); font-weight: 600; font-size: 0.85rem; margin-top: 8px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber); }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: var(--amber); }
.footer-contact a:hover { text-decoration: underline; }
.footer-btn { margin-top: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* ---- CHATBOT WIDGET ---- */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chatbot-toggle {
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245,166,35,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.55);
}
.chatbot-bubble {
  display: none;
  flex-direction: column;
  width: 340px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  border: 1px solid var(--light-gray);
}
.chatbot-bubble.open { display: flex; }
.chatbot-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.7;
}
.chatbot-close:hover { opacity: 1; }
.chatbot-messages {
  padding: 16px;
  height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--offwhite);
}
.chat-msg {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.chat-msg.bot {
  background: var(--white);
  border: 1px solid var(--light-gray);
  align-self: flex-start;
  color: var(--dark);
}
.chat-msg.user {
  background: var(--navy);
  color: var(--white);
  align-self: flex-end;
}
.chatbot-input-row {
  display: flex;
  border-top: 1px solid var(--light-gray);
}
.chatbot-input-row input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
}
.chatbot-input-row button {
  background: var(--amber);
  color: var(--navy);
  border: none;
  padding: 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.chatbot-input-row button:hover { background: var(--amber2); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-inner, .panel-inner, .calc-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-image img, .panel-image img { height: 280px; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    gap: 16px;
  }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .chatbot-bubble { width: calc(100vw - 48px); }
}

/* ---- FAQ SECTION ---- */
.faq-section { background: var(--offwhite); }
.faq-section .section-title { text-align: center; }
.faq-section .section-eyebrow { text-align: center; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.faq-item {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 18px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.65;
}
.faq-item p a { color: var(--amber); text-decoration: underline; }
@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ---- MISSING / ALIAS CLASSES ---- */
/* codes-section uses .code-card, .code-blue, .code-green, .code-badge, .code-link, .compliance-box */
.codes-section { background: var(--white); }
.codes-section .section-title { margin-bottom: 16px; }
.codes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.code-card {
  border-radius: 12px;
  padding: 32px 28px;
  color: var(--white);
}
.code-blue { background: var(--navy); }
.code-green { background: #1a5c3a; }
.code-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.code-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--white);
}
.code-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 14px; }
.code-card ul { padding-left: 0; }
.code-card ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.5;
}
.code-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--amber);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: opacity var(--transition);
}
.code-link:hover { opacity: 0.8; }
.compliance-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

/* calc-cta-section */
.calc-cta-section { background: var(--navy2); }
.calc-cta-section .section-eyebrow { color: var(--amber); }
.calc-cta-section .section-title { color: var(--white); }
.calc-text p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.calc-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.calc-features li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.calc-preview-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 24px 28px;
  font-family: 'Montserrat', sans-serif;
}
.calc-preview-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--amber);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.calc-preview-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.calc-preview-row.result { color: var(--white); font-weight: 700; }
.calc-preview-divider { border-top: 2px solid rgba(255,255,255,0.18); margin: 6px 0; }
.amber { color: var(--amber); }

/* why-section alias */
.why-section { background: var(--offwhite); }
.why-section .section-title { text-align: center; }
.why-section .section-eyebrow { text-align: center; }
.why-section .why-grid { margin-top: 40px; }

/* areas-section alias (light bg version) */
.areas-section { background: var(--offwhite); }
.areas-section .section-title { color: var(--navy); }
.areas-section .section-eyebrow { color: var(--amber); }
.areas-section .area-chip {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--light-gray);
  display: inline-block;
}
.areas-section .area-chip:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* contact-section alias */
.contact-section { background: var(--offwhite); }
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

/* about badges */
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}
.badge {
  background: var(--offwhite);
  border: 1.5px solid var(--light-gray);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--navy);
}

/* footer logo row */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* calc-visual hide on small screens */
@media (max-width: 900px) {
  .codes-grid { grid-template-columns: 1fr; }
  .calc-visual { display: none; }
}
