:root {
    --bg: #050507;
    --bg-soft: #0a0a0d;
    --ink: #ffffff;
    --muted: #d1d5db;
    --muted-2: #9ca3af;
    --accent: #ff622a;
    --line: rgba(255,255,255,.2);
    --line-soft: rgba(255,255,255,.11);
    --glass: rgba(0,0,0,.4);
    --max: 1180px;
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.theme-light {
    --bg: #f4f7fb;
    --bg-soft: #ffffff;
    --ink: #111827;
    --muted: #536171;
    --muted-2: #6f7b8d;
    --accent: #e85d2a;
    --line: rgba(15, 23, 42, .18);
    --line-soft: rgba(15, 23, 42, .11);
    --glass: rgba(255,255,255,.76);
    background:
        radial-gradient(circle at 18% 0%, rgba(255,98,42,.11), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #eef3f8 42%, #f8fafc 100%);
    color: var(--ink);
}

body.nav-open {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
}

.narrow {
    max-width: 820px;
}

.center {
    text-align: center;
}

.liquid-glass {
    position: relative;
    overflow: hidden;
    border: none;
    background: rgba(0,0,0,.4);
    background-blend-mode: luminosity;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.liquid-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg,
        rgba(255,255,255,.3) 0%,
        rgba(255,255,255,.1) 20%,
        rgba(255,255,255,0) 40%,
        rgba(255,255,255,0) 60%,
        rgba(255,255,255,.1) 80%,
        rgba(255,255,255,.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

h1,
h2,
h3 {
    margin: 0;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: keep-all;
}

h1 {
    max-width: 980px;
    font-size: clamp(2.45rem, 5.8vw, 5.35rem);
    white-space: pre-line;
    text-wrap: balance;
}

h2 {
    font-size: clamp(2rem, 4.1vw, 3.9rem);
    text-wrap: balance;
}

h3 {
    font-size: clamp(1.22rem, 2vw, 1.62rem);
    letter-spacing: 0;
    line-height: 1.18;
}

p {
    margin: 0;
    color: var(--muted);
}

.icon {
    width: 1.05em;
    height: 1.05em;
    flex: 0 0 auto;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius);
    padding: 9px 14px;
    color: rgba(255,255,255,.84);
    font-size: .74rem;
    font-weight: 500;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 22px;
    color: #fff;
    font-size: .95rem;
    font-weight: 500;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #f3f4f6;
}

.btn-ghost:hover,
.btn-dark:hover {
    background: #fff;
    color: #000;
}

.site-header {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 24px 0;
}

.nav-shell {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius);
    overflow: visible;
    padding: 8px 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 162px;
    max-height: 58px;
    height: auto;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(9px, 1.25vw, 18px);
    color: rgba(255,255,255,.82);
    font-size: .84rem;
    font-weight: 400;
}

.primary-nav a {
    transition: color .16s ease;
}

.primary-nav a:hover {
    color: #fff;
}

.nav-quote {
    border-radius: 10px;
    padding: 10px 16px;
    background: #fff;
    color: #000 !important;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 100;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    margin: 5px auto;
    background: #fff;
}

.theme-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
}

.responsive-image {
    display: block;
}

.responsive-image img {
    display: block;
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 110px;
    padding-bottom: 48px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
    align-items: end;
    gap: 32px;
}

.hero-copy {
    max-width: 820px;
}

.hero-copy .eyebrow {
    margin-bottom: 18px;
}

.hero h1 {
    margin-bottom: 18px;
}

.hero p {
    max-width: 600px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
}

.hero-tag {
    display: flex;
    justify-content: flex-end;
}

.hero-tag-card {
    border-radius: var(--radius);
    padding: 13px 24px;
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 300;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.trust-chips span {
    border-radius: 10px;
    padding: 8px 12px;
    color: rgba(255,255,255,.82);
    font-size: .82rem;
}

.stats-strip {
    border-block: 1px solid var(--line-soft);
    background: #050507;
}

.campaign-strip {
    border-bottom: 1px solid var(--line-soft);
    padding: 22px 0;
    background: #fff;
    color: #111827;
}

.campaign-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.campaign-inner .eyebrow {
    background: rgba(15,23,42,.06);
    color: #111827;
}

.campaign-inner p {
    margin-top: 8px;
    color: #475569;
}

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

.stats-grid div {
    min-height: 112px;
    border-right: 1px solid var(--line-soft);
    padding: 22px;
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid strong {
    display: block;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted-2);
    font-size: .88rem;
}

.section {
    position: relative;
    padding: 104px 0;
    background: #050507;
}

.section:nth-of-type(even),
.band,
.faq-section,
.fleet-showcase {
    background: #08080b;
}

.section-head {
    display: flex;
    max-width: 940px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    text-align: center;
}

.section-head h2 {
    max-width: 920px;
    text-wrap: balance;
}

.section-head p {
    max-width: 760px;
}

.section-head .eyebrow {
    margin-bottom: 0;
}

.split .eyebrow {
    margin-bottom: 14px;
}

.section-head p {
    color: var(--muted);
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card,
.testimonial-card,
.area-card,
.blog-card,
.fleet-card,
.service-feature,
.side-quote,
.contact-panel,
.process-step,
details {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(0,0,0,.42);
    box-shadow: inset 0 1px 1px rgba(255,255,255,.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.service-card {
    min-height: 278px;
    padding: 24px;
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.06);
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,.04);
}

.service-card h3 {
    margin-top: 20px;
}

.service-card p,
.fleet-card p,
.area-card p,
.blog-card p,
.testimonial-card p {
    margin-top: 12px;
}

.service-card a,
.area-card a,
.blog-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #fff;
    font-weight: 500;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
    gap: 56px;
    align-items: center;
}

.split h2 {
    margin-bottom: 18px;
}

.split p + p {
    margin-top: 14px;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-step {
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.process-step > span {
    position: absolute;
    right: 18px;
    bottom: -26px;
    color: rgba(255,255,255,.08);
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
}

.process-step h3,
.process-step p {
    position: relative;
}

.process-step p {
    margin-top: 8px;
}

.image-panel {
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #000;
}

.image-panel img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.brand-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.brand-video-card {
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: #050507;
    box-shadow: 0 22px 50px rgba(0,0,0,.22);
}

.brand-video-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.check-grid span,
.fleet-detail li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.86);
    font-weight: 400;
}

.fleet-grid,
.testimonial-grid,
.area-grid,
.blog-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.fleet-card {
    min-height: 360px;
    overflow: hidden;
    padding: 24px;
}

.fleet-card img {
    width: 100%;
    height: 194px;
    object-fit: contain;
    filter: drop-shadow(0 20px 36px rgba(255,255,255,.08));
}

.fleet-card span,
.area-card span,
.blog-card time,
.stars {
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    font-weight: 500;
    text-transform: uppercase;
}

.coverage-cta .btn {
    margin-top: 24px;
}

.testimonial-card {
    padding: 24px;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.reference-card {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(0,0,0,.42);
}

.reference-card span,
.reference-card strong {
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.reference-card h3 {
    margin: 16px 0 12px;
}

.reference-card strong {
    display: block;
    margin-top: 18px;
    color: #fff;
}

.solution-grid,
.trust-grid,
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.solution-card,
.trust-card,
.checklist-group {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255,255,255,.06);
}

.solution-card span,
.trust-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--muted-2);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
}

.solution-card h2,
.solution-card h3,
.trust-card h2,
.trust-card h3 {
    margin-bottom: 14px;
}

.solution-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 600;
}

.trust-card-large {
    grid-column: span 2;
}

.small-text {
    margin-top: 18px;
}

.proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.proof-list strong,
.side-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    padding: 9px 12px;
    color: var(--ink);
    font-size: .9rem;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.side-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.workflow-grid {
    margin-top: 32px;
}

.checklist-panel {
    display: grid;
    gap: 18px;
}

.checklist-group h2 {
    margin-bottom: 16px;
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.checklist-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    border-top: 1px solid var(--line-soft);
    padding: 15px 0;
    cursor: pointer;
}

.checklist-item input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--accent);
}

.checklist-item strong,
.checklist-item em {
    display: block;
}

.checklist-item em {
    margin-top: 4px;
    color: var(--muted);
    font-style: normal;
}

blockquote {
    margin: 18px 0;
    color: #fff;
}

.testimonial-card span {
    display: block;
    color: var(--muted-2);
}

.quote-band {
    overflow: hidden;
    border-block: 1px solid var(--line-soft);
    background: #f7f7f7;
    color: #050507;
}

.quote-band h2,
.quote-band .eyebrow {
    color: #050507;
}

.quote-band .eyebrow {
    background: rgba(0,0,0,.08);
}

.quote-band p {
    color: #333;
}

.quote-image img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(0,0,0,.22));
}

.faq-list {
    display: grid;
    gap: 10px;
}

details {
    overflow: hidden;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #fff;
    font-weight: 500;
}

details p {
    padding: 0 20px 20px;
}

.page-hero {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 150px 0 70px;
    background: #000;
}

.page-hero > img,
.page-hero > .responsive-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .72;
}

.page-hero > img,
.page-hero > .responsive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-top: 18px;
}

.page-hero p {
    max-width: 760px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

.service-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-feature {
    overflow: hidden;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
}

.service-feature > img,
.service-feature > .responsive-image {
    width: 100%;
    height: 100%;
    min-height: 330px;
    filter: grayscale(1) contrast(1.08);
}

.service-feature > .responsive-image img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.service-feature > div {
    padding: 28px;
}

.service-feature p {
    margin: 14px 0 20px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}

.rich-text {
    color: var(--muted);
    font-size: 1.04rem;
}

.rich-text h2 {
    margin-bottom: 18px;
}

.side-quote {
    position: sticky;
    top: 108px;
    padding: 24px;
}

.side-quote p {
    margin: 12px 0 20px;
}

.fleet-detail-grid {
    display: grid;
    gap: 24px;
}

.fleet-detail {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 36px;
}

.fleet-detail img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.fleet-detail ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.gallery-grid {
    margin-top: 54px;
}

.gallery-grid img,
.blog-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    object-fit: cover;
    filter: grayscale(.85) contrast(1.05);
}

.area-card,
.blog-card {
    overflow: hidden;
    padding: 24px;
}

.blog-card {
    padding: 0;
}

.blog-card div {
    padding: 22px;
}

.area-card h2,
.blog-card h2 {
    margin-top: 12px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: #fff;
    font-weight: 400;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    padding: 13px 14px;
    background: rgba(0,0,0,.42);
    color: #fff;
    outline: 0;
}

.lead-form input:focus,
.lead-form textarea:focus {
    border-color: rgba(255,255,255,.42);
}

.span-2 {
    grid-column: 1 / -1;
}

.contact-panel {
    padding: 24px;
}

.contact-panel a,
.contact-panel p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.map-embed {
    overflow: hidden;
    margin-top: 20px;
    border-radius: var(--radius);
}

.map-embed iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
}

.flash {
    margin-top: 98px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 14px 16px;
    background: rgba(255,255,255,.08);
    color: #fff;
}

.site-footer {
    border-top: 1px solid var(--line-soft);
    background: #050507;
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(150px, .55fr));
    gap: 36px;
}

.footer-logo {
    width: 190px;
    max-height: 76px;
    object-fit: contain;
}

.site-footer p {
    max-width: 420px;
    margin-top: 18px;
}

.site-footer h2 {
    margin-bottom: 16px;
    font-size: 1.15rem;
    letter-spacing: 0;
}

.site-footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--muted);
}

.site-footer a:hover {
    color: #fff;
}

.footer-actions {
    margin-top: 22px;
}

.footer-bottom {
    display: flex;
    width: min(var(--max), calc(100% - 48px));
    justify-content: space-between;
    gap: 20px;
    margin: 48px auto 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 22px;
    color: var(--muted-2);
    font-size: .9rem;
}

.floating-whatsapp {
    position: fixed;
    z-index: 45;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: #000;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.calculator-grid,
.tracker-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 24px;
    align-items: start;
}

.calculator-result,
.tracking-result {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 28px;
    background: rgba(0,0,0,.42);
}

.calculator-result strong {
    display: block;
    margin: 22px 0 12px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1;
}

.timeline {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.timeline article {
    border-left: 2px solid currentColor;
    padding: 2px 0 2px 16px;
}

.timeline strong,
.timeline span {
    display: block;
}

.timeline span {
    color: var(--muted-2);
    font-size: .85rem;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.mini-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    object-fit: cover;
}

body.theme-light .site-header .liquid-glass {
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 44px rgba(15,23,42,.08), inset 0 1px 1px rgba(255,255,255,.5);
}

body.theme-light .primary-nav {
    color: rgba(17,24,39,.78);
}

body.theme-light .primary-nav a:hover {
    color: #111827;
}

body.theme-light .nav-quote {
    background: #111827;
    color: #fff !important;
}

body.theme-light .nav-toggle,
body.theme-light .theme-toggle {
    border-color: rgba(15,23,42,.12);
    background: rgba(15,23,42,.06);
    color: #111827;
}

body.theme-light .section {
    background: #f8fafc;
}

body.theme-light .section:nth-of-type(even),
body.theme-light .fleet-showcase,
body.theme-light .faq-section {
    background: #eef3f8;
}

body.theme-light .nav-toggle span {
    background: #111827;
}

body.theme-light .hero,
body.theme-light .page-hero {
    background: #edf2f7;
}

body.theme-light .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 27% 68%, rgba(255,255,255,.78) 0%, rgba(255,255,255,.46) 31%, rgba(255,255,255,.08) 58%, transparent 74%),
        linear-gradient(90deg, rgba(248,250,252,.36) 0%, rgba(248,250,252,.16) 38%, rgba(248,250,252,0) 74%),
        linear-gradient(180deg, rgba(248,250,252,.08) 0%, rgba(248,250,252,.16) 100%);
}

body.theme-light .page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(248,250,252,.78) 0%, rgba(248,250,252,.46) 45%, rgba(248,250,252,.12) 100%),
        linear-gradient(180deg, rgba(248,250,252,.08) 0%, rgba(248,250,252,.2) 100%);
}

body.theme-light .hero-video {
    opacity: 1;
    filter: brightness(1.02) saturate(1.08) contrast(1.04);
}

body.theme-light .page-hero > img,
body.theme-light .page-hero > .responsive-image {
    z-index: 0;
    opacity: .78;
    filter: brightness(1.16) saturate(.98);
}

body.theme-light .page-hero-content {
    z-index: 2;
}

body.theme-light .hero h1,
body.theme-light .page-hero h1 {
    color: #111827;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

body.theme-light .hero p,
body.theme-light .page-hero p {
    color: #334155;
}

body.theme-light .hero .liquid-glass,
body.theme-light .page-hero .liquid-glass,
body.theme-light .trust-chips span,
body.theme-light .hero-tag-card {
    background: rgba(255,255,255,.76);
    color: #111827;
    box-shadow: 0 14px 32px rgba(15,23,42,.1), inset 0 1px 1px rgba(255,255,255,.55);
}

body.theme-light .service-icon {
    border-color: rgba(232,93,42,.34);
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,247,242,.82)),
        rgba(232,93,42,.09);
    color: #c2410c;
    box-shadow: 0 12px 24px rgba(194,65,12,.12), inset 0 1px 1px rgba(255,255,255,.72);
}

body.theme-light .process-step > span {
    color: rgba(232,93,42,.16);
}

body.theme-light .section:not(.quote-band):not(.band) h2,
body.theme-light .section:not(.quote-band):not(.band) h3,
body.theme-light .area-card h2,
body.theme-light .blog-card h2,
body.theme-light .fleet-card h3,
body.theme-light .service-card h3,
body.theme-light .solution-card h2,
body.theme-light .solution-card h3,
body.theme-light .trust-card h2,
body.theme-light .trust-card h3,
body.theme-light .checklist-group h2,
body.theme-light .rich-text h2,
body.theme-light .contact-grid h2,
body.theme-light .calculator-result h2,
body.theme-light .tracking-result h2 {
    color: #111827;
}

body.theme-light .section .eyebrow,
body.theme-light .band .eyebrow,
body.theme-light .fleet-showcase .eyebrow,
body.theme-light .faq-section .eyebrow {
    background: rgba(255,98,42,.11);
    color: #c2410c;
}

body.theme-light .stats-grid strong {
    color: #111827;
}

body.theme-light .stats-grid span,
body.theme-light .section-head p,
body.theme-light .service-card p,
body.theme-light .area-card p,
body.theme-light .blog-card p,
body.theme-light .fleet-card p,
body.theme-light .solution-card p,
body.theme-light .trust-card p,
body.theme-light .rich-text p,
body.theme-light .process-step p,
body.theme-light details p,
body.theme-light .checklist-item em {
    color: #536171;
}

body.theme-light .service-card,
body.theme-light .testimonial-card,
body.theme-light .area-card,
body.theme-light .blog-card,
body.theme-light .fleet-card,
body.theme-light .solution-card,
body.theme-light .trust-card,
body.theme-light .checklist-group,
body.theme-light .service-feature,
body.theme-light .brand-video-card,
body.theme-light .side-quote,
body.theme-light .contact-panel,
body.theme-light .process-step,
body.theme-light details,
body.theme-light .reference-card,
body.theme-light .calculator-result,
body.theme-light .tracking-result {
    background: rgba(255,255,255,.86);
    color: #111827;
    box-shadow: 0 18px 38px rgba(15,23,42,.08);
}

body.theme-dark .brand img,
.site-footer .footer-logo {
    filter: brightness(0) invert(1);
}

body.theme-light .service-card a,
body.theme-light .area-card a,
body.theme-light .blog-card a,
body.theme-light .check-grid span,
body.theme-light .fleet-detail li,
body.theme-light summary,
body.theme-light blockquote,
body.theme-light .lead-form label,
body.theme-light .contact-panel a,
body.theme-light .contact-panel p,
body.theme-light .proof-list strong,
body.theme-light .side-list span,
body.theme-light .checklist-item strong {
    color: #111827;
}

body.theme-light .reference-card span,
body.theme-light .reference-card strong,
body.theme-light .solution-card span,
body.theme-light .trust-card span {
    color: #475569;
}

body.theme-light .band {
    background: #e9eef5;
    color: #111827;
}

body.theme-light .band h2,
body.theme-light .band h3 {
    color: #111827;
}

body.theme-light .stats-strip,
body.theme-light .quote-band {
    background: #fff;
}

body.theme-light .lead-form input,
body.theme-light .lead-form textarea,
body.theme-light .lead-form select {
    background: #fff;
    color: #111827;
}

body.theme-light .btn-ghost,
body.theme-light .btn-dark {
    color: #111827;
}

body.theme-light .calculator-result strong {
    color: #111827;
}

.not-found,
.setup-hold {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 40px;
    text-align: center;
}

.not-found img {
    max-width: 420px;
    margin-inline: auto;
}

.setup-hold main {
    max-width: 620px;
}

.setup-hold img {
    width: 220px;
    margin: 0 auto 24px;
}

.setup-status {
    margin: 22px auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255,255,255,.08);
    text-align: left;
}

.setup-status p + p {
    margin-top: 8px;
}

.animated-char {
    display: inline-block;
    opacity: 0;
    transform: translateX(-18px);
    transition-property: opacity, transform;
    transition-duration: 500ms;
    transition-timing-function: ease;
}

.animated-char.in {
    opacity: 1;
    transform: translateX(0);
}

.animated-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(.18em);
    transition: opacity 500ms ease, transform 500ms ease;
    white-space: nowrap;
}

.animated-word.in {
    opacity: 1;
    transform: translateY(0);
}

.animated-line {
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.in {
    opacity: 1;
    transform: none;
    transition: opacity 1000ms ease, transform 1000ms ease;
}

.reveal.late.in {
    transition-delay: 220ms;
}

@media (max-width: 1040px) {
    .hero-inner,
    .split,
    .article-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-tag {
        justify-content: flex-start;
    }

    .service-grid,
    .brand-video-grid,
    .fleet-grid,
    .testimonial-grid,
    .area-grid,
    .blog-grid,
    .gallery-grid,
    .reference-grid,
    .solution-grid,
    .trust-grid,
    .workflow-grid,
    .calculator-grid,
    .tracker-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid-large {
        grid-template-columns: 1fr;
    }

    .side-quote {
        position: static;
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 32px, var(--max));
    }

    .site-header {
        padding: 16px 16px 0;
    }

    .brand img {
        width: 128px;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        z-index: 90;
        top: 82px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-radius: var(--radius);
        padding: 10px;
        background: rgba(0,0,0,.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    body.theme-light .primary-nav {
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.96);
        box-shadow: 0 18px 44px rgba(15,23,42,.14);
    }

    .primary-nav.open {
        display: flex;
    }

    .primary-nav a {
        padding: 13px 10px;
    }

    .nav-quote {
        margin-top: 6px;
        text-align: center;
    }

    .hero-inner {
        min-height: 100vh;
        padding-top: 104px;
        padding-bottom: 32px;
    }

    .hero-actions {
        gap: 10px;
    }

    .campaign-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-grid,
    .section-head,
    .service-grid,
    .brand-video-grid,
    .fleet-grid,
    .testimonial-grid,
    .area-grid,
    .blog-grid,
    .gallery-grid,
    .reference-grid,
    .solution-grid,
    .trust-grid,
    .workflow-grid,
    .calculator-grid,
    .tracker-grid,
    .lead-form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .section {
        padding: 72px 0;
    }

    .image-panel img {
        height: 340px;
    }

    .check-grid,
    .fleet-detail {
        grid-template-columns: 1fr;
    }

    .service-feature {
        grid-template-columns: 1fr;
    }

    .trust-card-large {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
