/* Reuse the clean, accessible style with neutral, policy-safe visuals */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Section Padding */
.section-padding { padding: 80px 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }

.gradient-text {
    background: linear-gradient(135deg, #3B82F6, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    gap: 8px;
}

.btn-primary { background: #3B82F6; color: white; border-color: #3B82F6; }
.btn-primary:hover { background: #2563EB; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59,130,246,0.3); }

.btn-secondary { background: transparent; color: #374151; border-color: #D1D5DB; }
.btn-secondary:hover { background: #F3F4F6; border-color: #9CA3AF; transform: translateY(-2px); }

.btn-light { background: white; color: #3B82F6; border-color: white; }
.btn-light:hover { background: #F8FAFC; transform: translateY(-2px); }

.btn-large { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB; z-index: 1000;
    transition: all 0.3s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
.nav-brand .brand-text { font-size: 28px; font-weight: 800; background: linear-gradient(135deg, #3B82F6, #10B981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.brand-link { text-decoration: none; }
.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { color: #6B7280; text-decoration: none; font-weight: 500; transition: color 0.3s ease; position: relative; }
.nav-link:hover, .nav-link.active { color: #3B82F6; }
.nav-toggle { display: none; flex-direction: column; cursor: pointer; padding: 8px; }
.nav-toggle i { font-size: 20px; color: #374151; }

/* Hero */
.hero { background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%); padding: 120px 0 80px; text-align: center; }
.hero-content { max-width: 900px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.1); color: #10B981; padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 32px; border: 1px solid rgba(16,185,129,0.2); }
.hero-title { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; margin-bottom: 24px; line-height: 1.1; }
.hero-description { font-size: 20px; color: #6B7280; margin-bottom: 40px; line-height: 1.8; }
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 60px; }

/* Sections */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.section-description { font-size: 18px; color: #6B7280; max-width: 700px; margin: 0 auto; line-height: 1.8; }

/* Grids & Cards */
.services-grid, .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.service-card, .feature-card, .pricing-card, .analysis-card { background: #fff; border: 2px solid #F1F5F9; border-radius: 16px; padding: 32px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card:hover, .feature-card:hover, .pricing-card:hover, .analysis-card:hover { transform: translateY(-6px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); border-color: #3B82F6; }
.service-icon, .feature-icon { width: 60px; height: 60px; background: rgba(59,130,246,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon.accent, .feature-icon.accent { background: rgba(16,185,129,0.1); }
.service-icon.security, .feature-icon.security { background: rgba(239,68,68,0.1); }
.service-icon i, .feature-icon i { font-size: 24px; color: #3B82F6; }
.feature-icon.accent i { color: #10B981; }
.feature-icon.security i { color: #EF4444; }
.service-title, .feature-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: #1F2937; }
.service-description, .feature-description { color: #6B7280; line-height: 1.7; margin-bottom: 16px; }
.service-features { list-style: none; }
.service-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; color: #374151; font-size: 14px; }
.service-features i { color: #10B981; font-size: 12px; flex-shrink: 0; }

/* Footer */
.footer { background: #1F2937; color: #D1D5DB; padding: 60px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-brand .brand-text { font-size: 28px; font-weight: 800; background: linear-gradient(135deg, #3B82F6, #10B981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; display: block; }
.footer-description { line-height: 1.7; margin-bottom: 24px; color: #9CA3AF; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; background: rgba(59,130,246,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #3B82F6; text-decoration: none; transition: all 0.3s ease; }
.social-link:hover { background: #3B82F6; color: white; transform: translateY(-2px); }
.footer-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #9CA3AF; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: #3B82F6; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item i { color: #3B82F6; font-size: 16px; margin-top: 4px; flex-shrink: 0; }
.contact-title { font-weight: 600; color: white; margin-bottom: 4px; }
.contact-details { color: #9CA3AF; line-height: 1.6; }
.domain-link { color: #3B82F6; text-decoration: none; }
.domain-link:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 30px; text-align: center; }
.footer-disclaimer { background: #374151; border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.footer-disclaimer p { font-size: 13px; line-height: 1.6; color: #D1D5DB; }

/* Responsive */
@media (max-width: 1024px) {
    .container { padding: 0 16px; }
    .nav-menu { gap: 20px; }
    .nav-links { gap: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 1024px) {
    .nav-toggle { display: flex; }
    .nav-menu { position: fixed; top: 70px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); flex-direction: column; padding: 20px; border-top: 1px solid #E5E7EB; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999; }
    .nav-menu.active { transform: translateX(0); }
    .nav-links { flex-direction: column; width: 100%; gap: 16px; margin-bottom: 20px; }
    .nav-cta { width: 100%; }
    .nav-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; }
    .services-grid, .features-grid { grid-template-columns: 1fr; }
}

/* Accessibility */
.btn:focus, .nav-link:focus { outline: 2px solid #3B82F6; outline-offset: 2px; }

/* Notification (reused) */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.loading { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 20px; left: 20px; right: 20px;
    max-width: 640px; margin: 0 auto; background: #111827; color: #E5E7EB;
    border-radius: 12px; padding: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 10000; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { margin-bottom: 12px; font-size: 14px; }
.cookie-actions { display: flex; gap: 8px; justify-content: flex-end; }
.cookie-actions .btn { padding: 8px 14px; font-size: 13px; }
.btn-accept { background: #10B981; color: #fff; border-color: #10B981; }
.btn-accept:hover { background: #059669; }
.btn-decline { background: #374151; color: #E5E7EB; border-color: #374151; }
.btn-decline:hover { background: #4B5563; }


