* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0f;
    color: #e8e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Trust Bar */
.trust-bar {
    background: rgba(76, 175, 80, 0.1);
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease-out;
    transform-origin: top;
    will-change: transform, width, background, border-radius, backdrop-filter;
    border: 1px solid transparent;
}

nav.scrolled {
    top: 20px;
    width: 95%;
    max-width: 1400px;
    background: rgba(10, 10, 15, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(124, 93, 250, 0.15);
    border-radius: 16px;
    box-shadow: 
        0 10px 30px -10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(124, 93, 250, 0.1);
}

nav:not(.scrolled) {
    border-bottom: 1px solid rgba(124, 93, 250, 0.1);
    background: linear-gradient(to bottom, rgba(10, 10, 15, 1) 0%, rgba(10, 10, 15, 0) 100%);
}

.nav-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled .nav-content {
    padding: 1rem 2rem;
}

/* Ajuste para compensar o nav fixed */
body {
    padding-top: 80px;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7C5DFA 0%, #5B3FD9 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(124, 93, 250, 0.4);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #b8b8c8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7C5DFA;
}

.btn {
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #7C5DFA 0%, #5B3FD9 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 93, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 93, 250, 0.5);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(124, 93, 250, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(46, 125, 50, 0.2) 100%);
    color: #4CAF50;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(76, 175, 80, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #7C5DFA 0%, #5B3FD9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subheadline {
    font-size: 1.5rem;
    color: #e8e8f0;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero p {
    font-size: 1.15rem;
    color: #b8b8c8;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(124, 93, 250, 0.1);
    color: #7C5DFA;
    border: 1px solid rgba(124, 93, 250, 0.3);
}

.btn-secondary:hover {
    background: rgba(124, 93, 250, 0.2);
    border-color: #7C5DFA;
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

.cta-note {
    font-size: 0.9rem;
    color: #b8b8c8;
    margin-top: 1rem;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.proof-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7C5DFA;
    display: block;
    margin-bottom: 0.3rem;
}

.proof-label {
    color: #b8b8c8;
    font-size: 0.9rem;
}

.hero-image {
    max-width: 1100px;
    margin: 4rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(124, 93, 250, 0.3);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 93, 250, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Problem Section */
.problem-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 59, 48, 0.03) 50%, transparent 100%);
}

.problem-section .section-header h2 {
    color: #FF3B30;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.problem-card {
    background: rgba(255, 59, 48, 0.05);
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problem-card p {
    color: #b8b8c8;
    line-height: 1.7;
}

.problem-impact {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 12px;
    text-align: center;
}

.problem-impact strong {
    font-size: 2rem;
    color: #FF3B30;
    display: block;
    margin-bottom: 0.5rem;
}

/* Solution Section */
.solution-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 93, 250, 0.05) 100%);
}

.solution-header {
    text-align: center;
    margin-bottom: 5rem;
}

.solution-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
}

.solution-header h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solution-header p {
    font-size: 1.3rem;
    color: #b8b8c8;
    max-width: 700px;
    margin: 0 auto;
}

/* Filters demo */
.filters-demo {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

.filters-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,93,250,0.12);
    padding: 1.5rem;
    border-radius: 12px;
}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(124,93,250,0.06);
}

.filter-row:last-child { border-bottom: none; }

.filter-label { font-weight: 700; color: #ffffff; }
.filter-sub { color: #b8b8c8; font-size: 0.9rem; }

.switch {
    width: 46px;
    height: 26px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(124,93,250,0.08);
}

.switch .knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.18s ease, background 0.18s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.switch.on { background: linear-gradient(135deg,#7C5DFA,#5B3FD9); }
.switch.on .knob { transform: translateX(20px); background: #fff; }

.filters-visual {
    position: relative;
    height: 180px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent 60%);
    border: 1px solid rgba(124,93,250,0.06);
    border-radius: 12px;
    padding: 1rem;
    overflow: hidden;
}

.visitors-rail {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 24px);
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.visitor {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 0.95;
    transform: translateX(0);
    transition: transform 900ms linear, opacity 300ms ease;
}

.visitor.bot { background: #FF3B30; }
.visitor.adspy { background: #FFD166; }
.visitor.proxy { background: #7C5DFA; }
.visitor.human { background: #4CAF50; }

.visitor.allowed { transform: translateX(calc(100% - 60%)); opacity: 1; }
.visitor.blocked { transform: translateY(30px) scale(0.8); opacity: 0.18; filter: blur(0.6px); }

/* Prism SVG */
.prism-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.prism-svg { width: 100%; height: 100%; overflow: visible; }

.beam { transition: width 600ms cubic-bezier(0.2,0.9,0.2,1), opacity 600ms; transform-origin: left center; }
.beam.incoming { fill: #9aa0b6; opacity: 0.18; }
.beam.allowed { fill: url(#gradAllowed); opacity: 0.95; }
.beam.blocked { fill: url(#gradBlocked); opacity: 0.85; }

.prism-polygon { fill: url(#prismGrad); stroke: rgba(255,255,255,0.06); }

/* small glow when filters change */
.prism-glow { filter: drop-shadow(0 8px 18px rgba(124,93,250,0.08)); }

.filters-stats {
    margin-top: 1rem;
    color: #b8b8c8;
    font-size: 0.95rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

/* Flow demo */
.flow-demo {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
    overflow: visible;
    min-height: 160px;
}

.flow-controls {
    margin-top: 1rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}

.control-group { color: #b8b8c8; font-size: 0.95rem; display: flex; gap: 0.6rem; align-items: center; }
.control-group input[type=range] { accent-color: #7C5DFA; }

.flow-left, .flow-right { height: 160px; position: relative; }

.flow-in { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 100%; height: 0; }

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    transform: translateY(-6px);
    opacity: 0.95;
    transition: transform 900ms linear, opacity 400ms ease;
}

.hd-box {
    width: 200px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124,93,250,0.12), rgba(91,63,217,0.09));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 12px 30px rgba(124,93,250,0.06);
    margin: 0 auto;
}

.flow-right .lane { height: 68px; margin-bottom: 10px; border-radius: 10px; background: rgba(255,255,255,0.02); border: 1px solid rgba(124,93,250,0.06); position: relative; overflow: hidden; }
.lane-label { position: absolute; left: 12px; top: 8px; color: #b8b8c8; font-weight: 700; font-size: 0.95rem; }

/* Real lane color and blocked lane color used when dots arrive */
.lane.real { background: linear-gradient(90deg, rgba(76,175,80,0.12), rgba(76,175,80,0.02)); }
.lane.fraud { background: linear-gradient(90deg, rgba(255,59,48,0.08), rgba(255,59,48,0.02)); }

/* Features Section */
.features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(124, 93, 250, 0.1);
    color: #7C5DFA;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(124, 93, 250, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #b8b8c8;
    max-width: 650px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 93, 250, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7C5DFA 0%, #5B3FD9 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: rgba(124, 93, 250, 0.05);
    border-color: rgba(124, 93, 250, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 93, 250, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(124, 93, 250, 0.2) 0%, rgba(91, 63, 217, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(124, 93, 250, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.feature-card p {
    color: #b8b8c8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-benefit {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* ROI Calculator */
.roi-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(124, 93, 250, 0.1) 0%, rgba(91, 63, 217, 0.05) 100%);
}

.roi-calculator {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 93, 250, 0.2);
    border-radius: 20px;
    padding: 4rem;
}

.roi-calculator h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.calculator-input label {
    display: block;
    margin-bottom: 0.8rem;
    color: #e8e8f0;
    font-weight: 600;
}

.calculator-input input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(124, 93, 250, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.roi-result {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(46, 125, 50, 0.1) 100%);
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.roi-result h3 {
    font-size: 1.2rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roi-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.roi-label {
    color: #b8b8c8;
    font-size: 1rem;
}

/* Comparison Section */
.comparison-section {
    padding: 8rem 0;
}

.comparison-table {
    max-width: 1000px;
    margin: 4rem auto 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 93, 250, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(124, 93, 250, 0.1);
    padding: 1.2rem 2rem;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid rgba(124, 93, 250, 0.2);
}

.comparison-header > div {
    text-align: left;
}

.comparison-header > div:nth-child(2),
.comparison-header > div:nth-child(3) {
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(124, 93, 250, 0.1);
    align-items: center;
}

.comparison-row > div:first-child {
    text-align: left;
}

.comparison-row > div:nth-child(2),
.comparison-row > div:nth-child(3) {
    text-align: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(124, 93, 250, 0.05);
}

.check-icon {
    color: #4CAF50;
    font-size: 1.2rem;
    display: inline-block;
}

.cross-icon {
    color: #FF3B30;
    font-size: 1.2rem;
    display: inline-block;
}

/* Pricing Section */
.pricing {
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(124, 93, 250, 0.03) 0%, transparent 100%);
}

.pricing-toggle {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle button {
    padding: 0.8rem 2.5rem;
    background: transparent;
    color: #b8b8c8;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.pricing-toggle button.active {
    background: linear-gradient(135deg, #7C5DFA 0%, #5B3FD9 100%);
    color: #ffffff;
}

.save-badge {
    text-align: center;
    color: #4CAF50;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(124, 93, 250, 0.15);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    transition: all 0.4s;
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(124, 93, 250, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(124, 93, 250, 0.25);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(124, 93, 250, 0.15) 0%, rgba(91, 63, 217, 0.1) 100%);
    border: 3px solid #7C5DFA;
    transform: scale(1.05);
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7C5DFA 0%, #5B3FD9 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(124, 93, 250, 0.5);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 700;
}

.pricing-subtitle {
    color: #b8b8c8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 1rem 0 0.5rem;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    justify-content: flex-start;
}

.price span {
    font-size: 1.1rem;
    color: #b8b8c8;
    font-weight: 400;
}

.annual-price {
    color: #b8b8c8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.price-note {
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #e8e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    font-size: 1rem;
    margin-top: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 2rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 93, 250, 0.03) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 93, 250, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #e8e8f0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7C5DFA 0%, #5B3FD9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #b8b8c8;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 93, 250, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(124, 93, 250, 0.4);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #b8b8c8;
    line-height: 1.8;
    display: none;
}

/* CTA Section */
.cta {
    padding: 10rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 93, 250, 0.15) 0%, rgba(91, 63, 217, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 93, 250, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
}

.cta p {
    font-size: 1.3rem;
    color: #b8b8c8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #b8b8c8;
}

.guarantee-icon {
    font-size: 2rem;
    color: #4CAF50;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(124, 93, 250, 0.1);
    background: rgba(255, 255, 255, 0.01);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b8b8c8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #7C5DFA;
}

.footer-about p {
    color: #b8b8c8;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 93, 250, 0.1);
    color: #b8b8c8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Navigation */
    .nav-content {
        padding: 1rem 1.25rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .nav-links a:not(.btn) {
        display: none;
    }

    .nav-links .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Trust Bar */
    .trust-bar {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }

    .hero .subheadline {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .cta-note {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .social-proof {
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .proof-number {
        font-size: 2rem;
    }

    .proof-label {
        font-size: 0.8rem;
    }

    .hero-image {
        margin-top: 3rem;
        border-radius: 12px;
    }

    /* Sections */
    .problem-section,
    .solution-section,
    .features,
    .roi-section,
    .comparison-section,
    .testimonials,
    .pricing,
    .faq {
        padding: 4rem 0;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-header h2,
    .solution-header h2,
    .problem-section .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section-header p,
    .solution-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Problem Section */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .problem-card {
        padding: 2rem;
    }

    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .problem-card h3 {
        font-size: 1.2rem;
    }

    .problem-impact {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .problem-impact strong {
        font-size: 1.5rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .feature-benefit {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
    }

    /* ROI Calculator */
    .roi-calculator {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .roi-calculator h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calculator-input {
        margin-bottom: 0;
    }

    .calculator-input label {
        font-size: 0.95rem;
    }

    .calculator-input input {
        padding: 0.9rem;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .roi-result {
        padding: 2rem 1.5rem;
    }

    .roi-result h3 {
        font-size: 1rem;
    }

    .roi-amount {
        font-size: 3rem;
    }

    .roi-label {
        font-size: 0.9rem;
    }

    .roi-result p {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    /* Comparison Table */
    .comparison-table {
        border-radius: 12px;
        margin-top: 2rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 0.8fr 0.8fr;
        font-size: 0.8rem;
        padding: 0.9rem;
        gap: 0.5rem;
    }

    .comparison-header {
        padding: 1.2rem 0.9rem;
    }

    .check-icon,
    .cross-icon {
        font-size: 1.2rem;
    }

    /* Pricing */
    .pricing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .pricing-toggle button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .save-badge {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2.5rem 1.8rem;
        border-radius: 16px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .featured-badge {
        top: -12px;
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
    }

    .pricing-card h3 {
        font-size: 1.6rem;
    }

    .pricing-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .price {
        font-size: 3rem;
        margin: 1.5rem 0;
    }

    .price span {
        font-size: 1.1rem;
    }

    .price-note {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .pricing-features {
        margin: 2rem 0;
    }

    .pricing-features li {
        padding: 0.8rem 0;
        font-size: 0.95rem;
        gap: 0.8rem;
    }

    .pricing-features li::before {
        font-size: 1.1rem;
    }

    .pricing-card .btn {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-rating {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    /* FAQ */
    .faq-list {
        margin-top: 2rem;
    }

    .faq-item {
        border-radius: 10px;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }

    /* CTA Section */
    .cta {
        padding: 5rem 0;
    }

    .cta h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .guarantee {
        flex-direction: column;
        margin-top: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .guarantee-icon {
        font-size: 2.5rem;
    }

    .guarantee div {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li {
        margin-bottom: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-about p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }

    /* Platform Logos */
    .platform-logos {
        gap: 2rem;
    }

    .platform-logos span {
        font-size: 1.3rem;
    }
}
