/* =====================================================
   Gagnid — Premium Dark + Violet/Indigo Theme
   ===================================================== */

:root {
    /* Brand Palette */
    --violet: #8b5cf6;
    --violet-dark: #7c3aed;
    --violet-light: #a78bfa;
    --indigo: #6366f1;
    --cyan: #22d3ee;
    --emerald: #34d399;
    --rose: #fb7185;
    --amber: #fbbf24;
    --white: #ffffff;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #22d3ee 100%);
    --gradient-aurora: linear-gradient(135deg, #7c3aed 0%, #6366f1 25%, #22d3ee 50%, #34d399 75%, #7c3aed 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #fb7185 50%, #a78bfa 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Backgrounds */
    --bg-body: #09090b;
    --bg-surface: #18181b;
    --bg-elevated: #27272a;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-border: rgba(255, 255, 255, 0.08);

    /* Misc */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --border-radius-full: 9999px;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 150ms cubic-bezier(.4,0,.2,1);
    --transition-base: 300ms cubic-bezier(.4,0,.2,1);
    --transition-slow: 500ms cubic-bezier(.4,0,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.15; color: var(--text-primary); }
h1 { font-size: 3.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
p { color: var(--text-secondary); line-height: 1.7; }
a { color: var(--violet-light); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--violet); }

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    padding: 0.9rem 0;
}
.navbar-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; font-size: 1.25rem; font-weight: 800; }
.logo-text { color: var(--text-primary); }
.logo-dot { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--transition-base);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-brand);
    border-radius: 1px;
    transition: width var(--transition-base);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 0.5rem 1.25rem !important; font-size: 0.8rem !important; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-primary); }

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-family); font-size: 0.875rem; font-weight: 600;
    border-radius: var(--border-radius); border: none; cursor: pointer;
    transition: all var(--transition-base); text-decoration: none;
}
.btn-primary {
    background: var(--gradient-brand); color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3), 0 1px 3px rgba(0,0,0,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45), 0 2px 6px rgba(0,0,0,0.3);
    color: white;
}
.btn-outline {
    background: transparent; color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-outline:hover {
    border-color: var(--violet);
    color: var(--violet-light);
    background: rgba(139, 92, 246, 0.06);
}
.btn-white {
    background: white; color: var(--violet-dark); font-weight: 700;
}
.btn-white:hover {
    background: #f4f4f5; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: var(--violet-dark);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; }

/* =====================================================
   Hero — Full-width aurora glow
   ===================================================== */
.hero {
    position: relative;
    padding: calc(80px + 5rem) 0 5rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-body);
}

/* Aurora blobs */
.hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 25% 40%, rgba(124, 58, 237, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 75% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 60% 80%, rgba(34, 211, 238, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 20% 90%, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
}

/* Dot grid */
.hero-grid-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius-full);
    color: var(--violet-light); font-size: 0.8rem; font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-content {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}

.hero-title {
    font-size: 3.75rem; font-weight: 800; line-height: 1.08;
    margin-bottom: 1.25rem; letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--violet-light) 0%, var(--indigo) 40%, var(--cyan) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem; color: var(--text-secondary);
    margin-bottom: 2rem; max-width: 500px; line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* — Hero Dashboard — */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-dashboard {
    width: 100%; max-width: 430px;
    background: rgba(24, 24, 27, 0.7);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5), 0 0 80px rgba(124,58,237,0.1);
    backdrop-filter: blur(20px);
}

.dash-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(39, 39, 42, 0.5);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #fbbf24; }
.dash-dots span:nth-child(3) { background: #34d399; }
.dash-title { color: var(--text-muted); font-size: 0.72rem; font-family: 'SF Mono','Fira Code',monospace; }

.dash-body { padding: 1.25rem; }
.dash-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.dash-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius); padding: 0.9rem;
}
.dash-stat-label {
    display: block; font-size: 0.65rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem;
}
.dash-stat-value { display: block; font-size: 1.2rem; font-weight: 700; color: var(--emerald); }
.dash-sparkline {
    height: 3px; border-radius: 2px; margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    animation: sparkGrow 2s ease-out both;
}
@keyframes sparkGrow { from { width: 0; } to { width: 75%; } }

.dash-chart {
    display: flex; align-items: flex-end; gap: 7px;
    height: 110px; padding: 0.75rem 0.25rem 0;
    border-bottom: 1px solid var(--border-color);
}
.dash-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--violet) 0%, rgba(124,58,237,0.2) 100%);
    border-radius: 5px 5px 0 0;
    animation: barGrow 0.8s ease-out both;
}
.dash-bar.active {
    background: linear-gradient(180deg, var(--cyan) 0%, rgba(34,211,238,0.2) 100%);
    box-shadow: 0 -6px 16px rgba(34,211,238,0.25);
}
.dash-bar:nth-child(1) { animation-delay: 0.5s; }
.dash-bar:nth-child(2) { animation-delay: 0.6s; }
.dash-bar:nth-child(3) { animation-delay: 0.7s; }
.dash-bar:nth-child(4) { animation-delay: 0.8s; }
.dash-bar:nth-child(5) { animation-delay: 0.9s; }
.dash-bar:nth-child(6) { animation-delay: 1.0s; }
.dash-bar:nth-child(7) { animation-delay: 1.1s; }
@keyframes barGrow { from { height: 0 !important; } }

/* Floating cards */
.hero-float-card {
    position: absolute; display: flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: rgba(24, 24, 27, 0.85);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    font-size: 0.78rem; font-weight: 600; color: var(--text-primary);
    z-index: 2;
}
.hero-float-card i { font-size: 0.95rem; }
.float-1 { top: 8%; right: -8px; animation: floatCard 5s ease-in-out infinite; }
.float-1 i { color: var(--violet-light); }
.float-2 { bottom: 12%; left: -16px; animation: floatCard 5s ease-in-out 2.5s infinite; }
.float-2 i { color: var(--emerald); }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================
   Section defaults
   ===================================================== */
section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-title { margin-bottom: 0.75rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); }
.section-tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.15);
    color: var(--violet-light); font-size: 0.8rem; font-weight: 600;
    border-radius: var(--border-radius-full);
    margin-bottom: 0.75rem;
}
.section-tag i { font-size: 0.85rem; }

/* =====================================================
   Stats bar
   ===================================================== */
.stats-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
}
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number {
    display: block; font-size: 2rem; font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }
.stat-divider { width: 1px; height: 36px; background: var(--border-color); }

/* =====================================================
   Features — Glass cards
   ===================================================== */
.features { background: var(--bg-body); }

.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    transition: all var(--transition-slow);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-brand); opacity: 0; transition: opacity var(--transition-base);
}
.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(139,92,246,0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 40px rgba(124,58,237,0.08);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 52px; height: 52px;
    background: var(--gradient-brand);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform var(--transition-base);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
.feature-icon i { font-size: 1.35rem; color: white; }

.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.feature-card p { font-size: 0.875rem; margin-bottom: 1rem; color: var(--text-muted); }

.feature-link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.8rem; font-weight: 600;
    color: var(--violet-light);
    opacity: 0; transform: translateX(-6px);
    transition: all var(--transition-base);
}
.feature-link i { transition: transform var(--transition-base); }
.feature-card:hover .feature-link { opacity: 1; transform: translateX(0); }
.feature-card:hover .feature-link i { transform: translateX(4px); }

/* =====================================================
   Process / How We Work
   ===================================================== */
.process-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; position: relative;
}
.process-step {
    text-align: center;
    padding: 2rem 0.75rem;
    position: relative;
}
.process-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    background: var(--gradient-brand);
    border-radius: 50%;
    font-size: 1.15rem; font-weight: 800; color: white;
    margin-bottom: 1.25rem;
    position: relative; z-index: 1;
    box-shadow: 0 6px 20px rgba(124,58,237,0.35);
}
.process-connector {
    position: absolute;
    top: calc(2rem + 26px);
    left: calc(50% + 32px);
    width: calc(100% - 64px + 1.5rem);
    height: 2px;
    background: linear-gradient(90deg, rgba(139,92,246,0.5), rgba(139,92,246,0.05));
    z-index: 0;
}
.process-step h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); max-width: 200px; margin: 0 auto; }

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section { padding: 5rem 0; }
.cta-card {
    background: var(--gradient-brand);
    border-radius: var(--border-radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    position: relative; overflow: hidden;
    box-shadow: 0 24px 60px -12px rgba(124,58,237,0.3);
}
.cta-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: rgba(255,255,255,0.15);
    border-radius: var(--border-radius-full);
    color: white; font-size: 0.8rem; font-weight: 600;
    margin-bottom: 1.5rem;
}
.cta-card h2 { color: white; margin-bottom: 0.6rem; position: relative; }
.cta-card p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; position: relative; }
.cta-buttons { position: relative; }

/* =====================================================
   Philosophy / Why Us (kept for backwards compat)
   ===================================================== */
.philosophy { background: var(--bg-surface); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.philosophy-content h2 { margin-bottom: 1rem; }
.philosophy-content p { margin-bottom: 1rem; }
.philosophy-list { list-style: none; margin-top: 1.5rem; }
.philosophy-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.4rem 0; color: var(--text-primary); font-weight: 500; }
.philosophy-list i { color: var(--violet); font-size: 1.15rem; }
.philosophy-visual { display: flex; justify-content: center; }
.visual-card { background: var(--gradient-brand); border-radius: var(--border-radius-lg); padding: 3rem; text-align: center; box-shadow: 0 20px 50px -12px rgba(124,58,237,0.3); }
.visual-number { display: block; font-size: 4rem; font-weight: 800; color: white; line-height: 1; }
.visual-label { display: block; color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-top: 0.75rem; }

.why-us { background: var(--bg-body); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.benefit-item { text-align: center; padding: 1.5rem; }
.benefit-number { font-size: 2rem; font-weight: 800; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.75rem; }
.benefit-item h4 { margin-bottom: 0.4rem; }
.benefit-item p { font-size: 0.85rem; }

/* =====================================================
   Contact Page
   ===================================================== */
.contact-hero {
    padding: calc(80px + 3rem) 0 2rem;
    background: var(--bg-body);
    position: relative;
}
.contact-hero::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 50% 80%, rgba(124,58,237,0.1) 0%, transparent 60%);
}
.contact-hero h1 { font-size: 2.5rem; position: relative; z-index: 1; }
.contact-hero .section-subtitle { position: relative; z-index: 1; }

.contact-section { padding: 3rem 0 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-details { margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.contact-item i { font-size: 1.35rem; color: var(--violet); }
.contact-item h4 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-item a, .contact-item p { color: var(--text-primary); font-weight: 500; }
.contact-social h4 { margin-bottom: 0.75rem; color: var(--text-muted); font-size: 0.8rem; }
.social-icons { display: flex; gap: 0.75rem; }
.social-icons a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-glass); border: 1px solid var(--border-color);
    border-radius: var(--border-radius); color: var(--text-secondary);
    transition: all var(--transition-base);
}
.social-icons a:hover {
    background: var(--violet); border-color: var(--violet); color: white;
    box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}

.contact-form-wrapper {
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.form-group .required { color: var(--rose); }
.form-group input, .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family); font-size: 0.95rem;
    background: rgba(9,9,11,0.6); color: var(--text-primary);
    transition: all var(--transition-fast);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
    color: white; padding: 2.5rem 0;
}
.footer-simple { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-align: center; }
.footer-simple .logo-text { color: white; }
.footer-simple p { color: var(--text-muted); font-size: 0.8rem; }

/* =====================================================
   Alerts
   ===================================================== */
.alert {
    padding: 1rem; border-radius: var(--border-radius); margin: 1rem 0;
    display: flex; justify-content: space-between; align-items: center;
}
.alert-success { background: rgba(52,211,153,0.1); color: var(--emerald); border: 1px solid rgba(52,211,153,0.2); }
.alert-error { background: rgba(251,113,133,0.1); color: var(--rose); border: 1px solid rgba(251,113,133,0.2); }
.alert-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; opacity: 0.5; color: inherit; }
.alert-close:hover { opacity: 1; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
    .hero { min-height: auto; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .hero-float-card { display: none; }
    .features-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-connector { display: none; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    .hero-title { font-size: 2.5rem; }
    .navbar-container { flex-wrap: wrap; }
    .mobile-menu-btn { display: block; }
    .nav-links { display: none; width: 100%; flex-direction: column; gap: 0; padding: 1rem 0; }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 0.75rem 0; }
    .nav-cta { display: none; }
    .features-grid, .benefits-grid, .process-grid { grid-template-columns: 1fr; }
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-divider { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-card { padding: 3rem 1.5rem; }
}
