/* =============================================
   VOLTIX — Global Styles & Design System
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #FFC107;
    --yellow-dim: #b8860b;
    --yellow-glow: rgba(255, 193, 7, 0.35);
    --black: #0a0a0a;
    --dark: #111111;
    --dark-card: #161616;
    --dark-card-border: #222222;
    --gray: #333333;
    --silver: #c0c0c0;
    --white: #f0f0f0;
    --text-muted: #888888;
    --font-main: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Prevent any child from blowing out the horizontal axis */
    max-width: 100vw;
}

img,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

/* ── Global text overflow prevention ───────────────────────────────────────
   overflow-wrap: break-word  — breaks long words/URLs that would overflow
   word-break: break-word     — last-resort fallback for very narrow cells
   min-width: 0 on flex/grid children prevents the infamous layout blowout
   where a cell refuses to shrink below its content's natural size.
   -------------------------------------------------------------------------- */
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li,
label,
blockquote {
    overflow-wrap: break-word;
    word-break: break-word;
    /* Hyphens improve readability when words must break */
    hyphens: auto;
}

/* Every direct child of a grid or flex container must be allowed to shrink */
.about-grid>*,
.features-grid>*,
.footer-grid>*,
.hero-content>*,
.about-content,
.about-visual,
.hero-text-col {
    min-width: 0;
}

::selection {
    background: var(--yellow);
    color: var(--black);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    /* Never allow the container itself to exceed the viewport */
    width: 100%;
    box-sizing: border-box;
    /* Critical: grid/flex children need min-width:0 to shrink below content size */
    min-width: 0;
}

.text-accent {
    color: var(--yellow);
}

/* =============================================
   CINEMATIC INTRO
   ============================================= */
#cinematic-intro {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.intro-dark {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
}

#spark-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.intro-logo-reveal {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: scale(0.7);
}

#intro-logo-img {
    /* المقاس الصغير: 150px
      المقاس المرن: 20vw (يعني 20% من عرض الشاشة)
      المقاس الكبير: 350px 
    */
    width: clamp(150px, 20vw, 350px);

    /* مهم جداً تخلي الطول auto عشان يتناسب مع العرض الجديد وميتمطش */
    height: auto;

    object-fit: contain;
    filter: drop-shadow(0 0 40px var(--yellow-glow));
}

.intro-brand-text {
    font-family: var(--font-main);
    /* Fluid: shrinks gracefully on narrow screens */
    font-size: clamp(1.4rem, 6vw, 3rem);
    font-weight: 800;
    /* Clamp letter-spacing so it doesn't overflow on mobile */
    letter-spacing: clamp(4px, 2vw, 12px);
    color: var(--white);
    text-shadow: 0 0 30px var(--yellow-glow);
    text-align: center;
    white-space: nowrap;
}

/* =============================================
   PARTICLES CANVAS
   ============================================= */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 193, 7, 0.08);
    padding: 10px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 4px;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100svh;
    /* svh for mobile browsers with dynamic toolbars */
    z-index: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Clip any absolutely-positioned decorators that bleed outside */
    contain: layout;
}

/* BACKGROUND: Full-screen animated canvas — true cover behaviour
   object-fit is invalid on <canvas>; cover is handled by drawCover()
   in script.js. CSS ensures the element always fills its parent. */
#logo-sequence-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit removed — not applicable to canvas elements */
    z-index: 0;
    opacity: 0.55;
    filter: blur(1px);
    /* Smooth resize without jank */
    will-change: contents;
}

/* OVERLAY: Cinematic dark gradient */
.hero-seq-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.75) 45%,
            rgba(10, 10, 10, 0.35) 75%,
            rgba(10, 10, 10, 0.15) 100%);
}

/* GLOW: Ambient center light bleeding through */
.hero-center-glow {
    position: absolute;
    z-index: 2;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 193, 7, 0.07) 0%, transparent 70%);
    pointer-events: none;
    animation: centerGlowPulse 5s ease-in-out infinite;
}

@keyframes centerGlowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* GRID overlay (above animation) */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(255, 193, 7, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 193, 7, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    pointer-events: none;
}

/* FOREGROUND CONTENT */
.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

/* LEFT TEXT COLUMN */
.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    text-align: left;
    max-width: 620px;
}

/* HERO TEXT */
.hero-headline {
    font-family: var(--font-main);
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-line-1 {
    /* Wider fluid range prevents wrapping on any viewport */
    font-size: clamp(1.8rem, 5.5vw, 4.2rem);
    color: var(--white);
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-line-2 {
    font-size: clamp(1.8rem, 5.5vw, 4.2rem);
    color: var(--silver);
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-subtext {
    /* width: 100% so it never overflows its column on mobile */
    width: 100%;
    max-width: 520px;
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    line-height: 1.8;
}

/* BUTTONS */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Fluid padding: smaller on narrow viewports */
    padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 36px);
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition);
    /* Never wider than its container */
    max-width: 100%;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--yellow-glow);
}

.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* الأيقونة */
.btn-whatsapp svg {
    fill: white;
}

/* Hover */
.btn-whatsapp:hover {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 60px;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

.btn-icon {
    display: flex;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 36px);
    background: transparent;
    color: var(--yellow);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid var(--yellow);
    border-radius: 60px;
    cursor: pointer;
    transition: all var(--transition);
    max-width: 100%;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.15);
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    padding: 6px 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 40px;
    margin-bottom: 20px;
    background: rgba(255, 193, 7, 0.05);
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-card-border);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    overflow: hidden;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(255, 193, 7, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 193, 7, 0.05);
}

.feature-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 42px;
    height: 42px;
    color: var(--yellow);
}

.feature-icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--yellow-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover .feature-icon-glow {
    opacity: 0.6;
}

.feature-title {
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.feature-light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: none;
}

.feature-card:hover .feature-light-sweep {
    left: 100%;
    transition: left 0.8s ease;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 100px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
}

.slider-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: infiniteSlide 40s linear infinite;
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

@keyframes infiniteSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.product-card {
    position: relative;
    flex: 0 0 320px;
    width: 320px;
    background: var(--dark-card);
    border: 1px solid var(--dark-card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    transform: scale(1.04);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 193, 7, 0.08);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    padding: 12px 28px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.product-card:hover .btn-view-details {
    transform: translateY(0);
}

.btn-view-details:hover {
    box-shadow: 0 4px 20px var(--yellow-glow);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    /* Clamp to 2 lines by default */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Smooth height transition when expanding */
    transition: max-height 0.4s ease, -webkit-line-clamp 0s;
}

.product-desc.expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

/* Show More / Show Less button */
.show-more-btn {
    background: none;
    border: none;
    padding: 6px 0 0;
    color: var(--yellow);
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.show-more-btn:hover {
    opacity: 0.75;
    transform: translateX(2px);
}

.show-more-btn .btn-arrow {
    display: inline-block;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.show-more-btn.expanded .btn-arrow {
    transform: rotate(180deg);
}

.product-glow {
    position: absolute;
    bottom: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--yellow);
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.4s;
}

.product-card:hover .product-glow {
    opacity: 0.6;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    position: relative;
    z-index: 1;
    padding: clamp(48px, 10vw, 120px) 0;
    overflow: visible;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Use clamp so the gap never kills content space on narrow viewports */
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    /* Prevent grid from overflowing its parent */
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* min-width: 0 is mandatory — prevents flex item from blowing out of grid */
    min-width: 0;
    /* Ensure the column never exceeds available space */
    width: 100%;
}

.about-content .section-tag {
    align-self: flex-start;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-muted);
    font-size: clamp(0.88rem, 1.5vw + 0.5rem, 1rem);
    line-height: 1.8;
    /* Ensure long words never overflow the column */
    overflow-wrap: break-word;
    word-break: break-word;
    /* width: 100% so the flex item fills the column instead of shrinking */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    margin-top: 20px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--yellow);
}

.stat-suffix {
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--yellow);
}

.stat-label {
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    color: var(--text-muted);
    letter-spacing: clamp(1px, 0.5vw, 2px);
    text-transform: uppercase;
    margin-top: 4px;
    white-space: nowrap;
}

.about-visual {
    position: relative;
    min-width: 0;
    width: 100%;
}

.about-img-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), transparent 60%);
}

.about-img-border {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 193, 7, 0.15);
    pointer-events: none;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
    background: var(--bg-dark);
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: var(--dark-card-bg);
    border: 1px solid var(--dark-card-border);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.2);
}

.contact-card-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--yellow);
    border-radius: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.contact-value {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

a.contact-value:hover {
    color: var(--yellow);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
    border-top: 1px solid var(--dark-card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--white);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--dark-card-border);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--dark-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--yellow);
    border-color: var(--yellow);
    background: rgba(255, 193, 7, 0.05);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
        align-items: center;
    }

    .about-content .section-tag {
        align-self: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-container {
        padding: 0 32px;
    }

    .nav-container {
        padding: 0 32px;
    }

    .hero-content {
        padding: 0 32px;
    }

    /* Reduce vertical section padding on tablets */
    .features-section,
    .about-section {
        padding: 80px 0;
    }

    .products-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    /* ── Off-canvas sidebar (slides from right) ─── */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(24px);
        border-left: 1px solid rgba(255, 193, 7, 0.1);
        z-index: 1002;
        /* Hidden off-screen by default */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        /* Always flex — visibility controlled by transform, not display */
        display: flex;
        padding: 100px 0 40px;
        box-sizing: border-box;
        overflow-y: auto;
        pointer-events: auto;
        touch-action: auto;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.15rem;
        letter-spacing: 1px;
        padding: 8px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: color var(--transition),
            opacity 0.35s ease,
            transform 0.35s ease;
        pointer-events: auto;
        touch-action: auto;
    }

    .nav-links.open .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger each link's entrance */
    .nav-links.open .nav-link:nth-child(1) {
        transition-delay: 0.08s;
    }

    .nav-links.open .nav-link:nth-child(2) {
        transition-delay: 0.14s;
    }

    .nav-links.open .nav-link:nth-child(3) {
        transition-delay: 0.20s;
    }

    .nav-links.open .nav-link:nth-child(4) {
        transition-delay: 0.26s;
    }

    .nav-links.open .nav-link:nth-child(5) {
        transition-delay: 0.32s;
    }

    .nav-links.open .nav-link:nth-child(6) {
        transition-delay: 0.38s;
    }

    /* ── Semi-transparent overlay behind sidebar ─── */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.1s ease, visibility 0.1s ease;
        -webkit-tap-highlight-color: transparent;
        pointer-events: none;
    }

    .nav-overlay.visible {
        opacity: 0.1;
        visibility: visible;
        /* pointer-events: auto removed to prevent blocking nav-links clicks */
        pointer-events: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1003;
    }

    /* ── Prevent body scroll when menu is open ──── */
    body.menu-open {
        overflow: hidden;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section,
    .about-section {
        padding: 64px 0;
    }

    .products-section {
        padding: 64px 0 40px;
    }

    .hero-content {
        padding: 0 20px;
        justify-content: center;
    }

    .hero-text-col {
        align-items: center;
        text-align: center;
        max-width: 100%;
        /* Prevent any child from overflowing the column */
        overflow: hidden;
    }

    .hero-subtext {
        max-width: 100%;
    }

    .hero-seq-overlay {
        background: linear-gradient(180deg,
                rgba(10, 10, 10, 0.92) 0%,
                rgba(10, 10, 10, 0.75) 50%,
                rgba(10, 10, 10, 0.88) 100%);
    }

    /* Hero center glow — scale down so it doesn't cause overflow */
    .hero-center-glow {
        width: 100vw;
        height: 100vw;
        left: 50%;
    }

    /* ── About section mobile fixes ──────────────── */
    .about-grid {
        gap: 32px;
        max-width: 100%;
        /* DO NOT use overflow:hidden — it clips the text! */
        overflow: visible;
    }

    .about-content {
        max-width: 100%;
        overflow: visible;
    }

    .about-content .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    /* About text must be fully visible at any mobile width */
    .about-text {
        font-size: clamp(0.88rem, 2.2vw, 0.95rem);
        line-height: 1.75;
        /* Ensure text is never clipped */
        overflow: visible;
        padding: 0;
    }

    .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        align-items: start;
        gap: 24px;
    }

    .stat-item {
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    /* Third stat centres on its own row, spanning both columns */
    .stat-item:last-child {
        grid-column: 1 / -1;
    }

    .about-visual {
        max-width: 100%;
        margin-top: 16px;
        overflow: hidden;
    }

    .about-img {
        max-width: 100%;
        object-fit: cover;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Ensure buttons don't overflow their wrappers */
    .btn-primary,
    .btn-secondary {
        width: fit-content;
        max-width: calc(100vw - 40px);
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 0 16px;
    }

    /* clamp() already handles these but explicit override as safety net */
    .hero-line-1,
    .hero-line-2 {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
    }

    .intro-brand-text {
        font-size: clamp(1.1rem, 5vw, 1.6rem);
        letter-spacing: clamp(2px, 1.5vw, 6px);
    }

    .product-card {
        flex: 0 0 260px;
        width: 260px;
    }

    .features-section,
    .about-section {
        padding: 48px 0;
    }

    .products-section {
        padding: 48px 0 32px;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .about-stats {
        gap: 16px 20px;
    }

    .stat-number {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .about-content .section-title {
        font-size: clamp(1.3rem, 5vw, 1.5rem);
    }

    .about-text {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        line-height: 1.7;
    }

    .about-grid {
        gap: 24px;
    }
}

/* =============================================
   PREMIUM ENHANCEMENTS
   ============================================= */

/* --- Animated Electric Grid Background --- */
.hero-grid-overlay {
    background-image:
        linear-gradient(rgba(255, 193, 7, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 193, 7, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}


/* --- Enhanced Glow Rings --- */
.logo-glow-ring {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.08), inset 0 0 30px rgba(255, 193, 7, 0.05);
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.05);
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
        box-shadow: 0 0 60px rgba(255, 193, 7, 0.2), 0 0 120px rgba(255, 193, 7, 0.06);
    }
}

.logo-glow-ring.ring-3 {
    inset: -60px;
    border-color: rgba(255, 193, 7, 0.04);
    animation-delay: 3s;
}

/* --- Third CTA Orb --- */
.orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 193, 7, 0.03);
    animation-delay: -2s;
}

/* --- 3D Feature Cards --- */
.feature-card {
    transform-style: preserve-3d;
    perspective: 800px;
    will-change: transform;
    backface-visibility: hidden;
}

.feature-card:hover {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 193, 7, 0.08),
        inset 0 1px 0 rgba(255, 193, 7, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0), rgba(255, 193, 7, 0.3), rgba(255, 193, 7, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

/* --- Feature Icon Animations --- */
.feature-card:hover .feature-icon {
    animation: iconPulseRotate 1.5s ease-in-out infinite;
}

@keyframes iconPulseRotate {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.15) rotate(8deg);
    }
}

/* --- 3D Product Cards --- */
.product-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 193, 7, 0.1),
        inset 0 1px 0 rgba(255, 193, 7, 0.15);
}

/* Product card light reflection */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.04),
            transparent);
    transform: skewX(-15deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 5;
}

.product-card:hover::after {
    left: 125%;
}

/* Product glow outline */
.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0), rgba(255, 193, 7, 0.35), rgba(255, 193, 7, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 4;
}

.product-card:hover::before {
    opacity: 1;
}

/* --- Enhanced Buttons with Pulse --- */
.btn-primary {
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
    animation: btnGlowPulse 3s ease-in-out infinite;
}

@keyframes btnGlowPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 193, 7, 0.4), 0 0 60px rgba(255, 193, 7, 0.1);
    }
}

.btn-primary:hover {
    animation: none;
    box-shadow: 0 8px 40px rgba(255, 193, 7, 0.45), 0 0 80px rgba(255, 193, 7, 0.15);
    transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 15px rgba(255, 193, 7, 0.3);
}

.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    box-shadow: inset 0 0 20px rgba(255, 193, 7, 0.05);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: scale(0.97);
}

/* --- Enhanced Navbar --- */
#navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 193, 7, 0.06);
}

.nav-link::after {
    background: linear-gradient(90deg, var(--yellow), rgba(255, 193, 7, 0.4));
    height: 2px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
}

/* --- Enhanced CTA --- */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
}

.cta-glow-orb {
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    animation-delay: -4s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -15px) scale(1.1);
    }

    66% {
        transform: translate(-15px, 10px) scale(0.95);
    }
}

/* --- Stat Number Glow --- */
.stat-number {
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.stat-item {
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

/* --- About Image Enhancement --- */
.about-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* --- Social Link Enhancement --- */
.social-link {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.15);
}

/* --- Footer Enhancement --- */
.footer {
    border-top-color: transparent;
    background-image: linear-gradient(to bottom, rgba(255, 193, 7, 0.02), transparent 40%);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
}

/* --- Section Divider Lines --- */
.features-section::before,
.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.12), transparent);
}

/* --- Smooth Scroll Behavior Body --- */
body {
    scroll-behavior: smooth;
}

/* =============================================
   PARTNERS SECTION
   ============================================= */
.partners-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* Fade edges using a mask on the slider wrapper */
.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Fade left & right edges into the dark background */
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

/* The moving strip — JS will duplicate items inside */
.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: partnersScroll 30s linear infinite;
    padding: 20px 0;
}

/* Pause on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Individual partner logo card */
.partner {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 193, 7, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.4s ease;
    /* Faded & desaturated by default */
    opacity: 0.9;
    filter: grayscale(0.2) brightness(1);
}

.partner:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
    transform: scale(1.08);
    border-color: rgba(255, 193, 7, 0.35);
    box-shadow: 0 0 24px rgba(255, 193, 7, 0.15), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Fallback text shown when image fails to load */
.partner-text {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

/* =============================================
   FOOTER PARTNERS
   ============================================= */
.footer-partners {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--dark-card-border);
    text-align: center;
}

.footer-partners-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 48px;
    opacity: 0.6;
    filter: grayscale(0.1) brightness(0.9);
    transition: all 0.3s ease;
}

.footer-partner:hover {
    opacity: 0.9;
    filter: grayscale(0) brightness(1);
}

.footer-partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-partner .partner-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ===== PREMIUM ABOUT ===== */

.about2-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.about2-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* TAG */
.about2-tag {
    display: inline-block;
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.25);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 2px;
    background: rgba(255, 193, 7, 0.05);
    margin-bottom: 20px;
}

/* TITLE */
.about2-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #eaeaea;
    margin-bottom: 20px;
}

.about2-accent {
    color: #FFC107;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

/* TEXT */
.about2-text {
    color: #888;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 10px;
    max-width: 650px;
}

/* STATS */
.about2-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.about2-stat {
    text-align: left;
}

.about2-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFC107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.25);
}

.about2-label {
    color: #777;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* IMAGE */
.about2-img {
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

/* GRID */
.about2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .about2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about2-content {
        text-align: center;
        align-items: center;
    }

    .about2-text {
        max-width: 100%;
    }

    .about2-stats {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .about2-stat:last-child .about2-label {
        font-size: 13px;
        letter-spacing: 1px;
        opacity: 0.8;
    }

    .about2-stat {
        text-align: center;
    }
}

.btn-wechat {
    background: #07C160 !important;
    border: none !important;
    color: white !important;
}