/* ==========================================================================
   ElSistema.lat - Main Stylesheet
   ========================================================================== */

/* Base Styles
   ========================================================================== */

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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #7c3aed;
    --accent: #06b6d4;
    --green: #10b981;
    --green-dark: #059669;
    --dark: #0f172a;
    --dark-medium: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #cbd5e1;
    --light: #f8fafc;
    --white: #ffffff;
}

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

/* Header & Navigation
   ========================================================================== */

header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--dark);
    transition: all 0.3s;
}

.login-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.cta-btn {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Hero Section
   ========================================================================== */

.hero-split {
    background: linear-gradient(135deg, var(--light) 0%, #e0f2fe 100%);
    padding: 4rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left h1 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.value-points {
    list-style: none;
    margin-bottom: 2rem;
}

.value-points li {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.price-inline {
    margin-bottom: 2rem;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 300px;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green);
}

.license-info {
    font-size: 0.875rem;
    color: var(--gray);
}

.cta-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary-hero {
    background: var(--green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.btn-primary-hero:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary-hero {
    background: var(--white);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--dark);
    transition: all 0.3s;
}

.btn-secondary-hero:hover {
    background: var(--dark);
    color: var(--white);
}

.hero-right {
    text-align: center;
}

.video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
}

.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-label {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
}

.trust-badges {
    margin: 15px auto;
    text-align: center;
    display: block;
    font-size: 0.975rem;
    color: var(--gray);
    font-weight: 600;
}

/* Modal
   ========================================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--dark);
}

.modal h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.country-option {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.country-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.country-flag {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Trust Section
   ========================================================================== */

.trust-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-tagline {
    color: #ec4899;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.avatars-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 4px solid var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-headline {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-headline .highlight {
    position: relative;
    display: inline-block;
}

.trust-headline .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 12px;
    background: #ec4899;
    opacity: 0.3;
    z-index: -1;
}

.trust-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-description strong {
    color: var(--dark);
    font-weight: 700;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 600;
    font-size: 1rem;
}

/* Shared Section Styles
   ========================================================================== */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-title p {
    font-size: 1.25rem;
    color: var(--gray);
}

/* Buttons
   ========================================================================== */

.btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.3);
}

.btn-view-all {
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: var(--dark-medium);
    transform: translateY(-2px);
}

/* Features Section
   ========================================================================== */

.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card ul {
    list-style: none;
    color: var(--gray);
}

.feature-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* FEL Section
   ========================================================================== */

.fel-section {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.fel-content {
    max-width: 800px;
    margin: 0 auto;
}

.fel-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.fel-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.countries {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.country-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Modules Section
   ========================================================================== */

.modules {
    background: var(--light);
    padding: 5rem 2rem;
}

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

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.module-badge {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.module-badge:hover {
    border-left-width: 6px;
    transform: translateX(5px);
}

/* Reports Section
   ========================================================================== */

.reports {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.report-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.report-card:hover {
    transform: scale(1.05);
}

/* Support Section
   ========================================================================== */

.support {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.support h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

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

.support-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
}

.support-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* FAQ Section
   ========================================================================== */

.faq-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

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

.faq-item {
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Final CTA
   ========================================================================== */

.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section
   ========================================================================== */

.contact-section {
    background: var(--light);
    padding: 5rem 2rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-wrapper h3,
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-details p {
    color: var(--gray);
    margin: 0.25rem 0;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Resources Section
   ========================================================================== */

.resources-section {
    background: var(--light);
    padding: 5rem 2rem;
}

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

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

.resource-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.resource-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe 0%, #fef3c7 100%);
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-content {
    padding: 2rem;
}

.resource-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.resource-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resource-author {
    font-size: 0.875rem;
    color: var(--gray);
}

.resource-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.resource-link:hover {
    color: var(--green-dark);
}

/* Footer
   ========================================================================== */

.footer-modern {
    background: var(--dark-medium);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 2.5rem 2rem;
}

.newsletter-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
}

.newsletter-icon {
    font-size: 3rem;
}

.newsletter-left h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.newsletter-left p {
    opacity: 0.95;
    font-size: 0.95rem;
}

.newsletter-form-clean {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form-clean input {
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.newsletter-form-clean input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form-clean input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.newsletter-form-clean button {
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form-clean button:hover {
    background: var(--dark-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-content {
    padding: 4rem 2rem 2rem;
    background: var(--dark-medium);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand-col {
    max-width: 280px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.brand-tagline {
    color: var(--gray-lighter);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.footer-links-col h4 {
    color: var(--green);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    color: var(--gray-lighter);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links-col a:hover {
    color: var(--green);
    transform: translateX(3px);
}

.footer-bottom-bar {
    background: var(--dark);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.payment-badges {
    display: flex;
    gap: 1rem;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--gray-lighter);
}

/* Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    /* Header */
    .nav-links {
        display: none;
    }
    
    .logo img {
        height: 45px;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .login-btn,
    .cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .cta-row {
        flex-direction: column;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
    }
    
    /* Trust Section */
    .trust-headline {
        font-size: 1.75rem;
    }
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Grids */
    .features-grid,
    .modules-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter */
    .newsletter-wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-left {
        flex-direction: column;
    }
    
    .newsletter-form-clean {
        width: 100%;
        flex-direction: column;
    }
    
    .newsletter-form-clean input {
        min-width: auto;
        width: 100%;
    }
    
    .newsletter-form-clean button {
        width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand-col {
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}