:root {
    --orange: #FF6B1A;
    --orange-light: #FF8C4A;
    --orange-glow: rgba(255, 107, 26, 0.18);
    --blue: #1A4FFF;
    --blue-light: #4B79FF;
    --blue-glow: rgba(26, 79, 255, 0.15);
    --green: #2FD98B;
    --green-glow: rgba(47, 217, 139, 0.15);
    --dark: #0A0C12;
    --dark2: #10131E;
    --dark3: #161A28;
    --card: #181D2E;
    --card2: #1E2436;
    --border: rgba(255, 255, 255, 0.07);
    --text: #E8EAFF;
    --muted: #6B7394;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .4;
}

/* ── GLOW BLOBS ── */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--orange-glow);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--blue-glow);
    bottom: -100px;
    left: -150px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--green-glow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ── PAGES ── */
.page {
    display: none;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 clamp(20px, 5vw, 80px);
    background: rgba(10, 12, 18, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo-mark {
    width: 36px;
    height: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.logo-text span.orange {
    color: var(--orange);
}

.logo-text span.blue {
    color: var(--blue-light);
}

.logo-text span.muted {
    color: var(--muted);
    font-weight: 500;
    font-size: .9rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s, background .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: var(--card);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .25s;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, #FF3D6B 100%);
    color: white;
    box-shadow: 0 4px 24px rgba(255, 107, 26, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 26, 0.5);
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue) 0%, #6C3FFF 100%);
    color: white;
    box-shadow: 0 4px 24px rgba(26, 79, 255, 0.35);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 79, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid var(--orange);
}

.btn-outline:hover {
    background: var(--orange-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    padding: 12px 32px;
    border-radius: var(--radius);
    transition: color .2s, background .2s;
}

.mobile-menu a:hover {
    color: var(--orange);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--card);
    border: none;
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── HERO ── */
.hero {
    min-height: calc(100vh - 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 80px);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 28px;
    width: fit-content;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 780px;
    margin-bottom: 24px;
}

.hero h1 .line {
    display: block;
}

.hero h1 .accent-orange {
    color: var(--orange);
}

.hero h1 .accent-blue {
    background: linear-gradient(90deg, var(--blue-light), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item {}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-num span {
    color: var(--orange);
}

.stat-label {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 4px;
}

/* Floating cards */
.hero-visual {
    position: absolute;
    right: clamp(20px, 5vw, 100px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
}

.float-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    min-width: 220px;
    animation: floatY 4s ease-in-out infinite;
}

.float-card:nth-child(2) {
    animation-delay: -2s;
    margin-left: 40px;
}

.float-card:nth-child(3) {
    animation-delay: -1s;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.float-card-tag {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}

.float-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.float-card-price {
    font-size: .85rem;
    color: var(--orange);
    font-weight: 600;
}

/* ── SECTION COMMONS ── */
.section {
    padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 80px);
}

.section-header {
    margin-bottom: clamp(40px, 6vw, 64px);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 12px;
    max-width: 480px;
}

.section-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

/* ── CATEGORIES ── */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.cat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    color: var(--text);
}

.cat-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 8px 32px var(--orange-glow);
}

.cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem;
}

.cat-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
    margin-bottom: 4px;
}

.cat-count {
    font-size: .75rem;
    color: var(--muted);
}

/* ── PRODUCT GRID ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
}

.product-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb .thumb-bg {
    position: absolute;
    inset: 0;
    transition: transform .4s;
}

.product-card:hover .thumb-bg {
    transform: scale(1.05);
}

.product-thumb .thumb-icon {
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: white;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2;
}

.product-badge.blue {
    background: var(--blue);
}

.product-badge.green {
    background: #1aaf6b;
}

.product-info {
    padding: 20px;
}

.product-cat {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-weight: 600;
    color: var(--orange);
    font-size: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .8rem;
    color: var(--muted);
}

.product-rating .star {
    color: #FFB800;
}

/* ── FEATURED BANNER ── */
.featured-banner {
    background: linear-gradient(135deg, var(--dark3) 0%, var(--card) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(40px, 6vw, 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.featured-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.15) 0%, transparent 70%);
}

.featured-banner .label {
    color: var(--orange);
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 12px;
}

.featured-banner h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.featured-banner p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    background: var(--dark2);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.featured-visual .big-icon {
    font-size: 5rem;
}

.featured-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(26, 79, 255, 0.2) 0%, transparent 70%);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .25s;
}

.testi-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #FFB800;
    font-size: .9rem;
}

.testi-text {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: white;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--white);
}

.testi-role {
    font-size: .75rem;
    color: var(--muted);
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: var(--dark3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(20px, 5vw, 60px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* ── FOOTER ── */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 80px) 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--muted);
    font-size: .875rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
    color: var(--muted);
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .8rem;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* ── PRODUCTS PAGE ── */
.page-hero {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px) 0;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
}

.filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 28px clamp(20px, 5vw, 80px);
    border-bottom: 1px solid var(--border);
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    transition: all .2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--card2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.orange-active {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.search-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px;
    margin-left: auto;
}

.search-input input {
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: .875rem;
    width: 180px;
}

.search-input input::placeholder {
    color: var(--muted);
}

.search-input .icon {
    color: var(--muted);
    font-size: 1rem;
}

/* ── ABOUT PAGE ── */
.about-hero {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.about-icon-box {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
}

.about-icon-box .icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.about-icon-box .label {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s;
}

.value-card:hover {
    border-color: var(--blue-light);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.value-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.08;
    margin-bottom: 20px;
  }
  
  .hero-title .brand {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 1500;
    color: #ff6a1a;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-family: 'Syne', sans-serif;
  }
  
  .hero-title .service {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 700;
    color: #1d4ed8;
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.3px;
  }
  
  .hero-title .tagline {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    line-height: 1.7;
    font-family: 'Syne', sans-serif;
    margin-top: 4px;
    letter-spacing: 0.2px;
    font-style: italic;
  }


.value-text {
    color: var(--muted);
    font-size: .875rem;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all .25s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
}

.team-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.team-role {
    font-size: .8rem;
    color: var(--muted);
}

/* ── CONTACT PAGE ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 80px);
}

.contact-info h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color .2s;
}

.contact-method:hover {
    border-color: var(--orange);
}

.contact-method .cm-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method .cm-label {
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-method .cm-value {
    font-weight: 600;
    color: var(--white);
    font-size: .9rem;
}

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 48px);
}

.contact-form h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

/* ── CART BADGE ── */
.cart-btn {
    position: relative;
    cursor: pointer;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: .9rem;
    transition: all .2s;
}

.cart-btn:hover {
    border-color: rgba(255, 255, 255, .2);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: .65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── PRODUCT DETAIL ── */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.product-detail-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}

.product-detail-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--blue-glow) 0%, transparent 70%);
}

.product-detail-info .breadcrumb {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.product-detail-info .breadcrumb span {
    color: var(--orange);
}

.product-detail-info h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 20px;
}

.product-detail-price .old-price {
    font-size: 1.1rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-detail-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: .9rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .check {
    color: var(--green);
    font-size: 1rem;
}

.add-to-cart-section {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .contact-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .featured-banner {
        grid-template-columns: 1fr;
    }

    .featured-visual {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-right .btn-ghost {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        text-align: center;
        justify-content: center;
    }

    .filters-bar {
        padding: 16px 20px;
    }

    .search-input {
        width: 100%;
    }

    .search-input input {
        width: 100%;
    }
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s, transform .5s;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── PROMO BANNER ── */
.promo-top {
    background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
    padding: 10px 20px;
    text-align: center;
    font-size: .82rem;
    font-weight: 500;
    color: white;
    letter-spacing: .03em;
}

.promo-top a {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

/* ── SKELETON ── */
.grid-divider {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

@media(max-width:900px) {
    .grid-divider {
        grid-template-columns: 1fr;
    }
}

.sidebar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 88px;
}

.sidebar-card h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .75rem;
    color: var(--muted);
    margin: 4px;
    cursor: pointer;
    transition: all .2s;
}

.tag:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.tag.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

/* ═══════════════════════════════════════════════════════
   PAGE: PRODUCT DEMO
═══════════════════════════════════════════════════════ */
.demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.demo-header {
    margin-bottom: 32px;
}

.demo-title-section h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

/* Demo Tabs */
.demo-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 6px;
    width: fit-content;
}

.demo-tab {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .2s;
}

.demo-tab:hover {
    color: var(--white);
    background: var(--dark2);
}

.demo-tab.active {
    background: var(--orange);
    color: white;
}

/* Demo Content */
.demo-content {
    margin-bottom: 32px;
}

.demo-tab-content {
    display: none;
}

.demo-tab-content.active {
    display: block;
}

/* Preview Tab */
.demo-preview-main {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.demo-device-frame {
    width: 320px;
    background: var(--dark2);
    border: 3px solid var(--border);
    border-radius: 36px;
    padding: 12px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.device-notch {
    width: 100px;
    height: 28px;
    background: var(--dark);
    border-radius: 0 0 16px 16px;
    margin: 0 auto -1px;
    position: relative;
    z-index: 1;
}

.device-screen {
    background: var(--card);
    border-radius: 24px;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Demo Slide Content */
.demo-slide {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.demo-slide-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.demo-slide-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.demo-slide-header p {
    font-size: .75rem;
    color: var(--muted);
}

.demo-slide-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-feature-preview {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.demo-feature-preview h4 {
    font-size: .8rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.demo-feature-preview p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

.demo-preview-visual {
    background: linear-gradient(135deg, var(--orange-glow), var(--blue-glow));
    border-radius: var(--radius-sm);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.demo-preview-guest {
    background: var(--dark3);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-preview-guest .guest-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: white;
    font-weight: 700;
}

.demo-preview-guest .guest-info {
    flex: 1;
}

.demo-preview-guest .guest-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--white);
}

.demo-preview-guest .guest-msg {
    font-size: .7rem;
    color: var(--muted);
}

.demo-preview-rsvp {
    background: var(--green-glow);
    border: 1px solid var(--green);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.demo-preview-rsvp .rsvp-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.demo-preview-rsvp .rsvp-text {
    font-size: .8rem;
    color: var(--green);
    font-weight: 600;
}

.demo-preview-countdown {
    background: var(--blue-glow);
    border: 1px solid var(--blue);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.demo-preview-countdown .countdown-numbers {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-light);
}

.demo-preview-countdown .countdown-label {
    font-size: .7rem;
    color: var(--muted);
}

.demo-preview-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.demo-preview-gallery .gallery-item {
    background: var(--dark3);
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Demo Thumbnails */
.demo-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
}

.demo-thumb:hover {
    border-color: var(--orange);
}

.demo-thumb.active {
    border-color: var(--orange);
    box-shadow: 0 0 16px var(--orange-glow);
}

.thumb-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--card);
}

/* Features Tab */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all .25s;
}

.feature-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--orange-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Testimonials Tab */
.demo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.demo-testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.demo-testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    color: #FFB800;
    font-size: .85rem;
}

.demo-testi-text {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.demo-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: white;
}

.demo-testi-name {
    font-weight: 600;
    font-size: .85rem;
    color: var(--white);
}

.demo-testi-role {
    font-size: .7rem;
    color: var(--muted);
}

/* Demo Actions */
.demo-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .demo-device-frame {
        width: 280px;
    }

    .device-screen {
        min-height: 480px;
    }

    .demo-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .demo-tab {
        white-space: nowrap;
        padding: 8px 16px;
        font-size: .85rem;
    }

    .features-grid,
    .demo-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .demo-actions {
        flex-direction: column;
    }

    .demo-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Demo Buttons Container */
.demo-buttons-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px;
}

.demo-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
    justify-items: center;
}

@media (max-width: 1200px) {
    .demo-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card View Button - Preview Style */
.demo-link-btn {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 0;
    width: 100%;
    max-width: 340px;
    height: 280px;
}

.demo-link-btn:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255, 107, 26, 0.25);
}

.demo-link-btn:hover::before {
    opacity: 1;
}

/* Preview Image Container */
.demo-btn-preview {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--dark2);
}

.demo-btn-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.demo-link-btn:hover .demo-btn-preview img {
    transform: scale(1.05);
}

/* Play/Preview Overlay */
.demo-btn-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 12, 18, 0.8) 0%, transparent 50%);
    opacity: 0.6;
    transition: opacity .3s;
}

.demo-link-btn:hover .demo-btn-preview::after {
    opacity: 0.4;
}

/* Preview Badge */
.demo-btn-preview-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 107, 26, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-btn-preview-badge i {
    font-size: 0.65rem;
}

/* Bottom Section - compact height for name & arrow */
.demo-btn-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--card);
    transition: background .3s;
    height: 100px;
}

.demo-link-btn:hover .demo-btn-bottom {
    background: var(--orange-glow);
}

.demo-btn-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.3;
    flex: 1;
}

.demo-btn-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all .3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.demo-link-btn:hover .demo-btn-arrow {
    transform: translateX(4px);
    background: var(--orange-light);
    box-shadow: 0 4px 12px rgba(255, 107, 26, 0.4);
}

/* Shimmer Effect */
.demo-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left .6s;
    z-index: 1;
    opacity: 0;
}

.demo-link-btn:hover::before {
    left: 100%;
}

/* Enhanced Preview Layout */
.demo-preview-main {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.demo-device-frame {
    width: 100%;
    max-width: 1200px;
    background: var(--dark2);
    border: 3px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    min-height: 400px;
}

@media (max-width: 768px) {
    .demo-device-frame {
        padding: 16px;
        border-radius: 16px;
    }
    
    .demo-buttons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 370px;
        margin: 0 auto;
    }
    
    .demo-link-btn {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .demo-btn-name {
        text-align: center;
    }
}
