/* =========================================================================
   SUPER (Sistema Único Para Empresas Rentáveis)
   Premium Sales Page Stylesheet
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- 1. CSS Variables & Design Tokens --- */
:root {
    /* Brand Colors */
    --clr-primary: #1765fd;
    --clr-primary-light: #4485fd;
    --clr-primary-dark: #0a46bd;
    --clr-primary-glow: rgba(23, 101, 253, 0.4);

    --clr-white: #ffffff;
    --clr-off-white: #e5eeff;
    /* Brand White */
    --clr-dark-gray: #1a1a1a;
    --clr-dark-bg: #0f1115;
    /* Even darker for premium contrast */
    --clr-text-light: #a3b1c6;
    --clr-text-dark: #333333;
    --clr-accent: #00d084;
    /* For success/checkmarks */

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
    --grad-dark: linear-gradient(180deg, var(--clr-dark-bg) 0%, var(--clr-dark-gray) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --grad-glass-border: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.0) 100%);
    --grad-text: linear-gradient(to right, #ffffff, #a3b1c6);

    /* Typography */
    --font-main: 'Poppins', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    /* Layout */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Shadows & Glass */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px var(--clr-primary-glow);
}

/* --- 2. CSS Reset & Base Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-dark-bg);
    color: var(--clr-off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--clr-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* --- 3. Layout Utilities --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

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

.text-highlight {
    color: var(--clr-primary);
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* --- 4. Micro-animations & Interactions --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 var(--clr-primary-glow);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(23, 101, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(23, 101, 253, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    /* Starts hidden until animated */
}

/* Add delays for staggered animations */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

/* --- 5. Components --- */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 15px var(--clr-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--clr-primary-glow);
    filter: brightness(1.1);
}

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

.btn-outline {
    background: transparent;
    color: var(--clr-dark-bg);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: none;
    text-transform: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--grad-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 101, 253, 0.3);
}

/* Light Theme Modifier */
.section-light {
    background: #e5eeff !important;
    background-image: none !important;
    color: var(--clr-dark-bg);
}

.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--clr-dark-bg) !important;
}

.section-light p,
.section-light .subtitle,
.section-light .testimonial-text,
.section-light .feature-text p {
    color: #4a5568 !important;
}

.section-light .glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.section-light .glass-card:hover {
    border-color: rgba(23, 101, 253, 0.4) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.section-light .testimonial-author-info h4 {
    color: var(--clr-dark-bg) !important;
}

.section-light .testimonial-author-info p {
    color: #718096 !important;
}

.section-light .guarantee-box {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 2px dashed rgba(23, 101, 253, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.section-light .guarantee-content h4 {
    color: var(--clr-dark-bg) !important;
}

.section-light .guarantee-content p {
    color: #4a5568 !important;
}

/* --- 6. Specific Sections --- */

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

/* Abstract Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--clr-primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.hero-content p.subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-bottom: var(--space-md);
    max-width: 90%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-off-white);
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--clr-primary);
    filter: blur(40px);
    opacity: 0.6;
    border-radius: 50%;
    z-index: -1;
    animation: none;
}

.hero-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(23, 101, 253, 0.4);
    background: rgba(23, 101, 253, 0.1);
    backdrop-filter: blur(10px);
}

/* Neural Network Brain Design */
.neural-network-brain {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto 4rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.neural-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.neural-lines line {
    stroke: rgba(23, 101, 253, 0.4);
    stroke-width: 2;
    stroke-dasharray: 6 6;
    animation: none;
}

@keyframes flowLines {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.neural-center {
    position: relative;
    z-index: 3;
}

.neural-center .hero-logo-wrapper {
    margin-bottom: 0;
}

.node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--clr-dark-gray);
    border: 1px solid rgba(23, 101, 253, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-off-white);
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 15px rgba(23, 101, 253, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.node:hover {
    transform: scale(1.1);
    background: rgba(23, 101, 253, 0.2);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    box-shadow: 0 0 25px rgba(23, 101, 253, 0.5);
}

.node-1 {
    top: 5px;
    left: 145px;
}

.node-2 {
    top: 75px;
    left: 266px;
}

.node-3 {
    top: 215px;
    left: 266px;
}

.node-4 {
    top: 285px;
    left: 145px;
}

.node-5 {
    top: 215px;
    left: 24px;
}

.node-6 {
    top: 75px;
    left: 24px;
}

/* Pain Agitation Section */
.pain-section {
    background: var(--clr-dark-gray);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.pain-header {
    max-width: 600px;
    margin: 0 auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.pain-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border-radius: 50%;
    border: 1px solid rgba(255, 77, 77, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pain-card h4 {
    font-size: 1.2rem;
    color: var(--clr-white);
}

.pain-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* Video / VSL Section */
.vsl-section {
    text-align: center;
    position: relative;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(23, 101, 253, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* The Solution / Dashboards Tab Section */
.solution-section {
    text-align: center;
}

.solution-header {
    max-width: 800px;
    margin: 0 auto var(--space-lg) auto;
}

.solution-header p {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Dashboard Interactive Tabs Container */
.dashboard-showcase {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--space-sm);
    text-align: left;
}

.dashboard-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--clr-text-light);
    padding: 1.2rem;
    text-align: left;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--clr-white);
}

.tab-btn.active {
    background: var(--clr-primary-glow);
    border: 1px solid rgba(23, 101, 253, 0.5);
    color: var(--clr-white);
    box-shadow: inset 0 0 15px rgba(23, 101, 253, 0.2);
}

.tab-btn svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.tab-btn.active svg {
    opacity: 1;
    color: var(--clr-white);
}

.tab-content-area {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--clr-dark-bg);
    min-height: 400px;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.tab-img-holder {
    width: 100%;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-img-holder img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tab-text {
    padding: var(--space-md);
}

.tab-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.tab-text p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.feature-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--clr-off-white);
}

/* Pricing Section */
.pricing-section {
    background: radial-gradient(circle at center, #1a2235 0%, var(--clr-dark-bg) 100%);
    position: relative;
}

.pricing-header {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    max-width: 900px;
    margin: var(--space-lg) auto 0;
}

.pricing-card {
    background: var(--clr-dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Light Theme Standard Plan */
.pricing-card.standard {
    background: #e5eeff;
    border: 1px solid rgba(23, 101, 253, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card.standard h3,
.pricing-card.standard .price-value {
    color: var(--clr-dark-bg);
}

.pricing-card.standard p.tier-desc,
.pricing-card.standard .price-value span.currency {
    color: #4a5568;
}

.pricing-card.standard .installment {
    color: var(--clr-primary);
}

.pricing-card.standard .features-list li {
    color: #2d3748;
}

.pricing-card.standard .features-list li.dim {
    color: #a0aec0;
}

.pricing-card.standard .features-list li.dim svg {
    color: #cbd5e0;
}

.pricing-card.premium {
    border-color: var(--clr-primary);
    background: linear-gradient(180deg, rgba(23, 101, 253, 0.05) 0%, #101318 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--clr-primary-glow);
    z-index: 2;
}

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

.premium-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--grad-primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card p.tier-desc {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 45px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-white);
    margin: var(--space-sm) 0;
    line-height: 1;
}

.price-value span.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--clr-text-light);
}

.price-value span.period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--clr-text-light);
}

.installment {
    color: var(--clr-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.features-list {
    margin: 0 0 var(--space-md) 0;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--clr-off-white);
    font-size: 0.95rem;
    line-height: 1.4;
}

.features-list li svg {
    color: var(--clr-accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list li.dim {
    color: rgba(255, 255, 255, 0.3);
}

.features-list li.dim svg {
    color: rgba(255, 255, 255, 0.2);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-top: 0.2rem;
    line-height: 1.4;
}

/* Guarantee Section */
.guarantee-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    max-width: 800px;
    margin: var(--space-lg) auto 0;
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--clr-primary);
    background: rgba(23, 101, 253, 0.05);
    border: 2px solid rgba(23, 101, 253, 0.5);
    border-radius: 16px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.guarantee-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Author Section */
.author-section {
    background: var(--clr-dark-bg);
}

.author-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.author-img {
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.author-content h2 {
    margin-bottom: 1rem;
}

.author-content p {
    color: var(--clr-text-light);
    margin-bottom: 1rem;
}

/* Extras/Bonus */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.bonus-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: rgba(23, 101, 253, 0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    border: 1px solid rgba(23, 101, 253, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    font-weight: 700;
    color: var(--clr-white);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th small {
    font-weight: 400;
    color: var(--clr-text-light);
    display: block;
    margin-top: 0.2rem;
    font-size: 0.85rem;
}

.comparison-table .feature-name {
    font-weight: 600;
    color: var(--clr-white);
    width: 28%;
}

.comparison-table td {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.comparison-table .super-col {
    background: rgba(23, 101, 253, 0.08);
    border-left: 2px solid var(--clr-primary);
    border-right: 2px solid var(--clr-primary);
    color: var(--clr-white);
}

.comparison-table th.super-col {
    background: var(--grad-primary);
    color: var(--clr-white);
    border: none;
    text-align: center;
}

.comparison-table th.super-col small {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table td.super-col {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.icon-check {
    color: var(--clr-accent);
    margin-right: 5px;
}

.icon-x {
    color: #ff4d4d;
    margin-right: 5px;
}

.icon-warn {
    color: #ecc94b;
    margin-right: 5px;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(23, 101, 253, 0.1);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    z-index: 0;
    transition: color 0.3s ease;
}

.step-card:hover .step-number {
    color: rgba(23, 101, 253, 0.2);
}

.step-card h4,
.step-card p {
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    background: var(--clr-dark-bg);
    position: relative;
}

.faq-header {
    max-width: 600px;
    margin: 0 auto var(--space-lg) auto;
    text-align: center;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.faq-icon {
    color: var(--clr-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--clr-text-light);
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--clr-dark-gray);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-masonry {
    column-count: 1;
    column-gap: 1.5rem;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .testimonials-masonry {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .testimonials-masonry {
        column-count: 3;
    }
}

.testimonial-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: 1.5rem;
    display: block;
    break-inside: avoid;
    box-shadow: var(--shadow-md);
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Target Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.audience-card {
    padding: var(--space-lg) var(--space-md);
    position: relative;
    display: flex;
    flex-direction: column;
}

.audience-card.is-for {
    border-top: 3px solid var(--clr-primary);
    box-shadow: 0 10px 30px rgba(23, 101, 253, 0.05);
}

.audience-card.is-not-for {
    border-top: 3px solid #ff4d4d;
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.05);
}

.audience-icon-wrapper {
    font-size: 3.5rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.audience-icon-wrapper.is-not {
    color: #ff4d4d;
}

.audience-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.text-not-for {
    color: #ff4d4d;
    background: linear-gradient(135deg, #ff4d4d 0%, #ff8080 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.audience-desc {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.audience-subtitle {
    font-size: 1.1rem;
    color: var(--clr-white);
    margin-bottom: 1.2rem;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--clr-off-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.audience-list li i {
    color: var(--clr-accent);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.audience-list.list-not-for li i {
    color: #ff4d4d;
}

@media (max-width: 992px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(23, 101, 253, 0.1) 0%, var(--clr-dark-bg) 70%);
}

.final-cta-header {
    max-width: 800px;
    margin: 0 auto var(--space-md) auto;
}

.final-cta-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

/* Footer Focus */
.footer {
    text-align: center;
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

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

    .hero-badges {
        justify-content: center;
    }

    .hero-content p.subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .dashboard-showcase {
        grid-template-columns: 1fr;
    }

    .dashboard-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding-bottom: 1rem;
    }

    .tab-btn-home {
        grid-column: 1 / -1;
    }

    .tab-btn {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        white-space: normal;
    }

    .pricing-card.premium {
        transform: none;
    }

    .pricing-card.premium:hover {
        transform: none;
    }

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

    .author-img {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-lg: 3rem;
    }

    .hero {
        padding-top: 3rem;
    }

    .neural-network-brain {
        transform: scale(0.8);
        margin: -3rem auto -1rem auto;
    }

    .hero-badges {
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

/* --- 8. Adaptation Section & Modal --- */
.adaptation-section {
    position: relative;
    z-index: 1;
}

.adaptation-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.adaptation-img-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Increased visibility slightly */
    background: #000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    aspect-ratio: 16 / 10; /* Fixed aspect ratio to prevent "breaking" vertical sizing */
}

.adaptation-img-wrapper img {
    width: 100%;
    height: 100%; /* Fill the aspect-ratio box */
    object-fit: cover;
    object-position: top; /* Show the functional part of the system */
    display: block;
    transition: transform 0.5s ease;
}

.adaptation-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(23, 101, 253, 0.3);
}

.adaptation-img-wrapper:hover img {
    transform: scale(1.02);
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 17, 21, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-overlay i {
    font-size: 3rem;
    color: var(--clr-primary);
    filter: drop-shadow(0 0 10px rgba(23, 101, 253, 0.5));
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.adaptation-img-wrapper:hover .zoom-overlay {
    opacity: 1;
}

.adaptation-img-wrapper:hover .zoom-overlay i {
    transform: scale(1);
}

/* Adaptation Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 99999; /* Higher z-index to ensure it stays on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.show {
    opacity: 1;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}

.gallery-modal.show .gallery-modal-content {
    transform: scale(1);
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 200;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
}

.gallery-close:hover {
    color: var(--clr-primary);
}

@media (max-width: 768px) {
    .adaptation-gallery {
        grid-template-columns: 1fr;
    }
}