
:root,
[data-theme="dark"] {
    --bg-dark:        #0a0a0f;
    --bg-card:        #0f0f1a;
    --bg-card2:       #12121e;
    --purple-main:    #8A4FD3;
    --purple-bright:  #B37CFF;
    --purple-glow:    rgba(124,58,237,.45);
    --purple-border:  rgba(124,58,237,.35);
    --text-white:     #f0f0f8;
    --text-muted:     #8888aa;
    --text-xs:        #5a5a7a;
    --border-subtle:  rgba(255, 255, 255, 0.09);
    --navbar-bg:      rgba(10,10,15,.88);
    --offcanvas-bg:   #0f0f1a;
    --offcanvas-border: rgba(124,58,237,.25);
    --watermark-color: rgba(255,255,255,.05);
    --hero-bg-grad:   radial-gradient(ellipse 70% 60% at 50% 20%, rgba(124,58,237,.25) 0%, transparent 70%),
                    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(90,30,180,.18) 0%, transparent 60%);
    --input-bg:       #12121e;
    --toggler-filter: invert(1);
}

/* ── Light theme ── */
[data-theme="light"] {
    --bg-dark:        #ffffff;
    --bg-card:        #ffffff;
    --bg-card2:       #eeeef8;
    --purple-main:    #8A4FD3;
    --purple-bright:  #6d28d9;
    --purple-glow:    rgba(124,58,237,.25);
    --purple-border:  rgba(109,40,217,.3);
    --text-white:     #1a1a2e;
    --text-muted:     #555577;
    --text-xs:        #9999bb;
    --border-subtle:  rgba(0,0,0,.08);
    --navbar-bg:      rgba(255,255,255,.92);
    --offcanvas-bg:   #ffffff;
    --offcanvas-border: rgba(109,40,217,.2);
    --watermark-color: rgba(0,0,0,.04);
    --hero-bg-grad:   radial-gradient(ellipse 70% 60% at 50% 20%, rgba(124,58,237,.12) 0%, transparent 70%),
                    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(90,30,180,.08) 0%, transparent 60%);
    --input-bg:       #eeeef8;
    --toggler-filter: none;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    font-weight: 300;
    transition: background .35s ease, color .35s ease;
}
h1, h2, h3, h4, h5, h6, .btn, .nav-link {
    font-family: 'Technovier', sans-serif;
    font-weight: 400;
}
.main-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}
.main-logo .text-logo {
    display: flex;
    flex-direction: column;
}
.main-logo img {
    width: 60px;
}
.main-logo .brand-text {
    font-family: 'Technovier', sans-serif;
    font-weight: 700;
    line-height: 18px;
    font-size: 23px;
    margin-bottom: 2px;
}
.main-logo .brand-subtext {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 10.7px;
    margin-left: 8px;
    line-height: 14px;
}
.btn:hover {
    background-color: var(--purple-main);
}
/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-main); border-radius: 4px; }

/* ─── Navbar ─────────────────────────────────────── */
.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background .35s ease;
}
.navbar-brand {
    
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-white) !important;
    letter-spacing: 1px;
}
.nav-link {
    color: var(--text-muted) !important;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
    transition: color .2s;
    padding: 6px 14px !important;
}
.nav-link:hover { color: var(--text-white) !important; }
.btn-contact {
    background: var(--purple-main);
    color: #fff !important;
    border: none;
    border-radius: 32px;
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 22px;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    white-space: nowrap;
    box-shadow: 0px 0px 50px 0px #B37CFFCC;
}
.btn-contact:hover { opacity: .85; transform: translateY(-1px); box-shadow: 0 0 28px var(--purple-glow); }

/* ─── Theme Icon Button ──────────────────────────── */
.theme-icon-btn {
    width: 36px; height: 36px;
    border-radius: 35px;
    border: 1px solid var(--purple-border);
    background: rgba(124,58,237,.12);
    color: var(--purple-bright);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .15s;
    flex-shrink: 0;
}
.theme-icon-btn:hover {
    background: rgba(124,58,237,.25);
    box-shadow: 0 0 12px var(--purple-glow);
    transform: scale(1.08);
}
/* Show the right icon based on current theme */
.theme-icon-btn .icon-moon { display: inline-block; }
.theme-icon-btn .icon-sun  { display: none; }
[data-theme="light"] .theme-icon-btn .icon-moon { display: none; }
[data-theme="light"] .theme-icon-btn .icon-sun  { display: inline-block; }

/* ─── Offcanvas ──────────────────────────────────── */
.offcanvas {
    background: var(--offcanvas-bg) !important;
    border-right: 1px solid var(--offcanvas-border) !important;
    max-width: 280px;
    transition: background .35s ease;
}
.offcanvas-header {
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 20px;
}
.offcanvas .btn-close {
    filter: var(--toggler-filter);
    opacity: .6;
}
.offcanvas .nav-link {
    padding: 12px 16px !important;
    border-radius: 8px;
    margin-bottom: 4px;
    display: block;
    border: 1px solid transparent;
    transition: background .2s, border-color .2s, color .2s;
}
.offcanvas .nav-link:hover {
    background: rgba(124,58,237,.1);
    border-color: var(--purple-border);
    color: var(--text-white) !important;
}
.offcanvas-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 12px 0;
}

/* ─── Navbar toggler ─────────────────────────────── */
.navbar-toggler {
    border-color: var(--purple-border);
    padding: 6px 10px;
}
.navbar-toggler-icon { filter: var(--toggler-filter); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}
.hero-bg {
    position: absolute; inset: 0;
    background: var(--hero-bg-grad);
}

.hero-3d-obj {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    height: 100%; 
    pointer-events: none;
    /* animation: floatObj 6s ease-in-out infinite; */
}
.hero-3d-obj img {
    width: 80%;
    margin: 0 auto;
    display: block;
}
/* @keyframes floatObj {
    0%,100% { transform: translate(-50%,-50%) rotate(0deg); }
    50%      { transform: translate(-50%,-50%) rotate(6deg) translateY(-12px); }
} */
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: .5px;
}
.hero-title .accent { color: var(--purple-bright); }
.hero-sub {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
    max-width: 340px;
}
.btn-hero {
    background:var(--purple-main);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px 36px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .5px;
    box-shadow: 0px 0px 50px 0px #B37CFFCC;
    transition: box-shadow .3s, transform .2s;
}
.btn-hero:hover { box-shadow: 0 0 40px var(--purple-glow); transform: translateY(-2px); color: #fff; }

/* ─── Stats Bar ──────────────────────────────────── */
.stats-bar {
    border-radius: 100px;
    background: #36363633;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 28px 0;
    box-shadow: 0px 0px 100px 0px #B37CFF4D;

}
.stat-item { text-align: center; }
.stat-num {
    
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-bright);
}
.stat-label {
    font-size: .85rem;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: 'Technovier', sans-serif;
    max-width: 100px;
    text-align: left;
    line-height: 15px;
}
.stat-divider {
    width: 1px;
    background: var(--border-subtle);
    height: 50px;
    align-self: center;
}

/* ─── Section base ───────────────────────────────── */
.section { padding: 90px 0; }
.section-label {
    font-size: 26px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 25px;
    font-weight: 400;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    display: inline-block;
    border-bottom: 1px solid var(--purple-main);
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-top: 15px;
}
.about-content .section-title{
    border-top: 1px solid var(--purple-main);
    border-bottom: none;
}

/* ─── Watermark Text ─────────────────────────────── */
.watermark-text {
    position: absolute;
    font-size: clamp(4rem, 12vw, 7vw);
    font-family: 'Technovier', sans-serif;
    color: var(--watermark-color);
    letter-spacing: 0px;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
#contact .watermark-text {
    font-size: clamp(4rem, 12vw, 100vw);
}
.watermark-left {
    left: 46px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg) translateX(-50%);
    transform-origin: left center;
}
.watermark-right {
    right: 56px;
    top: 50%;
    transform: translateY(-50%) rotate(
270deg) translateX(50%);
    transform-origin: right center;
}
.watermark-center { left: 50%; top: 50%; transform: translate(-50%,-50%); }

/* ─── About ──────────────────────────────────────── */
.about-section { position: relative; overflow: hidden;padding-bottom:0px; }
.about-section .about-content{
    padding-bottom:90px;
}
.about-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-img-wrap img {
    width: 100%;
    object-fit: cover;
}
.about-img-circule {
    width: 450px;
    height: 450px;
    opacity: 0.1;
    top: 0;
    left: 50%;
    position: absolute;
    background: #b37cff33;
    border-radius: 50%;
    transform: translateX(-50%);
}
.about-img-magnifier {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(
43deg);
    background: rgba(255,255,255,.1);
    right: -50px;
    top: 50%;
    -webkit-backdrop-filter: blur(14.5px)brightness()saturate();
    will-change: left, width;
    z-index: -1;
    background-color: #2f2f2f00;
    border-bottom: 1px solid #dadada5c;
    transition: left .3s cubic-bezier(.645, .045, .355, 1), width .3s cubic-bezier(.645, .045, .355, 1);
    position: absolute;
    box-shadow: inset -2px -1px 2px -1px #fff6, inset 1px 0 #ffffff52, -1px 2px 5px 2px #00000057, inset -1px 0 9px #0000001c;
    z-index: 1;
    backdrop-filter: blur(7px);
}
.about-img-magnifier.second {
    width: 130px;
    height: 130px;
    right: auto;
    left: 134px;
    top: auto;
    bottom: -100px;
}
.about-body p { color: var(--text-muted); font-size: .92rem; line-height: 1.8; }

/* ─── Products ───────────────────────────────────── */
.products-section { background: var(--bg-dark);padding-bottom:0px; }
#products .section-heading-wrap {
    position: sticky;
    top: 70px;
    z-index: 1;
}
#products .product-card {
    position: sticky;
    top: 175px;
    z-index: 1;
    overflow: hidden;
}
#products .product-card::after {
    content: "";
    background-image: radial-gradient(#670081,#0000 60%);
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: -150px;
    right: -150px;
}
#products .product-card::before {
    content: "";
    background-image: radial-gradient(#670081,#0000 60%);
    width: 250px;
    height: 250px;
    position: absolute;
    top: -148px;
    left: 0;
}
[data-theme="light"] #products .product-card::after {
    background-image: radial-gradient(#67008133,#0000 60%);
}
[data-theme="light"] #products .product-card::before {
    background-image: radial-gradient(#67008133,#0000 60%);
}
.product-card {
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: box-shadow .3s, transform .3s;
    box-shadow: 0px -0.78px 31.38px 0px #B37CFF80;
    border: 0.78px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, linear-gradient(102.44deg, #B37CFF 0.32%, #4B3F5B 100%) border-box;
}
.product-card h4 {
    font-size: 1.1rem;
    color: var(--purple-main);
}
#products .product-card.sticky-220{
    top: 200px;
}
#products .product-card.sticky-240{
    top: 220px;
}
#products .product-card.sticky-260{
    top: 240px;
}
#products .product-card.sticky-280{
    top: 260px;
}
#products .product-card.sticky-300 {
    top: 380px;
    min-height: 300px;
    background: none;
    border: none;
    box-shadow: none;
}

.product-card:hover { box-shadow: 0 8px 40px rgba(124,58,237,.3); transform: translateY(-3px); }
.product-logo {
    position: relative;
    padding-bottom: 25px;
}
.product-logo img {
    width: 125px;
}
.product-logo::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    transform: translateY(-50%);
    width: 80%;
    height: 1px;
    background: var(--purple-main);
}
.product-logo .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--purple-bright); display: inline-block; }
.product-logo .logo-q { color: var(--purple-bright); }
.product-desc { margin: 12px 0; }
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 15px;
}
.tag {
    font-size: .80rem;
    letter-spacing: 3px;
    position: relative;
    margin-right: 25px;
}
.tag:not(:last-child)::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.ftag {
    font-size: .8rem;
    padding: 3px 10px;
    border: 1px solid var(--purple-main);
    border-radius: 13px;
}
.btn-outline-purple {
    border: 1px solid var(--purple-border);
    color: var(--purple-bright);
    background: transparent;
    font-size: .9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 48px;
    transition: background .2s, box-shadow .2s;
}
.btn-outline-purple:hover {  color: var(--text-white); box-shadow: 0 0 14px rgba(124,58,237,.3); }

.btn-purple {
    background: linear-gradient(135deg, var(--purple-main), var(--purple-bright));
    color: #fff;
    border: none;
    border-radius: 48px;
    font-weight: 600;
    font-size: .9rem;
    padding: 10px 20px;
    transition: opacity .2s, box-shadow .2s;
    box-shadow: 0 0 14px var(--purple-glow);
}
.btn-purple:hover { opacity: .85; color: #fff; box-shadow: 0 0 24px var(--purple-glow); }

.product-card .flex-lg-row-reverse {
    text-align: right;
}
.product-card .flex-lg-row-reverse .product-logo::after {
    left: auto;
    right: 0;
}
.product-card .flex-lg-row-reverse .tag-list,
.product-card .flex-lg-row-reverse .feature-tags,
.product-card .flex-lg-row-reverse .buttons-group {
    justify-content: end;
}
.product-card .flex-lg-row-reverse .tag{
    margin-right: 0;
    margin-left: 25px;
}
.product-mockup {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-mockup:after,
.product-mockup:before {
    content: '';
    width: 120px;
    height: 120px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, .1);
    background-color: #2f2f2f00;
    border-bottom: 1px solid #dadada5c;
    transition: left .3s cubic-bezier(.645, .045, .355, 1), width .3s cubic-bezier(.645, .045, .355, 1);
    position: absolute;
    box-shadow: inset -2px -1px 2px -1px #fff6, inset 1px 0 #ffffff52, -1px 2px 5px 2px #00000057, inset -1px 0 9px #0000001c;
    z-index: 1;
    backdrop-filter: blur(7px);
    right: 65px;
    top: 0;
}
.product-mockup:before {
    bottom: 0px;
    top: auto;
    right: auto;
    left: 60px;
}
.product-mockup img { width: 80%; display: block; border-radius: 12px; }

/* ─── Team ───────────────────────────────────────── */
.team-section { position: relative; overflow: hidden; }
.team-card {
    text-align: center;
    padding: 0 15px;
}
.team-avatar {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    transition: border-color .3s, box-shadow .3s;
}
.team-card:hover .team-avatar {
    border-color: var(--purple-bright);
    box-shadow: 0 0 30px rgba(124,58,237,.5);
}
.team-name {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-white);
    margin-top: 10px;
}
.team-role {
    font-size: .85rem;
    color: var(--purple-bright);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ─── Contact ────────────────────────────────────── */
.contact-section { background: var(--bg-dark); position: relative; overflow: hidden; }
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
}
.contact-info-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--bg-card2);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 16px;
}
.contact-icon {
    width: 50px; height: 50px;
    border-radius: 8px;
    background: rgba(124,58,237,.2);
    border: 1px solid var(--purple-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-bright);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-label {
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
}
.contact-info-val { font-size: .88rem; color: var(--text-white); margin-top: 2px; }
.form-control-dark {
    background: var(--input-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-white);
    font-size: .88rem;
    padding: 12px 16px;
    transition: border-color .2s, box-shadow .2s;
}
.form-control-dark:focus {
    background: var(--input-bg);
    border-color: var(--purple-border);
    box-shadow: 0 0 0 3px rgba(124,58,237,.15);
    color: var(--text-white);
    outline: none;
}
.form-control-dark::placeholder { color: var(--text-xs);font-family: 'Technovier', sans-serif; }
textarea.form-control-dark { resize: none; min-height: 154px; }
.btn-submit {
    background: linear-gradient(135deg, var(--purple-main), var(--purple-bright));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    padding: 13px 40px;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--purple-glow);
    transition: opacity .2s, transform .2s;
}
.btn-submit:hover { opacity: .85; transform: translateY(-1px); }

/* ─── Footer ─────────────────────────────────────── */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    padding: 50px 0 28px;
}
.footer-brand {
    
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-white);
    letter-spacing: 1px;
}
.footer-brand span { color: var(--purple-bright); }
.footer-desc { color: var(--text-muted); font-size: .84rem; line-height: 1.7; }
.footer-heading { font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-white); font-weight: 700; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--purple-bright); }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--purple-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: .9rem;
    transition: background .2s, color .2s;
    text-decoration: none;
}
.social-icon:hover { background: var(--purple-main); color: #fff; border-color: var(--purple-main); }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
    margin-top: 36px;
    font-size: .8rem;
    color: var(--text-xs);
}
.footer-bottom a{
    color:var(--purple-main);
    text-decoration: none;
}
.footer-bottom a:hover{
    color:var(--text-white);
}

/* ─── Section BG alternation ─────────────────────── */
.bg-section2 { background: var(--bg-card2); }

/* ─── Misc ───────────────────────────────────────── */
.purple-line {
    height: 2px;
    background: linear-gradient(90deg, var(--purple-main), var(--purple-bright), transparent);
    border: none;
    margin: 0;
}
.section-heading-wrap { margin-bottom: 50px; }

/* ─── AOS-like fade on scroll ────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Product section heading override ───────────── */
.products-heading {
    
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--watermark-color);
    letter-spacing: 10px;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    white-space: nowrap;
}

/* ─── Light theme section overrides ─────────────── */
[data-theme="light"] .stats-bar          { background: var(--bg-card); }
[data-theme="light"] .team-section       { background: var(--bg-card); }
[data-theme="light"] .footer             { background: var(--bg-card); }
[data-theme="light"] .product-card       { background: #ffffff; box-shadow: 0 2px 20px rgba(0,0,0,.07); }
[data-theme="light"] .contact-card       { background: #ffffff; box-shadow: 0 2px 20px rgba(0,0,0,.07); }
[data-theme="light"] .contact-info-item  { background: var(--bg-card2); }
[data-theme="light"] .hero-orb           { background: radial-gradient(circle, rgba(110,40,220,.12) 0%, rgba(60,20,140,.05) 50%, transparent 70%); }
[data-theme="light"] .navbar-toggler-icon { filter: none; }

/* ─── Responsive tweaks ──────────────────────────── */
@media (max-width: 991.98px) {
    /* Contact Us stays visible in navbar on mobile */
    .navbar .btn-contact { display: inline-flex; }
}
@media (max-width: 768px) {
    .hero { min-height: auto; padding: 60px 0 40px; }
    .hero-orb, .hero-3d-obj { display: none; }
    .stat-divider { display: none; }
    .product-card .row > div + div { margin-top: 20px; }
}