#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Stay on top of everything */
}

.dna-container {
    position: relative;
    width: 100px;
    height: 160px;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.loader-text {
    margin-top: 20px;
    color: var(--white);
    font-family: 'Orbitron';
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

/* Initially hide to prevent FOUC*/
.line-one, .line-two, .content-p, .hero-cta, .phone-display-video, .product-hero, .phone-frame, .product-card{
    visibility: hidden;
}

:root {
  /* Brand Colors */
  --primary-color: #2d66b4;
  --secondary-color: #22386e;
  --accent-color: #00ccff;

  /* Backgrounds */
  --bg-dark: #000000;
  --bg-light: #0a111f;

  /* Typography */
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --white: #ffffff;
}

/*NAV SECTION — shared globals*/

/* Dropdown arrow rotation (shared) */
.ri-arrow-down-s-line {
    display: inline-block;
    transition: transform 0.3s ease;
}



/*FLAT NAV*/
@media screen and (min-width: 1070.01px){
    .navbar, .drawer, .overlay { display: none; }

    .nav {
        z-index: 1000;
        padding: 0 28px;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: rgba(0, 0, 0, 0.326);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: fixed;
        width: 100%;
        height: 68px;
        box-sizing: border-box;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    /* ── Links list ── */
    .nav-links {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 4px;
        margin: 0;
        padding: 0;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        position: relative;
    }

    /* Base link style — matches drawer's font/weight */
    .nav-links a,
    .nav-links .dropbtn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 10px;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        white-space: nowrap;
    }

    /* Hover — same cyan tint as drawer */
    .nav-links a:hover,
    .nav-links .dropbtn:hover {
        background: rgba(0, 204, 255, 0.08);
        color: white;
    }

    /* Active page indicator — matches drawer's left-border style via bottom underline */
    .nav-links a.nav-link-active {
        color: white;
        background: rgba(0, 204, 255, 0.08);
        box-shadow: inset 0 -2px 0 var(--accent-color);
    }

    /* Scrolled state — consistent with mobile (muted, not jarring) */
    .nav-links a.nav-link-scrolled,
    .nav-links button.nav-link-scrolled {
        color: rgba(255, 255, 255, 0.6);
    }
    .nav-links a.nav-link-scrolled:hover,
    .nav-links button.nav-link-scrolled:hover {
        color: white;
    }

    /* ── Desktop dropdown panel — matches drawer submenu aesthetic ── */
    .dropdown-content {
        display: block;
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        background: rgba(5, 10, 25, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        min-width: 200px;
        border: 1px solid rgba(0, 204, 255, 0.15);
        border-radius: 14px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        padding: 8px;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.3s ease, visibility 0.25s;
    }

    .dropdown-content a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 10px;
        color: var(--text-muted);
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.18s, color 0.18s;
        background: transparent;
        box-shadow: none;
    }

    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: white;
    }

    .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
        max-height: 400px;
    }

    /* Rotate arrow when open */
    .dropdown.active .dropbtn .ri-arrow-down-s-line {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    /* ── Desktop EARN badge — unified with drawer .earn-badge ── */
    .badge-earn {
        padding: 3px 8px;
        border-radius: 6px;
        font-size: 10px;
        font-weight: 700;
        color: var(--accent-color);
        border: 1px solid rgba(0, 204, 255, 0.5);
        letter-spacing: 0.05em;
        background: rgba(0, 204, 255, 0.06);
        vertical-align: middle;
        margin-left: 6px;
        text-transform: uppercase;
        transition: background 0.2s, color 0.2s;
    }

    /* ── Desktop CTA button — matches drawer project-btn ── */
    .nav-cta {
        display: inline-flex;
        align-items: center;
        padding: 9px 18px;
        border-radius: 10px;
        font-family: 'Orbitron', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: white !important;
        background: var(--primary-color) !important;
        text-decoration: none;
        letter-spacing: 0.04em;
        border: none;
        cursor: pointer;
        transition: opacity 0.2s, transform 0.15s !important;
        box-shadow: none !important;
    }
    .nav-cta:hover {
        opacity: 0.88;
        transform: translateY(-1px);
        background: var(--primary-color) !important;
        color: white !important;
    }
}


/* ── MOBILE NAVBAR BAR (≤ 1070px) ─────────────────────── */
@media screen and (max-width: 1070px) {
    .nav { display: none; }

    .navbar {
        z-index: 1001;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.326);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        box-sizing: border-box;
    }

    /* Burger — circular container matching close-btn */
    .nav-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: rgba(0, 0, 0, 0.326);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
        transition: background 0.2s, border-color 0.2s;
        z-index: 1002;
    }
    .nav-toggle:hover {
        background: rgba(0, 204, 255, 0.1);
        border-color: rgba(0, 204, 255, 0.3);
    }

    .nav-toggle .line {
        display: block;
        width: 18px;
        height: 2px;
        background-color: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    /* X transformation when drawer is open */
    .nav-toggle.open .line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.open .line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nav-toggle.open .line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ── DRAWER OVERLAY ──────────────────────────────────── */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1200;
}
.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ── DRAWER PANEL ────────────────────────────────────── */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 88%;
    max-width: 360px;
    height: 100vh;
    padding: 24px 22px 28px;
    background: rgba(5, 10, 25, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 204, 255, 0.15);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 1300;
}
.drawer.open {
    transform: translateX(0);
}
.drawer::-webkit-scrollbar { width: 5px; }
.drawer::-webkit-scrollbar-track { background: rgba(0, 204, 255, 0.05); }
.drawer::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2d66b4, #00ccff);
    border-radius: 10px;
}

/* ── DRAWER HEADER ───────────────────────────────────── */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}
.close-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ── DRAWER NAV LINKS ────────────────────────────────── */
.drawer nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.drawer .nav-link,
.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    text-align: left;
}
.nav-link-inner {
    display: flex;
    align-items: center;
    gap: 11px;
}
.nav-icon {
    font-size: 17px;
    width: 22px;
    text-align: center;
    opacity: 0.8;
}
.drawer .nav-link:hover,
.dropdown-btn:hover {
    background: rgba(0, 204, 255, 0.08);
    color: white;
}
.drawer .nav-link.active {
    background: rgba(0, 204, 255, 0.10);
    border-left: 3px solid var(--accent-color);
    padding-left: 11px;
    color: white;
}

/* ── EARN BADGE (drawer version) ─────────────────────── */
.earn-badge {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-color);
    border: 1px solid rgba(0, 204, 255, 0.5);
    letter-spacing: 0.05em;
    background: rgba(0, 204, 255, 0.06);
    flex-shrink: 0;
}

/* ── DROPDOWN ARROW ──────────────────────────────────── */
.arrow {
    display: inline-block;
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    line-height: 1;
}
.arrow.rotate { transform: rotate(180deg); }

/* ── SUBMENU ─────────────────────────────────────────── */
.submenu {
    height: 0;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    margin-left: 36px;
}
.submenu-inner {
    padding: 6px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.submenu a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, color 0.18s;
}
.submenu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* ── DIVIDER (drawer) ────────────────────────────────── */
.drawer .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 8px 0;
}

/* ── PROJECT CTA BUTTON ──────────────────────────────── */
.products-btn {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    background: var(--primary-color);
    letter-spacing: 0.03em;
    transition: opacity 0.2s, transform 0.15s;
}
.products-btn:hover  { opacity: 0.9; transform: translateY(-1px); }
.products-btn:active { transform: translateY(0); }

body, html {
    scroll-behavior: smooth;
}

*::selection {background-color: var(--accent-color); color: var(--bg-dark);}

* { -webkit-tap-highlight-color: transparent; -moz-tap-highlight-color: transparent; margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat'; }

body { background-color: #0a0a0a; color: white; overflow-x: hidden; }

/* Hero Section */
.product-hero {
    position: relative;
    min-height: 100vh;
    background-color: #0a0a0a;
    /* THE GRID SYSTEM */
    background-image: 
        linear-gradient(rgba(34, 55, 110, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 55, 110, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Radial Vignette */
.product-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, #0a0a0a 90%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    gap: 50px;
}


h1 {
    /* Responsive spacing: tighter on mobile, breathing room on desktop */
    margin-bottom: clamp(20px, 5vh, 40px); 
    line-height: 1.1; /* Keeps the two spans close and punchy */
}

h1 span {
    display: block;
}

.line-one {
    font-family: 'Orbitron';
    /* Min: 2.8rem (previously 2.5rem), Scale: 9vw, Max: 4.5rem */
    font-size: clamp(2.8rem, 9vw, 4.5rem); 
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    line-height: 1.05; /* Tighter fit for the bigger font */
    text-shadow: 0 0 15px rgba(34, 55, 110, 0.4); /* Subtle cyber-glow */
}

.line-two {
    font-family: 'Orbitron';
    /* Min: 2rem (previously 1.8rem), Scale: 7vw, Max: 3.5rem */
    font-size: clamp(2rem, 7vw, 3.5rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero-text p {
    font-weight: 500;
    color: var(--white);
    /* Keeps the paragraph readable but significant */
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    max-width: 650px; 
    padding-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    font-family: 'Orbitron';
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;

    color: var(--text-main);
    background-color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 20px;
    text-decoration: none;
    
    /* ADD THESE TWO LINES */
    position: relative;
    top: 0;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
    /* INSTEAD OF translateY, WE USE TOP */
    top: -5px; 
    
    box-shadow: 0 4px 15px var(--accent-color);
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

/* Phone Mockup Styling */
.phone-mockup-wrapper {
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px; /* Keeps the premium rounded look */
    position: relative;
    overflow: hidden; /* This crops the white bar to the phone's curves */
    box-shadow: 0 0 80px rgba(34, 55, 110, 0.4), 0 30px 60px rgba(0, 0, 0, 0.8);

    border: 7px solid #000; /* Your brand blue as the frame */
    outline: 2px solid rgba(0, 195, 255, 0.3);
}

/* The full-width white bar at the top */
.phone-island {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; /* Spans the entire width of the mockup */
    height: 30px; /* Slightly taller for a more authoritative look */
    background: #f5f5f5; /* Solid white as requested */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border-bottom: 1px solid rgba(0,0,0,0.1);  Subtle separation from the video */
}

/* The camera cut-out stays centered */
.island-camera {
    width: 12px;
    height: 12px;
    background: #000000;
    border-radius: 50%;
    border: 3px solid #e0e0e0; /* A soft grey ring to make the lens pop against the white */
}

/* Adjust the video so it starts exactly where the white bar ends */
.phone-display-video {
    width: 100%;
    height: calc(100% - 30px); /* Subtracts the header height */
    margin-top: 30px; /* Pushes the video down so the white bar doesn't cover content */
    object-fit: cover;
    display: block;
}

.phone-glare {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(125deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 40%, transparent 45%);
    pointer-events: none;
}

/* Responsive Fix */
@media (max-width: 1060px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text{ margin-top: 100px; }
    .hero-text p { margin: 0 auto; }
}

/* Product Section */
.product-section {
    padding: 100px 20px;
    background-color: var(--white);
    position: relative;
    z-index: 5;
}

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

.section-header h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-family: 'Orbitron';
    color: var(--bg-dark);

    text-transform: uppercase;
    letter-spacing: 2px;
}

.accent-line {
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
}

/* Container for all product cards */
.grid-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* The Featured (Flagship) Card - uses the 'Off-Black' panel */
.product-card.featured {
    grid-column: span 2; /* Takes two slots on desktop */
    background: #161616; /* <--- This is the new panel color */
    border-radius: 28px;
    display: flex;
    flex-direction: row; /* Sideways layout on desktop */
    overflow: hidden;
    padding: 60px; /* Generous padding for a premium feel */
    border: 1px solid rgba(255, 255, 255, 0.03); /* Faint panel edge */
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3); /* Soft panel shadow */
}

/* LEFT SIDE styling */
.card-content {
    flex: 1; /* Takes equal space */
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge.blue {
    background: #22376e; /* Brand Blue */
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.product-card.featured h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 20px;
}

.product-card.featured p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #999;
    line-height: 1.7;
    margin-bottom: 40px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #fff;
    font-weight: bold;
}

.view-product-btn {
    background: #fff;
    text-decoration: none;
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: clamp(0.85rem, 1vw, 1rem);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Added a "bounce" effect */
    position: relative;
    overflow: hidden;
}
.view-product-btn:hover {
    transform: scale(1.05); /* 5% growth is perfect - not too much, not too little */
    color: #fff;
    background-color: #3a76d1; /* Slightly lighter blue */
    box-shadow: 0 10px 20px rgba(43, 95, 176, 0.3); /* Subtle blue glow */
}
.view-product-btn:active {
  transform: scale(0.98); /* Slight shrink to feel like a real button press */
}

/* RIGHT SIDE styling (The Image) */
.card-visual {
    flex: 1; /* Takes equal space */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-shadow{
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

.vcard-preview-img {
    width: 100%;
    max-width: 320px; /* Adjust based on your screenshot's aspect ratio */
    height: auto;
    object-fit: contain;
    border-radius: 20px; /* Optional: adds a phone-like curve */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Image has its own shadow */
    position: relative;
    z-index: 2;
}

/* RESPONSIVE: Stack them on mobile */
@media (max-width: 860px) {
    .product-section {
        padding: 100px 5px;
    }
    .grid-container {
        padding: 5px;
    }
    .product-card.featured {
        flex-direction: column; /* Stacks image below text */
        grid-column: span 1;
        padding: 40px;
    }
    
    .card-content { padding-right: 0; margin-bottom: 40px; }
    .vcard-preview-img { max-width: 250px; }
}

/* Container for the image (as discussed) */
.image-portal-wrap {
    flex: 1;
    position: relative; /* Crucial for absolute positioning of children */
    border-radius: 24px;
    background: #111; /* Off-black panel */
    overflow: hidden;
    cursor: none; /* Hide the standard mouse pointer in this area! */
}

/* Base image is static */
.product-image {
    width: 100%; height: auto; display: block;
}

/* --- THE HOVER POINTER (Hidden & Scaled Down by Default) --- */
.custom-hover-pointer {
    position: fixed; /* Tracks mouse relative to screen */
    top: 0; left: 0;
    pointer-events: none; /* Mouse clicks pass through it to the <a> */
    z-index: 1000; /* Stays above everything */
    
    display: flex; flex-direction: column; align-items: flex-start;
    
    transform: scale(0); /* Hidden */
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.3s ease;
}

/* --- State: Pointer is ACTIVE --- */
.image-portal-wrap:hover .custom-hover-pointer {
    transform: scale(1);
    opacity: 1;
}

/* The SVG Arrow (from sketch) */
.pointer-arrow {
    margin-left: 20px; /* Aligns arrow slightly left of label */
    margin-bottom: 5px; /* Spacing from label */
    transform: rotate(30deg); /* Tilt it slightly like the sketch */
}

/* The "VIEW PRODUCT" Label with the Border (from sketch) */
.view-label {
    background: rgba(255, 255, 255, 0.1); /* Subtle dark glass background */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2); /* Defined border */
    border-radius: 50px; /* Pill shape */
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    white-space: nowrap; /* Prevents text from wrapping */
}


/*FAQS-SECTION*/
.faq-section{
    background-color: var(--bg-dark);
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}

.faq-section h2{
    font-size: clamp(1.75rem, 5vw, 3rem);
    color: var(--text-main);
    font-family: 'Orbitron';
    padding: 20px;
}

.faq-item{
    padding: 20px 30px;
    cursor: pointer;
}

.faq-question{
    background-color: var(--bg-dark);
    color: var(--accent-color);
    
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

/* Hide answer by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
    color: var(--white);
    padding: 0 30px;
    letter-spacing: 0.5px;

    font-weight: 400;
    opacity: 0.9;
}

/* Show answer when parent is active */
.faq-item.active .faq-answer {
    padding-top: 2px;
}

/* Rotate Chevron */
.faq-item.active .chevron {
    transform: rotate(180deg);
    display: inline-block;
}

.chevron {
    transition: transform 0.3s ease;
}

/*FOOTER-SECTION*/
.footer-section{
    background-color: var(--bg-dark);
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding: 60px 20px 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.footer-column h3 i{
    color: var(--accent-color);
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.ri-verified-badge-fill {
    font-style: normal;
    font-size: 0.8rem;
    color: #4CAF50; /* Trust Green */
    margin-left: 4px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    margin: 40px 0 20px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    gap: 20px; /* Prevents text from crashing into each other on smaller screens */
    flex-wrap: wrap; /* Allows stacking on mobile devices */
}

.footer-cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px; /* Adds clean spacing between "Contact Emmy..." and the pill container */
}

.footer-socials-text {
    font-weight: 500; /* Replaced the invalid 5px */
}

.footer-socials {
    background: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    margin: 5px;
    display: flex; /* Added flex to make gap work */
    gap: 14px;    /* Perfectly spaces your icons inside the pill */
}

.footer-socials a {
    text-decoration: none;
    color: var(--bg-dark);
    display: flex; 
    align-items: center;
}

.footer-socials a i {
    font-size: 20px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease; /* Transition both transform and color */
}

.footer-socials a i:hover {
    transform: scale(1.2);
    /* Optional: Add a slight opacity change or color shift on hover if desired */
}

.copyright {
    color: var(--text-muted);
    font-size: clamp(0.75rem, 1vw, 0.88rem);
    white-space: nowrap; /* Keeps the copyright on one line if space permits */
}

/* Responsive Logic */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-legal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}