:root {
    --bg: #1a1a1a;
    --bg2: #202020;
    --bg3: #252525;
    --bg4: #2e2e2e;
    --txt: #fff;
    --txt2: #ccc;
    --muted: #888;
    --on-light: #111;
    --accent: #00d4c8;
    --accent-glow: rgba(0, 212, 200, .4);
    --accent-dark: #00a89e;
    --border: rgba(255, 255, 255, .1);
    --div: rgba(255, 255, 255, .18);
    --r-card: 12px;
    --r-btn: 50px;
    --shadow-accent: 0 0 24px rgba(0, 212, 200, .35);
    --fast: 150ms ease;
    --mid: 250ms ease;
    --max: 1280px;
}

/* ══ LIGHT MODE OVERRIDES ══ */
[data-theme="light"] {
    --bg: #f4f3ef;
    --bg2: #eceae4;
    --bg3: #e3e1da;
    --bg4: #d8d5cc;
    --txt: #111111;
    --txt2: #444444;
    --muted: #777777;
    --border: rgba(0, 0, 0, .10);
    --div: rgba(0, 0, 0, .15);
    --shadow-accent: 0 0 24px rgba(0, 212, 200, .20);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(244, 243, 239, .95);
}

[data-theme="light"] .section-sep {
    border-color: rgba(0, 0, 0, .10);
}

/* Hero */
[data-theme="light"] .hero {
    background: #f4f3ef;
}

[data-theme="light"] .hero-fade {
    background: linear-gradient(to right, #f4f3ef 0%, rgba(244, 243, 239, .60) 55%, transparent 100%);
}

[data-theme="light"] .hero-lines svg line {
    stroke: rgba(0, 0, 0, .07);
}

/* Why Us */
[data-theme="light"] .why-bg {
    background: linear-gradient(135deg, #eceae4 0%, #e3e1da 100%);
}

/* About Badge */
[data-theme="light"] .about-badge-lbl {
    color: rgba(255, 255, 255, 0.7);
}

/* Home Gallery Fade */
[data-theme="light"] .hg-track-wrap::before {
    background: linear-gradient(to right, #f4f2eb 0%, transparent 100%);
}

[data-theme="light"] .hg-track-wrap::after {
    background: linear-gradient(to left, #f4f2eb 0%, transparent 100%);
}

/* ══ THEME TOGGLE PILL ══ */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.tt-track {
    width: 52px;
    height: 28px;
    background: var(--bg4);
    border-radius: 50px;
    border: 1px solid var(--border);
    position: relative;
    transition: background var(--mid), border-color var(--mid);
}

.tt-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    transition: transform var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .tt-thumb {
    transform: translateX(24px);
}

.tt-icon {
    width: 11px;
    height: 11px;
    stroke: #0a0a0a;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    position: absolute;
    transition: opacity var(--mid);
}

.tt-sun {
    opacity: 0;
}

.tt-moon {
    opacity: 1;
}

[data-theme="light"] .tt-sun {
    opacity: 1;
}

[data-theme="light"] .tt-moon {
    opacity: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--txt);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Container ── */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 60px;
}

/* ══════════════ NAVBAR ══════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    display: flex;
    align-items: center;
    transition: background var(--mid), backdrop-filter var(--mid);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, .93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 212, 200, .35));
    transition: height var(--fast);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 212, 200, .55));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--txt);
}

.logo-tag {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.nav-links a {
    font-size: 13.5px;
    letter-spacing: .02em;
    color: var(--txt);
    transition: color var(--fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--fast);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-div {
    width: 1px;
    height: 32px;
    background: var(--div);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: var(--fast);
}

.hamburger:hover span {
    background: var(--accent);
}

/* ══════════════ BUTTONS ══════════════ */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #111;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: var(--r-btn);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-accent), 0 8px 32px rgba(0, 212, 200, .22);
    transition: box-shadow var(--fast), background var(--fast), transform var(--fast);
}

.btn-primary:hover {
    background: #10ece0;
    box-shadow: 0 0 40px rgba(0, 212, 200, .6), 0 8px 40px rgba(0, 212, 200, .3);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--txt);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 32px;
    border-radius: var(--r-btn);
    border: 1px solid var(--div);
    cursor: pointer;
    transition: border-color var(--fast), color var(--fast), transform var(--fast);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ══════════════ HERO ══════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    background: #1a1a1a;
    overflow: hidden;
}

.hero-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-lines svg {
    width: 100%;
    height: 100%;
}

.hero-img-wrap {
    position: absolute;
    top: 0;
    right: -8%;
    bottom: 0;
    width: 75%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform: translateX(80px);
}

.hero-img-wrap.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .8s ease .2s, transform .9s cubic-bezier(.23, 1, .32, 1) .2s;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.hero-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    height: 100%;
    background: linear-gradient(to right, #1a1a1a 0%, rgba(26, 26, 26, .55) 55%, transparent 100%);
    z-index: 3;
}

.hero-inner {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 72px 0 0 60px;
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-content {
    width: 68%;
    flex-shrink: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(16px);
}

.hero-eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease .05s, transform .6s ease .05s;
}

.hero-eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.hero-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--txt);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(28px);
}

.hero-headline.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s ease .1s, transform .7s cubic-bezier(.23, 1, .32, 1) .1s;
}

.hero-sub {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--txt2);
    max-width: 400px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(18px);
}

.hero-sub.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease .2s, transform .6s ease .2s;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(18px);
}

.hero-btns.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease .3s, transform .6s ease .3s;
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    opacity: 0;
    transform: translateY(18px);
}

.hero-stats.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease .4s, transform .6s ease .4s;
}

.stat-item {
    padding-right: 28px;
}

.stat-item:not(:first-child) {
    padding-left: 28px;
    padding-right: 28px;
}

.stat-item:last-child {
    padding-right: 0;
}

.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--txt);
    line-height: 1.1;
}

.stat-lbl {
    font-size: 11px;
    letter-spacing: .02em;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.4;
}

.stat-div {
    width: 1px;
    height: 44px;
    background: var(--div);
    flex-shrink: 0;
}

/* ══════════════ SECTION COMMONS ══════════════ */
.section-sep {
    border: none;
    border-top: 2px solid var(--div);
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--txt);
}

.section-sub {
    font-size: 15px;
    line-height: 1.7;
    color: var(--txt2);
    max-width: 640px;
}

/* ══════════════ ABOUT ══════════════ */
.about {
    background: var(--bg2);
    padding: 96px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    background: var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(0, 212, 200, .12);
    border: 1px solid rgba(0, 212, 200, .3);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 14px 20px;
}

.about-badge-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.about-badge-lbl {
    font-size: 11px;
    color: var(--txt2);
    margin-top: 2px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--txt2);
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.pill {
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--txt2);
    letter-spacing: .02em;
}

/* ══════════════ SERVICES ══════════════ */
.services {
    background: var(--bg);
    padding: 96px 0;
}

.services-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.svc-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: transform var(--mid), border-color var(--mid), box-shadow var(--mid);
    opacity: 0;
    transform: translateY(24px);
}

.svc-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 200, .35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.svc-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 200, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--fast);
}

.svc-card:hover .svc-icon {
    background: rgba(0, 212, 200, .2);
}

.svc-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--txt);
}

.svc-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--muted);
}

.svc-arrow {
    display: none;
}

/* ══════════════ HOME GALLERY ══════════════ */
.home-gallery {
    padding: 96px 0;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.gallery-header {
    text-align: left;
    margin-bottom: 48px;
}

.hg-track-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Optional fade effects on sides */
.hg-track-wrap::before,
.hg-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.hg-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.hg-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.hg-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-gallery 30s linear infinite;
}

.hg-track:hover {
    animation-play-state: paused;
}

.hg-item {
    flex-shrink: 0;
    width: calc(33.333vw - 20px);
    max-width: 400px;
    min-width: 300px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.hg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--slow);
}

.hg-item:hover img {
    transform: scale(1.05);
}

.gallery-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 56px;
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* ══════════════ WHY US ══════════════ */
.why {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #181818 0%, #1e1e1e 100%);
    z-index: 0;
}

.why-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 212, 200, .06) 0%, transparent 60%);
}

.why-inner {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 56px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color var(--fast), background var(--fast);
}

.why-item:hover {
    border-color: rgba(0, 212, 200, .3);
    background: rgba(0, 212, 200, .04);
}

.why-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    min-width: 32px;
    line-height: 1;
}

.why-item-text h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 4px;
}

.why-item-text p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

.why-visual {
    border-radius: 16px;
    background: var(--bg4);
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.why-visual-inner {
    text-align: center;
    padding: 40px;
}

.why-visual .big-num {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 900;
    color: var(--accent);
    opacity: .15;
    line-height: 1;
}

.why-visual .big-lbl {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(14px, 2vw, 22px);
    font-weight: 700;
    color: var(--txt);
    margin-top: 16px;
    letter-spacing: .04em;
}

.why-visual .big-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.6;
}

/* ══════════════ BRANDS ══════════════ */
.brands {
    background: var(--bg2);
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 48px;
}

.brand-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 16px;
    transition: border-color var(--mid), background var(--mid);
}

.brand-tile:hover {
    border-color: rgba(0, 212, 200, .4);
    background: rgba(0, 212, 200, .05);
}

.brand-logo {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity var(--mid), transform var(--mid);
    /* In case logos are dark SVG/PNGs and need a brightness boost in dark mode, 
       we leave as is, opacity works cleanly for all. */
}

.brand-tile:hover .brand-logo {
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo[src*="jaguar"] {
    filter: brightness(0) invert(1);
}

[data-theme="light"] .brand-logo[src*="jaguar"] {
    filter: none;
}

/* ══════════════ PARTNERS ══════════════ */
.partners {
    background: var(--bg);
    padding: 60px 0;
    overflow: hidden;
}

.partners-label {
    text-align: center;
    margin-bottom: 32px;
}

.partners-track-wrap {
    overflow: hidden;
    position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.partners-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.partners-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.partners-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scroll-brands 28s linear infinite;
}

@keyframes scroll-brands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--muted);
    text-transform: uppercase;
    transition: color var(--fast);
}

.partner-chip:hover {
    color: var(--accent);
}

/* ══════════════ CONTACT ══════════════ */
.contact {
    background: var(--bg3);
    padding: 96px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 56px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-field input,
.form-field textarea {
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--txt);
    outline: none;
    transition: border-color var(--fast), box-shadow var(--fast);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 200, .12);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 6px;
}

.contact-info-block .ci-tag {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.ci-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.ci-row:last-child {
    border-bottom: none;
}

.ci-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 212, 200, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ci-detail {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--txt2);
}

.ci-detail strong {
    display: block;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.ci-detail a {
    color: var(--txt2);
    transition: color var(--fast);
}

.ci-detail a:hover {
    color: var(--accent);
}

/* ══════════════ FOOTER ══════════════ */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 28px 0;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left {
    font-size: 12.5px;
    color: var(--muted);
}

.footer-left strong {
    color: var(--txt2);
}

.footer-right {
    display: flex;
    gap: 24px;
}

.footer-right a {
    font-size: 12.5px;
    color: var(--muted);
    transition: color var(--fast);
}

.footer-right a:hover {
    color: var(--accent);
}

/* ══════════════ REVEAL ANIMATION ══════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════ RESPONSIVE ══════════════ */
@media(min-width:1400px) {
    .hero-inner {
        padding-left: 80px;
    }

    .hero-content {
        width: 62%;
    }
}

@media(max-width:1100px) {
    .container {
        padding: 0 36px;
    }

    .hero-inner {
        padding-left: 36px;
    }

    .hero-content {
        width: 72%;
    }

    .about-grid,
    .why-grid,
    .contact-grid {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:960px) {
    .container {
        padding: 0 28px;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-img-block {
        min-height: 300px;
    }

    .why-visual {
        min-height: 280px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-links {
        gap: 24px;
    }

    .hero-content {
        width: 78%;
    }

    .hero-headline {
        font-size: clamp(30px, 5vw, 50px);
    }

    .hg-item {
        width: calc(50vw - 20px);
    }
}

@media(max-width:768px) {
    .container {
        padding: 0 20px;
    }

    .logo img {
        height: 28px;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        margin-left: auto;
        gap: 16px;
    }

    .theme-toggle {
        margin-right: 0;
    }

    .hero {
        min-height: auto;
        padding-bottom: 48px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 0;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
    }

    .hero-img-wrap {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 240px;
        margin-top: 28px;
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-img-wrap img {
        object-position: center center;
    }

    .hero-fade,
    .hero-lines {
        display: none;
    }

    .hero-headline {
        font-size: clamp(28px, 8vw, 48px);
    }

    .hero-sub {
        max-width: 100%;
        font-size: 14px;
    }

    .hero-btns {
        gap: 10px;
    }

    .btn-primary,
    .btn-ghost {
        padding: 12px 24px;
        font-size: 14px;
    }

    .stat-item,
    .stat-item:not(:first-child) {
        padding: 0 16px;
    }

    .stat-item:first-child {
        padding-left: 0;
    }

    .stat-item:last-child {
        padding-right: 0;
    }

    .stat-num {
        font-size: 18px;
    }

    .about {
        padding: 64px 0;
    }

    .services {
        padding: 64px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why {
        padding: 64px 0;
    }

    .brands {
        padding: 56px 0;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact {
        padding: 64px 0;
    }

    .home-gallery {
        padding: 64px 0;
    }

    .hg-item {
        width: calc(100vw - 40px);
        min-width: 260px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 16px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .svc-card {
        padding: 16px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-div {
        display: none;
    }

    .stat-item,
    .stat-item:not(:first-child) {
        padding: 0;
    }
}

@media(max-width:360px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-headline {
        font-size: 26px;
    }
}

/* ══════════════ MOBILE NAV PANEL ══════════════ */
.nav-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-mobile.open {
    max-height: 520px;
    opacity: 1;
}

.nav-mobile-inner {
    padding: 20px 24px 32px;
    display: flex;
    flex-direction: column;
}

.nav-m-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--txt);
    padding: 14px 0;
    transition: color var(--fast);
    display: inline-block;
    position: relative;
    letter-spacing: .02em;
}

.nav-m-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--fast);
}

.nav-m-link:hover {
    color: var(--accent);
}

.nav-m-link:hover::after {
    width: 100%;
}

.hamburger.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media(max-width:768px) {
    .nav-mobile {
        display: block;
    }
}

[data-theme=light] .nav-mobile {
    background: rgba(244, 243, 239, 0.97);
}