/* 
   CALIXTO VIP - RH7 PIXEL-PERFECT CLONE
   The final, absolute fidelity implementation.
*/

:root {
    --primary: #ee0000;
    --primary-alt: #cc0000;
    --red-glow: rgba(238, 0, 0, 0.2);
    --bg-black: #0d0d0d;
    --bg-card: rgba(10, 10, 10, 0.7);
    --border: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-sec: #8c8c8c;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --header-h: 72px;
    --topbar-h: 40px;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: #0a0a0a;
    color: var(--text-main);
    scroll-behavior: smooth;
}

header,
main,
footer {
    position: relative;
    z-index: 10;
}

/* Topbar Notification */
.rx-topbar {
    height: var(--topbar-h);
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2001;
}

.rx-topbar__link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RH7 Header */
.main-header {
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: var(--topbar-h);
    width: 100%;
    z-index: 2000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.3));
}

.header-search {
    flex: 1;
    max-width: 400px;
    padding: 0 40px;
}

.search-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-pill input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    width: 100%;
    font-size: 13px;
}

.search-pill i {
    width: 16px;
    color: var(--text-sec);
}

.header-nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav-main a {
    color: var(--text-sec);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
    white-space: nowrap;
}

.header-nav-main a:hover {
    color: #fff;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown-toggle i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(238, 0, 0, 0.1);
    z-index: 2005;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.profile-dropdown .dropdown-menu {
    left: auto;
    right: 0;
    top: calc(100% + 5px);
    transform: none;
    margin: 0;
}

.profile-dropdown:hover .dropdown-menu {
    transform: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-sec);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(238, 0, 0, 0.1);
    color: #fff;
    padding-left: 26px;
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--text-sec);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: #fff;
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(238, 0, 0, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.header-icon-box:hover {
    border-color: var(--primary);
    background: rgba(239, 68, 68, 0.05);
}

.header-icon-box i {
    width: 18px;
}

.header-user-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.header-user-btn:hover,
.profile-dropdown:hover .header-user-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Hero Section */
.hero {
    padding: 220px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    color: var(--text-sec);
    font-size: 18px;
    max-width: 550px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 15px;
    display: inline-block;
    transition: 0.3s;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 15px;
    border: 1px solid var(--border);
    display: inline-block;
    margin-left: 15px;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(238, 0, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-box img {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 1;
}

/* Scroll Progress Bar */
.rx-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Mouse Glow */
#mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238, 0, 0, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Interactive Background Wrapper */
.interactive-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.parallax-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(238, 0, 0, 0.15);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(200, 0, 0, 0.1);
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 50, 50, 0.1);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* Aurora Container */
.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #050505;
    /* Deep background */
}

.aurora-blob {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    animation: aurora-move 15s infinite alternate ease-in-out;
}

.aurora-blob--1 {
    width: 60vw;
    height: 60vh;
    background: rgba(238, 0, 0, 0.08);
    top: -20vh;
    left: -20vw;
}

.aurora-blob--2 {
    width: 50vw;
    height: 50vh;
    background: rgba(150, 0, 0, 0.06);
    bottom: -10vh;
    right: -10vw;
    animation-delay: -3s;
}

.aurora-blob--3 {
    width: 40vw;
    height: 40vh;
    background: rgba(255, 0, 0, 0.05);
    top: 50vh;
    left: 50vw;
    animation-delay: -7s;
}

@keyframes aurora-move {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.2) translate(5vw, -5vh);
    }

    100% {
        transform: scale(0.9) translate(-5vw, 5vh);
    }
}

/* RH7 Showcase & Pixel-Perfect Cards */
.showcase {
    padding: 100px 0;
}

.category-info {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 40px;
}

.category-info h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 800;
}

.category-info p {
    color: var(--text-sec);
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS — Premium Tarot Style
   ═══════════════════════════════════════════════════ */

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(255, 215, 0, 0.4);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.05), 0 25px 50px rgba(0, 0, 0, 0.6);
    }

    50% {
        border-color: rgba(255, 215, 0, 0.7);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.12), 0 25px 50px rgba(0, 0, 0, 0.6);
    }
}

@keyframes cardShimmer {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes tagPulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(238, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 16px rgba(238, 0, 0, 0.6);
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(5, 5, 5, 0.98));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    position: relative;
    animation: borderGlow 4s ease-in-out infinite;
}

/* Inner gold border for Tarot feel */
.product-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

/* Holographic shimmer sweep */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 215, 0, 0.06) 45%,
            rgba(255, 215, 0, 0.12) 50%,
            rgba(255, 215, 0, 0.06) 55%,
            transparent 70%);
    z-index: 5;
    pointer-events: none;
    animation: cardShimmer 6s ease-in-out infinite;
}

/* Skull watermark */
.product-img::after {
    content: '☠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffd700;
    opacity: 0.15;
    font-size: 80px;
    z-index: 2;
    pointer-events: none;
    transition: 0.5s;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", sans-serif;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #ffd700;
    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 60px rgba(255, 215, 0, 0.03);
}

.product-card:hover .product-img::after {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.15);
}

/* Product Tag */
.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background: rgba(238, 0, 0, 0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    animation: tagPulse 3s ease-in-out infinite;
}

.product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    /* Tarot card proportion */
    background: #000;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: saturate(0.9);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
    opacity: 1;
    filter: saturate(1.1);
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(5, 5, 5, 1) 0%, transparent 100%);
}

.product-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    flex: 1;
    letter-spacing: -0.3px;
}

.product-desc {
    font-size: 12px;
    color: var(--text-sec);
    margin-bottom: 20px;
    line-height: 1.5;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-val {
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.price-label {
    font-size: 11px;
    color: var(--text-sec);
    font-weight: 600;
}

.pix-badge {
    width: 38px;
    height: 38px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    transition: 0.3s;
}

.product-card:hover .pix-badge {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

.pix-badge i {
    width: 18px;
    height: 18px;
}

.product-footer {
    padding: 0 24px 24px 24px;
    position: relative;
    z-index: 2;
}

.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #cc0000);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-buy::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
}

.btn-buy:hover::after {
    left: 100%;
}

.btn-buy i {
    width: 16px;
    height: 16px;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #ff1a1a, var(--primary));
    box-shadow: 0 10px 30px rgba(238, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Stats Bar */
.stats-bar {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-sec);
    letter-spacing: 1px;
}

/* Compatibility */
.compatibility {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-sec);
    font-size: 16px;
}

.partners-scroll {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-item {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-sec);
    opacity: 0.5;
    filter: grayscale(1);
    transition: 0.3s;
    cursor: default;
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0);
    color: #fff;
    transform: translateY(-5px);
}

/* Infra (Why Us) */
.infra {
    padding: 100px 0;
    background: rgba(239, 68, 68, 0.02);
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.infra-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.infra-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.infra-card i {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.infra-card h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}

.infra-card p {
    color: var(--text-sec);
    font-size: 14px;
    line-height: 1.6;
}

/* Audience (Para quem é?) */
.audience {
    padding: 100px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.audience-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-item {
    border-left: 2px solid var(--primary);
    padding-left: 20px;
}

.audience-item strong {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.audience-item span {
    color: var(--text-sec);
    font-size: 14px;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visual-card i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.visual-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-card p {
    font-style: italic;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-card .user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #050505;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #fff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    color: var(--text-sec);
    font-size: 14px;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding-top 0.3s ease;
}

.faq-item.open .faq-content {
    max-height: 300px;
    padding-top: 15px;
}

.faq-item.open h4 i {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item h4 i {
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

/* Footer (4 Column) */
.main-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 25px;
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
}

.footer-col a,
.trust-item {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.trust-item i {
    color: var(--primary);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sec);
    transition: 0.3s;
}

.footer-socials a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Floating WA */
.wa-floating {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
    z-index: 9999;
    transition: 0.3s;
}

.wa-floating:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 4s infinite;
}

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

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Global Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

#mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Smaller cards for Featured section */
.featured-layout .product-card {
    max-width: 320px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-layout .product-img {
    height: 180px;
    flex-shrink: 0;
}

.featured-layout .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-layout .product-title {
    font-size: 16px;
    height: 40px;
    /* Fixed height for title to align cards */
    overflow: hidden;
}

.featured-layout .product-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
    margin-bottom: 15px;
}

.featured-layout .price-val {
    font-size: 20px;
}

/* Animations */
.rx-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rx-reveal--visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infra-grid {
        grid-template-columns: 1fr 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-nav-main {
        display: none;
    }

    .header-search {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .infra-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

