:root {
    --orange: #f97316;
    --orange-2: #ea6c0c;
    --orange-soft: rgba(249, 115, 22, 0.1);
    --orange-glow: rgba(249, 115, 22, 0.4);
    --navy: #0d1425;
    --navy-2: #1a2540;
    --cream: #f8fafd;
    --white: #ffffff;
    --slate: #f1f5f9;
    --slate-2: #e8edf5;
    --ink: #1e293b;
    --ink-2: #334155;
    --muted: #64748b;
    --muted-2: #94a3b8;
    --border: #e2e8f080;
    --border-2: #cbd5e1;
    --green: #059669;
    --green-soft: rgba(5, 150, 105, 0.1);
    --wa: #25d366;
    --font-d: "Bebas Neue", sans-serif;
    --font-b: "Plus Jakarta Sans", sans-serif;
    --r: 16px;
    --r2: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-b);
    overflow-x: hidden;
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

p, li, .a-card-p, .svc-card p, .tl-body p, .bento p {
    text-align: justify;
}

/* Base wrapper for subpages so header doesnt overlap */
.page-wrapper {
    padding-top: 150px;
    min-height: 100vh;
}

/* ── HERO CAR ANIMATION ── */
.hero-animation-container {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.hero-logo-base {
    font-family: var(--font-d);
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    letter-spacing: 4px;
}

.hero-car {
    position: absolute;
    left: -100px;
    bottom: 5px;
    font-size: 40px;
    animation: driveIn 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    filter: drop-shadow(0 5px 15px rgba(249, 115, 22, 0.5));
}

.hero-car-trail {
    position: absolute;
    bottom: 12px;
    left: -100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange));
    border-radius: 4px;
    animation: trailDraw 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.logo-reveal {
    font-family: var(--font-d);
    font-size: 80px;
    position: absolute;
    bottom: 0;
    letter-spacing: 4px;
    background: linear-gradient(to right, var(--orange), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
    animation: revealText 2s 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes driveIn {
    0% { left: -100px; transform: scaleX(1); }
    40% { left: calc(50% + 80px); transform: scaleX(1.1); } /* Speeding */
    80% { left: calc(50% + 150px); transform: scaleX(1); opacity: 1; }
    100% { left: 100%; opacity: 0; } /* Drives off screen */
}

@keyframes trailDraw {
    0% { width: 0; left: -100px; }
    40% { width: calc(50% + 180px); left: -100px; }
    80% { width: calc(50% + 250px); left: -100px; opacity: 1; }
    100% { width: calc(50% + 250px); left: 100%; opacity: 0; }
}

@keyframes revealText {
    0% { clip-path: polygon(0 0, 0 100%, 0 100%, 0 0); }
    100% { clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0); }
}

/* ── PAGE LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: opacity 0.6s, visibility 0.6s;
}
#loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.ld-logo {
    font-family: var(--font-d);
    font-size: 40px;
    letter-spacing: 2px;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.ld-logo span {
    background: linear-gradient(135deg, var(--orange), #ff984d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ld-tagline {
    font-family: var(--font-b);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
    margin-top: 8px;
}
.ld-track {
    width: 200px;
    height: 4px;
    background: var(--border-2);
    border-radius: 10px;
    overflow: hidden;
}
.ld-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange), #ff984d);
    border-radius: 10px;
    animation: ldFill 1.5s ease forwards;
}
@keyframes ldFill {
    to { width: 100%; }
}

/* ── PORTAL LOADER ── */
#ploader {
    position: fixed;
    inset: 0;
    background: rgba(13, 20, 37, 0.96);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}
#ploader.on {
    opacity: 1;
    pointer-events: all;
}
#ploader .sp {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
#ploader p {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── NAV & LOGO ADJUSTMENTS ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
    padding: 16px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    padding: 12px 6%;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.nav-logo:hover {
    transform: scale(1.03);
}
.nav-logo img {
    height: 48px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text-group .brand-name {
    font-family: var(--font-d);
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--orange);
    line-height: 1;
}

.logo-text-group .tagline {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--orange);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Interactive Navbar Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 18px;
    border-radius: 100px;
}
.nav-links a.active {
    color: var(--orange);
}
.nav-links a:hover {
    color: var(--orange);
    background: var(--orange-soft);
    transform: translateY(-2px);
}
.btn-portal {
    background: var(--navy);
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--font-b);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-portal::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.btn-portal:hover::before {
    left: 100%;
}
.btn-portal:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--orange-glow);
}

/* ── HERO & ANIMATIONS ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 6% 120px;
    overflow: hidden;
    background: var(--navy);
}
.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: dotDrift 30s linear infinite;
}
@keyframes dotDrift {
    to { background-position: 40px 40px; }
}

.hero-shape { position: absolute; z-index: 1; pointer-events: none; }
.shape-1 { width: 80px; height: 80px; border: 3px solid rgba(249, 115, 22, 0.3); border-radius: 16px; top: 20%; left: 10%; animation: floatShape 8s ease-in-out infinite; transform: rotate(15deg); }
.shape-2 { width: 40px; height: 40px; background: rgba(5, 150, 105, 0.2); border-radius: 50%; bottom: 25%; left: 18%; animation: floatShape 6s ease-in-out infinite reverse; }
.shape-3 { width: 120px; height: 120px; border: 2px dashed rgba(255, 255, 255, 0.1); border-radius: 24px; top: 25%; right: 12%; animation: floatShape 10s ease-in-out infinite; transform: rotate(-20deg); }
.shape-4 { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), transparent); border-radius: 12px; bottom: 30%; right: 15%; animation: floatShape 7s ease-in-out infinite alternate; }

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.hero-orb1 {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 60%);
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: orbPulse 8s ease-in-out infinite alternate;
}
.hero-orb2 {
    position: absolute;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 60%);
    bottom: -10%;
    right: 0%;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
    animation: orbPulse 6s ease-in-out infinite alternate-reverse;
}
@keyframes orbPulse {
    0% { transform: scale(0.9) translateX(-50%); }
    100% { transform: scale(1.2) translateX(-45%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
    opacity: 0;
    animation: slideUpFade 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.bdot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--orange);
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero h1 {
    font-family: var(--font-d);
    font-size: clamp(50px, 9vw, 110px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 32px;
    opacity: 0;
    animation: slideUpFade 1s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero h1 .accent {
    background: linear-gradient(to right, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto 48px;
    font-weight: 400;
    line-height: 1.8;
    opacity: 0;
    animation: slideUpFade 1s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUpFade 1s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--font-b);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    backdrop-filter: blur(10px);
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    font-family: var(--font-b);
    transition: all 0.3s;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── ANIMATED STATS ── */
.stats-belt {
    position: relative;
    z-index: 10;
    margin: -60px 6% 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 40px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
}
.stat-i {
    text-align: center;
    padding: 16px;
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-i.on {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-i:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-2), transparent);
}
.stat-num {
    font-family: var(--font-d);
    font-size: 54px;
    letter-spacing: 1px;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.stat-i:hover .stat-num {
    transform: scale(1.15) translateY(-5px);
    text-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}
.stat-num .cnt {
    color: transparent;
    background: linear-gradient(135deg, var(--orange), #ff984d);
    -webkit-background-clip: text;
}
.stat-lbl {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s;
}
.stat-i:hover .stat-lbl {
    color: var(--navy);
}

/* ── SECTIONS ── */
.sec { padding: 120px 6%; }
.sec-alt { background: var(--slate); }
.sec-white { background: var(--white); }
.sec-hd { text-align: center; margin-bottom: 70px; }
.sec-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    background: var(--orange-soft);
    padding: 6px 16px;
    border-radius: 100px;
}
.sec-title {
    font-family: var(--font-d);
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: 1px;
    line-height: 0.95;
    color: var(--navy);
    margin-bottom: 18px;
}
.sec-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* ── ABOUT ── */
.about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
    background: var(--orange-soft);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}
.apulse {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 10px var(--orange);
}
.about-title {
    font-family: var(--font-d);
    font-size: clamp(36px, 4.5vw, 58px);
    letter-spacing: 1px;
    line-height: 0.95;
    color: var(--navy);
    margin-bottom: 30px;
}
.about-title em {
    background: linear-gradient(to right, var(--orange), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    display: block;
}
.about-txt {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.a-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.03);
}
.a-card:hover {
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.15);
}
.a-card-icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: inline-block;
    padding: 12px;
    background: var(--slate);
    border-radius: 12px;
}
.a-card:hover .a-card-icon {
    background: var(--orange-soft);
    transform: scale(1.1);
    transition: 0.3s;
}
.a-card-t {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
}
.a-card-p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── SERVICES ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.03);
}
.svc-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff984d);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s ease;
}
.svc-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.12);
}
.svc-card:hover::after {
    transform: scaleX(1);
}
.svc-icon {
    font-size: 42px;
    margin-bottom: 24px;
}
.svc-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}
.svc-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

/* ── MODERN ANIMATED CATALOG ── */
.catalog-section {
    padding: 120px 6%;
    background: var(--white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cat-btn {
    background: var(--white);
    color: var(--muted);
    border: 1px solid var(--border-2);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-b);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.cat-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(249, 115, 22, 0.1);
}

.cat-btn.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 10px 25px rgba(13, 20, 37, 0.25);
    transform: translateY(-3px);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.04);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
}

.product-card.hidden-card {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.product-img-container {
    height: 240px;
    overflow: hidden;
    background: var(--slate);
    position: relative;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img-container img {
    transform: scale(1.15);
}

.product-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.product-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-meta {
    font-size: 14px;
    color: var(--muted-2);
    font-weight: 600;
    margin-bottom: 16px;
}

.product-price {
    font-family: var(--font-d);
    font-size: 38px;
    letter-spacing: 0.5px;
    color: var(--green);
    margin-top: auto;
    margin-bottom: 24px;
}

.product-card .btn-buy {
    width: 100%;
    padding: 14px;
    background: var(--slate);
    color: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-b);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.product-card:hover .btn-buy {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 25px var(--orange-glow);
    transform: scale(1.02);
}

.catalog-spinner {
    color: var(--muted);
    font-size: 18px;
    font-weight: 600;
}

/* ── BENTO / FEATURES ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.bento {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 42px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.04);
}
.bento:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}
.b1 { grid-column: span 7; }
.b2 {
    grid-column: span 5;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    border: none;
}
.b2 h3 { color: #fff; }
.b2 p { color: rgba(255, 255, 255, 0.7) !important; }
.b2 .feat-li::before { color: var(--orange); }
.b2 .feat-li { color: rgba(255, 255, 255, 0.85) !important; }
.b3 { grid-column: span 5; }
.b4 { grid-column: span 7; }
.bico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--orange-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bento:hover .bico {
    transform: scale(1.15) rotate(-8deg);
    background: var(--orange);
    color: white;
}
.b2 .bico { background: rgba(255, 255, 255, 0.1); }
.b2:hover .bico { background: var(--orange); }
.bento h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.bento p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.feat-li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-2);
    margin-bottom: 10px;
    font-weight: 600;
}
.feat-li::before {
    content: "✓";
    color: var(--orange);
    font-weight: 800;
    font-size: 16px;
}

/* ── GALLERY ── */
.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.gal-item {
    position: relative;
    border-radius: var(--r2);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.gal-r2 { grid-row: span 2; }
.gal-c2 { grid-column: span 2; }
.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.gal-item:hover img {
    transform: scale(1.1);
}
.gal-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 20, 37, 0.95) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
.gal-item:hover .gal-ov { opacity: 1; }
.gal-ov h4 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: 0.4s;
    opacity: 0;
}
.gal-ov span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    transform: translateY(10px);
    transition: 0.4s 0.1s;
    opacity: 0;
}
.gal-item:hover .gal-ov h4,
.gal-item:hover .gal-ov span {
    transform: translateY(0);
    opacity: 1;
}

/* ── TIMELINE ── */
.tl-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.tl-wrap::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--orange), rgba(249, 115, 22, 0.05));
    border-radius: 3px;
}
.tl-step {
    display: flex;
    gap: 36px;
    margin-bottom: 56px;
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.tl-step:hover {
    opacity: 1;
    transform: translateX(10px);
}
.tl-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
    background: var(--white);
    border: 3px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}
.tl-step:hover .tl-dot {
    border-color: var(--orange);
    box-shadow: 0 0 0 8px var(--orange-soft);
    transform: scale(1.1);
}
.tl-body {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 32px;
    flex: 1;
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.4s;
}
.tl-step:hover .tl-body {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 15px 30px -10px rgba(249, 115, 22, 0.1);
}
.tl-body h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.tl-body p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
}

/* ── CTA BOX ── */
.cta-shell {
    padding: 100px 6% 0;
    background: var(--slate);
}
.cta-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--orange), #d95a00);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 40px 100px -20px rgba(249, 115, 22, 0.5);
    transform: translateY(60px);
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: spin 15s linear infinite;
    pointer-events: none;
}
.cta-box h2 {
    font-family: var(--font-d);
    font-size: clamp(40px, 6vw, 70px);
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}
.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}
.cta-box .btn-cta {
    background: #fff;
    color: var(--orange);
    font-size: 16px;
    padding: 20px 48px;
    border-radius: 14px;
    position: relative;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-b);
}
.cta-box .btn-cta:hover {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: #fff;
    padding: 160px 6% 60px;
}
.foot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}
.foot-col h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}
.foot-col p,
.foot-col a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    display: block;
    transition: 0.3s;
    text-align: left;
}
.foot-col a:hover {
    color: var(--orange);
    transform: translateX(6px);
}
.foot-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── FLOATING ── */
.visit-pill {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 12px 22px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.ldot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.5);
    animation: blink 1.5s infinite;
}
#vc {
    color: var(--orange);
}

/* ── REVEAL ANIMATIONS ── */
.rv, .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv.on, .reveal.on {
    opacity: 1;
    transform: none;
}
.rv-l {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv-l.on {
    opacity: 1;
    transform: none;
}
.rv-r {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv-r.on {
    opacity: 1;
    transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── FULLY RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1200px) {
    .bento-grid { gap: 20px; }
    .catalog-grid { gap: 20px; }
}

@media (max-width: 1024px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .b1, .b2, .b3, .b4 { grid-column: span 12; }
    .about-wrap { grid-template-columns: 1fr; gap: 56px; }
    .stats-belt { padding: 30px; grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
    .stat-i:nth-child(2)::after { display: none; }
    .gal-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-c2 { grid-column: span 1; }
    .gal-r2 { grid-row: span 1; }
    .hero h1 { font-size: clamp(46px, 8vw, 80px); }
}

@media (max-width: 768px) {
    nav .nav-links { display: none; }
    .sec { padding: 90px 5%; }
    .stats-belt { margin: -40px 4% 0; padding: 20px; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1); }
    .stat-num { font-size: 40px; }
    .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .svc-grid { grid-template-columns: 1fr; }
    .about-r { grid-template-columns: 1fr; }
    .cta-box { padding: 50px 30px; border-radius: 20px; }
    .visit-pill { bottom: 24px; left: 24px; font-size: 12px; padding: 10px 16px; }
    .tl-wrap::before { left: 30px; }
    .tl-dot { width: 60px; height: 60px; font-size: 24px; }
    .tl-step { gap: 24px; }
}

@media (max-width: 480px) {
    nav { padding: 16px 5%; }
    .nav-logo-text { display: none; }
    .btn-portal { padding: 10px 20px; font-size: 13px; }
    .hero { padding: 140px 5% 100px; }
    .hero h1 { font-size: 42px; line-height: 1.05; letter-spacing: 0; }
    .hero-sub { font-size: 15px; }
    .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
    .btn-cta, .btn-ghost { width: 100%; padding: 16px; }
    .stats-belt { grid-template-columns: 1fr; margin: -30px 4% 0; gap: 10px; padding: 24px 16px; }
    .stat-i:not(:last-child)::after { display: none; }
    .stat-i { padding: 10px; border-bottom: 1px solid var(--border); }
    .stat-i:last-child { border-bottom: none; }
    .sec { padding: 70px 5%; }
    .sec-title { font-size: 32px; }
    .sec-sub { font-size: 14px; }
    .catalog-grid { grid-template-columns: 1fr; gap: 20px; }
    .cat-btn { padding: 10px 20px; font-size: 13px; flex: 1 1 40%; text-align: center; }
    .bento { padding: 28px 20px; }
    .bico { width: 48px; height: 48px; font-size: 22px; }
    .bento h3 { font-size: 19px; }
    .tl-wrap::before { left: 24px; }
    .tl-dot { width: 48px; height: 48px; font-size: 20px; }
    .tl-step { gap: 16px; margin-bottom: 40px; }
    .tl-body { padding: 24px 20px; }
    .cta-box h2 { font-size: 32px; }
    .cta-box p { font-size: 15px; }
    .cta-box .btn-cta { width: 100%; padding: 16px; }
    footer { padding: 120px 5% 40px; }
    .foot-grid { gap: 40px; }
    .visit-pill { display: none; }
}