/* 
   MODERN SAAS / GLASSMORPHISM THEME 
   Color Palette: Deep Navy, Soft White, Electric Blue Accents
*/

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #06b6d4;
    --dark: #0f172a;
    --light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --gradient-1: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-accent: linear-gradient(90deg, #2563eb, #06b6d4);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

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

/* UTILITIES */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.text-link {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.text-link:hover { color: var(--primary); }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }

.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 400px; height: 400px;
    background: var(--primary);
    top: -100px; left: -100px;
    opacity: 0.3;
}

.shape-2 {
    width: 300px; height: 300px;
    background: var(--accent);
    bottom: 10%; right: -50px;
    opacity: 0.2;
    animation-delay: 2s;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item i { color: var(--accent); }

/* STATS */
.stats-section { padding: 60px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 5px; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* SERVICES */
.services-section { padding: 100px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.service-card:hover { transform: translateY(-10px); }
.service-card:hover::before { transform: scaleX(1); }

.icon-box {
    width: 60px; height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-list { margin-top: 20px; }
.feature-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-list i { font-size: 0.7rem; color: var(--primary); }

/* PROCESS TIMELINE */
.process-section { padding: 100px 0; background: rgba(0,0,0,0.2); }
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-icon {
    width: 60px; height: 60px;
    background: var(--dark);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    padding: 25px;
    flex-grow: 1;
}

/* ARTICLE CONTENT */
.content-section { padding: 100px 0; }
.article-container { max-width: 900px; }

.article-header { margin-bottom: 50px; text-align: center; }
.article-header h2 { font-size: 2.8rem; margin-bottom: 20px; }
.lead { font-size: 1.3rem; color: var(--text-muted); }

.article-body h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: white;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

.article-body p { margin-bottom: 20px; color: var(--text-muted); font-size: 1.05rem; }
.article-body ul { margin-bottom: 20px; padding-left: 20px; }
.article-body li { margin-bottom: 10px; color: var(--text-muted); list-style: disc; }

.callout-box, .warning-box {
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
}

.tip-box { border-left: 4px solid var(--accent); }
.warning-box { border-left: 4px solid #ef4444; background: rgba(239, 68, 68, 0.05); }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--glass-bg);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th { background: rgba(255,255,255,0.05); color: white; }
.comparison-table td { color: var(--text-muted); }

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card { padding: 30px; }
.stars { color: #fbbf24; margin-bottom: 15px; }
.client-info { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.avatar {
    width: 50px; height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white;
}
.client-info strong { display: block; color: white; }
.client-info span { font-size: 0.85rem; color: var(--text-muted); }

/* FAQ */
.faq-section { padding: 100px 0; background: rgba(0,0,0,0.2); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

.faq-item {
    padding: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); }
.faq-item[open] summary::after { content: '-'; }

.faq-item p {
    padding: 0 25px 25px;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    margin-top: 0;
    padding-top: 20px;
}

/* CONTACT */
.contact-section { padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info { padding: 40px; }
.contact-info h2 { margin-bottom: 20px; }
.info-item { display: flex; gap: 15px; margin: 25px 0; align-items: flex-start; }
.info-item i { color: var(--accent); font-size: 1.2rem; margin-top: 5px; }
.info-item strong { display: block; color: white; margin-bottom: 5px; }
.info-item a, .info-item span { color: var(--text-muted); }
.map-btn { margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; }

.contact-form { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.full-width { width: 100%; }

/* FOOTER */
.site-footer {
    background: #020617;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col p { color: var(--text-muted); margin-top: 20px; font-size: 0.95rem; }
.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col ul a:hover { color: var(--accent); }
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons a {
    width: 40px; height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
}
.social-icons a:hover { background: var(--accent); }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        border-left: 1px solid var(--glass-border);
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1001; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    
    .timeline::before { left: 20px; }
    .timeline-icon { width: 40px; height: 40px; font-size: 0.9rem; }
    .timeline-item { gap: 15px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .article-header h2 { font-size: 2rem; }
}