:root {
    --accent-color: #AEE948;
    --accent-light: #C5F568;
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-light: #dddddd;
    --text-gray: #aaaaaa;
    --text-gray2: #888888;
    --border-color: rgba(255, 255, 255, 0.1);
    --bg-gradient: linear-gradient(153deg, #0B0F05 0%, #192700 100%);
    --title-gradient: linear-gradient(to bottom, var(--text-light), var(--text-color));
    --shadow-color: rgba(174, 233, 72, 0.4);
    --glow-opacity: 0.3;
    --nav-font-size: 0.9rem;
    --title-font-size: 3.4rem;
    --paragraph-font-size: 1.1rem;
    --button-font-size: 16px;
    --button-gap: 50px;
    --header-margin: 150px;
    --main-margin: 120px;
    --paragraph-margin-bottom: 50px;
    --paragraph-max-width: 900px;
    --border-radius: 18px;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) #1a1a1a;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #1a1a1a;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-light);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at bottom right,
        rgba(174, 233, 72, 0.17) 0%,
        rgba(174, 233, 72, 0.282) 50%,
        rgba(174, 233, 72, 0.211) 100%
    );
    animation: pulseGlow 8s infinite ease-in-out;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

header {
    position: fixed;
    top: 10px;
    left: var(--header-margin);
    right: var(--header-margin);
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    margin-top: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-separator {
    height: 30px;
    width: 1px;
    background-color: var(--border-color);
    margin-right: 10px;
    margin-left: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: var(--nav-font-size);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.flag {
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.flag:hover {
    transform: scale(1.1);
}

main {
    max-width: 1200px;
    margin: calc(var(--main-margin) + 120px) auto;
    padding: 0 20px;
    text-align: center;
}

h1 {
    font-size: var(--title-font-size);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p {
    font-size: var(--paragraph-font-size);
    line-height: 1.6;
    margin-bottom: var(--paragraph-margin-bottom);
    max-width: var(--paragraph-max-width);
    color: var(--text-gray);
    margin-left: auto;
    margin-right: auto;
    font-weight: 1;
}

.emphasis {
    font-weight: 400;
    color: var(--text-light);
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: var(--button-gap);
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-primary, .cta-button, .cta-button-large {
    font: 200 var(--button-font-size) "Inter", Sans-serif;
    color: var(--text-color);
    text-decoration: none;
    padding: 18px 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50px;
    background: var(--bg-gradient);
    border: 1px solid var(--accent-color);
    overflow: hidden;
    cursor: pointer;
    gap: 8px;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-button-large {
    padding: 20px 45px;
    font-size: 1.1rem;
}

.btn-primary .outline-effect, .btn-primary .glow,
.cta-button .outline-effect, .cta-button .glow,
.cta-button-large .outline-effect, .cta-button-large .glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 54px;
    overflow: hidden;
    pointer-events: none;
}

.btn-primary .outline-effect,
.cta-button .outline-effect,
.cta-button-large .outline-effect {
    z-index: -1;
}

.btn-primary .glow,
.cta-button .glow,
.cta-button-large .glow {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: outlineGlow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn-primary:hover .glow,
.cta-button:hover .glow,
.cta-button-large:hover .glow {
    opacity: var(--glow-opacity);
    animation-duration: 2s;
}

.btn-primary .bottom-shadow,
.cta-button .bottom-shadow,
.cta-button-large .bottom-shadow {
    position: absolute;
    bottom: -6px;
    left: 25%;
    right: 25%;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(174, 233, 72, 0.3) 0%, transparent 80%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    filter: blur(4px);
    z-index: -1;
}

.btn-primary:hover .bottom-shadow,
.cta-button:hover .bottom-shadow,
.cta-button-large:hover .bottom-shadow {
    opacity: 1;
    bottom: -10px;
    height: 15px;
    left: 20%;
    right: 20%;
    filter: blur(5px);
    background: radial-gradient(ellipse at center, var(--shadow-color) 0%, transparent 70%);
}

@keyframes outlineGlow {
    0% { transform: translateX(-100%); opacity: 0; }
    15%, 35% { opacity: var(--glow-opacity); }
    100% { transform: translateX(100%); opacity: 0; }
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-portfolio {
    font: 200 var(--button-font-size) "Inter", Sans-serif;
    color: var(--text-color);
    text-decoration: none;
    padding: 12px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    background: rgba(255, 255, 255, 0.05);
}

.divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(174, 233, 72, 0.2) 10%,
        rgba(174, 233, 72, 0.6) 50%,
        rgba(174, 233, 72, 0.2) 90%,
        transparent 100%
    );
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.divider-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.new-section {
    max-width: 1400px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

.rectangular-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    padding: 60px 40px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.text-content {
    flex: 1;
    text-align: left;
}

.title-large {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-white {
    background: linear-gradient(to bottom, #ffffff, #dddddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-green {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.description-text {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    text-align: left;
    margin-left: 0;
}

.image-content {
    flex-shrink: 0;
}

.section-image {
    width: 500px;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.comparison-section {
    text-align: center;
    margin-bottom: 80px;
}

.comparison-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 60px;
}

.comparison-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.comparison-box {
    flex: 1;
    max-width: 500px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.box-left {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.box-right {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--accent-color);
}

.box-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(174, 233, 72, 0.1) 25%, 
        rgba(174, 233, 72, 0.2) 50%, 
        rgba(174, 233, 72, 0.1) 75%, 
        transparent 100%);
    transform: rotate(45deg);
    filter: blur(20px);
    z-index: 0;
    animation: glowMove 4s ease-in-out infinite;
}

@keyframes glowMove {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.box-right > * {
    position: relative;
    z-index: 1;
}

.box-right:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(174, 233, 72, 0.15);
}

.comparison-container:hover .box-left:not(:hover) {
    transform: scale(0.95);
    filter: blur(3px);
    opacity: 0.7;
}

.box-left:hover {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
}

.box-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.feature-item i {
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-x {
    color: #ff6b6b;
}

.icon-check {
    color: var(--accent-color);
}

.box-right:hover .feature-item {
    transform: translateX(5px);
}

.box-right:hover .icon-check {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(174, 233, 72, 0.4));
}

.comparison-container:hover .box-left:not(:hover) .feature-item {
    transform: translateX(-5px);
}

.comparison-container:hover .box-left:not(:hover) .icon-x {
    transform: scale(1.1);
}

.process-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.process-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 80px;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 30px 30px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.process-grid:hover .process-card:not(:hover) {
    opacity: 0.4;
}

.process-card:hover {
    transform: scale(1.00);
    box-shadow: 0 15px 35px rgba(174, 233, 72, 0.15);
    z-index: 10;
}

.icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid transparent;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: conic-gradient(
        transparent 0deg,
        var(--accent-color) 100deg,
        var(--accent-light) 180deg,
        transparent 240deg,
        transparent 360deg
    );
    z-index: -1;
    animation: loadingDots 3s linear infinite;
    opacity: 0.4;
}

@keyframes loadingDots {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-inner {
    font-size: 32px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: left;
}

.process-divider {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    margin: 0 0 20px 0;
    border-radius: 1px;
}

.process-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: -10px;
}

.divisor-personalizado-master {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divisor-personalizado-master svg {
    width: 100%;
    height: 140px;
    display: block;
}

.divisor-personalizado-master .layer {
    transition: 0.3s ease;
}

.l1 {
    fill: #0A0A0A;
    opacity: 1;
}
.l2 {
    fill: #0D0D0D;
    opacity: 0.85;
}
.l3 {
    fill: #111111;
    opacity: 0.75;
}

.plans-section-black {
    background-color: #000;
    color: #fff;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.plans-container-black {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.plans-title-black {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.plans-title-white {
    background: linear-gradient(to bottom, #ffffff, #dddddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plans-title-green {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plans-subtitle-black {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plans-grid-black {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.plan-card-black {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.plan-name-black {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.plan-price-note-black {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.plan-price-black {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.plan-installments-black {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.plan-divider-black {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.plan-features-title-black {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.plan-features-black {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-feature-black {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-feature-black i {
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-addons-black {
    margin-top: 30px;
}

.plan-addons-title-black {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.plan-addon-black {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.plan-btn-black {
    font: 200 var(--button-font-size) "Inter", Sans-serif;
    color: #000;
    text-decoration: none;
    padding: 18px 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50px;
    background: var(--bg-gradient);
    border: 1px solid var(--accent-color);
    overflow: hidden;
    cursor: pointer;
    gap: 8px;
    z-index: 1;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.plan-btn-black .outline-effect, .plan-btn-black .glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 54px;
    overflow: hidden;
    pointer-events: none;
}

.plan-btn-black .outline-effect {
    z-index: -1;
}

.plan-btn-black .glow {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: outlineGlowBlack 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.plan-btn-black:hover .glow {
    opacity: 0.3;
    animation-duration: 2s;
}

.plan-btn-black .bottom-shadow {
    position: absolute;
    bottom: -6px;
    left: 25%;
    right: 25%;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(174, 233, 72, 0.3) 0%, transparent 80%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    filter: blur(4px);
    z-index: -1;
}

.plan-btn-black:hover .bottom-shadow {
    opacity: 1;
    bottom: -10px;
    height: 15px;
    left: 20%;
    right: 20%;
    filter: blur(5px);
    background: radial-gradient(ellipse at center, rgba(174, 233, 72, 0.8) 0%, transparent 70%);
}

@keyframes outlineGlowBlack {
    0% { transform: translateX(-100%); opacity: 0; }
    15%, 35% { opacity: 0.3; }
    100% { transform: translateX(100%); opacity: 0; }
}

.plan-btn-black .btn-text {
    position: relative;
    z-index: 1;
    color: #fff;
}

.payment-flag-black {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 10px auto 20px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

.carousel-section {
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    gap: 30px;
    animation: carouselScroll 30s linear infinite;
    padding: 20px 0;
    width: max-content;
}

.carousel-item {
    flex: 0 0 auto;
    width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.835);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.carousel-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    z-index: -1;
}

.carousel-icon i {
    font-size: 28px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.carousel-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 15px;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.carousel-section::before,
.carousel-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.carousel-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.carousel-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-330px * 4));
    }
}

.carousel-container:hover {
    animation-play-state: paused;
}

.faq-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question.active {
    color: var(--accent-color);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 0px 20px 15px;
    margin-top: 10px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.company-info {
    color: var(--text-gray);
    font-size: 0.65rem;
    line-height: 1.3;
}

.company-info p {
    margin-bottom: 2px;
}

.company-info strong {
    font-weight: 600;
    color: var(--text-color);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.contact-item:hover {
    color: var(--accent-color);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.0rem;
    width: 16px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flags-container {
    display: flex;
    gap: 5px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: flex-end;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 4px 8px rgba(174, 233, 72, 0.2);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.85rem !important;
    margin: 0;
}

.footer-developed {
    color: var(--text-gray);
    font-size: 0.85rem !important;
    margin: 0;
}

footer .company-info,
footer .company-info p,
footer .company-info strong {
    font-size: 0.85rem !important;
}

footer .footer-bottom p {
    font-size: 0.85rem !important;
}

.cta-container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-mini {
    margin-top: 25px;
}

.cta-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cta-link:hover {
    color: var(--accent-light);
    gap: 8px;
}

.cta-main-section {
    margin: 100px 0;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-secondary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cta-secondary:hover {
    background: rgba(174, 233, 72, 0.1);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cta-guarantee i {
    color: var(--accent-color);
}

.mobile-contact-btn {
    display: none;
    font: 200 14px "Inter", Sans-serif;
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 50px;
    background: var(--bg-gradient);
    border: 1px solid var(--accent-color);
    cursor: pointer;
    gap: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: auto;
    margin-right: 15px;
    text-decoration: none;
}

.mobile-contact-btn:hover {
    background: rgba(174, 233, 72, 0.1);
    text-decoration: none;
}

.mobile-contact-btn i {
    font-size: 16px;
}