/* 
   PROTOCOLO SIGILOSO - PREMIUM THEME 
   Paleta: Preto, Vermelho #E10600, Branco, Cinza Escuro
*/

:root {
    --color-primary: #ff1a1a;
    /* Brighter neon red */
    --color-primary-dark: #b30000;
    --color-primary-glow: rgba(255, 26, 26, 0.6);
    --color-accent: #ffffff;

    --bg-black: #030303;
    /* Deepest black */
    --bg-dark: #080808;
    --bg-card: rgba(20, 20, 20, 0.6);
    --bg-card-hover: rgba(30, 30, 30, 0.8);

    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-muted: #525252;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 26, 26, 0.3);

    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Exo 2', sans-serif;

    --container-width: 1200px;
    /* Slightly wider */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;

    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    /* Smoother mechanical feel */
}

/* SCRAMBLE TEXT EFFECT */
.dud {
    color: var(--color-primary);
    opacity: 0.7;
}

/* SCROLL BAR CUSTOMIZATION */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

::selection {
    background: var(--color-primary);
    color: white;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 50% 0%, #150505 0%, transparent 60%),
        radial-gradient(circle at 100% 100%, #101010 0%, transparent 50%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* TYPOGRAPHY UTILS */
.text-gradient {
    background: linear-gradient(135deg, #fff 30%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* UTILS */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.section-dark {
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.section-black {
    background-color: var(--bg-black);
    position: relative;
    z-index: 10;
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-black) 0%, #0d0000 100%);
    position: relative;
    z-index: 10;
}

.spacer-top {
    margin-top: 3rem;
}

/* COMPONENTS & UI */

/* Buttons */
/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), #990000);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px var(--color-primary-glow);
    transition: var(--transition);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 50px var(--color-primary-glow), inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: #fff;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--border-light);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
}

.btn-outline:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.pulse-effect {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(225, 6, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(225, 6, 0, 0);
    }
}

/* Cards */
.card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
}

/* INTRO OVERLAY */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

#intro-overlay.unlocked {
    transform: translateY(-100%);
    /* Slide up like a heavy door */
    pointer-events: none;
}

.lock-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

#lock-icon {
    font-size: 5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    transition: all 0.3s;
    filter: drop-shadow(0 0 20px rgba(255, 26, 26, 0.5));
}

#intro-overlay.unlocked #lock-icon {
    /* transform: scale(3); opacity: 0; - replaced with JS nice pop */
}

/* Shake Animation (Access Denied/Waiting) */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shaking {
    animation: shake 0.3s linear infinite;
}

.status-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: var(--text-gray);
    margin-top: 1rem;
    text-transform: uppercase;
}

.status-text.granted {
    color: #00ff00;
    /* Hacker Green */
    text-shadow: 0 0 10px #00ff00;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    width: 0%;
    height: 100%;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    transition: width 2s linear;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.5);
    animation: scan 2s linear infinite;
    z-index: 1;
}

@keyframes scan {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

/* HEADER - Now hidden initially by overlay, but needs to be visible after */
.header {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

.logo i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.btn-sm {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    border: 1px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.btn-sm:hover {
    color: var(--text-white);
    border-color: var(--text-white);
}

/* HERO SECTION */
.hero {
    padding-top: 160px;
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1a0505 0%, #030303 80%);
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 26, 26, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 26, 26, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    opacity: 0.2;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: grid-move 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes grid-move {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px) translateY(60px);
    }
}

.hero-content {
    text-align: center;
    z-index: 5;
    max-width: 900px;
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 26, 26, 0.05);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 4px;
    /* Tech look */
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.2);
    backdrop-filter: blur(5px);
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

h1.glitch-text {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: glitch-skew 4s infinite linear alternate-reverse;
}

h1.glitch-text::before,
h1.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-black);
}

h1.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

h1.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 98px, 0);
        transform: skew(0.85deg);
    }

    5% {
        clip: rect(78px, 9999px, 20px, 0);
        transform: skew(0.19deg);
    }

    10% {
        clip: rect(6px, 9999px, 83px, 0);
        transform: skew(0.02deg);
    }

    15% {
        clip: rect(98px, 9999px, 1px, 0);
        transform: skew(0.79deg);
    }

    20% {
        clip: rect(61px, 9999px, 34px, 0);
        transform: skew(0.66deg);
    }

    /* ... shortened for brevity, browser handles interpolation well enough for effect */
    100% {
        clip: rect(80px, 9999px, 5px, 0);
        transform: skew(0.36deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(69px, 9999px, 85px, 0);
        transform: skew(0.04deg);
    }

    5% {
        clip: rect(2px, 9999px, 45px, 0);
        transform: skew(0.6deg);
    }

    10% {
        clip: rect(11px, 9999px, 81px, 0);
        transform: skew(0.62deg);
    }

    100% {
        clip: rect(53px, 9999px, 95px, 0);
        transform: skew(0.24deg);
    }
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

/* Hero Body Text */
.hero-body-text {
    color: #bbb;
    /* Slightly darker for hierarchy */
    font-size: 0.9rem;
    /* Reduced from 1.1rem */
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    /* Less spacing */
    font-weight: 400;
    opacity: 0.8;
}

/* CTA Microtext */
.cta-microtext {
    color: #888;
    font-size: 0.85rem;
    margin-top: 0.8rem;
    font-style: italic;
}

/* Updated Problem Cards */
.hero-problems {
    display: flex;
    gap: 1.5rem;
    /* Increased gap */
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.problem-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(225, 6, 0, 0.15);
    transform: translateY(-5px);
}

.problem-item i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-black), transparent);
    z-index: 2;
    pointer-events: none;
}

/* REFLECTION SECTION */
.reflection {
    padding: 8rem 0;
    position: relative;
}

.reflection::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.05) 0%, transparent 70%);
    transform: translate(50%, -50%);
    pointer-events: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 40%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reflection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.reflection-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-primary);
    padding: 2.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.reflection-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.reflection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 26, 26, 0.1);
}

.reflection-card:hover::after {
    transform: translateX(100%);
}

.highlight-text {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
}

.reflection-intro-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-light);
}

.intro-img {
    width: 100%;
    display: block;
    opacity: 0.9;
    transition: var(--transition);
}

.reflection-intro-image:hover .intro-img {
    opacity: 1;
    transform: scale(1.02);
}

/* VISION SECTION */
.vision {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at right, #0a0a0a 0%, #000 100%);
}

.vision-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-image-card {
    position: relative;
    padding: 10px;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-md);
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    border-radius: 4px;
    /* Slight radius inner */
    display: block;
    filter: sepia(20%) contrast(1.1);
    /* Cinematic look */
}

/* Decorative Frame Corners */
.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
}

.corner-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.corner-br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.vision-image-card:hover .frame-corner {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.vision-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.8), transparent);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--border-light);
    transition: var(--transition);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vision-item:hover {
    border-left-color: var(--color-primary);
    background: linear-gradient(90deg, rgba(255, 26, 26, 0.08), transparent);
    transform: translateX(10px);
}

.vision-item i {
    font-size: 2.5rem;
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.3);
}

.vision-item p {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.5;
}

.solution-reveal {
    text-align: left;
    padding-left: 2rem;
    border-left: 1px solid var(--border-glow);
}

.solution-reveal h3 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.big-reveal {
    font-size: 1.8rem;
    font-family: var(--font-display);
    color: white;
    font-weight: 700;
}

/* PRODUCT SECTION */
.product {
    padding: 8rem 0;
}

.product-box {
    background: linear-gradient(135deg, #0f0f0f, #050505);
    border: 1px solid var(--border-glow);
    padding: 4rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.product-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--color-primary);
    box-shadow: 0 0 30px var(--color-primary);
}

.product-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.file-icon i {
    font-size: 7rem;
    color: #fff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.product-info h3 {
    font-size: 2.5rem;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.version-tag {
    background: rgba(255, 26, 26, 0.1);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-weight: bold;
    padding: 4px 12px;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-left: 15px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.2);
}

.bonus-box {
    background: rgba(20, 20, 20, 0.4);
    border: 1px dashed var(--border-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.bonus-header i {
    color: var(--color-primary);
}

.bonus-list li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 8rem 0;
    background: var(--bg-black);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card:hover {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    margin-bottom: 1rem;
    position: absolute;
    top: 5px;
    right: 20px;
    z-index: 0;
}

.step-card:hover .step-number {
    color: rgba(255, 26, 26, 0.1);
}

.step-card p {
    font-weight: 500;
    color: var(--text-white);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

/* DIFFERENTIATION */
.differentiation {
    padding: 8rem 0;
}

.difference-box {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-light);
    padding: 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.difference-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent, var(--color-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(255, 26, 26, 0.05);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.1);
    transition: var(--transition);
}

.tag:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 20px var(--color-primary);
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-primary);
    transition: 0.4s ease;
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
}

/* PRODUCT SECTION - HIGH TECH FUTURISM */
.product-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

/* Main Card Container */
.product-card {
    background: linear-gradient(180deg, #111111 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

/* Subtle Tech Glow Border using pseudo-element */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* FUTURISTIC IMAGE FRAME */
.futuristic-frame {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--color-primary);
}

.product-editorial-img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.1) saturate(0.8) brightness(0.9);
    transition: all 0.5s ease;
}

.futuristic-frame:hover .product-editorial-img {
    transform: scale(1.03);
    filter: contrast(1.1) saturate(1) brightness(1);
}

/* Tech Corners */
.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    z-index: 2;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.5);
    transition: all 0.3s ease;
}

.corn-TL {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corn-TR {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corn-BL {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corn-BR {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* Dynamic Scan Line */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(225, 6, 0, 0.6);
    box-shadow: 0 0 15px var(--color-primary);
    animation: scanAnimation 4s ease-in-out infinite;
    z-index: 3;
    opacity: 0;
}

@keyframes scanAnimation {
    0% {
        top: -10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

/* Vignette Overlay */
.futuristic-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Card Body Layout */
.card-body {
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
}

/* Typography Enhancements */
.card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Tech Badge Styling */
.card-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background: rgba(225, 6, 0, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.1);
    /* Subtle neon glow */
}

.card-badge.badge-bonus {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Description Text */
.card-description {
    margin-bottom: 2rem;
}

.card-description p {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight-paragraph {
    border-left: 2px solid var(--color-primary);
    padding-left: 1rem;
    margin-left: -1rem;
    /* Visual hang */
    color: #ddd !important;
}

/* Futuristic Checklist */
.check-list-styled {
    list-style: none;
    margin-top: 2rem;
}

.check-list-styled li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.check-list-styled li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.check-list-styled li i {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-top: 2px;
    /* optical alignment */
    filter: drop-shadow(0 0 5px rgba(225, 6, 0, 0.4));
}

.check-list-styled li span {
    color: #eee;
    font-size: 1rem;
    font-weight: 500;
}

/* ULTRA PREMIUM BONUS CARD - "THE EXPENSIVE ONE" */
.product-card.card-bonus {
    background: radial-gradient(circle at top right, #1a1500 0%, #050505 60%, #000000 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Metallic Edge Highlight */
.product-card.card-bonus::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.4) 0%, transparent 60%, rgba(255, 215, 0, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Gold Gradient Text for Title */
.product-card.card-bonus .card-title {
    background: linear-gradient(135deg, #FFF 0%, #FFD700 40%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    letter-spacing: 0.05em;
}

/* Premium Badge */
.card-badge.badge-bonus {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    border: 1px solid #FFD700;
    color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    padding: 6px 16px;
}

/* Introduction Text */
.bonus-intro {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

/* Subtle separator shine */
.bonus-intro::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #FFD700;
    box-shadow: 0 0 10px #FFD700;
}

/* Grid Layout */
.bonus-grid-list {
    display: grid;
    gap: 1.2rem;
}

/* Bonus Items - "Black Glass" Look */
.bonus-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

/* Hover Effect: Gold Glow Reveal */
.bonus-item:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.bonus-item i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.bonus-item span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Popular Tag Ribbon Style - CORRECTED ALIGNMENT */
.popular-tag-card {
    position: absolute;
    top: 25px;
    right: -32px;
    width: 150px;
    /* Fixed width to ensure centering works */
    background: linear-gradient(90deg, #FFD700, #FDB931);
    color: #000;
    font-weight: 800;
    font-size: 0.65rem;
    /* Reduced for better fit */
    padding: 8px 0;
    /* Padding top/bottom only */
    text-align: center;
    /* Crucial for text alignment */
    transform: rotate(45deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid #FFF;
    display: flex;
    /* Ensure content centers */
    justify-content: center;
    align-items: center;
}

/* SOCIAL PROOF */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.6);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(5px);
}

.quote-icon {
    font-size: 5rem;
    font-family: serif;
    color: rgba(255, 26, 26, 0.1);
    position: absolute;
    top: -20px;
    left: 10px;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text-white);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.author-age {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* PRICING */
.pricing {
    padding: 8rem 0;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    align-items: center;
    /* Center vertically so popular pops */
}

.pricing-card {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    min-height: 500px;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 1px solid var(--color-primary);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(40, 5, 5, 0.95));
    box-shadow: 0 0 50px rgba(225, 6, 0, 0.15);
    transform: scale(1.08);
    /* Make it noticeably bigger */
    z-index: 10;
    min-height: 550px;
}

.pricing-card.popular:hover {
    box-shadow: 0 0 80px rgba(225, 6, 0, 0.25);
    transform: scale(1.1);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 5px 20px rgba(225, 6, 0, 0.4);
    white-space: nowrap;
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.popular h3 {
    color: white;
}

.price {
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.plan-desc {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features-list {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--text-gray);
    align-items: flex-start;
}

.features-list li i {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 1.1rem;
}

.popular .features-list li {
    color: #dedede;
}

.popular .features-list li.highlight {
    color: white;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.pricing-card .btn-outline,
.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
}

/* GUARANTEE */
.guarantee-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto;
}

.guarantee-icon i {
    font-size: 4rem;
    color: var(--text-white);
}

.guarantee-text h3 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.guarantee-text p {
    color: var(--text-gray);
}

/* FAQ */
.faq {
    padding: 6rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 2rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* URGENCY & FOOTER */
.urgency {
    padding: 6rem 0;
}

.alert-badge {
    background: #FF9800;
    color: black;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.check-list-styled {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list-styled li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-white);
    font-size: 1rem;
}

.check-list-styled li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.card-bonus {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    /* Dashed border for bonus feel */
}

.bonus-intro {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.bonus-grid-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-item i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.bonus-item span {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.big-btn {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    margin: 2rem 0;
}

.final-cta-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer {
    padding: 3rem 0;
    background: #000;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-logo {
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    margin: 0 10px;
    color: var(--text-gray);
}

.separator {
    opacity: 0.3;
}

/* RESPONSIVE */
/* RESPONSIVE */
/* RESPONSIVE - MOBILE FIRST AGENCY OPTIMIZATION */
@media (max-width: 768px) {

    /* 1. TYPOGRAPHY & SPACING FIXES */
    html {
        font-size: 18px;
    }

    /* Fix Header Overlap */
    .hero {
        padding-top: 120px;
        /* Force push down */
        min-height: auto;
        /* Allow content to dictate height */
    }

    .hero-content {
        padding-top: 2rem;
    }

    h1.glitch-text {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    /* 2. HEADER COMPACTNESS (Mobile) */
    .header {
        padding: 0.5rem 0;
        /* Minimal vertical padding */
        background: rgba(0, 0, 0, 0.7);
        /* Semi-transparent */
        backdrop-filter: blur(10px);
        /* Modern blur effect */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header .container {
        padding: 0 1rem;
        flex-direction: row;
        /* Horizontal alignment mandatory */
        justify-content: space-between;
        align-items: center;
        gap: 0;
        /* Let space-between handle it */
    }

    .logo {
        font-size: 0.8rem;
        /* Small, discreet logo */
        gap: 6px;
    }

    .logo-icon {
        font-size: 1rem;
    }

    /* SPECIFIC HEADER BUTTON STYLING */
    .btn-header {
        display: inline-flex !important;
        /* Force visibility */
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.6) !important;
        /* Darker bg for contrast */
        border: 1px solid var(--color-primary) !important;
        /* Red outline as requested */
        color: #fff !important;
        /* White text */
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.05em;
        border-radius: 4px;
        box-shadow: none !important;
        width: auto !important;
        margin: 0 !important;
        opacity: 1 !important;
        position: relative;
        z-index: 999;
        /* Max Z-Index */
        text-decoration: none;
        white-space: nowrap;
    }

    .btn-header:hover,
    .btn-header:active {
        background: var(--color-primary);
        color: #fff;
        border-color: var(--color-primary);
    }

    /* .btn-sm specific override removed to fallback to generic or :not selector */

    /* Fix Header Overlap */
    .hero {
        padding-top: 100px;
        /* Safe distance: Header (~60px) + Gap (40px) */
        min-height: auto;
    }

    .hero-content {
        padding-top: 0;
        /* Reset internal padding */
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
    }

    .body-text,
    p {
        line-height: 1.65;
        margin-bottom: 1.2rem;
    }

    /* 2. LAYOUT - VERTICAL RHYTHM */
    .container {
        padding: 0 1.5rem;
        /* Standard mobile gutter */
        width: 100%;
        max-width: 100%;
    }

    .hero {
        padding-top: 140px;
        /* More breathing room for top content */
        padding-bottom: 4rem;
        text-align: center;
        background-attachment: scroll;
        /* Fix performant scroll on mobile */
        background-position: center top;
    }

    /* 3. SIMPLIFIED SECTIONS (VERTICAL STACK) */
    .benefits-grid,
    .testimonials-grid,
    .steps-grid,
    .product-box,
    .reflection-layout,
    .vision-layout,
    .pricing-grid,
    .faq-grid,
    .hero-problems {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        /* Generous distinct spacing */
        overflow-x: hidden;
    }

    /* Remove any sidebar/grid artifacts */
    .reflection-text,
    .vision-content {
        order: 2;
        text-align: left;
    }

    .reflection-image,
    .vision-image-card {
        order: 1;
        margin-bottom: 1rem;
        width: 100%;
    }

    /* 4. CARDS - CLEAN & FOCUSED */
    .benefit-card,
    .testimonial-card,
    .step-card,
    .pricing-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        /* Subtler border */
        background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.95));
        box-shadow: none;
        /* Cleaner look */
    }

    /* 5. NAVIGATION & UTILITIES */
    .btn-primary,
    .btn-outline,
    .btn-sm:not(.btn-header),
    /* Exclude header button */
    a.btn-primary {
        width: 100%;
        /* Thumb-zone friendly */
        max-width: 100%;
        padding: 1.4rem 1rem;
        /* Large touch target */
        font-size: 1.1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
        position: relative;
        /* Ensure stacking context */
        z-index: 50;
        /* Force above other elements */
        pointer-events: auto;
        /* Force clickable */
    }

    .cursor-glow,
    .hero-bottom-fade {
        display: none;
        /* Performance */
    }

    /* Specific adjustments */
    .product-box {
        padding: 0;
        background: none;
        border: none;
    }

    .product-image-wrapper {
        margin-bottom: 2rem;
    }

    .product-mockup {
        max-width: 90%;
    }

    .vision-item {
        background: rgba(255, 255, 255, 0.03);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
    }

    /* Hide decorative elements that clutter */
    .frame-corner {
        display: none;
    }
}

/* === Modal Mobile-First FIX (Definitivo - Fullscreen Real) === */

/* UPSELL MODAL STYLES */

/* OVERLAY: isola completamente do layout */
#upsell-modal.modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: 999999 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;

    overflow: hidden !important;

    /* Animation States */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#upsell-modal.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* MODAL BASE (desktop/tablet) */
#upsell-modal .modal {
    position: relative !important;
    margin: 0 !important;

    width: min(92vw, 520px) !important;
    max-width: 92vw !important;
    max-height: 88vh !important;

    /* WOW UPGRADE: Glass real + profundidade */
    background: rgba(10, 10, 10, 0.68) !important;
    backdrop-filter: blur(14px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(225, 6, 0, 0.12) inset !important;

    /* Ensure scrolling works despite user request for hidden (safety override) */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /* Clip horizontal scan/spotlight if needed */
    -webkit-overflow-scrolling: touch !important;

    box-sizing: border-box !important;
    border-radius: 18px !important;
}

/* Borda viva (discreta, “agência”) */
#upsell-modal .modal::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Changed from -2px to 0 to prevent clip issues, or handle constraints */
    border-radius: inherit;
    padding: 1px;
    /* Subtle */
    background: linear-gradient(135deg,
            rgba(225, 6, 0, 0.0),
            rgba(225, 6, 0, 0.30),
            rgba(255, 255, 255, 0.06),
            rgba(225, 6, 0, 0.18),
            rgba(225, 6, 0, 0.0));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: premiumBorder 3.6s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.95;
    z-index: 5;
}

/* Spotlight (1 passada lenta) para dar “cinema” */
#upsell-modal .modal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 260px at 30% 10%,
            rgba(225, 6, 0, 0.14),
            transparent 55%);
    animation: spotlightSweep 1.2s ease-out 1;
    pointer-events: none;
    z-index: 4;
}

/* Micro feedback nos botões (mobile tap) */
#upsell-modal a.btn-primary,
#upsell-modal .btn-primary {
    transition: transform 120ms ease, filter 120ms ease;
}

#upsell-modal a.btn-primary:active,
#upsell-modal .btn-primary:active {
    transform: scale(0.985);
    filter: brightness(1.06);
}

@keyframes premiumBorder {

    0%,
    100% {
        filter: hue-rotate(0deg);
        opacity: 0.85;
    }

    50% {
        filter: hue-rotate(12deg);
        opacity: 1;
    }
}

@keyframes spotlightSweep {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(0);
    }
}


/* ===========================
   MOBILE: FULLSCREEN REAL
=========================== */
@media (max-width: 768px) {
    #upsell-modal.modal-overlay {
        align-items: flex-start !important;
        /* Forces top alignment */
        justify-content: stretch !important;
        padding-top: calc(20px + env(safe-area-inset-top)) !important;
        /* Extra top padding */
    }

    #upsell-modal .modal {
        position: relative !important;
        /* Changed from fixed to flow naturally */
        inset: auto !important;
        margin: 0 auto !important;

        width: 100vw !important;
        max-width: 100vw !important;

        /* Limit height to viewport minus padding to ensure it fits */
        max-height: calc(100dvh - 40px - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
        height: auto !important;

        border-radius: 0 0 18px 18px !important;
        /* Rounded bottom */
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;

        padding: 16px !important;
        overflow-y: auto !important;

        /* Reset transform for flow */
        transform: none !important;
    }
}

/* PROTEÇÃO TOTAL CONTRA ESTOURO */
#upsell-modal,
#upsell-modal * {
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
}


/* =========================
   MODAL PREMIUM UPGRADE (MOBILE)
   ========================= */

/* Overlay mais “premium” (blur + fade) */
#upsell-modal.modal-overlay {
    animation: overlayFadeIn 180ms ease-out both;
}

/* Entrada app-like no mobile */
@media (max-width: 768px) {
    #upsell-modal .modal {
        animation: modalSlideUp 240ms cubic-bezier(.2, .9, .2, 1) both;
        will-change: transform, opacity;
    }

    /* Borda “confidencial” sutil */
    #upsell-modal .modal {
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(225, 6, 0, 0.10) inset;
        position: relative !important;
        overflow: hidden !important;
        overflow-y: auto !important;
        /* Keep scroll */
    }

    /* Linha de scan MUITO discreta (não é neon) */
    #upsell-modal .modal::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 0%, rgba(225, 6, 0, 0.06) 35%, transparent 70%);
        transform: translateX(-40%);
        animation: subtleScan 2.8s ease-in-out infinite;
        pointer-events: none;
        mix-blend-mode: screen;
        z-index: 1;
        /* Behind content if content has z-index, but ensure content is readable */
    }

    /* Ensure content is above scan line if needed */
    #upsell-modal .modal-content {
        position: relative;
        z-index: 2;
    }

    /* Respeita acessibilidade: reduz animações */
    @media (prefers-reduced-motion: reduce) {

        #upsell-modal.modal-overlay,
        #upsell-modal .modal,
        #upsell-modal .modal::before {
            animation: none !important;
        }
    }
}

/* Se quiser dar spotlight no preço: */
#upsell-modal .new-price {
    animation: pricePremiumPulse 900ms ease-in-out 2;
    will-change: transform, filter;
}

/* ===== Animations ===== */
@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        transform: translateY(18px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes subtleScan {
    0% {
        transform: translateX(-55%);
        opacity: 0.0;
    }

    30% {
        opacity: 0.9;
    }

    50% {
        transform: translateX(55%);
        opacity: 0.2;
    }

    100% {
        transform: translateX(55%);
        opacity: 0.0;
    }
}

@keyframes pricePremiumPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(225, 6, 0, 0));
    }

    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 16px rgba(225, 6, 0, 0.35));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(225, 6, 0, 0));
    }
}


/* botão de fechar (acessível e tocável) */
.modal-close {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.95), rgba(13, 13, 13, 0));
    z-index: 2;
}

.modal-close button {
    width: 44px;
    height: 44px;
    /* área de toque ideal no mobile */
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}



/* --- Internal Content Styling --- */

.modal-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(225, 6, 0, 0.5);
}

.modal-icon-wrapper i {
    font-size: 1.8rem;
    color: #fff;
}

.modal-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.2;
}

.modal-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-price-box {
    margin-bottom: 1.5rem;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.current-price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.new-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(225, 6, 0, 0.5);
}

.discount-badge {
    background: #ff0000;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 1.2;
    transform: rotate(5deg);
}

.modal-benefits {
    text-align: left;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 8px;
}

.modal-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.4;
}

.modal-benefits li:last-child {
    margin-bottom: 0;
}

.modal-benefits li i {
    color: var(--color-primary);
    min-width: 18px;
    margin-top: 3px;
}

.modal-upsell-note {
    background: rgba(225, 6, 0, 0.1);
    border: 1px solid rgba(225, 6, 0, 0.3);
    color: #fff;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.btn-modal-main {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.1rem !important;
    padding: 1.2rem !important;
}

.btn-ghost-modal {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-ghost-modal:hover {
    color: #fff;
}