/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --secondary-color: #0088ff;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #222222;
    --shadow: rgba(0, 255, 136, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 18px;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
    image-rendering: pixelated;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

/* Header */
.header {
    background-color: var(--bg-darker);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 2px solid var(--primary-color);
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--bg-dark);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta-mobile {
    display: none;
}

/* Hero Section */
.hero {
    padding: 80px 15px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 136, 0.3);
}

.cta-large {
    font-size: 20px;
    padding: 18px 45px;
}

/* Icons CSS */
.icon-whatsapp {
    width: 24px;
    height: 24px;
    background: var(--bg-dark);
    border-radius: 50%;
    position: relative;
}

.icon-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.icon-whatsapp::after {
    content: '';
    position: absolute;
    top: 35%;
    right: 30%;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

/* IPTV Themed Icons */

/* Section Styles */
section {
    padding: 80px 15px;
    border-bottom: 1px solid var(--border-color);
}

section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.section-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 20px;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    background: var(--bg-card);
    padding: 35px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--shadow);
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon 1: Click/Touch - Representando o clique no botão */
.icon-click::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
}

.icon-click::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--bg-dark);
    border-radius: 50%;
}

/* Icon 2: Robot/Automation - Representando automação */
.icon-robot::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    border: 4px solid var(--bg-dark);
    border-radius: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-robot::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--bg-dark);
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 0 var(--bg-dark), 0 16px 0 var(--bg-dark);
}

/* Icon 3: Play/Start - Representando início do teste */
.icon-check::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid var(--bg-dark);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
}

.step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.how-it-works {
    text-align: center;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit {
    background: var(--bg-card);
    padding: 30px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.benefit:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--secondary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon: HD Quality - Representando qualidade HD */
.icon-quality::before {
    content: 'HD';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--bg-dark);
    font-weight: 700;
}

.icon-quality::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 35px;
    border: 3px solid var(--bg-dark);
    border-radius: 3px;
}

/* Icon: Speed/Signal - Representando velocidade */
.icon-speed::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid var(--bg-dark);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.icon-speed::after {
    content: '';
    position: absolute;
    right: 15px;
    width: 3px;
    height: 10px;
    background: var(--bg-dark);
    box-shadow: 6px 0 0 var(--bg-dark), 12px 0 0 var(--bg-dark);
}

/* Icon: Channels/Grid - Representando múltiplos canais */
.icon-channels::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: 
        linear-gradient(var(--bg-dark) 3px, transparent 3px) 0 0 / 100% 14px,
        linear-gradient(90deg, var(--bg-dark) 3px, transparent 3px) 0 0 / 14px 100%;
}

/* Icon: Stable/Antenna - Representando estabilidade */
.icon-stable::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 30px;
    background: var(--bg-dark);
    bottom: 20px;
}

.icon-stable::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--bg-dark);
    top: 20px;
    box-shadow: 
        -8px 8px 0 var(--bg-dark),
        8px 8px 0 var(--bg-dark),
        -16px 16px 0 var(--bg-dark),
        16px 16px 0 var(--bg-dark);
}

.benefit h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.benefit p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 136, 255, 0.05));
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.plan {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 0;
    transition: all 0.3s;
    position: relative;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow);
}

.plan-featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px var(--shadow);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    background: var(--bg-darker);
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.plan-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon: Calendar/Month */
.icon-month::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 35px;
    border: 3px solid var(--bg-dark);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.icon-month::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--bg-dark);
    top: 35%;
}

/* Icon: Calendar/Quarter - 3 meses */
.icon-quarter::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 30px;
    border: 3px solid var(--bg-dark);
    border-radius: 2px;
    left: 15px;
    box-shadow: 12px 0 0 -3px var(--bg-dark), 12px 0 0 0 var(--bg-dark), 24px 0 0 -3px var(--bg-dark), 24px 0 0 0 var(--bg-dark);
}

/* Icon: Calendar/Year - 12 meses */
.icon-year::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border: 3px solid var(--bg-dark);
    border-radius: 3px;
}

.icon-year::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--bg-dark);
    box-shadow: 0 8px 0 var(--bg-dark), 0 16px 0 var(--bg-dark);
}

.plan-discount {
    background: var(--secondary-color);
    color: #000000;
    padding: 8px 16px;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
}

.plan-body {
    padding: 30px;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.icon-check-small {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    flex-shrink: 0;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.plan-button:hover {
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    background: var(--bg-card);
    padding: 30px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.feature:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon: TV Screen */
.icon-tv::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 32px;
    border: 3px solid var(--bg-dark);
    border-radius: 3px;
    top: 18px;
}

.icon-tv::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background: var(--bg-dark);
    bottom: 15px;
    border-radius: 0 0 3px 3px;
}

/* Icon: Globe/World */
.icon-world::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
}

.icon-world::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 40px;
    border: 3px solid var(--bg-dark);
    border-left: none;
    border-right: none;
    border-radius: 50%;
}

/* Icon: Film/Movie */
.icon-film::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    border: 3px solid var(--bg-dark);
    border-radius: 2px;
}

.icon-film::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 6px;
    background: var(--bg-dark);
    left: 15px;
    top: 12px;
    box-shadow: 
        0 -8px 0 var(--bg-dark),
        0 8px 0 var(--bg-dark),
        0 16px 0 var(--bg-dark),
        34px 0 0 var(--bg-dark),
        34px -8px 0 var(--bg-dark),
        34px 8px 0 var(--bg-dark),
        34px 16px 0 var(--bg-dark);
}

/* Icon: Sports/Ball */
.icon-sports::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
}

.icon-sports::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--bg-dark);
    transform: rotate(-45deg);
    box-shadow: 0 18px 0 var(--bg-dark);
}

/* Icon: Multiple Devices */
.icon-device::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 22px;
    border: 3px solid var(--bg-dark);
    border-radius: 2px;
    left: 12px;
    top: 15px;
}

.icon-device::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 28px;
    border: 3px solid var(--bg-dark);
    border-radius: 3px;
    right: 12px;
    bottom: 12px;
}

/* Icon: Update/Refresh */
.icon-update::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
    border-right-color: transparent;
    transform: rotate(-45deg);
}

.icon-update::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--bg-dark);
    top: 8px;
    right: 12px;
    transform: rotate(45deg);
}

.feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.feature p {
    color: var(--text-secondary);
}

/* Automation */
.automation {
    text-align: center;
}

.automation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.automation-card {
    background: var(--bg-card);
    padding: 35px 30px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.automation-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--shadow);
    transform: translateY(-5px);
}

.automation-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Icon: System/Gears */
.icon-system::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    clip-path: polygon(
        50% 0%, 60% 20%, 80% 20%, 80% 40%, 100% 50%,
        80% 60%, 80% 80%, 60% 80%, 50% 100%,
        40% 80%, 20% 80%, 20% 60%, 0% 50%,
        20% 40%, 20% 20%, 40% 20%
    );
}

.icon-system::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--bg-dark);
    border-radius: 50%;
}

/* Icon: Instant/Lightning */
.icon-instant::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid var(--bg-dark);
    border-top: 25px solid transparent;
    border-bottom: 10px solid transparent;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
}

.icon-instant::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-right: 20px solid var(--bg-dark);
    border-top: 10px solid transparent;
    border-bottom: 25px solid transparent;
    right: 50%;
    bottom: 20%;
    transform: translateX(50%);
}

/* Icon: Contact/Message */
.icon-contact::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 35px;
    border: 4px solid var(--bg-dark);
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.icon-contact::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--bg-dark);
    top: 35%;
    box-shadow: 0 8px 0 var(--bg-dark);
}

.automation-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.automation-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.review {
    background: var(--bg-card);
    padding: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.review:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--bg-dark);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.review-location {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.review-rating {
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}

.star {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Guarantee */
.guarantee {
    text-align: center;
}

.guarantee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.guarantee-card {
    background: var(--bg-card);
    padding: 35px 30px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.guarantee-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--shadow);
    transform: translateY(-5px);
}

.guarantee-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Icon: Free/Gift */
.icon-free::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 35px;
    border: 4px solid var(--bg-dark);
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.icon-free::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: var(--bg-dark);
    top: 25%;
    border-radius: 2px 2px 0 0;
}

/* Icon: Test/Checkmark Shield */
.icon-test::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 50px;
    background: var(--bg-dark);
    clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
}

.icon-test::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 10px;
    border-left: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(-45deg);
    top: 45%;
    left: 50%;
    margin-left: -8px;
}

/* Icon: Freedom/Open Hand */
.icon-freedom::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 30px;
    border: 4px solid var(--bg-dark);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    bottom: 25px;
}

.icon-freedom::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 4px;
    background: var(--bg-dark);
    bottom: 25px;
    border-radius: 2px;
}

.guarantee-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.faq-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    margin-bottom: 20px;
    padding: 25px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--shadow);
}

.faq-question {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 136, 255, 0.1));
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 15px 30px;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #000000 !important;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 10px;
}

.footer-cta:hover {
    background: var(--secondary-color);
    color: #000000 !important;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
        text-align: left;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .nav {
        display: none;
    }
    
    .nav-cta-mobile {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: #000000;
        padding: 10px 20px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s;
        white-space: nowrap;
    }
    
    .nav-cta-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    section h2 {
        font-size: 32px;
    }
    
    .automation-cards {
        grid-template-columns: 1fr;
    }
    
    .guarantee-cards {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .cta-large {
        font-size: 18px;
        padding: 15px 30px;
    }
}

/* Legal Pages */
.legal-page {
    padding: 80px 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.last-update {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
}

.legal-content {
    background: var(--bg-card);
    padding: 40px;
    border: 2px solid var(--border-color);
}

.legal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 36px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
}
