/* DESIGN SYSTEM - PREMIUM LANDING PAGE */

:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-secondary: #666666;
    --text-muted: #8e8e93;
    --border-color: #eaeaea;
    --border-color-dark: #d2d2d7;
    --border-light: #f5f5f7;
    --neon-green: #39ff14;
    --neon-green-hover: #2ee60f;
    --neon-glow: rgba(57, 255, 20, 0.45);
    --neon-glow-hover: rgba(57, 255, 20, 0.65);
    --alert-color: #ff3b30;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px var(--neon-glow);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* WebGL Canvas Background */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-small {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SECTION COMMONS */
.section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

.border-top {
    border-top: 1px solid var(--border-color);
}

.bg-light {
    background-color: var(--border-light);
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-display);
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-header {
    background-color: var(--text-color);
    color: var(--bg-color);
    font-size: 0.85rem;
    padding: 8px 18px;
}

.btn-header:hover {
    transform: translateY(-2px);
    background-color: #222;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* NEON GLOW BTN */
.btn-neon-glow {
    background-color: var(--neon-green);
    color: var(--text-color);
    box-shadow: 0 4px 14px rgba(57, 255, 20, 0.3), var(--shadow-glow);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.btn-neon-glow:hover {
    background-color: var(--neon-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.45), 0 0 30px var(--neon-glow-hover);
}

.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7), 0 4px 14px rgba(57, 255, 20, 0.3);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(57, 255, 20, 0), 0 4px 14px rgba(57, 255, 20, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0), 0 4px 14px rgba(57, 255, 20, 0.3);
    }
}

.icon-btn {
    margin-left: 8px;
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

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

/* BADGES & TYPOGRAPHY */
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-color);
    background-color: var(--border-light);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    margin-bottom: 24px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.section-tag.text-alert {
    color: var(--alert-color);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-title-large {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 2.2rem;
    }
}

.section-subtitle-large {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-subtitle-large {
        font-size: 1.1rem;
    }
}

.section-header {
    max-width: 600px;
    margin-bottom: 64px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* HEADER STYLE */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    height: 80px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    text-decoration: none;
    color: var(--text-color);
}

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

.logo-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.logo-text strong {
    font-weight: 800;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text-color);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 40px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
}

/* HERO VISUAL (3D CSS ENGINE) */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scene-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 420px;
    perspective: 1200px;
}

/* Connecting Lines Background */
.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Floating Glass Cards */
.floating-card {
    position: absolute;
    width: 160px;
    z-index: 10;
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.glass-card {
    background-color: var(--glass-bg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.badge-card {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.dot-actions {
    display: flex;
    gap: 4px;
}

.dot-actions span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.metric-container {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.metric {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.trend {
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.trend.positive {
    color: #27c93f;
}

.trend i {
    width: 10px;
    height: 10px;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin: 6px 0;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: width 1.5s ease-out;
}

/* Card Google Analytics */
.dashboard-analytics {
    top: 10px;
    left: -10px;
}

.dashboard-analytics .badge-card {
    background-color: var(--border-light);
    color: var(--text-color);
}

.mini-chart {
    margin-top: 4px;
    width: 100%;
}

/* Card Google Ads */
.dashboard-google-ads {
    top: 30px;
    right: -20px;
    width: 150px;
}

.dashboard-google-ads .badge-card.ads-badge {
    background-color: rgba(26, 115, 232, 0.1);
    color: #1a73e8;
}

.icon-ads {
    width: 12px;
    height: 12px;
    color: #1a73e8;
}

/* Card Meta Ads */
.dashboard-meta-ads {
    bottom: 20px;
    right: 20px;
    width: 140px;
}

.dashboard-meta-ads .badge-card.meta-badge {
    background-color: rgba(0, 102, 255, 0.1);
    color: #0066ff;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #27c93f;
    text-transform: uppercase;
}

.live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #27c93f;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.bars-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 35px;
    margin-top: 6px;
}

.bar {
    flex: 1;
    background-color: var(--text-color);
    border-radius: 2px 2px 0 0;
    height: 0;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* MACBOOK MOCKUP (Pure CSS isometric) */
.macbook-mockup {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%) rotateY(-18deg) rotateX(12deg) rotateZ(1deg);
    width: 320px;
    height: 200px;
    z-index: 5;
    transition: var(--transition-smooth);
}

.macbook-mockup:hover {
    transform: translate(-50%, -52%) rotateY(-12deg) rotateX(8deg) rotateZ(0deg);
}

.macbook-screen {
    background-color: #0a0a0a;
    border-radius: 12px 12px 0 0;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid #2c2c2e;
    height: 188px;
    position: relative;
    overflow: hidden;
}

.macbook-content {
    background-color: var(--bg-color);
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.site-header {
    background-color: var(--border-light);
    height: 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 6px;
    gap: 12px;
}

.circle-group {
    display: flex;
    gap: 3px;
}

.circle-group span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--border-color-dark);
}

.browser-address {
    font-size: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.site-body {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-hero {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.site-text-block {
    height: 6px;
    width: 70%;
    background-color: var(--text-color);
    border-radius: 1px;
}

.site-text-block.short {
    width: 40%;
    height: 4px;
    background-color: var(--text-secondary);
}

.site-btn {
    height: 8px;
    width: 30px;
    background-color: var(--neon-green);
    border-radius: 2px;
    margin-top: 2px;
}

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

.site-grid div {
    height: 36px;
    background-color: var(--border-light);
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

.macbook-keyboard {
    height: 12px;
    background-color: #d2d2d7;
    border-radius: 0 0 8px 8px;
    border-bottom: 3px solid #b0b0b5;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.macbook-notch {
    width: 40px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    border-radius: 0 0 3px 3px;
}

/* IPHONE MOCKUP */
.iphone-mockup {
    position: absolute;
    left: 20px;
    bottom: -10px;
    width: 110px;
    height: 220px;
    background-color: #000;
    border: 3px solid #222;
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    transform: rotateY(15deg) rotateX(8deg) rotateZ(-4deg);
    z-index: 8;
    transition: var(--transition-smooth);
}

.iphone-mockup:hover {
    transform: rotateY(8deg) rotateX(4deg) rotateZ(-2deg) translateY(-4px);
}

.iphone-screen {
    background-color: var(--bg-color);
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 12px 6px;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 10px;
    background-color: #000;
    border-radius: 0 0 6px 6px;
    z-index: 20;
}

.iphone-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.iphone-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.iphone-logo {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.iphone-menu-bar {
    width: 10px;
    height: 6px;
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
}

.iphone-title {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    text-align: center;
}

.iphone-card {
    width: 100%;
    background-color: var(--border-light);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.iphone-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color-dark);
}

.iphone-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.iphone-lines span {
    height: 3px;
    background-color: var(--border-color-dark);
    border-radius: 1px;
}

.iphone-lines span:first-child { width: 80%; }
.iphone-lines span:last-child { width: 50%; }

.iphone-button-cta {
    width: 100%;
    padding: 6px 0;
    background-color: var(--neon-green);
    color: var(--text-color);
    font-size: 0.55rem;
    font-weight: 800;
    border-radius: 99px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(57, 255, 20, 0.25);
}

.iphone-button-cta i {
    width: 8px;
    height: 8px;
}

/* VALUE PROPOSITION SECTION */
.value-section {
    background-color: var(--bg-color);
}

/* GRIDS */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* AUTHORITY/PROVA SOCIAL SECTION */
.benefit-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-6px);
    background-color: var(--bg-color);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    margin-bottom: 24px;
}

.benefit-icon i {
    width: 20px;
    height: 20px;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* PROBLEM SECTION */
.problem-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-smooth);
    background-color: var(--bg-color);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.card-status-dot {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.card-status-dot.alert {
    background-color: var(--alert-color);
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
}

.problem-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.problem-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.45;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.service-card {
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    transition: var(--transition-smooth);
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--border-color-dark);
}

.service-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.service-main-icon {
    width: 28px;
    height: 28px;
    color: var(--text-color);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--text-color);
    flex-shrink: 0;
    margin-top: 3px;
}

/* TIMELINE SECTION */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 64px auto 0;
    padding: 20px 0;
}

.timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 31px;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--text-color);
    transition: height 0.1s ease-out;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-marker {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.timeline-step.active .step-marker {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: var(--bg-color);
}

.step-content {
    flex: 1;
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    transition: var(--transition-smooth);
}

.timeline-step.active .step-content {
    border-color: var(--border-color-dark);
    box-shadow: var(--shadow-soft);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* DIFFERENTIALS SECTION */
.differential-card {
    padding: 24px 12px;
    transition: var(--transition-fast);
}

.differential-card i {
    width: 24px;
    height: 24px;
    color: var(--text-color);
    margin-bottom: 16px;
}

.differential-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.differential-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* RESULTS SECTION (DASHBOARD) */
.results-dashboard {
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

@media (max-width: 768px) {
    .results-dashboard {
        padding: 24px;
    }
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    background-color: var(--border-light);
    border-radius: 4px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dashboard-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.btn-simulate {
    background-color: var(--border-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-simulate:hover {
    background-color: var(--border-color);
}

.btn-simulate i {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    transition: transform 0.5s ease;
}

.btn-simulate:hover i {
    transform: rotate(180deg);
}

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

@media (max-width: 960px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.metric-box {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    background-color: var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px;
}

.box-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.box-value-container {
    margin: 12px 0 6px;
}

.box-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.box-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
    width: 100%;
}

.mini-bar {
    flex: 1;
    background-color: var(--text-color);
    border-radius: 1px;
}

.mini-line-svg {
    width: 100%;
    height: 24px;
}

.roi-indicator-bar {
    width: 100%;
    height: 4px;
    background-color: var(--border-color-dark);
    border-radius: 2px;
    position: relative;
}

.roi-dot-active {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--text-color);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    transition: left 1s ease-out;
}

/* COMPARATIVE SECTION */
.comparison-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 48px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    background-color: var(--border-light);
}

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

.td-title {
    font-weight: 600;
    width: 30%;
    font-size: 0.95rem;
}

.col-without {
    width: 35%;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.col-with {
    width: 35%;
    font-weight: 600;
    background-color: rgba(57, 255, 20, 0.03);
    font-size: 0.9rem;
}

.icon-x {
    color: var(--alert-color);
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

.icon-check {
    color: var(--text-color);
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

@media (max-width: 600px) {
    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
    }
    
    .td-title {
        width: 100%;
        display: block;
        padding-bottom: 4px;
        border: none;
    }
    
    .col-without,
    .col-with {
        width: 50%;
        display: inline-block;
        padding-top: 4px;
    }
    
    .comparison-table tr {
        display: block;
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }
    
    .comparison-table thead {
        display: none;
    }
}

/* CTA FINAL SECTION */
.cta-section {
    background-color: var(--bg-color);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.cta-action {
    display: flex;
    justify-content: center;
}

/* FOOTER */
.footer {
    padding: 48px 0;
    background-color: var(--bg-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ANIMATIONS (SCROLL REVEAL & FADE IN) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delayed fade-in child loops */
.hero-content .fade-in:nth-child(1) { transition-delay: 0.1s; }
.hero-content .fade-in:nth-child(2) { transition-delay: 0.2s; }
.hero-content .fade-in:nth-child(3) { transition-delay: 0.3s; }
.hero-content .fade-in:nth-child(4) { transition-delay: 0.4s; }

.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal grids stagger (Handled via JS mainly, or css delay triggers) */
.reveal-grid.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal-grid.active .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-grid.active .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-grid.active .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.reveal-grid.active .reveal-item:nth-child(4) { transition-delay: 0.35s; }
.reveal-grid.active .reveal-item:nth-child(5) { transition-delay: 0.45s; }
.reveal-grid.active .reveal-item:nth-child(6) { transition-delay: 0.55s; }
.reveal-grid.active .reveal-item:nth-child(7) { transition-delay: 0.65s; }
.reveal-grid.active .reveal-item:nth-child(8) { transition-delay: 0.75s; }
