/* EnergíaSegura - Enhanced Visual Landing Page CSS */
/* Modern, vibrant design with large logos and engaging visuals */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Main Container */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    max-width: 100%;
    height: 50px;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    flex: 0 1 auto;
    min-width: 0;
}

.header-left {
    justify-content: flex-start;
}

.header-right {
    justify-content: flex-end;
}

.header-left i {
    color: #10b981;
    font-size: 14px;
}

.header-center {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

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

.logo-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.logo-text {
    text-align: left;
}

.logo-main {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: #10b981;
    line-height: 1;
}

.header-banner {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 8px 15px;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.banner-text {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: white;
    padding: 20px 15px;
    text-align: center;
    margin: 0;
    width: 100%;
    flex-shrink: 0;
}

.hero-content h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    max-width: 100%;
}

/* Progress Section */
.progress-section {
    text-align: center;
    padding: 30px 20px;
    animation: fadeInUp 0.8s ease-out;
}

.progress-title {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    line-height: 1.4;
}

.progress-bar-container {
    background: #f0f0f0;
    border-radius: 25px;
    height: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 25px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: shimmer 1.5s infinite;
}

.progress-percentage {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    padding: 35px;
    border-radius: 20px;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 1.5s infinite;
}

.success-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-text p {
    font-size: 18px;
    opacity: 0.95;
}

/* Form Section */
.form-section {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: calc(100% - 30px);
    margin: 15px 15px 30px 15px;
    flex: 1 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.form-header p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.5;
}

/* Step Indicator */
.step-indicator {
    margin-bottom: 35px;
}

.step-progress {
    background: #e2e8f0;
    border-radius: 12px;
    height: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 12px;
    width: 20%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content {
    padding: 10px 0;
}

.step-header {
    text-align: center;
    margin-bottom: 35px;
}

.step-icon {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    display: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.step-header h3 {
    font-size: 30px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

/* Energy Options Grid - Desktop optimized */
.options-grid:has(.energy-option) {
    grid-template-columns: repeat(3, 1fr);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Company Grid */
.company-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Spending Grid */
.spending-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Option Cards */
.option-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover {
    border-color: #10b981;
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

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

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35);
    transform: translateY(-5px);
}

.option-card.selected::before {
    opacity: 0;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

/* Emoji Icons */
.option-emoji {
    font-size: 56px;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.option-card:hover .option-emoji {
    transform: scale(1.2) rotate(5deg);
}

.option-card.selected .option-emoji {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

/* Option Text */
.option-text {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.option-card.selected .option-text {
    color: white;
}

/* Company Logos */
.company-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 14px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.option-card:hover .company-logo {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

.option-card.selected .company-logo {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.company-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0.4) brightness(0.95);
    transition: filter 0.3s ease;
}

.option-card:hover .company-logo img {
    filter: grayscale(0) brightness(1);
}

.option-card.selected .company-logo img {
    filter: grayscale(0) brightness(1.05);
}

/* Input Groups */
.input-group {
    margin-bottom: 22px;
}

.input-group input {
    width: 100%;
    padding: 18px 24px;
    border: 3px solid #e2e8f0;
    border-radius: 14px;
    font-size: 17px;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-weight: 500;
}

.input-group input:focus {
    outline: none;
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.input-group input.success {
    border-color: #22c55e;
    background: #f0fdf4;
}

.input-group input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

/* Error Messages */
.error-message {
    color: #ef4444;
    font-size: 15px;
    margin-top: 10px;
    padding-left: 5px;
    display: none;
    font-weight: 600;
}

.error-message.show {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* Privacy Notice */
.privacy-notice {
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.privacy-checkbox:last-child {
    margin-bottom: 0;
}

.privacy-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    min-width: 24px;
    height: 24px;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.privacy-checkbox input:checked + .checkmark {
    background: #10b981;
    border-color: #10b981;
}

.privacy-checkbox input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.privacy-text {
    flex: 1;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-text a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Form Navigation */
.form-navigation {
    margin-top: 35px;
    text-align: center;
}

.btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    letter-spacing: -0.01em;
}

.btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.btn:active {
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 35px;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.modal-header h2,
.modal-header h3 {
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 800;
}

.success-icon-large {
    font-size: 72px;
    color: #22c55e;
    margin-bottom: 20px;
    animation: bounce 1.5s infinite;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    color: #64748b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

.modal-body {
    padding: 35px;
}

.contact-info {
    margin: 25px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 14px;
    margin-bottom: 16px;
}

.contact-item i {
    font-size: 28px;
    color: #10b981;
    margin-top: 5px;
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
}

.important-notice {
    background: #fff7ed;
    border: 2px solid #fed7aa;
    border-radius: 12px;
    padding: 18px;
    margin-top: 20px;
    color: #9a3412;
    font-size: 15px;
}

.modal-footer {
    padding: 25px 35px;
    text-align: center;
    border-top: 2px solid #e2e8f0;
}

.privacy-content {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 12px;
}

.privacy-content h4 {
    color: #1e293b;
    margin: 24px 0 16px 0;
    font-size: 18px;
    font-weight: 700;
}

.privacy-content p {
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.7;
}

/* ========================================
   FLOATING CALL BUTTON (Mobile Only)
   ======================================== */

.floating-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: move;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    white-space: nowrap;
}

.floating-call-btn:active {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
    transform: scale(0.98);
}

.floating-call-btn i {
    font-size: 16px;
    animation: phoneRing 2s ease-in-out infinite;
}

.floating-call-btn span {
    font-size: 13px;
    letter-spacing: 0.3px;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

/* Show only on mobile */
@media (max-width: 768px) {
    .floating-call-btn {
        display: flex;
    }
}


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

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-container {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }
    
    .header-content {
        padding: 8px 10px;
        height: 45px;
        gap: 6px;
    }
    
    .header-left, .header-right {
        font-size: 10px;
        gap: 4px;
        flex: 0 0 auto;
    }
    
    .header-left i {
        font-size: 12px;
    }
    
    .logo-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .logo-main {
        font-size: 11px;
    }
    
    .logo-sub {
        font-size: 8px;
    }
    
    .header-banner {
        padding: 6px 10px;
        min-height: 24px;
    }
    
    .banner-text {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .hero-section {
        padding: 16px 12px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .form-section {
        padding: 28px 20px;
        max-width: 100%;
    }
    
    .form-header h2 {
        font-size: 26px;
    }
    
    .step-icon {
        font-size: 64px;
    }
    
    .step-header h3 {
        font-size: 24px;
    }
    
    .options-grid:has(.energy-option) {
        grid-template-columns: 1fr;
    }
    
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .spending-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        padding: 24px 20px;
    }
    
    .option-emoji {
        font-size: 56px;
    }
    
    .company-logo {
        height: 70px;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-container {
        margin-top: 65px;
        min-height: calc(100vh - 65px);
    }
    
    .header-content {
        padding: 6px 8px;
        height: 40px;
        gap: 4px;
    }
    
    .header-left, .header-right {
        font-size: 9px;
        gap: 3px;
    }
    
    .header-left i {
        font-size: 10px;
    }
    
    .logo-circle {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .logo-main {
        font-size: 10px;
    }
    
    .logo-sub {
        font-size: 7px;
    }
    
    .header-banner {
        padding: 5px 8px;
        min-height: 22px;
    }
    
    .banner-text {
        font-size: 9px;
        line-height: 1.1;
    }
    
    .hero-section {
        padding: 14px 10px;
    }
    
    .hero-content h1 {
        font-size: 18px;
    }
    
    .form-section {
        padding: 24px 16px;
        margin: 10px 10px 20px 10px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .step-icon {
        font-size: 56px;
    }
    
    .step-header h3 {
        font-size: 20px;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .option-card {
        padding: 20px 16px;
    }
    
    .option-emoji {
        font-size: 48px;
    }
    
    .company-logo {
        height: 60px;
    }
    
    .option-text {
        font-size: 16px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .option-card {
        border-width: 4px;
    }
    
    .input-group input {
        border-width: 3px;
    }
}

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

/* Print styles */
@media print {
    .header-section,
    .form-navigation,
    .modal {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .progress-section,
    .form-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 2px solid #e2e8f0;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
    color: #64748b;
}

.footer-brand {
    font-weight: 700;
    color: #1e293b;
}

.footer-tagline {
    color: #64748b;
    font-weight: 500;
}

.footer-separator {
    color: #cbd5e1;
    font-weight: 300;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 12px;
    color: #10b981;
}

.footer-links a:hover {
    color: #10b981;
    background: #f0fdf4;
    transform: translateY(-2px);
}

/* Footer responsive */
@media (max-width: 768px) {
    footer {
        padding: 18px 0;
        margin-top: 30px;
    }
    
    .footer-content {
        gap: 10px;
    }
    
    .footer-info,
    .footer-links {
        font-size: 12px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 4px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links a {
        padding: 8px 16px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 16px 0;
        margin-top: 25px;
    }
    
    .footer-info,
    .footer-links {
        font-size: 11px;
    }
}
