/* ============================================================
   PAGE LOADER
   ============================================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.loader__logo {
    width: 60px;
    height: 60px;
    animation: pulseLogo 1.5s ease-in-out infinite;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.loader__bar {
    width: 140px;
    height: 4px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, #ff2d2d 0%, #ff6464 100%);
    animation: loadProgress 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loadProgress {
    0% {
        width: 0;
    }

    30% {
        width: 40%;
    }

    100% {
        width: 100%;
    }
}

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Primary Reds */
    --red-50: #fff1f1;
    --red-100: #ffe0e0;
    --red-200: #ffc7c7;
    --red-300: #ff9e9e;
    --red-400: #ff6464;
    --red-500: #ff2d2d;
    --red-600: #ed1515;
    --red-700: #c80d0d;
    --red-800: #a50f0f;
    --red-900: #881414;
    --red-950: #4b0404;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0a0a0a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #cc0000 0%, #ff2d2d 50%, #ff6464 100%);
    --gradient-text: linear-gradient(135deg, #8b0000 0%, #cc0000 40%, #ff1a1a 70%, #ff4d4d 100%);
    --gradient-glow: radial-gradient(circle, rgba(255, 45, 45, 0.15) 0%, transparent 70%);
    --gradient-hero-bg: radial-gradient(ellipse at 50% 0%, rgba(255, 45, 45, 0.08) 0%, transparent 60%);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(255, 45, 45, 0.15);
    --shadow-btn: 0 4px 24px rgba(255, 45, 45, 0.3);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;

    /* Spacing */
    --container-max: 1200px;
    --header-height: 72px;
    --section-padding: clamp(60px, 10vw, 120px);
    --grid-gap: clamp(20px, 4vw, 28px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-base: 0.3s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 24px);
}

/* ---------- GRADIENT TEXT UTILITY ---------- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition-base);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.header.scrolled::before {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    transition: transform var(--transition-base);
}

.nav__logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 6px rgba(200, 0, 0, 0.25));
}

.nav__logo:hover .logo-icon {
    transform: rotate(-6deg) scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(200, 0, 0, 0.35));
}

.logo-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Menu */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 10px;
    transition: all var(--transition-base);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--gray-900);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav__link--cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 600;
    padding: 8px 22px;
    margin-left: 8px;
    box-shadow: var(--shadow-btn);
    transition: all var(--transition-base);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(255, 45, 45, 0.4);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    /* Modern fluid height for mobile bars */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) clamp(16px, 5vw, 24px) 60px;
    overflow: hidden;
    background: var(--white);
}

/* Ambient glow blobs */
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    will-change: transform;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.1) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: floatGlow 8s ease-in-out infinite;
}

.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -10%;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

.hero__glow--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 0, 0, 0.06) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatGlow 12s ease-in-out infinite;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

/* Subtle grid pattern */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}

/* Content */
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px 6px 12px;
    background: var(--red-50);
    border: 1px solid var(--red-200);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red-700);
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: var(--red-500);
    border-radius: 50%;
    position: relative;
}

.badge__dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--red-500);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Title */
.hero__title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero__title .gradient-text {
    display: inline-block;
    font-size: 1.1em;
    letter-spacing: -0.04em;
}

/* Subtitle */
.hero__subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 500;
    color: var(--red-600);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

/* Description */
.hero__description {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Actions */
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
}

.hero-slider__track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    height: 100%;
}

.hero-slider__slide {
    flex: 0 0 100%;
    height: 100%;
}

.hero-slider__slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Use cover to fill 16:9 space */
}

/* Slider Navigation Buttons */
.hero-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 8vw, 56px);
    height: clamp(40px, 8vw, 56px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
}

.hero-slider__btn:hover {
    background: var(--red-600);
    border-color: var(--red-500);
    box-shadow: 0 10px 25px rgba(220, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider__btn--prev {
    left: 20px;
}

.hero-slider__btn--next {
    right: 20px;
}

@media (max-width: 768px) {
    .hero-slider__btn {
        background: rgba(255, 255, 255, 0.8);
        color: var(--gray-900);
        width: 40px;
        height: 40px;
    }
    
    .hero-slider__btn--prev { left: 10px; }
    .hero-slider__btn--next { right: 10px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: none;
    min-height: 48px;
    /* Touch-friendly height */
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-btn);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(255, 45, 45, 0.45);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--primary svg {
    transition: transform var(--transition-base);
}

.btn--primary:hover svg {
    transform: translateX(4px);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}

.btn--ghost:hover {
    border-color: var(--red-300);
    color: var(--red-600);
    background: var(--red-50);
    transform: translateY(-2px);
}

/* ============================================================
   STATS
   ============================================================ */
.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 48px;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__plus {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.stat__divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll__mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-300);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll__dot {
    width: 3px;
    height: 8px;
    background: var(--red-400);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

/* ============================================================
   ANIMATE REVEAL (Scroll/Load Animations)
   ============================================================ */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.animate-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   SECTIONS (Base)
   ============================================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section--alt {
    background: var(--gray-50);
}

.section__placeholder {
    text-align: center;
}

.section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--red-50);
    color: var(--red-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.section__placeholder h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section__placeholder p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* ============================================================
   SECTION HEADER (Reusable)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-header__line {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.section-header__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmerLine 2.5s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.section-header__desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--grid-gap);
    margin-bottom: 56px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 40%, var(--red-400) 60%, var(--red-500) 80%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    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.4s var(--ease-out-expo);
    pointer-events: none;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(255, 45, 45, 0.08);
}

.product-card:hover::before {
    opacity: 1;
}

/* ---- Carousel ---- */
.product-card__carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gray-50);
}

.carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
    transform: scale(1.04);
}

.carousel__slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .carousel__slide.active img {
    transform: scale(1.08);
}

.carousel__slide--logo {
    background: var(--white) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2.5rem !important;
}

.carousel__slide--logo img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
    transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .carousel__slide--logo img {
    transform: scale(1.05);
}

/* Carousel Nav Buttons */
.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.carousel__btn--prev {
    left: 10px;
    transform: translateY(-50%) translateX(-8px);
}

.carousel__btn--next {
    right: 10px;
    transform: translateY(-50%) translateX(8px);
}

.product-card:hover .carousel__btn {
    opacity: 1;
}

.product-card:hover .carousel__btn--prev {
    transform: translateY(-50%) translateX(0);
}

.product-card:hover .carousel__btn--next {
    transform: translateY(-50%) translateX(0);
}

.carousel__btn:hover {
    background: var(--white);
    color: var(--red-600);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Carousel Dots */
.carousel__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.carousel__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-base);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.carousel__dot.active {
    background: var(--white);
    width: 20px;
    border-radius: 10px;
}

/* ---- Card Body ---- */
.product-card__body {
    padding: 24px;
    position: relative;
}

.product-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--red-50);
    color: var(--red-600);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-card__badge--new {
    background: linear-gradient(135deg, #ff2d2d, #ff6464);
    color: var(--white);
}

.product-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-card__desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-600);
    transition: all var(--transition-base);
}

.product-card__link svg {
    transition: transform var(--transition-base);
}

.product-card__link:hover {
    color: var(--red-700);
    gap: 10px;
}

.product-card__link:hover svg {
    transform: translateX(4px);
}

/* ---- Products CTA ---- */
.products-cta {
    text-align: center;
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    overflow: hidden;
}

/* Floating blobs */
.about__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.about__blob--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.07) 0%, transparent 70%);
    top: 5%;
    left: -5%;
    animation: floatGlow 10s ease-in-out infinite;
}

.about__blob--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 0, 0, 0.05) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    animation: floatGlow 12s ease-in-out infinite reverse;
}

.about__blob--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 60%;
    animation: floatGlow 14s ease-in-out infinite;
}

/* Carousel container */
.about-carousel {
    position: relative;
    z-index: 1;
}

.about-carousel__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px clamp(16px, 5vw, 24px) 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.about-carousel__track:active {
    cursor: grabbing;
}

.about-carousel__track::-webkit-scrollbar {
    display: none;
}

/* About Card */
.about-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.03) 0%, rgba(255, 100, 100, 0.01) 100%);
    transition: opacity 0.4s ease;
    opacity: 0;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.15), rgba(255, 100, 100, 0.3), rgba(255, 45, 45, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    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.4s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 45, 45, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.about-card:hover::before,
.about-card:hover::after {
    opacity: 1;
}

.about-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-out-back);
}

.about-card:hover .about-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-card__icon svg {
    width: 100%;
    height: 100%;
}

.about-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.about-card__desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-card__detail {
    display: none;
}

.about-card__expand-hint {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--red-500);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s var(--ease-out-expo);
}

.about-card:hover .about-card__expand-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel Navigation */
.about-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}

.about-carousel__btn {
    width: clamp(44px, 12vw, 52px);
    height: clamp(44px, 12vw, 52px);
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.about-carousel__btn:hover {
    border-color: var(--red-400);
    color: var(--red-600);
    background: var(--red-50);
    transform: scale(1.08);
}

.about-carousel__progress {
    width: 120px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.about-carousel__progress-bar {
    width: 33%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.4s var(--ease-out-expo);
}

/* ============================================================
   ABOUT MODAL (Expanded Card View)
   ============================================================ */
.about-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-modal.active {
    pointer-events: all;
    opacity: 1;
}

.about-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-modal__container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 580px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: clamp(32px, 8vw, 48px) clamp(24px, 6vw, 40px) 36px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15), 0 0 60px rgba(255, 45, 45, 0.08);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.5s var(--ease-out-back), opacity 0.4s ease;
    opacity: 0;
}

.about-modal.active .about-modal__container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.about-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.about-modal__close:hover {
    background: var(--red-100);
    color: var(--red-600);
    transform: rotate(90deg);
}

.about-modal__content {
    text-align: center;
}

.about-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
}

.about-modal__icon svg {
    width: 100%;
    height: 100%;
}

.about-modal__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.about-modal__desc {
    font-size: 1rem;
    font-weight: 600;
    color: var(--red-600);
    margin-bottom: 16px;
}

.about-modal__detail {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 8px;
}

.about-modal__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.about-modal__nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.about-modal__nav-btn:hover {
    border-color: var(--red-300);
    color: var(--red-600);
    background: var(--red-50);
}

.about-modal__counter {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.contact__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.contact__blob--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.05) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    animation: floatGlow 15s ease-in-out infinite;
}

.contact__blob--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.04) 0%, transparent 70%);
    bottom: 5%;
    left: 10%;
    animation: floatGlow 12s ease-in-out infinite reverse;
}

.contact__wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact__subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 48px;
    max-width: 400px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--red-50);
    color: var(--red-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.contact__item:hover .contact__icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 45, 45, 0.2);
}

.contact__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact__text {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Form Styling */
.contact__form-container {
    background: var(--white);
    padding: clamp(32px, 8vw, 48px);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-left: 4px;
}

.form__input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--gray-200);
    background: var(--gray-50);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--gray-900);
    transition: all var(--transition-base);
    outline: none;
}

.form__input::placeholder {
    color: var(--gray-400);
}

.form__input:focus {
    background: var(--white);
    border-color: var(--red-400);
    box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.1);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    margin-top: 10px;
}

/* ---------- HOVER SAFETY ---------- */
@media (hover: hover) {
    .nav__link:hover {
        color: var(--gray-900);
    }

    .nav__logo:hover {
        transform: scale(1.02);
    }

    .btn:hover {
        transform: translateY(-2px);
    }

    .product-card:hover {
        transform: translateY(-8px);
    }

    .about-card:hover {
        transform: translateY(-6px);
    }
}



/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--red-600);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--gray-200);
    border-radius: 34px;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: var(--red-500);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.pricing-badge {
    padding: 4px 10px;
    background: var(--red-50);
    color: var(--red-600);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red-200);
}

.pricing-card--featured {
    border: 2px solid var(--red-500);
    position: relative;
    transform: scale(1.05);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card__popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card__title {
    font-size: 1.4rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.pricing-card__price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card__price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-card__price .period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-card__desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.pricing-card__features li svg {
    color: var(--red-500);
}

.pricing-card__features li.disabled {
    color: var(--gray-400);
    text-decoration: line-through;
}

.pricing-card__features li.disabled svg {
    color: var(--gray-300);
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
    margin-bottom: 32px;
}

.testimonial-card__quote p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author__img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red-100);
}

.author__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.author__role {
    font-size: 0.85rem;
    color: var(--gray-500);
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item.active {
    border-color: var(--red-200);
    background: var(--red-50);
}

.faq__question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq__question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.faq__icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--gray-900);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.active .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 32px;
}

.faq__item.active .faq__answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq__answer p {
    color: var(--gray-600);
    line-height: 1.7;
}


/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter {
    background: var(--red-950);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 45, 45, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 45, 45, 0.1) 0%, transparent 40%);
}

.newsletter__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.newsletter__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 24px;
}

.newsletter__form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-primary);
}

.newsletter__form input:focus {
    outline: none;
    border-color: var(--red-500);
}

.newsletter__guarantee {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}


.footer {
    background: linear-gradient(135deg, #800000 0%, #4d0000 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

/* Branding */
.footer__brand {
    max-width: 360px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer .logo__icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: #800000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.2rem;
}

.footer .logo__text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer__tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-style: italic;
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--white);
    color: #800000;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Nav */
.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer__nav-link:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Connect Column */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
}

.footer__contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer__contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer__contact-item:hover .footer__contact-icon {
    background: var(--white);
    color: #800000;
    transform: scale(1.1);
}

.footer__contact-text {
    flex: 1;
}

.footer__contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.footer__contact-value {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .footer__main {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer__brand {
        flex: 0 0 100%;
        max-width: none;
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .footer__main {
        flex-direction: column;
    }

    .footer__brand,
    .footer__nav,
    .footer__contact {
        flex: 0 0 100%;
    }
}

.footer__nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer__nav-link:hover::after {
    width: 100%;
}

/* Bottom */
.footer__bottom {
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer__copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact__info {
        text-align: center;
    }

    .contact__subtitle {
        margin: 0 auto 48px;
    }

    .contact__details {
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 8px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-slow);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 12px;
        justify-content: center;
    }

    .hero {
        padding-top: calc(var(--header-height) + 60px);
        min-height: auto;
        padding-bottom: 100px;
    }

    .hero__title {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .hero__description {
        font-size: 0.95rem;
    }

    .hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .product-card__carousel {
        aspect-ratio: 16 / 10;
    }

    /* Show carousel buttons always on mobile */
    .carousel__btn {
        opacity: 0.8;
    }

    .carousel__btn--prev {
        transform: translateY(-50%) translateX(0);
    }

    .carousel__btn--next {
        transform: translateY(-50%) translateX(0);
    }

    .about-card {
        flex: 0 0 280px;
    }

    .about-modal__container {
        padding: 36px 24px 28px;
        border-radius: 20px;
    }

    .about-modal__title {
        font-size: 1.3rem;
    }

    .about-modal__nav-btn span {
        display: none;
    }

    .contact__form-container {
        padding: 32px 24px;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 30px;
    }

    .footer__main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__nav-list {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero__badge {
        font-size: 0.72rem;
        padding: 5px 14px 5px 10px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }
}

/* ---------- SELECTION STYLING ---------- */
::selection {
    background: var(--red-200);
    color: var(--red-900);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--red-300);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-400);
}

/* ============================================================
   HOMEPAGE CAROUSEL
   ============================================================ */
.homepage-products-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    padding: 30px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.hp-carousel__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: center;
}

.hp-carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    text-align: center;
}

.hp-carousel__img {
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.hp-carousel__slide:hover .hp-carousel__img {
    transform: scale(1.03) translateY(-10px);
}

.hp-carousel__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.hp-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.hp-carousel__btn:hover {
    background: var(--red-50);
    color: var(--red-600);
    border-color: var(--red-200);
    box-shadow: 0 8px 24px rgba(255, 45, 45, 0.15);
}

.hp-carousel__btn--prev {
    left: 15px;
}

.hp-carousel__btn--next {
    right: 15px;
}

@media (max-width: 768px) {
    .homepage-products-carousel {
        padding: 20px 30px;
    }

    .hp-carousel__img {
        height: 220px;
    }

    .hp-carousel__title {
        font-size: 1.4rem;
    }

    .hp-carousel__btn {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
    }

    .hp-carousel__btn--prev {
        left: 10px;
    }

    .hp-carousel__btn--next {
        right: 10px;
    }
}

/* ============================================================
   TEAM SECTION (ABOUT PAGE)
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px auto 0;
    max-width: 1000px; /* Keepcards elegant and not overly wide */
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.team-card {
    background: var(--white);
    border-radius: 40px;
    padding: 60px 40px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible; /* To allow avatar to pop slightly if needed */
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 0, 0, 0.2);
}

.team-card__img-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--red-500), #ff9e9e);
    box-shadow: 0 20px 40px rgba(220, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-card__img-wrapper {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 25px 50px rgba(220, 0, 0, 0.25);
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    display: block;
}

.team-card__overlay {
    position: absolute;
    inset: 4px;
    background: rgba(220, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-card__action {
    color: var(--white);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.team-card:hover .team-card__action {
    transform: scale(1);
}

.team-card__action svg {
    width: 32px;
    height: 32px;
}

.team-card__action span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card__name {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--gray-900);
    letter-spacing: -0.03em;
}

.team-card__role {
    color: var(--red-600);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: var(--red-50);
    border-radius: 100px;
}

.team-card__brief {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

/* TEAM MODAL */
.team-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-modal.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.team-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.team-modal__container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0.9) translateY(40px);
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 95vh;
    overflow-y: auto;
}

.team-modal.active .team-modal__container {
    transform: scale(1) translateY(0);
}

.team-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.team-modal__close:hover {
    background: var(--red-600);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.team-modal__content {
    padding: clamp(30px, 8vw, 60px);
}

.team-modal__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.team-modal__left {
    flex: 0 0 clamp(250px, 30%, 300px);
}

.team-modal__img {
    width: 100%;
    aspect-ratio: 0.85;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-modal__right {
    flex: 1;
    min-width: 300px;
}

.team-modal__name {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.team-modal__role {
    color: var(--red-600);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.team-modal__divider {
    height: 1px;
    background: linear-gradient(to right, var(--gray-100), transparent);
    margin: 30px 0;
}

.team-modal__section {
    margin-bottom: 24px;
}

.team-modal__section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 12px;
    font-weight: 800;
}

.team-modal__section p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

.team-modal__email {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--gradient-primary);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(220, 0, 0, 0.2);
}

.team-modal__email:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(220, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .team-modal__content {
        padding: 30px 20px;
    }

    .team-modal__left {
        flex: 0 0 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .team-modal__right {
        text-align: center;
    }
}