
:root{
  --bg:#071427;
  --panel:#101d36;
  --panel-soft:#101d36;
  --panel-light:#ffffff;
  --panel-muted:#f4f7fb;
  --line:rgba(17,39,80,.12);
  --line-strong:rgba(255,255,255,.14);
  --ink:#081427;
  --text:#1d2b45;
  --muted:#5f6f89;
  --white:#ffffff;
  --blue:#2f80ff;
  --teal:#13c8b8;
  --amber:#ffbf47;
  --orange:#ff7a59;
  --radius:24px;
  --radius-lg:32px;
  --shadow:0 20px 60px rgba(7,20,39,.12);
  --shadow-soft:0 14px 36px rgba(7,20,39,.08);
  --container:1180px;
  --header-h:88px;
  --accent:var(--blue);
  --accent-2:var(--teal);
  --accent-glow:rgba(47,128,255,.18);
  --hero-bg-1:#081427;
  --hero-bg-2:#102a56;
  --hero-bg-3:#153e7a;
  --section-space:104px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text);
  background:#f5f8fc;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
::selection{background:rgba(47,128,255,.18)}
.container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
.section{padding:var(--section-space) 0}
.section-tight{padding:28px 0}
.section-soft{
  background:linear-gradient(180deg,#ffffff 0%,#f4f8fd 100%);
}
.section-dark{
  color:var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(47,128,255,.18), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(255,191,71,.18), transparent 18%),
    radial-gradient(circle at 82% 80%, rgba(19,200,184,.18), transparent 22%),
    linear-gradient(135deg,var(--hero-bg-1) 0%, var(--hero-bg-2) 52%, var(--hero-bg-3) 100%);
}
.section-cta{
  position:relative;
  overflow:hidden;
  padding:88px 0;
  color:#fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(47,128,255,.24), transparent 24%),
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 24%),
    radial-gradient(circle at 76% 18%, color-mix(in srgb, var(--accent-2) 28%, transparent), transparent 18%),
    linear-gradient(135deg,#071427 0%, #102a56 44%, #14396f 100%);
}
.section-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url('../img/pattern-home.svg');
  background-size:cover;
  background-position:center;
  opacity:.12;
  mix-blend-mode:screen;
}
.section-cta > .container{position:relative;z-index:1}
h1,h2,h3,h4{
  margin:0 0 16px;
  font-family:'Space Grotesk',system-ui,sans-serif;
  color:var(--ink);
  letter-spacing:-.04em;
}
h1{font-size:clamp(2.55rem,5.3vw,5.25rem);line-height:.95}
h2{font-size:clamp(2rem,3.2vw,3.4rem);line-height:1.01}
h3{font-size:1.18rem;line-height:1.12}
p{
  margin:0 0 16px;
  font-size:1rem;
  line-height:1.72;
  color:var(--muted);
}
ul{padding:0;margin:0;list-style:none}
.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0
}
.skip-link{
  position:absolute;left:-999px;top:0;
  background:#fff;color:#000;padding:10px 14px;border-radius:10px;z-index:999
}
.skip-link:focus{left:10px;top:10px}
.site-header{
  position:sticky;
  top:0;z-index:90;
  backdrop-filter:blur(18px);
  background:linear-gradient(135deg, rgba(11,15,21,.92) 0%, rgba(19,27,39,.88) 54%, rgba(28,38,52,.86) 100%);
  border-bottom:1px solid rgba(210,224,238,.12);
  box-shadow:0 14px 36px rgba(3,8,18,.24);
}
.theme-home .site-header{
  position:fixed;
  left:0; right:0;
  width:100%;
  transform:translateY(-118%);
  opacity:0;
  pointer-events:none;
  transition:transform .34s ease, opacity .28s ease, background-color .24s ease, border-color .24s ease;
}
.theme-home.header-visible .site-header{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}
.header-inner{
  min-height:var(--header-h);
  display:flex;align-items:center;justify-content:space-between;gap:20px
}
.brand{
  display:inline-flex;align-items:center;min-width:180px;
  padding:10px 14px 10px 12px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 100%);
  border:1px solid rgba(210,224,238,.15);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10), 0 10px 28px rgba(3,8,18,.22);
}
.brand img{width:204px;height:auto;display:block;filter:drop-shadow(0 4px 18px rgba(0,0,0,.28))}
.site-nav{
  display:flex;align-items:center;gap:22px;flex:1;justify-content:flex-end
}
.site-header .btn-primary{
  box-shadow:0 16px 34px rgba(67,141,214,.18);
}
.site-nav-links{
  display:flex;align-items:center;gap:6px;
  background:linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.04) 100%);
  border:1px solid rgba(210,224,238,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  padding:6px;border-radius:999px
}
.site-nav-links a{
  color:rgba(239,245,251,.86);
  padding:12px 16px;border-radius:999px;
  font-size:.96rem;font-weight:600;letter-spacing:-.02em;
  transition:.22s ease
}
.site-nav-links a[aria-current="page"],
.site-nav-links a:hover{
  background:linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.10) 100%);
  color:#fff;
}
.menu-toggle{
  display:none;
  width:48px;height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  align-items:center;justify-content:center;
  flex-direction:column;gap:5px
}
.menu-toggle span{
  display:block;width:18px;height:2px;border-radius:2px;background:#fff
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){opacity:0}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  letter-spacing:-.02em;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
  cursor:pointer;
  text-align:center
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#081427;
  background:linear-gradient(135deg,#6bb4ff,#93e4da);
  background:linear-gradient(135deg,color-mix(in srgb, var(--accent) 80%, white), color-mix(in srgb, var(--accent-2) 68%, white));
  box-shadow:0 14px 34px rgba(47,128,255,.18);
  box-shadow:0 14px 34px color-mix(in srgb, var(--accent) 18%, transparent);
}
.btn-primary:hover{box-shadow:0 18px 40px rgba(47,128,255,.28);box-shadow:0 18px 40px color-mix(in srgb, var(--accent) 28%, transparent)}
.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18)
}
.btn-outline{
  color:var(--ink);
  border-color:rgba(8,20,39,.14);
  background:#fff
}
.btn-light{
  color:#fff;
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.08)
}
.btn-nav{white-space:nowrap}
.wa-float{
  position:fixed;
  right:20px;bottom:20px;z-index:80;
  display:inline-flex;align-items:center;gap:10px;
  min-height:58px;padding:0 18px;
  background:#0b8f4d;
  color:#fff;border-radius:999px;
  box-shadow:0 16px 30px rgba(0,0,0,.22)
}
.wa-float::before{
  content:"◔";
  display:grid;place-items:center;
  width:30px;height:30px;border-radius:999px;
  background:rgba(255,255,255,.16);
  font-size:1rem
}
.hero-home{
  position:relative;overflow:hidden;
  padding:78px 0 40px;
  color:#fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(47,128,255,.24), transparent 22%),
    radial-gradient(circle at 76% 20%, rgba(255,191,71,.20), transparent 18%),
    radial-gradient(circle at 80% 80%, rgba(19,200,184,.22), transparent 24%),
    linear-gradient(135deg,#06111f 0%, #102a56 44%, #143b73 100%);
}
.hero-home::before{
  content:"";
  position:absolute;inset:0;
  background-image:url('../img/pattern-home.svg');
  background-size:cover;background-position:center;
  opacity:.15;
  mix-blend-mode:screen;
}
.hero-home .container{position:relative;z-index:1}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  padding:11px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.88);
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.10em;
  margin-bottom:22px
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  gap:28px;align-items:center
}
.hero-copy p.lead,
.hero-panel p.lead,
.page-hero-copy p.lead{
  font-size:1.06rem;
  color:rgba(255,255,255,.84);
  max-width:760px
}
.hero-home h1,
.page-hero h1,
.page-hero h2{color:#fff}
.hero-actions{
  display:flex;flex-wrap:wrap;gap:14px;margin-top:28px
}
.chips{
  display:flex;flex-wrap:wrap;gap:12px;
  margin-top:26px
}
.chip{
  min-height:42px;padding:0 14px;
  display:inline-flex;align-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;font-size:.94rem;font-weight:700
}
.hero-panel{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
  border-radius:32px;
  padding:28px;
  box-shadow:0 24px 60px rgba(3,10,24,.34)
}
.hero-panel h3{color:#fff}
.hero-panel p{color:rgba(255,255,255,.76)}
.hero-panel .mini-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:22px
}
.mini-card{
  padding:16px;border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08)
}
.mini-card strong{display:block;color:#fff;margin-bottom:8px;font-size:1rem;letter-spacing:-.03em}
.selector-wrap{padding:30px 0 16px}
.selector-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px
}
.selector-card{
  position:relative;
  min-height:360px;
  padding:26px;
  border-radius:28px;
  overflow:hidden;
  background:#0b1630;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 60px rgba(2,8,18,.14);
  display:flex;flex-direction:column;justify-content:flex-end;
  transition:flex .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor:pointer;
  isolation:isolate
}
.selector-card::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(6,14,28,.10) 0%, rgba(7,18,34,.46) 48%, rgba(7,18,34,.88) 78%, rgba(7,18,34,.96) 100%);
  z-index:-1
}
.selector-card::after{
  content:"";
  position:absolute;inset:0;
  background-position:center;background-size:cover;background-repeat:no-repeat;
  opacity:.98;z-index:-2;
  transform:scale(1.01);
  transition:transform .35s ease, opacity .35s ease
}
.selector-card[data-solution="services"]::after{background-image:url('../img/bg-services.jpg');background-position:64% center}
.selector-card[data-solution="tracking"]::after{background-image:url('../img/bg-tracking.jpg');background-position:58% center}
.selector-card[data-solution="solar"]::after{background-image:url('../img/bg-solar.jpg');background-position:center center}
.selector-card:hover,
.selector-card.is-active{
  transform:translateY(-4px);
  border-color:color-mix(in srgb, var(--accent) 45%, rgba(255,255,255,.18));
  box-shadow:0 30px 70px rgba(2,8,18,.24), 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent) inset;
}
.selector-card:hover::after,
.selector-card.is-active::after{
  transform:scale(1.06);
}
.selector-top{
  display:flex;justify-content:space-between;align-items:flex-start;gap:16px;margin-bottom:auto
}
.selector-tag{
  display:inline-flex;align-items:center;
  min-height:32px;padding:0 12px;border-radius:999px;
  background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.14);
  font-size:.78rem;color:#fff;font-weight:800;letter-spacing:.08em;text-transform:uppercase
}
.selector-index{
  color:rgba(255,255,255,.54);font-size:.88rem;font-weight:800;letter-spacing:.14em
}
.selector-card h3{
  color:#fff;font-size:1.86rem;max-width:260px;
  margin-bottom:10px
}
.selector-card p{color:rgba(255,255,255,.78);max-width:340px;margin-bottom:18px}
.selector-link{
  display:inline-flex;align-items:center;gap:8px;
  color:#fff;font-weight:700
}
.selector-link::after{content:"→";transition:transform .22s ease}
.selector-card:hover .selector-link::after{transform:translateX(2px)}
.selector-detail{
  margin-top:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  padding:28px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:28px;align-items:center
}
.selector-detail h3{color:#fff;font-size:1.55rem}
.selector-detail p{color:rgba(255,255,255,.78);margin-bottom:0;max-width:720px}
.selector-detail ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
  margin-top:18px
}
.selector-detail li{
  position:relative;
  padding-left:18px;
  color:#fff;
  font-weight:600
}
.selector-detail li::before{
  content:"";
  position:absolute;left:0;top:.6em;
  width:8px;height:8px;border-radius:999px;background:var(--accent)
}
.section-intro{
  max-width:860px;
  margin:0 auto 42px;
  text-align:center
}
.section-intro p{max-width:720px;margin:0 auto}
.home-statement{
  max-width:1240px;
}
.home-statement h2{
  max-width:1180px;
  margin-inline:auto;
  font-size:clamp(2.35rem,4.9vw,4.9rem);
  line-height:.96;
  letter-spacing:-.055em;
  text-wrap:balance;
}
.home-statement p{
  max-width:980px;
}
.highlight-grid,
.card-grid,
.metric-grid,
.step-grid,
.case-grid,
.contact-grid{
  display:grid;gap:20px
}
.highlight-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.card-grid.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.card-grid.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card-grid.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.metric-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.step-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
.case-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.contact-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.card,
.metric-card,
.step-card,
.case-card,
.contact-card,
.form-card,
.compare-card,
.notice-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
}
.card,
.metric-card,
.step-card,
.case-card,
.contact-card,
.notice-card{padding:24px}
.form-card{padding:26px}
.card:hover,
.case-card:hover,
.metric-card:hover,
.contact-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow)
}
.card,
.case-card,
.metric-card,
.contact-card{transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease}
.card-head,
.step-head,
.metric-head{
  display:flex;gap:14px;align-items:flex-start;margin-bottom:16px
}
.badge{
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;
  flex:0 0 auto;
  font-weight:900;
  letter-spacing:.04em;
  color:var(--ink);
  background:linear-gradient(135deg,color-mix(in srgb, var(--accent) 18%, white), color-mix(in srgb, var(--accent-2) 18%, white));
}
.badge.small{
  width:38px;height:38px;border-radius:12px;font-size:.84rem
}
.badge.dark{
  color:#fff;
  background:linear-gradient(135deg,color-mix(in srgb, var(--accent) 80%, #0a1424), color-mix(in srgb, var(--accent-2) 70%, #112845))
}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  min-height:34px;padding:0 14px;border-radius:999px;
  background:color-mix(in srgb, var(--accent) 12%, white);
  color:color-mix(in srgb, var(--accent) 74%, var(--ink));
  border:1px solid color-mix(in srgb, var(--accent) 18%, white);
  font-weight:800;
  font-size:.8rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:18px
}
.label-line{
  display:flex;flex-wrap:wrap;gap:12px;
  margin-bottom:16px
}
.label{
  display:inline-flex;align-items:center;
  min-height:32px;padding:0 12px;border-radius:999px;
  background:#eef3fb;border:1px solid rgba(17,39,80,.08);
  color:#304461;font-size:.82rem;font-weight:700
}
.compare-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px
}
.compare-card{
  padding:30px;
  background:#fff;
  border:1px solid var(--line)
}
.compare-card.old{
  background:linear-gradient(180deg,#fff 0%,#f9fbff 100%)
}
.compare-card.new{
  color:#fff;
  background:
    radial-gradient(circle at 20% 16%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 26%),
    radial-gradient(circle at 80% 18%, color-mix(in srgb, var(--accent-2) 32%, transparent), transparent 20%),
    linear-gradient(135deg,#071427 0%, #102a56 46%, #14396f 100%);
  border-color:rgba(255,255,255,.08)
}
.compare-card.new h3,
.compare-card.new p,
.compare-card.new li{color:#fff}
.compare-card ul{display:grid;gap:12px;margin-top:20px}
.compare-card li{
  position:relative;
  padding-left:22px;
  line-height:1.65;
  color:#304461
}
.compare-card li::before{
  content:"";
  position:absolute;left:0;top:.55em;
  width:10px;height:10px;border-radius:999px;background:var(--accent)
}
.compare-card.old li::before{background:#d9dfeb}
.info-list,
.check-list,
.metric-list{display:grid;gap:12px}
.info-list li,
.check-list li,
.metric-list li{
  position:relative;padding-left:22px;line-height:1.68
}
.check-list li::before,
.info-list li::before,
.metric-list li::before{
  content:"";
  position:absolute;left:0;top:.54em;
  width:10px;height:10px;border-radius:999px;background:var(--accent)
}
.note{
  font-size:.92rem;
  color:#6b7991;
  margin-top:14px
}
.step-card{
  overflow:hidden;
  min-height:100%;
  border-top:4px solid color-mix(in srgb, var(--accent) 60%, white)
}
.step-card p:last-child{margin-bottom:0}
.metric-card{
  display:flex;flex-direction:column;gap:8px
}
.metric-card strong{
  font-size:1.05rem;color:var(--ink)
}
.case-card .label-line{margin-bottom:14px}
.case-card h3{font-size:1.32rem}
.case-card .case-row{
  display:grid;gap:10px;margin-top:18px
}
.case-card .case-row div{
  padding:12px 14px;border-radius:16px;background:#f4f7fb
}
.case-card .case-row strong{
  display:block;margin-bottom:6px;color:var(--ink);font-size:.92rem
}
.notice-card{
  background:linear-gradient(180deg,#ffffff 0%,#f6f9fd 100%);
  padding:26px 24px
}
.contact-card{
  padding:24px;
  display:flex;flex-direction:column;gap:14px;
  min-height:100%
}
.contact-card .btn{margin-top:auto}
.page-hero{
  position:relative;overflow:hidden;
  color:#fff;
  padding:86px 0 62px;
  background:
    radial-gradient(circle at 18% 16%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 22%),
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--accent-2) 22%, transparent), transparent 18%),
    linear-gradient(135deg,var(--hero-bg-1) 0%, var(--hero-bg-2) 44%, var(--hero-bg-3) 100%);
}
.page-hero::before{
  content:"";
  position:absolute;inset:0;
  background-image:var(--hero-pattern, none);
  background-size:cover;background-position:center;
  opacity:.16;mix-blend-mode:screen
}
.page-hero.image-overlay::before{
  background-image:
    linear-gradient(90deg, rgba(7,20,39,.88) 0%, rgba(7,20,39,.72) 42%, rgba(7,20,39,.38) 100%),
    url('../img/hero-services.jpg');
  opacity:.38;
  mix-blend-mode:screen;
}
.page-hero .container{position:relative;z-index:1}
.breadcrumb{
  margin-bottom:24px;
  color:rgba(255,255,255,.64);
  font-size:.94rem
}
.breadcrumb a{color:#fff}
.page-hero-grid{
  display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:26px;align-items:start
}
.page-hero-copy .chips{margin-top:20px}
.hero-note{
  padding:20px;border-radius:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14)
}
.hero-note h3{color:#fff;margin-bottom:12px}
.hero-note p,
.hero-note li{color:rgba(255,255,255,.8)}
.hero-note ul{display:grid;gap:12px;margin-top:18px}
.hero-note li{
  position:relative;padding-left:22px
}
.hero-note li::before{
  content:"";
  position:absolute;left:0;top:.55em;
  width:10px;height:10px;border-radius:999px;background:var(--accent)
}
.form-card{
  background:#fff;
  border:1px solid rgba(17,39,80,.12);
  box-shadow:var(--shadow)
}
.form-card.dark{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14)
}
.form-card.dark h3,
.form-card.dark p,
.form-card.dark label,
.form-card.dark .form-note{color:#fff}
.form-card.dark .field input,
.form-card.dark .field select,
.form-card.dark .field textarea{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.14)
}
.form-card.dark .field input::placeholder,
.form-card.dark .field textarea::placeholder{color:rgba(255,255,255,.56)}
.form-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px
}
.field{display:grid;gap:8px}
.field label{
  font-size:.92rem;font-weight:700;color:var(--ink)
}
.field input,
.field select,
.field textarea{
  width:100%;
  min-height:52px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(17,39,80,.12);
  background:#f6f9fd;
  color:var(--ink);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease
}
.field textarea{min-height:128px;padding:16px;resize:vertical}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:color-mix(in srgb, var(--accent) 48%, white);
  box-shadow:0 0 0 4px color-mix(in srgb, var(--accent) 12%, transparent);
  background:#fff
}
.form-actions{
  display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-top:18px
}
.form-note{
  font-size:.9rem;
  color:#627089;
  margin-top:10px
}
.faq{
  display:grid;gap:14px
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-soft)
}
.faq-item summary{
  list-style:none;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 22px;
  cursor:pointer;
  font-weight:800;
  color:var(--ink)
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  font-size:1.5rem;line-height:1;
  color:var(--accent)
}
.faq-item[open] summary::after{content:"−"}
.faq-item .faq-body{
  padding:0 22px 22px;
}
.hero-points{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:22px
}
.hero-point{
  padding:16px;border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14)
}
.hero-point strong{display:block;color:#fff;margin-bottom:8px}
.hero-point p{margin:0;color:rgba(255,255,255,.78)}
.inline-cta{
  display:flex;flex-wrap:wrap;gap:12px;margin-top:12px
}
.cta-band{
  display:grid;grid-template-columns:minmax(0,1fr) auto;gap:26px;align-items:center
}
.cta-band h2{color:#fff}
.cta-band p{color:rgba(255,255,255,.82);max-width:720px;margin-bottom:0}
.cta-actions{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-end
}
.page-meta-strip{
  margin-top:-34px;
  position:relative;z-index:2
}
.meta-strip{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px
}
.meta-item{
  padding:20px;border-radius:22px;
  background:#fff;border:1px solid var(--line);
  box-shadow:var(--shadow-soft)
}
.meta-item strong{display:block;font-size:1rem;color:var(--ink);margin-bottom:8px}
.split-panel{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.96fr);gap:24px;align-items:center
}
.media-panel{
  min-height:420px;border-radius:30px;
  background:
    linear-gradient(180deg, rgba(8,20,39,.10) 0%, rgba(8,20,39,.28) 100%),
    var(--media-bg, linear-gradient(135deg,#0d1730,#183e74));
  border:1px solid rgba(17,39,80,.10);
  box-shadow:var(--shadow);
  overflow:hidden
}
.media-panel.pattern-services{--media-bg:url('../img/pattern-services.svg') center/cover no-repeat}
.media-panel.pattern-tracking{--media-bg:url('../img/pattern-tracking.svg') center/cover no-repeat}
.media-panel.pattern-solar{--media-bg:url('../img/pattern-solar.svg') center/cover no-repeat}
.media-panel .panel-overlay{
  width:100%;height:100%;
  background:linear-gradient(180deg, rgba(7,20,39,.12) 0%, rgba(7,20,39,.7) 100%)
}
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease, transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.theme-home{
  --accent:#2f80ff;
  --accent-2:#13c8b8;
  --hero-bg-1:#06111f;
  --hero-bg-2:#102a56;
  --hero-bg-3:#143b73;
}
.theme-services{
  --accent:#ff7a59;
  --accent-2:#2f80ff;
  --hero-bg-1:#081427;
  --hero-bg-2:#102a56;
  --hero-bg-3:#6e342d;
  --hero-pattern:url('../img/pattern-services.svg');
}
.theme-tracking{
  --accent:#33d7ff;
  --accent-2:#13c8b8;
  --hero-bg-1:#06111f;
  --hero-bg-2:#0c2d52;
  --hero-bg-3:#127f89;
  --hero-pattern:url('../img/pattern-tracking.svg');
}
.theme-solar{
  --accent:#ffbf47;
  --accent-2:#ff7a59;
  --hero-bg-1:#1a1222;
  --hero-bg-2:#5f3b1a;
  --hero-bg-3:#c37a2d;
  --hero-pattern:url('../img/pattern-solar.svg');
}
.theme-neutral{
  --accent:#2f80ff;
  --accent-2:#13c8b8;
  --hero-bg-1:#081427;
  --hero-bg-2:#102a56;
  --hero-bg-3:#14396f;
}
.inline-links{display:flex;flex-wrap:wrap;gap:12px}
.inline-links a{
  font-weight:700;color:var(--ink);padding-bottom:3px;border-bottom:1px solid rgba(17,39,80,.14)
}
.hero-subgrid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:20px
}
.hero-subcard{
  padding:18px;border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14)
}
.hero-subcard strong{display:block;color:#fff;margin-bottom:8px}
.hero-subcard p{margin:0;color:rgba(255,255,255,.8)}
.policy-card{
  max-width:920px;margin:0 auto;
  padding:28px;border-radius:28px;
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)
}
.policy-card h2{font-size:1.45rem;margin-top:30px}
.policy-card h2:first-child{margin-top:0}
.policy-card ul{display:grid;gap:10px;margin:14px 0}
.policy-card li{
  position:relative;padding-left:18px
}
.policy-card li::before{
  content:"";
  position:absolute;left:0;top:.58em;
  width:8px;height:8px;border-radius:999px;background:var(--accent)
}
.center{text-align:center}

.site-footer{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 14% 16%, rgba(130,166,204,.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(86,122,164,.14), transparent 18%),
    linear-gradient(135deg,#0b1017 0%, #141c28 52%, #1c2735 100%);
}
.site-footer::before{
  content:"";
  position:absolute;inset:0;
  background-image:url('../img/pattern-home.svg');
  background-size:cover;
  background-position:center;
  opacity:.05;
  mix-blend-mode:screen;
}
.site-footer > .container,
.site-footer .footer-bottom{position:relative;z-index:1}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .9fr;
  gap:28px;
  padding:72px 0 28px
}
.footer-brand{
  padding:24px 24px 26px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.04) 100%);
  border:1px solid rgba(210,224,238,.13);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.09), 0 20px 42px rgba(0,0,0,.16);
}
.footer-brand img{width:220px;height:auto;display:block;margin-bottom:18px;filter:drop-shadow(0 6px 22px rgba(0,0,0,.28))}
.footer-brand p{color:rgba(245,249,252,.78);max-width:420px}
.site-footer h3{
  color:#f4f8fc;
  font-size:1.05rem;
  margin-bottom:18px
}
.footer-list{
  display:grid;
  gap:12px
}
.footer-list li,
.footer-list a{color:rgba(232,240,247,.78)}
.footer-list a:hover{color:#fff}
.footer-bottom{
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  padding:22px 0 28px;
  border-top:1px solid rgba(210,224,238,.12);
  color:rgba(236,243,249,.62);
  font-size:.92rem
}
.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-20{margin-top:20px}.mt-24{margin-top:24px}.mt-28{margin-top:28px}.mt-32{margin-top:32px}
.mb-0{margin-bottom:0}
@media (max-width:1180px){
  .selector-card{min-height:320px}
  .highlight-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .step-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:980px){
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  :root{--section-space:84px;--header-h:78px}
  .menu-toggle{display:inline-flex}
  .site-nav{
    position:absolute;
    top:calc(100% + 10px);right:16px;left:16px;
    display:none;flex-direction:column;align-items:stretch;
    padding:16px;border-radius:24px;
    background:linear-gradient(180deg, rgba(11,15,21,.98) 0%, rgba(19,27,39,.98) 100%);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 30px 80px rgba(0,0,0,.28)
  }
  .site-nav.is-open{display:flex}
  .site-nav-links{
    flex-direction:column;border-radius:20px;padding:10px;background:rgba(255,255,255,.05)
  }
  .site-nav-links a{width:100%;text-align:left}
  .nav-dropdown{width:100%}
  .nav-dropdown summary{width:100%;justify-content:space-between}
  .nav-dropdown-menu{
    position:static;
    min-width:0;
    margin-top:8px;
    padding:6px 0 0 14px;
    background:transparent;
    border:none;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none
  }
  .nav-dropdown-menu a{padding:10px 12px}
  .hero-home .container{width:min(100% - 32px,1520px)}
  .hero-grid,
  .hero-grid-home,
  .page-hero-grid,
  .split-panel,
  .cta-band,
  .selector-detail{
    grid-template-columns:1fr
  }
  .cta-actions{justify-content:flex-start}
  .selector-grid{grid-template-columns:1fr}
  .selector-detail ul{grid-template-columns:1fr}
  .card-grid.grid-4,
  .card-grid.grid-3,
  .metric-grid,
  .case-grid,
  .contact-grid,
  .meta-strip{
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .step-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .compare-grid{grid-template-columns:1fr}
}
@media (max-width:720px){
  .footer-grid{grid-template-columns:1fr;padding-top:60px}
  .footer-bottom{flex-direction:column}
  :root{--section-space:74px}
  .container{width:min(var(--container),calc(100% - 24px))}
  .hero-home .container{width:calc(100% - 24px)}
  h1{font-size:clamp(2.2rem,9vw,3.4rem)}
  .hero-grid-home .hero-copy h1{font-size:clamp(2.5rem,11vw,4.2rem);line-height:.94;letter-spacing:-.04em;text-wrap:pretty}
  .hero-grid-home .hero-copy p.lead{max-width:100%;font-size:1.02rem;line-height:1.5}
  h2{font-size:clamp(1.8rem,7.2vw,2.6rem)}
  .home-statement h2{font-size:clamp(2rem,9vw,3.25rem);line-height:.98;letter-spacing:-.04em;text-wrap:pretty}
  p{font-size:.98rem}
  .hero-home{padding-top:58px}
  .eyebrow{padding:10px 14px;font-size:.76rem}
  .hero-actions,.form-actions{flex-direction:column;align-items:stretch}
  .hero-panel,.selector-detail,.form-card,.compare-card,.notice-card,.policy-card{padding:22px}
  .selector-card{min-height:280px;padding:22px}
  .selector-card h3{font-size:1.62rem}
  .highlight-grid,
  .card-grid.grid-2,
  .card-grid.grid-3,
  .card-grid.grid-4,
  .metric-grid,
  .case-grid,
  .contact-grid,
  .hero-points,
  .hero-subgrid,
  .form-grid,
  .meta-strip{
    grid-template-columns:1fr
  }
  .step-grid{grid-template-columns:1fr}
  .wa-float{
    right:12px;bottom:12px;min-height:54px;padding:0 16px
  }
  .wa-float span{display:none}
  .hero-panel .mini-grid{grid-template-columns:1fr}
  .page-meta-strip{margin-top:-20px}
}


.hero-home .container{
  width:min(1520px,calc(100% - 40px));
}
.hero-grid-home{
  grid-template-columns:minmax(0,1fr);
}
.hero-grid-home .hero-copy{
  width:100%;
  max-width:100%;
}
.hero-grid-home .hero-copy h1{
  width:100%;
  max-width:100%;
  font-size:clamp(3.6rem,8.6vw,8.6rem);
  line-height:.9;
  letter-spacing:-.06em;
  text-wrap:balance;
}
.hero-grid-home .hero-copy p.lead{
  max-width:1100px;
  font-size:clamp(1.08rem,1.7vw,1.7rem);
  line-height:1.34;
}
.nav-dropdown{
  position:relative;
}
.nav-dropdown summary{
  list-style:none;
  color:rgba(255,255,255,.82);
  padding:12px 16px;
  border-radius:999px;
  font-size:.96rem;
  font-weight:600;
  letter-spacing:-.02em;
  transition:.22s ease;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nav-dropdown summary::-webkit-details-marker{display:none}
.nav-dropdown summary::after{
  content:"▾";
  font-size:.78rem;
  opacity:.8;
}
.nav-dropdown:hover summary,
.nav-dropdown[open] summary,
.nav-dropdown.is-current summary{
  background:linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.10) 100%);
  color:#fff;
}
.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:240px;
  display:grid;
  gap:6px;
  padding:10px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(11,15,21,.98) 0%, rgba(19,27,39,.98) 100%);
  border:1px solid rgba(210,224,238,.10);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.22s ease;
  z-index:40;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.nav-dropdown-menu a{
  color:rgba(255,255,255,.82);
  padding:12px 14px;
  border-radius:14px;
  font-size:.95rem;
  font-weight:600;
}
.nav-dropdown-menu a[aria-current="page"],
.nav-dropdown-menu a:hover{
  background:linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.08) 100%);
  color:#fff;
}


@media (max-width:980px){
  .nav-dropdown{width:100%}
  .nav-dropdown summary{width:100%;justify-content:space-between}
  .nav-dropdown-menu{
    position:static;
    min-width:0;
    margin-top:8px;
    padding:6px 0 0 14px;
    background:transparent;
    border:none;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }
  .nav-dropdown-menu a{padding:10px 12px}
}

.page-hero.page-hero-services::before,
.page-hero.page-hero-tracking::before,
.page-hero.page-hero-solar::before{
  opacity:1;
  mix-blend-mode:normal;
  background-size:cover;
}
.page-hero.page-hero-services::before{
  background-image:
    linear-gradient(90deg, rgba(7,20,39,.90) 0%, rgba(7,20,39,.76) 42%, rgba(7,20,39,.42) 100%),
    url('../img/bg-services.jpg');
  background-position:68% center;
}
.page-hero.page-hero-tracking::before{
  background-image:
    linear-gradient(90deg, rgba(7,20,39,.90) 0%, rgba(7,20,39,.76) 42%, rgba(7,20,39,.38) 100%),
    url('../img/bg-tracking.jpg');
  background-position:58% center;
}
.page-hero.page-hero-solar::before{
  background-image:
    linear-gradient(90deg, rgba(7,20,39,.88) 0%, rgba(7,20,39,.74) 42%, rgba(7,20,39,.36) 100%),
    url('../img/bg-solar.jpg');
  background-position:center;
}

@media (prefers-reduced-motion: reduce){
  .theme-home .site-header{transition:none}
}


/* typographic refinement v12 */
body{font-size:16px}
h1{font-size:clamp(2.8rem,4.9vw,4.95rem);line-height:.96}
h2{font-size:clamp(2.05rem,3vw,3.15rem);line-height:1.05;letter-spacing:-.05em}
h3{font-size:1.28rem;line-height:1.16;letter-spacing:-.03em}
p{font-size:1.02rem;line-height:1.68}
.hero-grid-home .hero-copy h1{
  max-width:11.5ch;
  font-size:clamp(3.4rem,7.4vw,7.2rem);
  line-height:.92;
}
.hero-grid-home .hero-copy p.lead{
  max-width:980px;
  font-size:clamp(1.05rem,1.55vw,1.34rem);
  line-height:1.46;
}
.page-hero-copy h1{
  max-width:11.5ch;
  font-size:clamp(3.15rem,4.6vw,4.85rem);
  line-height:.97;
  letter-spacing:-.055em;
  text-wrap:balance;
}
.page-hero-copy p.lead{
  max-width:700px;
  font-size:clamp(1.05rem,1.35vw,1.2rem);
  line-height:1.5;
}
.section-intro{
  max-width:940px;
  margin:0 auto 46px;
}
.section-intro h2{
  max-width:14ch;
  margin-inline:auto;
  text-wrap:balance;
}
.section-intro p{
  max-width:760px;
  font-size:1.04rem;
  line-height:1.68;
}
.home-statement{
  max-width:980px;
}
.home-statement h2{
  max-width:11.5ch;
  font-size:clamp(2.45rem,4.3vw,4.2rem);
  line-height:.99;
}
.home-statement p{
  max-width:760px;
  font-size:1.08rem;
  line-height:1.62;
}
.split-panel h2,
.cta-band h2{
  max-width:14ch;
  text-wrap:balance;
}
.split-panel h2{
  font-size:clamp(2rem,2.85vw,3rem);
  line-height:1.05;
}
.cta-band h2{
  font-size:clamp(2.15rem,3.2vw,3.3rem);
  line-height:1.04;
  letter-spacing:-.045em;
}
.cta-band p{
  max-width:650px;
  font-size:1.05rem;
  line-height:1.6;
}
.selector-card h3{
  font-size:clamp(1.6rem,1.9vw,1.9rem);
  max-width:9ch;
  line-height:1.02;
}
.selector-card p{
  max-width:31ch;
  font-size:1rem;
  line-height:1.55;
}
.selector-detail h3,
.card h3,
.step-card h3,
.compare-card h3,
.hero-note h3,
.form-card h3,
.case-card h3{
  font-size:clamp(1.24rem,1.4vw,1.5rem);
  line-height:1.15;
  letter-spacing:-.035em;
}
.hero-note p,
.hero-note li,
.card p,
.metric-card p,
.step-card p,
.case-card p,
.compare-card p,
.compare-card li,
.check-list li,
.info-list li,
.metric-list li,
.note,
.meta-item p,
.footer-brand p,
.footer-list li,
.footer-list a,
.footer-bottom{
  line-height:1.62;
}
.faq-item summary{
  font-size:1.02rem;
  line-height:1.38;
}
.site-footer h3{
  font-size:1rem;
  letter-spacing:-.02em;
}
.footer-list a,
.footer-list li,
.footer-bottom,
.footer-brand p{
  font-size:.96rem;
}
@media (max-width:980px){
  .section-intro h2,
  .split-panel h2,
  .cta-band h2{max-width:16ch}
  .page-hero-copy h1{max-width:12ch}
}
@media (max-width:720px){
  h2{font-size:clamp(1.9rem,7vw,2.45rem);line-height:1.06}
  .hero-grid-home .hero-copy h1{
    max-width:10ch;
    font-size:clamp(2.8rem,10.5vw,4.4rem);
    line-height:.95;
  }
  .page-hero-copy h1{
    max-width:11ch;
    font-size:clamp(2.45rem,8.8vw,3.45rem);
    line-height:.99;
  }
  .section-intro h2,
  .home-statement h2,
  .split-panel h2,
  .cta-band h2{
    max-width:100%;
  }
  .section-intro p,
  .home-statement p,
  .cta-band p,
  .page-hero-copy p.lead{
    font-size:1rem;
    line-height:1.58;
  }
  .selector-card h3{font-size:1.5rem}
  .card h3,
  .step-card h3,
  .compare-card h3,
  .hero-note h3,
  .form-card h3,
  .case-card h3{font-size:1.22rem}
}

/* layout correction v13: stop collapsing section titles into center columns */
.section-intro,
.home-statement{
  max-width:min(100%,1240px);
  margin:0 0 52px;
  text-align:left;
}
.section-intro h2,
.home-statement h2{
  max-width:min(100%,980px);
  margin-inline:0;
  text-wrap:pretty;
}
.section-intro p,
.home-statement p,
.cta-band p{
  max-width:min(100%,860px);
  margin:0;
}
.home-statement h2{
  font-size:clamp(2.7rem,4.6vw,5.1rem);
  line-height:.94;
}
.section-intro h2{
  font-size:clamp(2.35rem,3.9vw,4rem);
  line-height:.98;
}
.hero-grid-home .hero-copy h1{
  max-width:min(100%,980px);
  font-size:clamp(3.8rem,8.2vw,8rem);
  line-height:.9;
  text-wrap:pretty;
}
.hero-grid-home .hero-copy p.lead{
  max-width:min(100%,900px);
}
.page-hero-copy h1{
  max-width:min(100%,920px);
  font-size:clamp(3.2rem,5.1vw,5.25rem);
  line-height:.94;
  text-wrap:pretty;
}
.page-hero-copy p.lead{
  max-width:min(100%,760px);
}
.split-panel h2,
.cta-band h2{
  max-width:min(100%,880px);
  margin-inline:0;
  text-wrap:pretty;
}
@media (max-width:980px){
  .section-intro,
  .home-statement{
    margin:0 0 42px;
  }
  .section-intro h2,
  .home-statement h2,
  .split-panel h2,
  .cta-band h2{
    max-width:min(100%,760px);
  }
  .page-hero-copy h1{
    max-width:min(100%,760px);
  }
}
@media (max-width:720px){
  .section-intro,
  .home-statement{
    margin:0 0 34px;
  }
  .section-intro h2,
  .home-statement h2,
  .split-panel h2,
  .cta-band h2,
  .page-hero-copy h1,
  .hero-grid-home .hero-copy h1{
    max-width:100%;
  }
  .hero-grid-home .hero-copy h1{
    font-size:clamp(2.9rem,11vw,4.7rem);
    line-height:.94;
  }
  .page-hero-copy h1{
    font-size:clamp(2.5rem,8.8vw,3.7rem);
    line-height:.98;
  }
}

/* v14 typography/layout correction: use page width properly on section titles */
.theme-home .section-intro,
.theme-home .home-statement,
.theme-services .section-intro,
.theme-solar .section-intro,
.theme-tracking .section-intro{
  width:100%;
  max-width:none;
  margin:0 0 44px;
  text-align:left;
}

.theme-home .section-intro h2,
.theme-home .home-statement h2,
.theme-services .section-intro h2,
.theme-solar .section-intro h2,
.theme-tracking .section-intro h2,
.theme-services .split-panel h2,
.theme-solar .split-panel h2,
.theme-tracking .split-panel h2,
.theme-services .cta-band h2,
.theme-solar .cta-band h2,
.theme-tracking .cta-band h2{
  width:100%;
  max-width:min(100%,1100px);
  margin:0 0 16px;
  text-align:left;
  text-wrap:pretty;
  letter-spacing:-0.045em;
}

.theme-home .section-intro p,
.theme-home .home-statement p,
.theme-services .section-intro p,
.theme-solar .section-intro p,
.theme-tracking .section-intro p,
.theme-services .cta-band p,
.theme-solar .cta-band p,
.theme-tracking .cta-band p{
  width:100%;
  max-width:min(100%,920px);
  margin:0;
  text-align:left;
}

.theme-home .home-statement h2{
  max-width:min(100%,1200px);
  font-size:clamp(3.1rem,6vw,5.6rem);
  line-height:0.94;
}

.theme-home .section-intro h2{
  max-width:min(100%,960px);
  font-size:clamp(2.7rem,4.6vw,4.6rem);
  line-height:0.98;
}

.theme-services .section-intro h2,
.theme-solar .section-intro h2,
.theme-tracking .section-intro h2{
  max-width:min(100%,1050px);
  font-size:clamp(2.6rem,4.1vw,4.35rem);
  line-height:0.98;
}

.theme-services .split-panel h2,
.theme-solar .split-panel h2,
.theme-tracking .split-panel h2{
  max-width:min(100%,980px);
  font-size:clamp(2.3rem,3.4vw,3.6rem);
  line-height:1.0;
}

.theme-services .cta-band h2,
.theme-solar .cta-band h2,
.theme-tracking .cta-band h2{
  max-width:min(100%,980px);
  font-size:clamp(2.5rem,3.7vw,3.9rem);
  line-height:1.0;
}

.theme-services .page-hero-copy,
.theme-solar .page-hero-copy,
.theme-tracking .page-hero-copy{
  max-width:min(100%,1120px);
}

.theme-services .page-hero-copy h1,
.theme-solar .page-hero-copy h1,
.theme-tracking .page-hero-copy h1{
  max-width:min(100%,1080px);
  font-size:clamp(3.45rem,5.4vw,5.9rem);
  line-height:0.93;
  text-wrap:pretty;
}

.theme-services .page-hero-copy p.lead,
.theme-solar .page-hero-copy p.lead,
.theme-tracking .page-hero-copy p.lead{
  max-width:min(100%,860px);
}

@media (max-width: 1180px){
  .theme-home .section-intro,
  .theme-home .home-statement,
  .theme-services .section-intro,
  .theme-solar .section-intro,
  .theme-tracking .section-intro{
    margin:0 0 40px;
  }

  .theme-home .home-statement h2{
    font-size:clamp(2.8rem,5.8vw,4.8rem);
    max-width:min(100%,980px);
  }

  .theme-home .section-intro h2,
  .theme-services .section-intro h2,
  .theme-solar .section-intro h2,
  .theme-tracking .section-intro h2{
    max-width:min(100%,920px);
    font-size:clamp(2.35rem,4.8vw,3.85rem);
  }

  .theme-services .page-hero-copy h1,
  .theme-solar .page-hero-copy h1,
  .theme-tracking .page-hero-copy h1{
    max-width:min(100%,920px);
    font-size:clamp(3rem,5.8vw,4.9rem);
  }
}

@media (max-width: 820px){
  .theme-home .section-intro,
  .theme-home .home-statement,
  .theme-services .section-intro,
  .theme-solar .section-intro,
  .theme-tracking .section-intro{
    margin:0 0 32px;
  }

  .theme-home .section-intro h2,
  .theme-home .home-statement h2,
  .theme-services .section-intro h2,
  .theme-solar .section-intro h2,
  .theme-tracking .section-intro h2,
  .theme-services .split-panel h2,
  .theme-solar .split-panel h2,
  .theme-tracking .split-panel h2,
  .theme-services .cta-band h2,
  .theme-solar .cta-band h2,
  .theme-tracking .cta-band h2,
  .theme-services .page-hero-copy h1,
  .theme-solar .page-hero-copy h1,
  .theme-tracking .page-hero-copy h1{
    max-width:100%;
    font-size:clamp(2.2rem,8.2vw,3.45rem);
    line-height:1.0;
  }

  .theme-home .section-intro p,
  .theme-home .home-statement p,
  .theme-services .section-intro p,
  .theme-solar .section-intro p,
  .theme-tracking .section-intro p,
  .theme-services .page-hero-copy p.lead,
  .theme-solar .page-hero-copy p.lead,
  .theme-tracking .page-hero-copy p.lead{
    max-width:100%;
  }
}

/* v16 home header spacer fix: hidden home menu must not reserve layout height */
.theme-home .site-header{position:fixed}

/* v15 brand emphasis: brighter logo + calmer premium header/footer */
.site-header{
  position:sticky;
  background:linear-gradient(90deg, rgba(8,12,17,.96) 0%, rgba(14,20,29,.94) 42%, rgba(17,25,36,.92) 100%);
  border-bottom:1px solid rgba(224,234,244,.08);
  box-shadow:0 18px 42px rgba(2,6,12,.34);
}
.site-header::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 170px 46px, rgba(111,190,255,.17) 0%, rgba(111,190,255,.08) 18%, transparent 42%),
    linear-gradient(90deg, rgba(255,255,255,.03), transparent 24%);
  pointer-events:none;
}
.header-inner{position:relative;z-index:1}
.brand{
  padding:12px 16px 12px 14px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 100%);
  border:1px solid rgba(223,234,245,.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 14px 34px rgba(0,0,0,.28),
    0 0 0 1px rgba(119,182,240,.08);
}
.brand img{
  filter:brightness(1.16) contrast(1.12) saturate(1.04) drop-shadow(0 10px 30px rgba(88,170,255,.18));
}
.site-nav-links{
  background:linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  border:1px solid rgba(223,234,245,.10);
}
.site-footer{
  background:
    radial-gradient(circle at 14% 14%, rgba(112,190,255,.16), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(82,116,162,.12), transparent 18%),
    linear-gradient(135deg, #090d12 0%, #101722 54%, #151f2c 100%);
}
.site-footer::before{
  opacity:.035;
}
.footer-brand{
  background:linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.06) 100%);
  border:1px solid rgba(223,234,245,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 22px 44px rgba(0,0,0,.20),
    0 0 0 1px rgba(119,182,240,.06);
}
.footer-brand img{
  filter:brightness(1.18) contrast(1.12) saturate(1.04) drop-shadow(0 12px 32px rgba(88,170,255,.16));
}


/* v17 home hero title fit on large screens */
.hero-grid-home .hero-copy h1{
  max-width:min(100%,1120px);
  font-size:clamp(3.55rem,6.9vw,7.55rem);
  line-height:.91;
  letter-spacing:-.055em;
  text-wrap:pretty;
}
.hero-grid-home .hero-copy p.lead{
  max-width:min(100%,980px);
}
@media (min-width: 1440px){
  .hero-home .container{
    width:min(1560px,calc(100% - 40px));
  }
  .hero-grid-home .hero-copy h1{
    max-width:min(100%,1180px);
    font-size:clamp(4.1rem,6.2vw,7.2rem);
    line-height:.92;
  }
}
@media (min-width: 1720px){
  .hero-grid-home .hero-copy h1{
    max-width:min(100%,1240px);
    font-size:6.9rem;
  }
}


/* v18 home cleanup + responsive chips + smaller white logo */
.brand{
  min-width:auto;
  padding:8px 12px 8px 10px;
  border-radius:20px;
}
.brand img{
  width:172px;
  filter:none !important;
}
.footer-brand img{
  filter:none !important;
}

.hero-home .hero-copy .eyebrow,
.theme-home #marca-existe > .container > .section-intro > .kicker,
.theme-home .section.reveal > .container > .section-intro > .kicker{
  display:none !important;
}

.chips{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:12px;
  margin-top:26px;
  width:min(100%,980px);
}
.chip{
  width:100%;
  min-height:46px;
  padding:10px 16px;
  justify-content:center;
  text-align:center;
  line-height:1.15;
}

.selector-card p{
  display:none;
}
.selector-card h3{
  margin-bottom:18px;
  max-width:300px;
}
.selector-link{
  margin-top:0;
}

@media (max-width:980px){
  .brand img{width:154px;}
  .chips{grid-template-columns:repeat(2,minmax(0,1fr)); width:100%;}
}
@media (max-width:720px){
  .brand{
    padding:7px 10px 7px 9px;
    border-radius:16px;
  }
  .brand img{width:132px;}
  .chips{grid-template-columns:1fr;gap:10px;}
  .chip{min-height:44px;font-size:.92rem;}
}

/* v19 chip sizing: smaller bullets and 3-across on phones */
.chips{
  width:min(100%,920px);
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.chip{
  min-height:40px;
  padding:8px 12px;
  font-size:.86rem;
  font-weight:700;
  line-height:1.08;
  text-wrap:balance;
}

@media (max-width:980px){
  .chips{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:9px;
  }
  .chip{
    min-height:38px;
    padding:8px 10px;
    font-size:.8rem;
  }
}

@media (max-width:720px){
  .chips{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
  }
  .chip{
    min-height:52px;
    padding:8px 8px;
    font-size:.74rem;
    border-radius:18px;
  }
}

@media (max-width:420px){
  .chip{
    font-size:.7rem;
    min-height:50px;
    padding:7px 7px;
  }
}

/* v21 mobile carousel for home solution panels with persistent detail box */
@media (max-width: 980px){
  .selector-wrap{
    padding:26px 0 10px;
  }

  .selector-grid{
    display:flex;
    grid-template-columns:none;
    gap:14px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:4px 2px 16px;
    margin:0 -2px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .selector-grid::-webkit-scrollbar{
    display:none;
  }

  .selector-card{
    flex:0 0 min(86vw, 540px);
    min-height:320px;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }

  .selector-card h3{
    max-width:100%;
  }

  .selector-detail{
    display:grid;
    margin-top:10px;
    padding:24px;
    border-radius:24px;
  }

  .selector-detail h3{
    font-size:1.42rem;
  }

  .selector-detail p{
    max-width:100%;
    font-size:1rem;
    line-height:1.5;
  }
}

@media (max-width: 720px){
  .selector-grid{
    gap:12px;
    padding-bottom:14px;
  }

  .selector-card{
    flex-basis:84vw;
    min-height:290px;
    padding:20px;
    border-radius:24px;
  }

  .selector-card h3{
    font-size:1.44rem;
    margin-bottom:14px;
  }

  .selector-link{
    font-size:1.02rem;
  }

  .selector-detail{
    padding:20px;
    gap:18px;
  }

  .selector-detail h3{
    font-size:1.28rem;
  }

  .selector-detail li{
    font-size:.95rem;
  }
}

@media (max-width: 420px){
  .selector-card{
    flex-basis:88vw;
    min-height:270px;
    padding:18px;
  }

  .selector-card h3{
    font-size:1.28rem;
  }

  .selector-detail{
    padding:18px;
  }
}

/* v23 home title exact two-line fit */
.hero-grid-home .hero-copy h1[data-fit-home-title]{
  display:block;
  width:100%;
  max-width:none;
  font-size:clamp(2rem, 6vw, 7rem);
  line-height:.9;
  letter-spacing:-.055em;
  text-wrap:initial;
}
.hero-grid-home .hero-copy h1[data-fit-home-title] .hero-line{
  display:block;
  white-space:nowrap;
}
@media (max-width:720px){
  .hero-grid-home .hero-copy h1[data-fit-home-title]{
    line-height:.94;
    letter-spacing:-.045em;
  }
}

/* v24 responsive title fitting */
main h1,
main h2,
main h3{
  max-width:none !important;
  width:100%;
  overflow-wrap:normal;
  word-break:normal;
  text-wrap:pretty;
}

.hero-grid-home .hero-copy h1[data-fit-home-title]{
  max-width:none !important;
  width:100%;
  line-height:.98 !important;
  letter-spacing:-.045em !important;
}

.hero-grid-home .hero-copy h1[data-fit-home-title] .hero-line{
  display:block;
  white-space:nowrap;
}

@media (max-width:720px){
  main h1,
  main h2,
  main h3{
    letter-spacing:-.03em;
  }

  .hero-grid-home .hero-copy h1[data-fit-home-title]{
    letter-spacing:-.035em !important;
  }
}


/* v28: make "marca existe" title behave like the standard section title ("Mais clareza, menos improviso.") */
.section-intro-standard-title{
  max-width:860px;
  margin:0 auto 42px;
  text-align:center;
}
.section-intro-standard-title p{
  max-width:720px;
  margin:0 auto;
}
.statement-standard-title{
  font-size:clamp(2rem,3.2vw,3.4rem);
  line-height:1.01;
  letter-spacing:inherit;
  text-wrap:balance;
  max-width:none;
  width:100%;
}
.statement-standard-title br{display:block;}


/* v29: internal page hero titles fixed to two lines like approved home pattern */
.page-hero-copy h1[data-fit-page-title]{
  max-width:none !important;
  width:100% !important;
  text-wrap:initial !important;
  line-height:.98;
}
.page-hero-copy h1[data-fit-page-title] .page-title-line{
  display:block;
  white-space:nowrap;
}
@media (max-width:720px){
  .page-hero-copy h1[data-fit-page-title]{
    font-size:clamp(1.95rem,8vw,3rem);
    letter-spacing:-.04em;
  }
}


/* v30 active home selector detail accent system */
.selector-detail{
  position:relative;
  overflow:hidden;
  --accent: var(--blue);
  --accent-2: var(--teal);
  --detail-glow: rgba(47,128,255,.16);
  border-color: color-mix(in srgb, var(--accent) 28%, rgba(255,255,255,.12));
  box-shadow:
    0 20px 56px rgba(3,10,24,.18),
    0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent) inset;
}

.selector-detail::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 26%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, rgba(255,255,255,.03)) 0%, rgba(255,255,255,.03) 52%, color-mix(in srgb, var(--accent-2) 14%, rgba(255,255,255,.04)) 100%);
  pointer-events:none;
}

.selector-detail > *{
  position:relative;
  z-index:1;
}

.selector-detail .btn-primary{
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--accent) 82%, white),
      color-mix(in srgb, var(--accent-2) 70%, white)
    );
  box-shadow:
    0 18px 42px color-mix(in srgb, var(--accent) 26%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent) inset;
}

.selector-detail .btn-primary:hover{
  box-shadow:
    0 22px 48px color-mix(in srgb, var(--accent) 32%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 22%, transparent) inset;
}

.selector-detail h3{
  text-wrap:balance;
}

.selector-detail[data-active-solution="services"]{
  --accent:#ff7a59;
  --accent-2:#2f80ff;
}

.selector-detail[data-active-solution="tracking"]{
  --accent:#33d7ff;
  --accent-2:#13c8b8;
}

.selector-detail[data-active-solution="solar"]{
  --accent:#ffbf47;
  --accent-2:#ff7a59;
}


/* v31: justified support text + rota do sucesso refinement */
.section-intro p,
.card p,
.step-card p,
.compare-card p,
.notice-card p,
.policy-card p,
.selector-detail p,
.page-hero-copy p,
.faq-body p,
.check-list li,
.contact-card p,
.meta-card p,
.case-card p,
.split-panel p,
.cta-band p,
footer p,
.footer-col p{
  text-align: justify;
  text-align-last: left;
}

.step-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1180px){
  .step-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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


/* v52: subtle section separation with page-toned line + gradient, on top of v31 */
.section,
.section-tight{
  position: relative;
}

main > .section:not(.section-cta)::before,
main > .section-tight.page-meta-strip::before{
  content: "";
  position: absolute;
  top: 0;
  left: min(32px, 4vw);
  right: min(32px, 4vw);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      color-mix(in srgb, var(--accent) 38%, rgba(17,39,80,.18)) 18%,
      color-mix(in srgb, var(--accent) 52%, rgba(17,39,80,.16)) 50%,
      color-mix(in srgb, var(--accent) 38%, rgba(17,39,80,.18)) 82%,
      rgba(255,255,255,0) 100%
    );
  opacity: .9;
  pointer-events: none;
}

main > .section:not(.section-cta)::after,
main > .section-tight.page-meta-strip::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 6%, rgba(255,255,255,1)) 0%,
      color-mix(in srgb, var(--accent) 2%, rgba(255,255,255,0)) 58%,
      rgba(255,255,255,0) 100%
    );
  pointer-events: none;
}

.theme-home main > .section:not(.section-cta)::before,
.theme-home main > .section-tight.page-meta-strip::before{
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(47,128,255,.18) 18%,
      rgba(47,128,255,.34) 50%,
      rgba(47,128,255,.18) 82%,
      rgba(255,255,255,0) 100%
    );
}

.theme-home main > .section:not(.section-cta)::after,
.theme-home main > .section-tight.page-meta-strip::after{
  background:
    linear-gradient(
      180deg,
      rgba(47,128,255,.08) 0%,
      rgba(47,128,255,.025) 58%,
      rgba(255,255,255,0) 100%
    );
}

.section .container,
.section-tight .container{
  position: relative;
  z-index: 1;
}

@media (max-width: 720px){
  main > .section:not(.section-cta)::before,
  main > .section-tight.page-meta-strip::before{
    left: 16px;
    right: 16px;
  }

  main > .section:not(.section-cta)::after,
  main > .section-tight.page-meta-strip::after{
    height: 52px;
  }
}


/* v53: darken the light gray section tone by about 40%, on top of v52 */
.section-soft{
  background: linear-gradient(180deg, #edf2f8 0%, #e1e9f3 100%) !important;
}


/* v55: keep home from v53 and standardize inner pages only */
.section-home-light{
  background: #ffffff !important;
}

.section-home-soft{
  background: linear-gradient(180deg, #edf2f8 0%, #e1e9f3 100%) !important;
}

.section-home-light,
.section-home-soft{
  position: relative;
}

.section-home-light::before,
.section-home-soft::before{
  content: "";
  position: absolute;
  top: 0;
  left: min(32px, 4vw);
  right: min(32px, 4vw);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      color-mix(in srgb, var(--accent) 28%, rgba(17,39,80,.14)) 18%,
      color-mix(in srgb, var(--accent) 40%, rgba(17,39,80,.12)) 50%,
      color-mix(in srgb, var(--accent) 28%, rgba(17,39,80,.14)) 82%,
      rgba(255,255,255,0) 100%
    );
  opacity: .85;
  pointer-events: none;
}

.section-home-light::after,
.section-home-soft::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 4%, rgba(255,255,255,1)) 0%,
      color-mix(in srgb, var(--accent) 1.5%, rgba(255,255,255,0)) 60%,
      rgba(255,255,255,0) 100%
    );
  pointer-events: none;
}

.section-home-light .container,
.section-home-soft .container{
  position: relative;
  z-index: 1;
}

@media (max-width: 720px){
  .section-home-light::before,
  .section-home-soft::before{
    left: 16px;
    right: 16px;
  }
  .section-home-light::after,
  .section-home-soft::after{
    height: 42px;
  }
}

/* v57 - Rastreamento "Para quem é" using the real generated collage, one quadrant per card */
.tracking-audience-grid{
  gap:20px;
}

.tracking-audience-card{
  position:relative;
  overflow:hidden;
  min-height:340px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:#0d1829;
  box-shadow:0 22px 54px rgba(7,20,39,.14);
}

.tracking-audience-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url('../img/tracking-audience-collage.png');
  background-repeat:no-repeat;
  background-size:200% 200%;
  opacity:.98;
  z-index:0;
}

.tracking-card-car::before{background-position:0% 0%;}
.tracking-card-moto::before{background-position:100% 0%;}
.tracking-card-agro::before{background-position:0% 100%;}
.tracking-card-fleet::before{background-position:100% 100%;}

.tracking-audience-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(8,16,30,.06) 0%, rgba(8,16,30,.18) 34%, rgba(8,16,30,.62) 68%, rgba(8,16,30,.90) 100%);
  z-index:0;
}

.tracking-audience-card .card-head,
.tracking-audience-card p{
  position:relative;
  z-index:1;
}

.tracking-audience-card .card-head{
  display:flex;
  align-items:flex-end;
  gap:12px;
  margin-bottom:14px;
}

.tracking-audience-card .badge{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  backdrop-filter:blur(6px);
}

.tracking-audience-card h3{
  color:#fff;
  margin:0;
}

.tracking-audience-card p{
  color:rgba(255,255,255,.88);
  margin-bottom:0;
  text-align:left;
}

@media (max-width: 980px){
  .tracking-audience-card{
    min-height:320px;
  }
}

@media (max-width: 720px){
  .tracking-audience-card{
    min-height:280px;
  }
}
