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

:root {
    --bg-dark: #0F0F0F;
    --text-white: #FFFFFF;
    --purple-electric: #D946EF;
    --purple-dark: #9333EA;
    --gray-dark: #1A1A1A;
    --gray-medium: #2A2A2A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.fonts-loaded {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Header */
.header {
    background-color: var(--bg-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--purple-electric);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

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

.logo-play {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple-electric), var(--purple-dark));
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid var(--text-white);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--text-white), var(--purple-electric));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--purple-electric), var(--purple-dark));
    color: var(--text-white);
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid transparent;
    text-align: center;
}

.cta-button:hover {
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.6);
}

.cta-button:active {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(217, 70, 239, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
}

.badge-icon {
    color: var(--purple-electric);
    font-size: 12px;
}

.badge-text {
    color: var(--purple-electric);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--purple-electric);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    background: #C026D3;
    color: var(--text-white);
    border-radius: 3px;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(192, 38, 211, 0.4);
}

.cta-primary:hover {
    background: #A21CAF;
}

.cta-icon {
    font-size: 20px;
}

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

.trust-stars {
    color: #FFC107;
    font-size: 18px;
    letter-spacing: 2px;
}

.trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.image-decoration {
    position: absolute;
    border-radius: 3px;
    z-index: 0;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-electric), transparent);
    opacity: 0.2;
    top: -20px;
    left: -20px;
}

.decoration-2 {
    width: 100%;
    height: 100%;
    border: 2px solid var(--purple-electric);
    opacity: 0.3;
    top: 20px;
    right: -20px;
}

.hero-img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
    border: 3px solid var(--purple-electric);
    z-index: 1;
}

.hero-floating-card {
    position: absolute;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--purple-electric);
    border-radius: 3px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(217, 70, 239, 0.3);
}

.card-1 {
    top: 20%;
    left: -40px;
}

.card-2 {
    bottom: 20%;
    right: -40px;
}

.floating-icon {
    font-size: 32px;
    line-height: 1;
}

.floating-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
}

.floating-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

/* Sections */
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.8;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--gray-dark);
}

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

.step-card {
    background: linear-gradient(135deg, var(--gray-medium), var(--bg-dark));
    padding: 40px 30px;
    border-radius: 3px;
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: var(--purple-electric);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icons CSS */
.icon-click {
    width: 60px;
    height: 60px;
    border: 4px solid var(--purple-electric);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.icon-click::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--purple-electric);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-robot {
    width: 60px;
    height: 60px;
    background: var(--purple-electric);
    border-radius: 3px;
    position: relative;
}

.icon-robot::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--text-white);
    border-radius: 50%;
    top: 15px;
    left: 10px;
}

.icon-robot::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--text-white);
    border-radius: 50%;
    top: 15px;
    right: 10px;
}

.icon-check {
    width: 60px;
    height: 60px;
    border: 4px solid var(--purple-electric);
    border-radius: 50%;
    position: relative;
}

.icon-check::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 24px;
    border: solid var(--purple-electric);
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
    top: 10px;
    left: 20px;
}

.icon-quality {
    width: 60px;
    height: 60px;
    border: 4px solid var(--purple-electric);
    border-radius: 50%;
    position: relative;
}

.icon-quality::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid var(--purple-electric);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.icon-speed {
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 50px solid var(--purple-electric);
    position: relative;
}

.icon-speed::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--purple-electric);
    right: -30px;
    top: -2px;
}

.icon-device {
    width: 50px;
    height: 35px;
    border: 4px solid var(--purple-electric);
    border-radius: 3px;
    position: relative;
}

.icon-device::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--purple-electric);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-content {
    width: 60px;
    height: 50px;
    border: 4px solid var(--purple-electric);
    border-radius: 3px;
    position: relative;
}

.icon-content::before,
.icon-content::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--purple-electric);
    left: 10px;
}

.icon-content::before {
    top: 12px;
}

.icon-content::after {
    top: 22px;
}

.icon-stable {
    width: 60px;
    height: 40px;
    position: relative;
}

.icon-stable::before,
.icon-stable::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--purple-electric);
}

.icon-stable::before {
    height: 20px;
    left: 15px;
    bottom: 0;
}

.icon-stable::after {
    height: 40px;
    left: 28px;
    bottom: 0;
}

.icon-support {
    width: 50px;
    height: 50px;
    border: 4px solid var(--purple-electric);
    border-radius: 50%;
    position: relative;
}

.icon-support::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--purple-electric);
    border-radius: 50%;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-support::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 15px;
    border: 4px solid var(--purple-electric);
    border-top: none;
    border-radius: 0 0 15px 15px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-calendar,
.icon-calendar-plus,
.icon-calendar-year {
    width: 50px;
    height: 50px;
    border: 4px solid var(--purple-electric);
    border-radius: 3px;
    position: relative;
}

.icon-calendar::before,
.icon-calendar-plus::before,
.icon-calendar-year::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--purple-electric);
    top: 12px;
    left: 0;
}

.icon-auto {
    width: 60px;
    height: 40px;
    border: 4px solid var(--purple-electric);
    border-radius: 20px;
    position: relative;
}

.icon-auto::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--purple-electric);
    border-radius: 50%;
    top: 6px;
    right: 26px;
}

.icon-secure {
    width: 50px;
    height: 55px;
    position: relative;
}

.icon-secure::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 35px;
    background: var(--purple-electric);
    border-radius: 3px;
    bottom: 0;
}

.icon-secure::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 25px;
    border: 4px solid var(--purple-electric);
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icon-update {
    width: 60px;
    height: 60px;
    border: 4px solid var(--purple-electric);
    border-radius: 50%;
    border-top-color: transparent;
}

.icon-easy {
    width: 60px;
    height: 60px;
    border: 4px solid var(--purple-electric);
    border-radius: 50%;
    position: relative;
}

.icon-easy::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--purple-electric);
    border-radius: 50%;
    top: 15px;
    left: 15px;
}

.icon-easy::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--purple-electric);
    border-radius: 50%;
    top: 15px;
    right: 15px;
}

.icon-hd {
    width: 60px;
    height: 40px;
    border: 4px solid var(--purple-electric);
    border-radius: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--purple-electric);
    font-size: 18px;
}

.icon-hd::before {
    content: 'HD';
}

.icon-channels {
    width: 60px;
    height: 45px;
    position: relative;
}

.icon-channels::before,
.icon-channels::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 35px;
    border: 4px solid var(--purple-electric);
    border-radius: 3px;
}

.icon-channels::before {
    left: 0;
    top: 0;
}

.icon-channels::after {
    right: 0;
    bottom: 0;
}

.icon-vod {
    width: 0;
    height: 0;
    border-left: 40px solid var(--purple-electric);
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
}

.icon-multi {
    width: 70px;
    height: 50px;
    position: relative;
}

.icon-multi::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 25px;
    border: 3px solid var(--purple-electric);
    border-radius: 3px;
    top: 0;
    left: 0;
}

.icon-multi::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 35px;
    border: 3px solid var(--purple-electric);
    border-radius: 3px;
    bottom: 0;
    right: 0;
}

.icon-shield {
    width: 60px;
    height: 70px;
    position: relative;
}

.icon-shield::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--purple-electric);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--purple-electric);
}

.step-description {
    font-size: 16px;
    opacity: 0.9;
}

.video-container {
    max-width: 900px;
    margin: 60px auto 50px;
}

.video-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-white);
}

.video-wrapper {
    border-radius: 3px;
    overflow: hidden;
    border: 3px solid var(--purple-electric);
    box-shadow: 0 8px 32px rgba(217, 70, 239, 0.2);
}

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

/* Benefits */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--gray-medium), var(--bg-dark));
    padding: 35px 25px;
    border-radius: 3px;
    border: 2px solid transparent;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--purple-electric);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
}

.benefit-description {
    font-size: 15px;
    opacity: 0.85;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-dark), var(--bg-dark));
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

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

/* Plans */
.plans {
    padding: 80px 0;
    background-color: var(--gray-dark);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.plan-card {
    background: linear-gradient(135deg, var(--gray-medium), var(--bg-dark));
    border-radius: 3px;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.plan-card:hover {
    border-color: var(--purple-electric);
}

.plan-featured {
    border-color: var(--purple-electric);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #C026D3;
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.plan-header {
    padding: 35px 30px 25px;
    text-align: center;
    background: linear-gradient(135deg, var(--purple-electric) 0%, transparent 100%);
}

.plan-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-body {
    padding: 30px;
}

.plan-description {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
}

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

.plan-features li::before {
    content: '✓';
    color: var(--purple-electric);
    font-weight: 700;
    margin-right: 10px;
}

.plan-footer {
    padding: 0 30px 30px;
}

.plan-button {
    width: 100%;
}

/* Differentials */
.differentials {
    padding: 80px 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

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

.differential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differential-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--purple-electric);
}

.differential-text {
    font-size: 15px;
    opacity: 0.85;
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--gray-dark);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--gray-medium), var(--bg-dark));
    border-radius: 3px;
    margin-bottom: 25px;
    border: 2px solid transparent;
}

.feature-item:hover {
    border-color: var(--purple-electric);
}

.feature-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.feature-description {
    font-size: 15px;
    opacity: 0.85;
}

/* Guarantee */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--purple-dark));
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.guarantee-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background-color: var(--gray-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: linear-gradient(135deg, var(--gray-medium), var(--bg-dark));
    padding: 30px;
    border-radius: 3px;
    border: 2px solid transparent;
}

.review-card:hover {
    border-color: var(--purple-electric);
}

.review-stars {
    color: var(--purple-electric);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-style: italic;
    line-height: 1.6;
}

.review-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-electric);
}

/* FAQ */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    background: linear-gradient(135deg, var(--gray-medium), var(--bg-dark));
    border-radius: 3px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--purple-electric);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    color: var(--purple-electric);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--purple-electric);
    flex-shrink: 0;
    margin-left: 20px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.faq-answer a {
    color: inherit;
    text-decoration: none;
}

.faq-answer a:hover {
    opacity: 0.8;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple-electric), var(--purple-dark));
    text-align: center;
}

.cta-final-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-final-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-final-button {
    font-size: 22px;
    padding: 20px 50px;
    background: var(--text-white);
    color: #7C3AED;
    font-weight: 800;
}

.cta-final-button:hover {
    background: #F3F4F6;
    color: #6D28D9;
}

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

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

.footer-logo .logo {
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    opacity: 0.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--purple-electric);
}

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

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

.footer-list a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}

.footer-list a:hover {
    color: var(--purple-electric);
    opacity: 1;
}

.footer-whatsapp {
    display: inline-block;
    padding: 12px 25px;
    background: #C026D3;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
}

.footer-whatsapp:hover {
    background: #A21CAF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-cta-group {
        align-items: center;
    }

    .cta-primary {
        width: 100%;
        max-width: 400px;
    }

    .hero-floating-card {
        display: none;
    }

    .decoration-1,
    .decoration-2 {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

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

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item:hover {
        border-color: var(--purple-electric);
    }

    .cta-final-title {
        font-size: 36px;
    }

    .cta-final-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-feature-item {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .steps-grid,
    .benefits-grid,
    .plans-grid,
    .differentials-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .plan-featured {
        border-color: var(--purple-electric);
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 18px;
    }

    .guarantee-title {
        font-size: 28px;
    }

    .guarantee-description {
        font-size: 16px;
    }

    .cta-final-title {
        font-size: 28px;
    }

    .cta-final-text {
        font-size: 16px;
    }

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

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .cta-primary {
        padding: 16px 32px;
        font-size: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}
