/* ============================
   CSS Variables
   ============================ */
:root {
    /* Colors */
    --primary: #0052FF;
    --secondary: #00D9FF;
    --accent: #B624FF;
    --success: #00FF88;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0052FF 0%, #B624FF 100%);
    --gradient-secondary: linear-gradient(135deg, #00D9FF 0%, #0052FF 100%);
    --gradient-success: linear-gradient(135deg, #00FF88 0%, #00D9FF 100%);
    --gradient-bg: linear-gradient(180deg, #000428 0%, #004e92 100%);
    
    /* Spacing */
    --container-width: 420px;
    --padding: 20px;
    
    /* Fonts */
    --font-tech: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============================
   Reset & Base
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: #000;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

/* ============================
   Background Container
   ============================ */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bgc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 82, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(182, 36, 255, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* ============================
   Main Container
   ============================ */
.main-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--padding);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ============================
   Logo Section
   ============================ */
.logo-section {
    text-align: center;
    margin: 40px 0 30px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 82, 255, 0.4);
    animation: logoGlow 3s ease-in-out infinite;
    overflow: hidden;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(0, 82, 255, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(182, 36, 255, 0.6);
        transform: scale(1.05);
    }
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.logo-icon i {
    font-size: 40px;
    color: white;
    animation: brainPulse 2s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    font-family: var(--font-tech);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
}

/* ============================
   Hero Section
   ============================ */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.main-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ============================
   Input Section
   ============================ */
.input-section {
    width: 100%;
    margin-bottom: 30px;
    animation: fadeIn 1.4s ease 0.6s both;
}

.input-container {
    position: relative;
    margin-bottom: 15px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
    z-index: 2;
}

.stock-input {
    width: 100%;
    padding: 18px 18px 18px 55px;
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.stock-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(0, 82, 255, 0.3);
}

.stock-input::placeholder {
    color: var(--text-muted);
    text-transform: none;
    font-weight: 400;
}

.analyze-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-body);
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.4);
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 82, 255, 0.6);
}

.analyze-btn:active {
    transform: translateY(0);
}

.analyze-btn i {
    font-size: 20px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnGlowSlide 3s infinite;
}

@keyframes btnGlowSlide {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ============================
   Live Activity
   ============================ */
.activity-section {
    width: 100%;
    margin-bottom: 40px;
    animation: fadeIn 1.6s ease 0.9s both;
}

.activity-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--success);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.activity-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-activity {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    min-height: 60px;
    max-height: 120px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-activity::-webkit-scrollbar {
    width: 4px;
}

.live-activity::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.live-activity::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(0, 217, 255, 0.15);
    border-radius: 8px;
    border-left: 2px solid var(--secondary);
    animation: slideInLeft 0.5s ease;
    font-size: 12px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activity-item i {
    color: var(--secondary);
    font-size: 14px;
}

.activity-content {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.4;
}

.activity-stock {
    color: var(--secondary);
    font-weight: 700;
}

/* ============================
   Features Section
   ============================ */
.features-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeIn 1.8s ease 1.2s both;
}

.feature-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateX(5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================
   About Section
   ============================ */
.about-section {
    width: 100%;
    margin-bottom: 40px;
    animation: fadeIn 2s ease 1.5s both;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.section-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.quote-box {
    background: rgba(0, 0, 0, 0.5);
    border-left: 3px solid var(--secondary);
    border-radius: 8px;
    padding: 15px 20px;
    position: relative;
}

.quote-box i {
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--secondary);
    opacity: 0.3;
    font-size: 20px;
}

.quote-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-secondary);
    padding-left: 30px;
}

/* ============================
   CTA Section
   ============================ */
.cta-section {
    width: 100%;
    margin-bottom: 40px;
    animation: fadeIn 2.2s ease 1.8s both;
    text-align: center;
}

.cta-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cta-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-icon-img {
    width: 22px;
    height: 22px;
}

.cta-btn i {
    font-size: 20px;
}

/* ============================
   Footer
   ============================ */
.footer {
    width: 100%;
    padding: 30px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 2.4s ease 2.1s both;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-link i {
    font-size: 12px;
}

.copyright {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ============================
   Modal Styles
   ============================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal .modal-content {
    margin: 0 auto;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    max-width: 380px;
    width: 100%;
    background: rgba(0, 4, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    animation: modalSlideUp 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 82, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(182, 36, 255, 0.2) 0%, transparent 50%);
    border-radius: 24px;
    z-index: -1;
}

.processing-modal .modal-background {
    background-image: url('../images/1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.result-modal .modal-background {
    background-image: url('../images/2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

/* Processing Modal */
.processing-animation {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: coreGlow 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes coreGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 82, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 50px rgba(182, 36, 255, 1);
    }
}

.ai-core i {
    font-size: 35px;
    color: white;
    animation: brainPulse 1.5s ease-in-out infinite;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary);
}

.orbit-1 {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    animation: orbit 3s linear infinite;
}

.orbit-2 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation: orbit 4s linear infinite reverse;
}

.orbit-3 {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
    animation: orbit 5s linear infinite;
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 20px 0 15px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--secondary);
}

/* Result Modal */
.success-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
}

.success-circle {
    width: 100%;
    height: 100%;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-circle i {
    font-size: 60px;
    color: white;
}

.success-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.result-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.result-item i {
    font-size: 24px;
    color: var(--secondary);
}

.result-item span {
    font-size: 11px;
    color: var(--text-muted);
}

.result-btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px auto 0;
    transition: all 0.3s ease;
}

.whatsapp-result {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ============================
   Info Modals (Privacy, Terms, Disclaimer)
   ============================ */
.info-modal-content {
    max-width: 500px;
    max-height: 80vh;
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.info-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 82, 255, 0.1);
}

.info-modal-header i {
    font-size: 24px;
    color: var(--secondary);
}

.info-modal-header h3 {
    font-size: 20px;
    margin: 0;
}

.info-modal-body {
    padding: 25px 30px;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
}

.info-modal-body::-webkit-scrollbar {
    width: 6px;
}

.info-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.info-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.info-modal-body h4 {
    font-size: 16px;
    color: var(--secondary);
    margin: 20px 0 10px;
}

.info-modal-body h4:first-child {
    margin-top: 0;
}

.info-modal-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-modal-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 480px) {
    :root {
        --container-width: 100%;
    }
    
    .main-container {
        padding: 15px;
    }
    
    .logo-section {
        width: 100%;
        text-align: center;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }
    
    .logo-text {
        font-size: 18px;
        text-align: center;
    }
    
    .hero-section {
        width: 100%;
        text-align: center;
    }
    
    .main-title {
        font-size: 28px;
        text-align: center;
        align-items: center;
    }
    
    .main-description {
        text-align: center;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-text {
        text-align: center;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .cta-title {
        text-align: center;
    }
    
    .cta-desc {
        text-align: center;
    }
    
    .footer {
        text-align: center;
    }
    
    .modal-content {
        padding: 35px 25px;
        margin: 0 auto;
    }
    
    .info-modal-content {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .info-modal-header {
        padding: 20px;
        text-align: center;
        justify-content: center;
    }
    
    .info-modal-body {
        padding: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .footer-link {
        width: auto;
        justify-content: center;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .logo-section,
    .hero-section,
    .section-title,
    .section-text,
    .cta-section,
    .footer {
        text-align: center;
    }
    
    .main-title {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .main-container {
        padding: 40px 20px;
    }
}
