:root {
    --primary: #004BF5;
    --primary-hover: #0036b5;
    --secondary: #58FFCA;
    --cyan: #05BACE;
    --bg-light: #F0F9FF;
    --white: #ffffff;
    --text-navy: #051B61;
    --text-body: #4b5563;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    
    --bg-light-primary: rgba(0, 75, 245, 0.08);
    --bg-light-secondary: rgba(88, 255, 202, 0.15);
    --bg-light-cyan: rgba(5, 186, 206, 0.1);
    
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Manrope', sans-serif;
    --shadow-soft: 0 10px 40px rgba(5, 27, 97, 0.06);
    --shadow-hover: 0 20px 50px rgba(0, 75, 245, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.text-navy { color: var(--text-navy); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-cyan { color: var(--cyan); }
.text-white { color: var(--white); }
.text-muted { color: #6b7280; }
.bg-light-blue { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary); color: var(--white); }
.bg-secondary { background-color: var(--secondary); color: var(--text-navy); }
.bg-cyan { background-color: var(--cyan); color: var(--white); }
.bg-white { background-color: var(--white); }
.bg-navy { background-color: #2d3748; }
.bg-light-primary { background-color: var(--bg-light-primary); }
.bg-light-secondary { background-color: var(--bg-light-secondary); }
.bg-light-cyan { background-color: var(--bg-light-cyan); }
.shadow-sm { box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.shadow-lg { box-shadow: var(--shadow-soft); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }

.text-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { 
    background: var(--primary-hover); 
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 75, 245, 0.2);
}
.btn-primary i.icon-slide { transition: transform 0.3s; }
.btn-primary:hover i.icon-slide { transform: translateX(5px); }

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--bg-light-primary);
    transform: translateY(-2px);
}
.btn-block { width: 100%; }

.logo-img { width: 240px; height: auto; object-fit: contain; }

/* Navbar */
.navbar {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 8px; color: var(--text-navy);}
.logo-icon { color: var(--primary); font-size: 1.8rem; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; color: var(--text-navy); position: relative; padding: 5px 0;}
.hover-underline::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--text-navy); cursor: pointer; }

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
}
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}
.bg-shape-1 {
    width: 500px; height: 500px;
    background: rgba(5, 186, 206, 0.3);
    top: -100px; right: -100px;
}
.bg-shape-2 {
    width: 400px; height: 400px;
    background: rgba(0, 75, 245, 0.2);
    bottom: -50px; left: -100px;
}
.hero-container {
    display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; z-index: 2;
}
.hero-content { flex: 1; max-width: 550px; }
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 30px;
    font-size: 0.85rem; font-weight: 600;
    background: var(--white); color: var(--text-navy);
    box-shadow: var(--shadow-soft); margin-bottom: 25px;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--secondary);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(88, 255, 202, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(88, 255, 202, 0); }
    100% { box-shadow: 0 0 0 0 rgba(88, 255, 202, 0); }
}
.hero h1 { font-size: 3.8rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-body); margin-bottom: 35px; }
.hero-actions { display: flex; gap: 15px; }
.store-btn {
    display: flex; align-items: center; gap: 12px;
    background: #000000; color: var(--white);
    padding: 12px 28px; border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.store-btn:hover { background: #222222; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.store-btn i { font-size: 1.8rem; flex-shrink: 0; }
.store-text { display: flex; flex-direction: column; }
.store-text span { font-size: 0.65rem; color: #cbd5e1; letter-spacing: 0.3px; line-height: 1.1; margin-bottom: 2px;}
.store-text strong { font-size: 1.15rem; line-height: 1; font-weight: 700; font-family: var(--font-heading); }

.hero-visual { flex: 1; position: relative; display: flex; justify-content: center;}
.mockup-container { position: relative; width: 100%; max-width: 350px; }
.app-mockup { width: 100%; height: auto; border-radius: 30px; filter: drop-shadow(0 30px 40px rgba(5,27,97,0.15)); }

.floating-widget {
    position: absolute;
    background: var(--white);
    border-radius: 12px; padding: 12px 15px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-soft);
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}
.widget-1 { top: 15%; right: -50px; animation-delay: 0s; }
.widget-2 { bottom: 15%; left: -60px; animation-delay: -3s; }
.widget-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.widget-info { display: flex; flex-direction: column; line-height: 1.2; }
.widget-info strong { color: var(--text-navy); font-size: 0.95rem; }
.widget-info span { color: var(--text-muted); font-size: 0.8rem; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Sections Base */
section { padding: 100px 0; }
.section-header { max-width: 800px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 15px; font-weight: 700; line-height: 1.2;}

/* Tabs Container */
.tabs-container { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-soft); border: 1px solid var(--gray-100); }
.tab-buttons { display: flex; gap: 15px; margin-bottom: 40px; border-bottom: 1px solid var(--gray-200); padding-bottom: 15px; overflow-x: auto; scrollbar-width: none;}
.tab-btn {
    background: none; border: none; padding: 10px 20px; font-size: 1rem; font-weight: 600;
    color: var(--text-muted); cursor: pointer; border-radius: 8px; transition: all 0.3s;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.tab-btn:hover { background: var(--bg-light-primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); color: var(--white); }

.tab-content { display: none; animation: fadeIn 0.4s ease forwards; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.tab-info h3 { font-size: 2rem; color: var(--text-navy); margin-bottom: 15px; }
.benefits-list { margin-top: 20px; }
.benefits-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; }
.benefits-list i { margin-top: 4px; }

.tab-image { display: flex; justify-content: center; }
.glass-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 30px; width: 100%; max-width: 350px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); position: relative;}
.mock-notification { border: 1px solid var(--gray-200); border-radius: 12px; padding: 15px; margin-top: 15px; }
.notif-header { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.8rem; }
.notif-actionbar { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--gray-200); font-weight: 600; color: var(--secondary); display:flex; justify-content:space-between}

.otp-boxes { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.otp-boxes span { width: 50px; height: 60px; border: 2px solid var(--gray-200); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; color: var(--text-navy); }
.chat-bubble { padding: 12px 15px; border-radius: 15px; margin-bottom: 10px; font-size: 0.95rem; max-width: 85%; }
.chat-bubble.received { background: var(--gray-100); border-bottom-left-radius: 0; }
.chat-bubble.sent { margin-left: auto; border-bottom-right-radius: 0; }
.progress-bar-wrap { margin-bottom: 15px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 5px; color: var(--text-navy); }
.progress-bg { height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; }

/* Features Hover Cards */
.app-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-box { background: var(--white); padding: 35px 25px; border-radius: 16px; border: 1px solid var(--gray-100); transition: all 0.3s; text-align: center; }
.feature-box:hover { transform: translateY(-10px); box-shadow: var(--shadow-soft); border-color: rgba(0, 75, 245, 0.2); }
.icon-circle { width: 70px; height: 70px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.feature-box:hover .icon-circle { transform: scale(1.1); }
.feature-box h4 { color: var(--text-navy); font-size: 1.3rem; margin-bottom: 12px; }

/* Testimonial Section */
.testimonials-section { overflow: hidden; background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.testimonial-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 15px; }
.testimonial-intro h2 { font-size: 2.8rem; line-height: 1.2; font-weight: 700; }
.testimonial-controls { display: flex; align-items: center; gap: 20px; }
.control-btn { background: transparent; border: none; font-size: 1.2rem; color: var(--text-navy); cursor: pointer; transition: transform 0.3s; padding: 5px; }
.control-btn:hover { transform: scale(1.2); color: var(--primary); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); cursor: pointer; transition: all 0.3s; }
.testimonial-dots .dot.active { background: var(--text-navy); transform: scale(1.2); }

.testimonial-display { position: relative; width: 100%; height: auto;}
.testimonial-slides { display: grid; position: relative; width: 100%; align-items: flex-start; min-height: 520px;}
.testimonial-slide { grid-area: 1 / 1; width: 100%; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; display:flex;}
.testimonial-slide.active { opacity: 1; pointer-events: all; z-index: 2; position: relative; }

.video-thumbnail { position: relative; width: 75%; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); z-index:1; }
.video-thumbnail img { width: 100%; height: 400px; object-fit: cover; display: block; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(0, 75, 245, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; cursor: pointer; transition: transform 0.3s, background 0.3s; box-shadow: 0 10px 20px rgba(0, 75, 245, 0.3);}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--primary); }
.play-btn i { margin-left: 5px; }

.testimonial-float-card { position: absolute; bottom: 10px; right: 0; width: 60%; background: #FDFAF0; padding: 40px; box-shadow: 0 25px 50px rgba(0,0,0,0.1); z-index: 10; border-radius: 8px; }
.testimonial-float-card h4 { font-size: 1.2rem; margin-bottom: 20px; display:flex; align-items:center; }
.testimonial-float-card .quote { font-size: 1.05rem; font-style: italic; color: #333; margin-bottom: 25px; line-height: 1.6; }
.author-info { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 15px; display: flex; flex-direction: column; }
.author-info strong { font-size: 0.9rem; color: var(--text-navy); }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* Pricing */
.pricing-cards { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.price-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--gray-200); width: 100%; max-width: 400px; transition: all 0.3s; position: relative;}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card-top { padding: 40px 30px 30px; text-align: center; }
.plan-name { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.card-top h3 { font-size: 2.2rem; margin: 10px 0; color: inherit; }
.card-body { padding: 30px; }
.stat-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.95rem; }
.plan-features-list { margin: 25px 0; }
.plan-features-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text-navy);}
.popular-tag { position: absolute; top: 15px; right: -35px; background: var(--secondary); color: var(--text-navy); font-weight: 800; font-size: 0.75rem; padding: 7px 45px; transform: rotate(45deg); z-index: 5; box-shadow: 0 2px 8px rgba(0,0,0,0.1);}

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.method-item { display: flex; align-items: center; gap: 15px; }
.method-item .icon-circle { width: 50px; height: 50px; font-size: 1.2rem; margin: 0; }
.method-item h5 { color: var(--text-navy); margin-bottom: 2px; font-size: 1.1rem;}
.contact-form-wrapper { padding: 40px; border-radius: 20px; }
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-navy); font-size: 0.9rem; }
.input-group input, .input-group select, .input-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--gray-100); font-family: var(--font-main); transition: border-color 0.3s; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { outline: none; border-color: var(--primary); background: var(--white); }

.app-downloads-small { display: flex; gap: 15px; align-items: center; }
.app-downloads-small img { width: 140px; height: 42px; object-fit: contain; }

/* Footer */
.footer { padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-links h4 { margin-bottom: 25px; font-size: 1.2rem; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #cbd5e1; transition: color 0.3s; }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; gap: 20px;}
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom p { text-align: right; flex: 1; }

@media (max-width: 768px) {
    .footer-bottom p { text-align: center; }
}

/* Animations & Modals */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Go to top */
.go-top-btn {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}
.go-top-btn.show { bottom: 100px; }
.go-top-btn:hover {
    background: var(--text-navy);
    transform: translateY(-5px);
    color: var(--white);
}

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 27, 97, 0.6); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { border-radius: 20px; width: 90%; max-width: 450px; padding: 40px; position: relative; text-align: center; transform: scale(0.9); transition: transform 0.3s; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
.modal-overlay.active .modal { transform: scale(1); }
.close-btn { position: absolute; top: 15px; right: 15px; background: transparent; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; }
.close-btn:hover { color: var(--text-navy); }

/* Toast */
.toast-notification { position: fixed; bottom: -100px; right: 30px; background: var(--white); box-shadow: var(--shadow-lg); border-radius: 12px; padding: 15px 20px; display: flex; align-items: center; gap: 15px; z-index: 999; border-left: 4px solid var(--secondary); transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.toast-notification.show { bottom: 30px; }
.toast-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.toast-content { display: flex; flex-direction: column; font-size: 0.9rem; }
.toast-content strong { color: var(--text-navy); }

/* Responsive */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero-actions { justify-content: center; }
    .floating-widget { display: none; }
    .tab-grid, .contact-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-header { justify-content: flex-start !important; }
    .video-thumbnail { width: 100%; }
    .testimonial-float-card { position: relative; bottom: 0; right: 0; width: 90%; margin: -40px auto 0; padding: 25px; }
    .testimonial-slides { min-height: auto; padding-bottom: 20px; }
    .tab-image { margin-top: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .pricing-cards { flex-direction: column; }
    .tab-buttons { flex-wrap: wrap; }
    .logo-img { width: 180px; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    color: white;
    padding: 24px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-text i {
    font-size: 2rem;
    color: #f59e0b; /* Amber/Cookie color */
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 0.95rem;
    margin: 0;
    color: #cbd5e1;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    border: none;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.btn-agree {
    background: var(--primary);
    color: white;
}

.btn-agree:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 75, 245, 0.2);
}

.btn-decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .cookie-text {
        flex-direction: column;
    }
}
