/* Universal Energy — shared design system
   Extracted from the Claude Design mockup (project "Smart energy templates") */

:root {
  /* Brand */
  --color-cyan: #00B4D8;
  --color-cyan-hover: #0098B8;
  --color-cyan-deep: #00849E;
  --color-cyan-text: #00A8CC;
  --color-amber: #F5A623;
  --color-amber-deep: #B8860F;

  /* Text / neutrals */
  --color-navy: #14202A;
  --color-navy-deep: #0E2530;
  --color-text-body: #41585F;
  --color-text-muted: #5B7178;
  --color-text-faint: #8098A0;

  /* Backgrounds / borders */
  --color-bg: #ffffff;
  --color-bg-cyan-tint: #F4FBFC;
  --color-bg-amber-tint: #FFFBF2;
  --color-border: #E7EEF1;
  --color-border-soft: #EEF2F4;

  /* Effects */
  --shadow-sm: 0 4px 16px rgba(0,60,72,.08);
  --shadow-md: 0 8px 24px rgba(0,60,72,.08);
  --shadow-lg: 0 16px 40px rgba(14,60,72,.22);
  --shadow-xl: 0 24px 64px rgba(0,60,72,.24);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 820px;
  --space-section-y: clamp(48px, 8vw, 72px);

  /* Motion */
  --transition-fast: .15s ease;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--color-navy);
  background: var(--color-bg);
}

a { color: var(--color-cyan-text); text-decoration: none; }
a:hover { color: var(--color-cyan-deep); }

/* Accessible focus ring for every interactive element site-wide */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

.wrap { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 40px; }

/* Nav */
.navbar { border-bottom: 1px solid var(--color-border-soft); position: sticky; top: 0; background: #fff; z-index: 30; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 140px; position: relative; }
.logo-img { height: 128px; width: auto; max-width: 100%; object-fit: contain; }
.navlink { font-size: 15px; font-weight: 500; color: var(--color-navy); transition: color var(--transition-fast); }
.navlink:hover { color: var(--color-cyan-text); }
.navlink.active { color: var(--color-cyan-text); }
.nav-links-desktop { display: flex; align-items: center; gap: 32px; }
.nav-links-desktop details { position: relative; }

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

.services-dropdown { position: absolute; top: 30px; left: 0; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: 0 12px 32px rgba(0,60,72,.14); padding: 10px; display: flex; flex-direction: column; min-width: 230px; z-index: 30; }
.droplink { padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--color-navy); display: block; }
.droplink:hover { background: var(--color-bg-cyan-tint); color: var(--color-cyan-text); }
.droplink.active { color: var(--color-cyan-text); font-weight: 700; }

.nav-mobile { display: none; }
.hamburger-summary { list-style: none; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: 20px; }
.hamburger-summary:hover { background: var(--color-bg-cyan-tint); }
.mobile-menu-panel { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-border); box-shadow: 0 16px 32px rgba(0,60,72,.1); padding: 12px 20px 20px; display: flex; flex-direction: column; z-index: 40; max-height: 80vh; overflow-y: auto; }
.mobile-menu-panel > a { padding: 14px 2px; font-size: 16px; font-weight: 600; color: var(--color-navy); border-bottom: 1px solid var(--color-bg-cyan-tint); min-height: 44px; display: flex; align-items: center; }
.mobile-services-summary { padding: 14px 2px; font-size: 16px; font-weight: 600; color: var(--color-navy); list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--color-bg-cyan-tint); min-height: 44px; }
.mobile-services-sub { display: flex; flex-direction: column; padding: 2px 0 8px 8px; }
.mobile-services-sub a { font-size: 14px; font-weight: 500; color: var(--color-text-body); padding: 12px 2px; border-bottom: none; display: block; }

/* Buttons */
.btn-primary { background: var(--color-cyan); color: #fff; font-weight: 600; border-radius: var(--radius-sm); padding: 12px 24px; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: none; cursor: pointer; font-family: inherit; min-height: 44px; transition: background var(--transition-fast); }
.btn-primary:hover { background: var(--color-cyan-hover); color: #fff; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.btn-secondary { background: #fff; color: #14202a; font-weight: 600; border-radius: 8px; padding: 13px 26px; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; border: 1px solid #D8E2E5; cursor: pointer; font-family: inherit; }
.btn-secondary:hover { border-color: #00B4D8; color: #00A8CC; }

/* Illustration placeholder */
.stripe-illo { background: repeating-linear-gradient(135deg,#EAF7FA,#EAF7FA 10px,#F4FBFC 10px,#F4FBFC 20px); border: 1px dashed #B9E4EE; border-radius: 16px; color: #5C8A96; font-family: ui-monospace, Menlo, monospace; font-size: 13px; text-align: center; display: flex; align-items: center; justify-content: center; }

/* Cards / tiles */
.tile { border: 1px solid #E7EEF1; border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: inherit; }
.tile:hover { box-shadow: 0 8px 24px rgba(0,60,72,.08); }
.svc-card { border: 1px solid #E7EEF1; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s; text-decoration: none; color: inherit; }
.svc-card:hover { box-shadow: 0 8px 24px rgba(0,60,72,.08); }
.svc-link { font-size: 14px; font-weight: 700; color: #00A8CC; display: inline-flex; align-items: center; gap: 6px; }
.icon-tint-cyan { width: 40px; height: 40px; border-radius: 9px; background: #E6F7FB; flex-shrink: 0; }
.icon-tint-amber { width: 40px; height: 40px; border-radius: 9px; background: #FDF2E2; flex-shrink: 0; }

.stepnum { width: 44px; height: 44px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.stepnum.sm { width: 40px; height: 40px; font-size: 15px; }
.stepnum.cyan { background: #00B4D8; }
.stepnum.amber { background: #F5A623; }

.feat { display: flex; gap: 14px; align-items: flex-start; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; }

/* Form fields */
.field-label { font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; }
.field { width: 100%; box-sizing: border-box; border: 1px solid #D8E2E5; border-radius: 8px; padding: 12px 14px; font-size: 15px; font-family: inherit; color: #14202a; }
.field:focus { outline: none; border-color: var(--color-cyan); box-shadow: 0 0 0 3px rgba(0,180,216,.25); }

/* Homepage quote-start row */
.quote-form-row { display: grid; grid-template-columns: minmax(190px, 1.15fr) minmax(220px, 1fr) auto; width: 680px; max-width: 100%; border: 1px solid #D6E8EC; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,60,72,.08); margin-top: 6px; background: #fff; }
.qf-input { width: 100%; min-width: 0; border: none; padding: 0 20px; height: 68px; font-size: 17px; font-family: inherit; color: #14202a; outline: none; background: #fff; }
.qf-input:focus { box-shadow: inset 0 0 0 2px var(--color-cyan); }
.qf-input::placeholder { color: #8098A0; }
.qf-select { width: 100%; min-width: 0; border: none; border-left: 1px solid #E3EBED; padding: 0 18px; height: 68px; font-size: 17px; font-family: inherit; color: #14202a; background: #fff; outline: none; cursor: pointer; }
.qf-select:focus { box-shadow: inset 0 0 0 2px var(--color-cyan); }
.qf-error { font-size: 13px; color: #fff; background: #C0392B; border-radius: 6px; padding: 6px 12px; margin-top: 8px; text-align: center; width: fit-content; margin-left: auto; margin-right: auto; }

.hero-price-preview { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; padding: 12px 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px); animation: price-fade-in .25s ease; }
.hero-price-preview-label { font-size: 13px; color: #C7D9DE; }
.hero-price-preview-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800; color: #fff; }
@keyframes price-fade-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-price-preview { animation: none; } }

/* Section rhythm (used by new homepage sections; existing inline-styled
   sections on other pages are unaffected since this is an additive class) */
.section { padding: var(--space-section-y) 0; }
#what-we-install { scroll-margin-top: 150px; }
.section-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .05em; color: var(--color-cyan-deep); margin: 0 0 10px; text-transform: uppercase; }
.section-title { font-size: clamp(24px, 3vw, 30px); font-weight: 800; margin: 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.section-link { font-size: 15px; font-weight: 600; white-space: nowrap; }

/* Hero — bold dark "energy at night" treatment */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background:
    radial-gradient(60% 70% at 82% 8%, rgba(0,180,216,.35) 0%, rgba(0,180,216,0) 60%),
    radial-gradient(50% 60% at 8% 95%, rgba(245,166,35,.22) 0%, rgba(245,166,35,0) 65%),
    linear-gradient(160deg, #0E2530 0%, #0A1B24 55%, #071319 100%);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; min-width: 0; max-width: 100%; }
.hero-copy h1 { max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: #8FE9FA; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(6px); }
.hero-sub { font-size: 19px; color: #C7D9DE; max-width: 480px; margin: 0; line-height: 1.55; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; margin-top: 4px; }
.hero-secondary-link { font-size: 14px; font-weight: 600; color: #AFC5CB; display: inline-flex; align-items: center; gap: 4px; }
.hero-secondary-link:hover { color: #8FE9FA; }

.hero-visual { position: relative; width: 100%; max-width: 520px; margin: 0 auto; }
.hero-visual svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 60px rgba(0,180,216,.28)); }

/* Day/night hero scene — toggled by JS based on real sunrise/sunset (GMT),
   scoped to .hero-visual only so the hero's dark blue gradient never changes;
   just the illustrated scene swaps its sun for a moon after sunset.
   Night is the default/fallback so the page looks right before JS runs. */
.hero-scene-night { display: block; }
.hero-scene-day { display: none; }
.hero-visual.is-day .hero-scene-night { display: none; }
.hero-visual.is-day .hero-scene-day { display: block; }

/* Floating glass chips — decorative, hidden from assistive tech (info is
   already conveyed by the headline and the "What we install" section) */
.hero-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  animation: chip-float 5s ease-in-out infinite;
}
.hero-chip svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-chip-solar { top: 12%; left: 6%; animation-delay: 1.2s; }
.hero-chip-battery { top: 50%; left: 4%; animation-delay: 2.4s; }
.hero-chip-ev { top: 56%; left: 74%; animation-delay: 0s; }
@keyframes chip-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.energy-flow-line { stroke-dasharray: 7 7; animation: flow-dash 2.6s linear infinite; }
@keyframes flow-dash { to { stroke-dashoffset: -28; } }
.energy-pulse-dot { animation: pulse-glow 2s ease-in-out infinite; }
@keyframes pulse-glow { 0%, 100% { opacity: .5; r: 3; } 50% { opacity: 1; r: 5; } }
@media (prefers-reduced-motion: reduce) {
  .energy-flow-line, .energy-pulse-dot, .hero-chip { animation: none; }
}

/* Energy Insights — Signal Dashboard hero */
.insights-hero .hero-copy h1 { max-width: 13ch; }
.insights-hero .hero-sub { max-width: 540px; }
.insights-hero-visual { max-width: 560px; min-height: 460px; }
.insights-dashboard-svg { position: absolute; inset: 0; z-index: 1; filter: drop-shadow(0 30px 60px rgba(0,180,216,.28)); }
.insights-advisor-character { position: absolute; left: -2%; bottom: 10%; z-index: 3; width: min(50%, 280px); max-height: 380px; object-fit: contain; filter: drop-shadow(0 26px 34px rgba(0,0,0,.42)); }
.insights-chip-solar { top: 5%; left: 36%; animation-delay: .8s; }
.insights-chip-tariff { top: 72%; right: 2%; left: auto; animation-delay: 2s; }

/* Contact — Amp switchboard hero */
.contact-hero .hero-copy h1 { max-width: 12ch; }
.contact-hero .hero-sub { max-width: 520px; }
.contact-hero-visual { max-width: 560px; }
.contact-amp-visual { min-height: 460px; display: flex; align-items: center; justify-content: center; }
.contact-switchboard-svg { position: absolute; inset: 0; z-index: 1; filter: drop-shadow(0 30px 60px rgba(0,180,216,.24)); opacity: .92; }
.contact-amp-character { position: relative; z-index: 2; width: min(76%, 390px); max-height: 440px; object-fit: contain; filter: drop-shadow(0 28px 38px rgba(0,0,0,.38)); }

/* About — marketing character team hero */
.about-hero .hero-copy h1 { max-width: 13ch; }
.about-hero .hero-sub { max-width: 540px; }
.about-team-visual { max-width: 620px; min-height: 460px; display: flex; align-items: flex-end; justify-content: center; }
.about-team-backdrop { position: absolute; inset: 0; z-index: 1; opacity: .95; filter: drop-shadow(0 30px 60px rgba(0,180,216,.22)); }
.about-team-image { position: relative; z-index: 2; width: min(112%, 620px); max-height: 430px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 28px 42px rgba(0,0,0,.42)); }

/* Services — marketing character hero */
.services-hero .hero-sub { max-width: 540px; }
.services-character-visual { max-width: 560px; min-height: 460px; display: flex; align-items: flex-end; justify-content: center; }
.services-character-backdrop { position: absolute; inset: 0; z-index: 1; opacity: .95; filter: drop-shadow(0 30px 60px rgba(0,180,216,.24)); }
.services-character-image { position: relative; z-index: 2; width: min(76%, 390px); max-height: 435px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 28px 40px rgba(0,0,0,.4)); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0,1fr); gap: 32px; }
  .hero-copy { align-items: center; text-align: center; min-width: 0; width: 100%; }
  .hero-sub { max-width: 560px; }
  .hero-actions { align-items: center; min-width: 0; }
  .hero-visual { max-width: 100%; width: 100%; margin-top: 8px; min-width: 0; }
  .hero-chip { font-size: 12px; padding: 7px 12px 7px 8px; }
  .insights-hero .hero-copy h1 { max-width: 18ch; }
  .insights-hero-visual { max-width: 520px; min-height: 430px; }
  .insights-advisor-character { left: 1%; bottom: 12%; width: min(44%, 230px); max-height: 330px; }
  .insights-chip-solar { left: 42%; }
  .insights-chip-tariff { right: 4%; }
  .contact-hero .hero-copy h1 { max-width: 16ch; }
  .contact-hero-visual { max-width: 520px; }
  .contact-amp-visual { min-height: 430px; }
  .contact-amp-character { width: min(70%, 350px); max-height: 410px; }
  .about-hero .hero-copy h1 { max-width: 18ch; }
  .about-team-visual { max-width: 560px; min-height: 390px; }
  .about-team-image { width: min(112%, 560px); max-height: 360px; }
  .services-character-visual { max-width: 520px; min-height: 405px; }
  .services-character-image { width: min(72%, 350px); max-height: 385px; }
}
@media (max-width: 480px) {
  .hero-chip span { display: none; }
  .hero-chip { padding: 8px; border-radius: 50%; }
  .insights-chip-solar { top: 12%; left: 70%; }
  .insights-chip-tariff { top: 70%; right: 6%; }
  .insights-hero-visual { min-height: 360px; }
  .insights-advisor-character { left: 0; bottom: 12%; width: min(54%, 205px); max-height: 290px; }
  .contact-amp-visual { min-height: 360px; }
  .contact-amp-character { width: min(84%, 310px); max-height: 350px; }
  .about-team-visual { min-height: 300px; }
  .about-team-image { width: min(132%, 440px); max-height: 285px; }
  .services-character-visual { min-height: 340px; }
  .services-character-image { width: min(84%, 300px); max-height: 320px; }
}

/* Scroll-reveal utility — progressive enhancement only. Content is fully
   visible with no JS/CSS at all; the .js class is added by an early inline
   script, so nothing ever depends on JS for visibility. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Trust strip */
.trust-strip { padding: 22px 0; background: var(--color-bg-cyan-tint); border-bottom: 1px solid var(--color-border); }
.trust-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 36px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--color-navy); white-space: nowrap; }
.trust-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: var(--color-cyan); color: #fff; font-size: 12px; font-weight: 800; flex-shrink: 0; }

.brand-strip { padding: 32px 0; background: #fff; border-bottom: 1px solid var(--color-border-soft); }
.brand-strip-scroll { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.brand-strip-track { display: flex; align-items: center; gap: 25vw; width: max-content; animation: brand-scroll 40s linear infinite; }
.brand-strip-track img { height: 40px; width: auto; object-fit: contain; flex-shrink: 0; }
@keyframes brand-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brand-strip-track { animation: none; } }

/* How it works — infographic tiles */
.journey-path { max-width: 1080px; height: 70px; margin: 0 auto 4px; }
.journey-path svg { width: 100%; height: 100%; display: block; }
@media (max-width: 1024px) {
  .journey-path { display: none; }
}
.journey-grid { max-width: 1080px; margin: 0 auto; }
.journey-tile { position: relative; background: #fff; border: 1px solid var(--color-navy); border-radius: var(--radius-lg); padding: 32px 22px 26px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; transition: transform var(--transition-fast), box-shadow var(--transition-fast); }
.journey-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.journey-tile-icon { position: relative; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.journey-tile-icon svg { width: 28px; height: 28px; }
.journey-tile-icon.cyan { background: linear-gradient(150deg, var(--color-cyan), var(--color-cyan-deep)); box-shadow: 0 10px 22px rgba(0,132,158,.3); }
.journey-tile-icon.amber { background: linear-gradient(150deg, var(--color-amber), #C97D0E); box-shadow: 0 10px 22px rgba(184,110,15,.3); }
.journey-tile h3 { font-size: 17px; font-weight: 700; }
.journey-tile-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; }
.journey-tile:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -19px;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--color-border);
  border-right: 3px solid var(--color-border);
  transform: rotate(45deg);
  z-index: 2;
}
@media (max-width: 1024px) {
  .journey-tile::after { display: none; }
}

/* Service tiles — photo-led cards (homepage only; .tile's base rule and the
   original 40px .icon-tint-cyan/.icon-tint-amber used by other pages are
   untouched, defined earlier in this file) */
.tile { transition: box-shadow var(--transition-fast), transform var(--transition-fast); padding: 0; overflow: hidden; }
.tile:hover { transform: translateY(-3px); }
.tile-photo-card { gap: 0; }
.tile-photo-wrap { width: 100%; aspect-ratio: 5 / 3; background: var(--color-bg-cyan-tint); overflow: hidden; }
.tile-photo { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--color-bg-cyan-tint); }
.tile-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tile h3 { font-size: 17px; font-weight: 700; color: var(--color-navy); }
.tile-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; flex: 1; }
.tile-price { font-size: 13px; font-weight: 700; color: var(--color-cyan-deep); }
.tile-cta-row { display: flex; align-items: center; gap: 18px; margin-top: 4px; }
.tile-cta-primary { font-size: 14px; font-weight: 700; color: #fff; background: var(--color-cyan); padding: 9px 16px; border-radius: var(--radius-sm); transition: background var(--transition-fast); }
.tile-cta-primary:hover { background: var(--color-cyan-hover); color: #fff; }
.tile-cta-secondary { font-size: 14px; font-weight: 600; color: var(--color-text-muted); }
.tile-cta-secondary:hover { color: var(--color-cyan-deep); }

/* Homepage service tiles — mirrors the .svc-card recipe used on services.html
   (bordered rounded card, photo flush at top, padded content below) per site
   owner feedback after an earlier full-bleed "editorial" version didn't land. */
.tile-editorial { border: 1px solid var(--color-border); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: none; }
.tile-editorial:hover { box-shadow: 0 8px 24px rgba(0,60,72,.08); transform: none; }
.tile-editorial .tile-photo-wrap { position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: 0; background: none; }
.tile-editorial .tile-photo { transition: filter .25s ease; }
.tile-editorial:hover .tile-photo { filter: grayscale(1) brightness(.55); }
.tile-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.tile-editorial:hover .tile-hover-overlay { opacity: 1; }
.tile-hover-overlay p { margin: 0; color: #fff; font-size: 14px; line-height: 1.55; }
.tile-hover-overlay ul { margin: 12px 0 0; padding-left: 18px; color: #fff; font-size: 13px; line-height: 1.7; }
.tile-editorial .tile-body { padding: 24px; gap: 10px; }
.tile-editorial h3 { font-size: 18px; font-weight: 700; color: var(--color-navy); }
.tile-editorial .tile-price { color: var(--color-cyan-deep); font-size: 13px; font-weight: 700; }
.tile-editorial .tile-desc { font-size: 14px; line-height: 1.55; }
.tile-editorial .tile-cta-row { gap: 18px; margin-top: 4px; }
.tile-editorial .tile-cta-secondary {
  font-size: 14px;
  font-weight: 700;
  color: #00A8CC;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tile-editorial .tile-cta-secondary:hover { color: var(--color-cyan-deep); }

/* Why-us cards */
.why-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.why-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(150deg, var(--color-cyan), var(--color-cyan-deep)); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,132,158,.28); }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 16px; font-weight: 700; }
.why-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; max-width: 260px; }

/* Insight card thumbnails (replace the old placeholder illustration boxes) */
.insight-thumb { height: 140px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.insight-thumb svg { width: 40px; height: 40px; }
.insight-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insight-thumb-cyan { background: linear-gradient(150deg, var(--color-bg-cyan-tint), #E1F4F8); }
.insight-thumb-amber { background: linear-gradient(150deg, var(--color-bg-amber-tint), #FBE9C8); }
.post-title { font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--color-navy); }
.post-meta { font-size: 13px; color: var(--color-text-muted); }

/* Footer accent */
.footer-accent { height: 3px; background: linear-gradient(90deg, var(--color-cyan), var(--color-amber)); }

/* Wizard option buttons */
.opt-btn { border: 2px solid #E7EEF1; border-radius: 12px; padding: 20px 24px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: inherit; background: #fff; color: #14202a; text-align: left; width: 100%; }
.opt-btn:hover { border-color: #00B4D8; }
.opt-btn.selected { border-color: #00B4D8; background: #F4FBFC; color: #00849E; }

/* Multi-select checkbox variant of .opt-btn (more than one can be selected at once) */
.chk-btn { display: flex; align-items: center; gap: 12px; border: 2px solid #E7EEF1; border-radius: 12px; padding: 16px 20px; font-size: 15px; font-weight: 600; cursor: pointer; color: #14202a; }
.chk-btn:hover { border-color: #00B4D8; }
.chk-btn.selected { border-color: #00B4D8; background: #F4FBFC; color: #00849E; }
.chk-btn input { width: 18px; height: 18px; accent-color: #00B4D8; flex-shrink: 0; }

/* File upload field — filename-only capture, no storage backend yet */
.file-field { border: 2px dashed #D8E2E5; border-radius: 10px; padding: 16px; display: flex; align-items: center; gap: 12px; }
.file-field input[type="file"] { font-size: 13px; font-family: inherit; color: #41585F; flex: 1; min-width: 0; }
.file-field-name { font-size: 13px; font-weight: 700; color: #00849E; white-space: nowrap; }
.file-remove-btn { display: none; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; border: none; background: #F4FBFC; color: #5B7178; font-size: 13px; line-height: 1; cursor: pointer; flex-shrink: 0; }
.file-remove-btn:hover { background: #E7EEF1; color: #C0392B; }
.file-remove-btn.is-visible { display: flex; }
.charger-card { border: 2px solid #E7EEF1; border-radius: 14px; padding: 0; display: flex; flex-direction: column; overflow: hidden; transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.charger-card:hover { box-shadow: var(--shadow-sm); }
.charger-card.selected { border-color: #00B4D8; }
.charger-card.selected .charger-card-body { background: #F4FBFC; }
.charger-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.charger-photo-wrap { position: relative; aspect-ratio: 1 / 1; background: #F4FBFC; cursor: zoom-in; }
.charger-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.charger-photo-wrap:focus-visible { outline: 2px solid var(--color-cyan); outline-offset: -2px; }

.charger-badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 11px; font-weight: 800; letter-spacing: .04em; color: #00849E; background: rgba(255,255,255,.94); padding: 5px 10px; border-radius: 6px; width: fit-content; box-shadow: 0 2px 8px rgba(0,0,0,.12); }

.charger-icon-row { position: absolute; right: 10px; bottom: 10px; z-index: 2; display: flex; gap: 8px; }
.charger-zoom-hint, .charger-info-hint { width: 30px; height: 30px; border-radius: 50%; background: rgba(20,32,42,.6); color: #fff; border: none; display: flex; align-items: center; justify-content: center; opacity: .8; cursor: pointer; transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast); }
.charger-zoom-hint svg, .charger-info-hint svg { width: 15px; height: 15px; }
.charger-photo-wrap:hover .charger-zoom-hint,
.charger-photo-wrap:hover .charger-info-hint,
.charger-info-hint:hover, .charger-info-hint:focus-visible { opacity: 1; transform: scale(1.08); }
.charger-info-hint:hover, .charger-info-hint:focus-visible { background: var(--color-cyan); }

.charger-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.charger-name { font-size: 16px; font-weight: 700; line-height: 1.3; }
.charger-price { font-size: 19px; font-weight: 800; color: var(--color-navy); white-space: nowrap; flex-shrink: 0; }
.charger-spec { font-size: 13px; color: #5B7178; line-height: 1.5; }

/* Charger "Added information" slide-in drawer */
.info-drawer-overlay { position: fixed; inset: 0; background: rgba(14,37,48,.5); z-index: 110; display: none; }
.info-drawer-overlay.is-open { display: block; }
.info-drawer { position: fixed; top: 0; left: 0; height: 100%; width: 440px; max-width: 88vw; background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.28); overflow-y: auto; transform: translateX(-100%); transition: transform .3s ease; padding: 28px 28px 40px; }
.info-drawer-overlay.is-open .info-drawer { transform: translateX(0); }
.info-drawer-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: none; background: #F4FBFC; color: #41585F; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.info-drawer-close:hover { background: #E7EEF1; }
.info-drawer-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .05em; color: var(--color-cyan-deep); text-transform: uppercase; margin: 0 0 6px; }
.info-drawer-name { font-size: 22px; font-weight: 800; margin: 0 0 4px; padding-right: 30px; }
.info-drawer-tagline { font-size: 15px; font-weight: 700; color: #00849E; margin: 0 0 18px; line-height: 1.4; }
.info-drawer-intro { font-size: 15px; line-height: 1.7; color: #2C3B42; margin: 0 0 22px; }
.info-drawer-label { font-size: 12.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--color-cyan-deep); margin: 0 0 6px; }
.info-drawer-section { margin-bottom: 20px; }
.info-drawer-section p { font-size: 14.5px; line-height: 1.7; color: #41585F; margin: 0; }
.info-drawer-bestfor { background: #F4FBFC; border: 1px solid #D6EEF3; border-radius: 12px; padding: 16px 18px; margin-top: 4px; }
.info-drawer-bestfor .info-drawer-label { color: #00849E; }
.info-drawer-bestfor p { font-size: 14.5px; line-height: 1.6; color: #14202A; margin: 0; font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .info-drawer { transition: none; } }
@media (max-width: 640px) {
  .info-drawer { width: 100%; max-width: 100%; }
}

/* Charger image lightbox */
.modal-dialog-image { max-width: 560px; padding: 20px; text-align: center; }
.modal-dialog-image img { width: 100%; height: auto; border-radius: 10px; display: block; background: #F4FBFC; }
.lightbox-caption { margin-top: 14px; font-size: 15px; font-weight: 700; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Footer */
.site-footer { padding: 56px 0 32px; background: #0E2530; color: #C7D6DA; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid a { color: #C7D6DA; transition: color var(--transition-fast); }
.footer-grid a:hover { color: var(--color-cyan); }
.footer-logo { height: 26px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.page-home .footer-logo { height: 52px; }
.footer-col-title { font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }

.cta-band { background: #00B4D8; padding: 56px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; }
.cta-band-text { font-size: 24px; font-weight: 800; color: #fff; max-width: 480px; }
.cta-band-btn { background: #fff; color: #00A8CC; font-weight: 700; border-radius: 8px; padding: 14px 28px; font-size: 15px; display: inline-flex; transition: transform var(--transition-fast); }
.cta-band-btn:hover { color: #00A8CC; transform: translateY(-2px); }

/* Modal / pop-up */
.modal-overlay { position: fixed; inset: 0; background: rgba(14,37,48,.5); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal-dialog { background: #fff; border-radius: 16px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 32px; position: relative; box-shadow: 0 24px 64px rgba(0,60,72,.24); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: none; background: #F4FBFC; color: #41585F; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: #E7EEF1; }
.modal-disclosure { font-size: 14px; color: #5B7178; line-height: 1.6; background: #FFFBF2; border: 1px solid #F0D69A; border-radius: 10px; padding: 14px 16px; margin: 16px 0 24px; }

/* Solar/amber variant illustration */
.stripe-illo-amber { background: repeating-linear-gradient(135deg,#FDF2E2,#FDF2E2 10px,#FFFBF2 10px,#FFFBF2 20px); border: 1px dashed #F0D69A; border-radius: 16px; color: #8A6A28; font-family: ui-monospace, Menlo, monospace; font-size: 13px; text-align: center; display: flex; align-items: center; justify-content: center; }

/* Energy Tariffs page — Energy Systems Lab hero */
.lab-hero { background: linear-gradient(160deg, #0E2530 0%, #0A1B24 100%); padding: 64px 0; color: #fff; overflow: hidden; }
.lab-hero-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: center; }
.lab-hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.lab-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .05em; color: #8FE9FA; }
.lab-hero-copy h1 { font-size: clamp(28px, 3.4vw, 38px); line-height: 1.15; font-weight: 800; margin: 0; max-width: 22ch; }
.lab-sub { font-size: 16px; color: #C7D9DE; margin: 0; max-width: 46ch; line-height: 1.55; }

.lab-toggles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.lab-toggle { display: inline-flex; align-items: center; gap: 8px; font-family: inherit; font-size: 14px; font-weight: 600; color: #C7D9DE; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.18); border-radius: 999px; padding: 10px 16px; cursor: pointer; transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast); }
.lab-toggle svg { width: 17px; height: 17px; flex-shrink: 0; }
.lab-toggle:hover { border-color: rgba(255,255,255,.4); }
.lab-toggle.is-on { background: rgba(0,180,216,.16); border-color: var(--color-cyan); color: #fff; }

.lab-readout { margin-top: 18px; padding: 18px 22px; border-radius: var(--radius-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); width: 100%; max-width: 420px; }
.lab-readout-label { font-size: 12.5px; color: #9FC3C9; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.lab-readout-value { font-size: 40px; font-weight: 800; line-height: 1.1; margin-top: 6px; }
.lab-readout-unit { font-size: 16px; font-weight: 600; color: #9FC3C9; margin-left: 4px; }
.lab-readout-breakdown { font-size: 13px; color: #9FC3C9; margin-top: 8px; }
.lab-readout-note { font-size: 13px; color: #8FE9FA; margin-top: 6px; font-weight: 600; }

.lab-disclaimer { font-size: 12.5px; color: #7C949A; margin: 4px 0 0; max-width: 50ch; line-height: 1.5; }
.lab-disclaimer a { color: #8FE9FA; }

.lab-hero-visual { width: 100%; max-width: 520px; margin: 0 auto; }
.lab-hero-visual svg { width: 100%; height: auto; display: block; }
.lab-el { opacity: .18; transition: opacity .25s ease; }
.lab-el.is-active { opacity: 1; }
.lab-flow { stroke-dasharray: 7 7; animation: flow-dash 2.6s linear infinite; }
@media (prefers-reduced-motion: reduce) { .lab-flow { animation: none; } }

@media (max-width: 900px) {
  .lab-hero-inner { grid-template-columns: 1fr; }
  .lab-hero-copy { align-items: center; text-align: center; }
  .lab-toggles { justify-content: center; }
  .lab-readout { margin-left: auto; margin-right: auto; }
  .lab-hero-visual { max-width: 380px; order: -1; }
}

/* Energy Tariffs page */
.knowcard { border: 1px solid #E7EEF1; border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.secnum { width: 34px; height: 34px; border-radius: 9px; background: #00B4D8; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.secnum.amber { background: #F5A623; }
.row { display: flex; gap: 16px; align-items: flex-start; }
.chip { display: inline-flex; padding: 5px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; }

/* Energy Insights page */
.filter-chip { padding: 8px 16px; border-radius: 999px; border: 1px solid #E7EEF1; font-size: 14px; font-weight: 600; color: #41585F; cursor: pointer; }
.filter-chip:hover { border-color: #00B4D8; color: #00A8CC; }
.filter-chip.is-active { background: #14202A; color: #fff; border-color: #14202A; }
.filter-chip.is-active:hover { color: #fff; }
.post-card { display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; }
.post-card.is-hidden { display: none; }
.tag { font-size: 12px; font-weight: 700; letter-spacing: .04em; }

/* Article page */
.article-hero-illo { width: 100%; height: 280px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--color-bg-cyan-tint), #EAF7FA); overflow: hidden; }
.article-hero-illo-amber { background: linear-gradient(135deg, var(--color-bg-amber-tint), #FBE9C8); }
.article-hero-illo svg { width: 100%; height: 100%; display: block; }
@media (max-width: 640px) {
  .article-hero-illo { height: 200px; }
}
.article-cta { margin-top: 40px; padding: 22px 24px; border-radius: var(--radius-lg); background: var(--color-bg-cyan-tint); border: 1px solid #D6EEF3; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* Trade Portal page */
.btn-outline { border: 1.5px solid #fff; color: #fff; font-weight: 600; border-radius: 8px; padding: 12px 24px; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.req-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid #EEF2F4; }
.check { width: 22px; height: 22px; border-radius: 50%; background: #E6F7FB; color: #00849E; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.expansion-banner { background: #F5A623; color: #3A2500; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 16px; font-size: 13px; font-weight: 600; text-align: center; position: relative; }
.expansion-banner-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); cursor: pointer; font-size: 16px; line-height: 1; padding: 2px 4px; opacity: .7; background: none; border: none; color: inherit; font-family: inherit; }

/* Responsive */
@media (max-width: 1024px) {
  .nav-links-desktop, .nav-cta-desktop { display: none !important; }
  .nav-mobile { display: block; }
  .wrap, .wrap-narrow { padding: 0 24px; }
  .grid-3, .grid-6, .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .navbar-inner { height: 72px; }
  .logo-img { height: 44px; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-6, .grid-4 { grid-template-columns: 1fr !important; }
  .hero-row { flex-direction: column !important; }
  .hero-row > * { width: 100% !important; }
  .cta-band-inner { flex-direction: column !important; text-align: center; gap: 18px !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  h1 { font-size: 30px !important; line-height: 1.25 !important; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .hero-full { min-height: auto !important; padding: 40px 0 !important; }
  .quote-form-row { grid-template-columns: 1fr; }
  .quote-form-row .qf-select { border-left: none !important; border-top: 1px solid #E3EBED; }
  .contact-grid { grid-template-columns: 1fr !important; }
  #charger-grid, #package-grid { grid-template-columns: 1fr !important; }
}

/* Chat Widget */
#chat-widget-bubble { position: fixed; right: 20px; bottom: 20px; z-index: 115; width: 56px; height: 56px; border-radius: 50%; background: var(--color-cyan); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 8px 24px rgba(0,60,72,.24); cursor: pointer; transition: background var(--transition-fast); }
#chat-widget-bubble:hover { background: var(--color-cyan-hover); }
#chat-widget-panel { position: fixed; right: 20px; bottom: 88px; z-index: 115; width: 340px; max-width: calc(100vw - 40px); max-height: 480px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: 0 20px 48px rgba(0,60,72,.22); display: flex; flex-direction: column; overflow: hidden; }
#chat-widget-panel[hidden] { display: none; }
#chat-widget-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--color-navy); color: #fff; font-weight: 700; font-size: 15px; }
#chat-widget-close { background: none; border: none; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; padding: 0 4px; font-family: inherit; }
#chat-widget-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; min-height: 200px; }
.chat-widget-message { font-size: 14px; line-height: 1.5; padding: 10px 14px; border-radius: var(--radius-md); max-width: 85%; }
.chat-widget-message-user { align-self: flex-end; background: var(--color-cyan); color: #fff; }
.chat-widget-message-assistant { align-self: flex-start; background: var(--color-bg-cyan-tint); color: var(--color-navy); }
.chat-widget-loading { color: var(--color-text-muted); font-style: italic; }
.chat-widget-sources { align-self: flex-start; display: flex; flex-direction: column; gap: 4px; margin-top: -6px; max-width: 85%; }
.chat-widget-sources a { font-size: 12px; color: var(--color-cyan-text); }
#chat-widget-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--color-border-soft); }
#chat-widget-input { flex: 1; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 10px 12px; font-size: 14px; font-family: inherit; color: var(--color-navy); }
#chat-widget-input:focus { outline: 2px solid var(--color-cyan); outline-offset: -1px; }
#chat-widget-send { background: var(--color-cyan); color: #fff; font-weight: 600; border-radius: var(--radius-sm); padding: 0 16px; font-size: 14px; border: none; cursor: pointer; font-family: inherit; }
#chat-widget-send:disabled, #chat-widget-input:disabled { opacity: .6; cursor: not-allowed; }
@media (max-width: 640px) {
  #chat-widget-panel { right: 12px; bottom: 80px; }
  #chat-widget-bubble { right: 12px; bottom: 12px; }
}
