/* Sem Nexus - Optimized CSS (substituindo o arquivo original) */

/* CSS Variables for consistency and maintainability */
:root {
    --primary-gold: #ffd700;
    --primary-orange: #ff8c00;
    --accent-green: #22c55e;
    --accent-blue: #3b82f6;
    --bg-dark: #0f0f0f;
    --bg-darker: #1a1a1a;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --text-light: rgba(255, 255, 255, 0.6);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-lighter: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    --gradient-dark: linear-gradient(135deg, #2d2d2d, var(--bg-darker));
    --container-width: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    --shadow-glow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

html { scroll-behavior: smooth; }

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.9;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Common Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.fade-in-left { animation: fadeInUp 0.8s ease-out forwards; }
.fade-in-right { animation: fadeInUp 0.8s ease-out forwards; }

/* Glass Morphism Effects - Applied directly to components */

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-darker);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 10%;
    left: 40%;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/rocket169.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 9, 9, 0.9), rgba(21, 21, 21, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0 80px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-buttons .btn-primary {
    font-size: 1.1rem;
    padding: 16px 32px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
    transform: rotate(90deg);
}

/* Section Base Styles */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Specific Section Spacing */
.hero {
    padding-bottom: 0;
    margin-bottom: 0;
}


.infographic-steps {
    padding: 100px 0;
    margin: 0;
}

.offer {
    padding: 100px 0;
    margin: 0;
}

.cta {
    padding: 100px 0;
    margin: 0;
}

.faq {
    padding: 100px 0;
    margin: 0;
}

.footer {
    padding: 80px 0 40px 0;
    margin: 0;
}

.section-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.section .container {
    position: relative;
    z-index: 2;
}

/* Problems Section */
.problems {
    background: 
        linear-gradient(135deg, rgba(26, 7, 37, 0.7), rgba(45, 45, 45, 0.6)),
        url("./assets/images/background07 (1).webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.problems-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}


.problem-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.problem-item,
.step-item,
.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
    padding: 2rem 1.5rem;
    border-radius: 20px;
}

.problem-item:hover,
.step-item:hover,
.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.problem-item::before,
.step-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 69, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: inherit;
}

.problem-item:hover::before,
.step-item:hover::before {
    opacity: 1;
}

.problem-image,
.step-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.problem-item:hover .problem-image,
.step-item:hover .step-image {
    transform: scale(1.1);
}

.problem-content h3,
.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.problem-content p,
.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Connecting lines */
.problem-item:not(:last-child)::after,
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.8), rgba(255, 69, 0, 0.8));
    transform: translateY(-50%);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Solution Section */
.solution {
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.7)),
        url("./assets/images/background06.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}


.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.feature-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--border-lighter);
}

.feature-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--bg-darker);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.feature-card:hover .feature-number {
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.highlight-card .feature-content h3 {
    color: var(--primary-gold);
    font-weight: 700;
}

.feature-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Steps Section */
.infographic-steps {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
}

.infographic-steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 0;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-item::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

.step-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.step-image {
    width: 150px;
    height: 150px;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--text-white);
}

.step-item:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.8), rgba(147, 51, 234, 0.8));
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Offer Section */
.offer {
    background: var(--bg-darker);
    padding: 100px 0;
}

.offer-carousel-container {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.offer-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offer-carousel::-webkit-scrollbar {
    display: none;
}

.offer-card {
    flex: 0 0 350px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.offer-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.offer-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    margin: 0 auto 1rem;
}

.offer-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0;
    line-height: 1.3;
}

.offer-card-content {
    padding: 1.5rem 2rem;
}

.offer-card-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-card-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.offer-card-content li::before {
    content: '✓';
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.8rem;
}

.offer-card-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.offer-value {
    font-weight: 600;
    color: var(--accent-green);
    font-size: 1.1rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-lighter);
}

.carousel-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--primary-gold);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Pricing Section */
.offer-summary {
    max-width: 900px;
    margin: 4rem auto 0;
}

.pricing-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.pricing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange), var(--primary-gold));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 0 3rem;
    text-align: center;
}

.value-breakdown {
    margin-bottom: 3rem;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(255, 215, 0, 0.05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 12px;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.item-description {
    font-size: 0.95rem;
    color: var(--text-light);
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1rem;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.total-label {
    color: var(--text-white);
}

.original-total {
    color: var(--primary-gold);
}

.discount-reveal {
    text-align: center;
    padding: 2rem 0;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.discount-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-white);
    letter-spacing: 1px;
}

.discount-percent {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.crossed-price {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
}

.crossed-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #ff4757;
    transform: rotate(-15deg);
}

.final-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.savings-highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--border-radius);
    padding: 1.2rem 2rem;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.savings-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-green);
}

.savings-amount {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-green);
}

.guarantees {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantees h3 {
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.guarantee-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: var(--gradient-dark);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.cta-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--border-lighter);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
    justify-content: center;
}

/* Phone Input Simplified */
.phone-input-container {
    display: flex;
    gap: 0;
}

.country-select {
    flex: 0 0 120px;
    background: var(--glass-bg);
    border: 1px solid var(--border-lighter);
    border-right: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    color: var(--text-white);
    padding: 12px 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.country-select:hover {
    background: rgba(255, 255, 255, 0.15);
}

.country-select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.country-select option {
    background: var(--bg-darker);
    color: var(--text-white);
}

.phone-input-container input[type="tel"] {
    flex: 1;
    border-left: none;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* FAQ Section */
.faq {
    background: var(--bg-darker);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #000000;
    border-top: 1px solid var(--border-light);
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-left p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    opacity: 0.6;
    margin: 0;
}

.company-info {
    font-size: 0.9rem;
    margin-top: 0.5rem !important;
    opacity: 0.7 !important;
    color: var(--text-muted);
}

/* Utility Classes */
.lazy {
    opacity: 0.3;
    transition: opacity 0.3s;
}

.loading {
    opacity: 0.5;
    pointer-events: none;
}

.success {
    color: var(--accent-green);
}

.error {
    color: #ef4444;
}

/* Responsive Design - Consolidated */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Reduce section spacing on mobile */
    .section,
    .problems,
    .solution,
    .offer,
    .cta,
    .faq {
        padding: 60px 0;
    }
    
    /* Optimize backgrounds on mobile */
    .problems,
    .solution {
        background-attachment: scroll;
        min-height: auto;
    }
    
    .infographic-steps {
        padding: 80px 0;
    }
    
    .footer {
        padding: 60px 0 30px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .problems-container,
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .problem-item:not(:last-child)::after,
    .step-item:not(:last-child)::after {
        display: none;
    }
    
    .offer-card {
        flex: 0 0 280px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pricing-container {
        padding: 2rem 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .value-item {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .problem-image,
    .step-image {
        width: 90px;
        height: 90px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dynamic Styles for Mobile Menu and Header Scroll */
.nav-links.active {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

body.menu-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .nav-links.active {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        background: none !important;
        padding: 0 !important;
        backdrop-filter: none !important;
        border: none !important;
    }
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}