/* ============================================
   AI DEFINITIVE — Enterprise Design System
   Google Cloud Next Inspired Aesthetic
   ============================================ */

/* ─── Design Tokens ─── */
:root {
    --bg: #000000;
    --bg-elevated: #0A0A0A;
    --bg-surface: #111111;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    --blue: #0284C7;
    --green: #10B981;
    --yellow: #F59E0B;
    --red: #EF4444;
    --violet: #6366F1;
    --teal: #14B8A6;
    --cyan: #22D3EE;

    --text: #FFFFFF;
    --text-2: #E4E4E7;
    --text-3: #A1A1AA;
    --text-4: #71717A;
    --text-5: #52525B;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --gradient-brand: linear-gradient(135deg, var(--blue), var(--violet), var(--cyan));
    --gradient-subtle: linear-gradient(135deg, rgba(66,133,244,0.1), rgba(124,58,237,0.1));

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --max-w: 1280px;
    --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --t-fast: 0.15s; --t-normal: 0.3s;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-2);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ─── Utilities ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section { padding: 7rem 0; position: relative; }
.section-alt { background: var(--bg-elevated); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--blue);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(66,133,244,0.08);
    border: 1px solid rgba(66,133,244,0.2);
    border-radius: var(--r-full);
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.section-desc { font-size: 1.125rem; color: var(--text-3); max-width: 600px; margin: 0 auto; }
.logo-white { filter: brightness(0) invert(1); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.875rem 2rem; font-size: 0.95rem; font-weight: 600;
    border-radius: var(--r-full); transition: all var(--t-normal) var(--ease);
    cursor: pointer; border: none;
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--text-2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.1); }
.btn-ghost { background: transparent; color: var(--text-2); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ─── Navigation ─── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--t-normal) var(--ease);
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}
.nav-container {
    max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 36px; }
.nav-menu { display: flex; align-items: center; gap: 2.5rem; }
.nav-item a {
    font-size: 0.9rem; font-weight: 500; color: var(--text-3);
    transition: color var(--t-fast) var(--ease);
    display: flex; align-items: center; gap: 4px;
}
.nav-item a:hover { color: var(--text); }
.nav-item.has-dropdown { position: relative; }
.nav-dropdown {
    position: absolute; top: calc(100% + 0.75rem); left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(17, 17, 17, 0.95); backdrop-filter: blur(20px);
    border: 1px solid var(--border); border-radius: var(--r-md);
    padding: 0.75rem; min-width: 220px;
    opacity: 0; visibility: hidden;
    transition: all var(--t-normal) var(--ease);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.nav-item.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
    display: block; padding: 0.6rem 1rem; border-radius: var(--r-sm);
    font-size: 0.875rem; color: var(--text-3);
}
.nav-dropdown a:hover { background: rgba(66,133,244,0.1); color: var(--text); }
.nav-dropdown .dropdown-label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-5); padding: 0.5rem 1rem 0.25rem; font-weight: 600;
}
.nav-cta {
    display: inline-flex; align-items: center;
    padding: 0.6rem 1.5rem; background: var(--text); color: var(--bg);
    font-size: 0.875rem; font-weight: 600; border-radius: var(--r-full);
    transition: all var(--t-normal) var(--ease);
}
.nav-cta:hover { background: var(--text-2); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 24px; padding: 4px 0; }
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t-normal) var(--ease); }

/* ─── Hero ─── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding: 8rem 0 6rem;
}
.hero-glow {
    position: absolute; border-radius: 50%;
    filter: blur(120px); opacity: 0.15; pointer-events: none;
}
.hero-glow-1 { width: 600px; height: 600px; background: var(--blue); top: -100px; right: -100px; animation: float 10s ease-in-out infinite; }
.hero-glow-2 { width: 500px; height: 500px; background: var(--violet); bottom: -100px; left: -100px; animation: float 12s ease-in-out infinite reverse; }
.hero-glow-3 { width: 400px; height: 400px; background: var(--teal); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: pulse-glow 8s ease-in-out infinite; }
.hero-container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.hero-centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1.0;
}
.hero-badges-centered { justify-content: center; }
.hero-badges { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.partner-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); border-radius: var(--r-full);
    font-size: 0.8rem; font-weight: 500; color: var(--text-3);
    backdrop-filter: blur(10px);
}
.badge-g { font-weight: 700; font-size: 1rem; }
.g-blue { color: #4285F4; } .g-red { color: #EA4335; } .g-yellow { color: #FBBC04; } .g-green { color: #34A853; }
.hero-title { font-size: clamp(3rem, 6vw, 6rem); max-width: 1000px; margin-bottom: 2rem; line-height: 1.05; letter-spacing: -0.03em; }
.hero-desc { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-3); max-width: 700px; margin-bottom: 3.5rem; line-height: 1.7; font-weight: 400; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions-centered { justify-content: center; }

/* ─── Partnership Strip ─── */
.partners { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 0; background: rgba(255,255,255,0.01); }
.partners-grid { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.partner-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--text-3); font-weight: 500; }
.partner-divider { width: 1px; height: 2rem; background: var(--border-hover); }
.google-wordmark { display: flex; gap: 0; font-size: 1.25rem; font-weight: 600; }
.anthropic-mark { font-weight: 600; font-size: 1.1rem; color: var(--text); letter-spacing: -0.02em; }
.partner-type { color: var(--text-4); font-size: 0.85rem; }

/* ─── Products ─── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-lg); overflow: hidden;
    transition: all var(--t-normal) var(--ease); position: relative;
}
.product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-brand); opacity: 0; transition: opacity var(--t-normal) var(--ease);
}
.product-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.product-card:hover::before { opacity: 1; }
.product-visual {
    height: 200px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.finaitics-visual { background: linear-gradient(135deg, rgba(66,133,244,0.12), rgba(124,58,237,0.08)); }
.doctegra-visual { background: linear-gradient(135deg, rgba(52,168,83,0.12), rgba(20,184,166,0.08)); }
.mogul-visual { background: linear-gradient(135deg, rgba(234,67,53,0.12), rgba(251,188,4,0.08)); }
.product-logo { width: 100%; height: auto; max-height: 120px; max-width: 80%; object-fit: contain; }
.product-content { padding: 2rem; }
.product-name { font-size: 1.5rem; margin-bottom: 0.25rem; }
.product-domain { color: var(--text-4); font-weight: 400; }
.product-tagline { font-size: 0.875rem; color: var(--blue); font-weight: 500; margin-bottom: 1rem; }
.product-desc { color: var(--text-3); font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.6; }
.product-features { margin-bottom: 1.5rem; }
.product-features li { color: var(--text-3); font-size: 0.875rem; padding: 0.35rem 0 0.35rem 1.25rem; position: relative; }
.product-features li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: 600; }
.product-link { font-size: 0.875rem; font-weight: 600; color: var(--text); transition: color var(--t-fast) var(--ease); }
.product-link:hover { color: var(--blue); }

/* ─── Services ─── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 2rem;
    transition: all var(--t-normal) var(--ease);
}
.service-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-4px); }
.service-icon {
    width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; background: transparent; border-radius: var(--r-md); overflow: hidden;
}
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; font-weight: 600; }
.service-card p { font-size: 0.875rem; color: var(--text-4); line-height: 1.6; }

/* ─── Impact Stats ─── */
.impact { padding: 6rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.impact-stat h3 {
    font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 0.5rem;
    background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.impact-stat p { font-size: 0.85rem; color: var(--text-4); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── CTA ─── */
.cta-section { padding: 8rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(66,133,244,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.25rem; }
.cta-section p { font-size: 1.125rem; color: var(--text-3); max-width: 500px; margin: 0 auto 2.5rem; }

/* ─── Footer ─── */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; background: var(--bg); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 30px; }
.footer-brand p { color: var(--text-4); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; line-height: 1.6; }
.footer-col h4 {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-3); margin-bottom: 1rem; font-weight: 600;
}
.footer-col a { display: block; font-size: 0.875rem; color: var(--text-4); padding: 0.3rem 0; transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-5); flex-wrap: wrap; gap: 1rem; }

/* ─── Subpage Support ─── */
.page-header {
    background: var(--bg-elevated); padding: 12rem 0 5rem; text-align: center;
    border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: 0; right: 0; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(66,133,244,0.06) 0%, transparent 70%); pointer-events: none;
}
.page-header h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.page-header .lead { font-size: 1.15rem; color: var(--text-3); max-width: 600px; margin: 0 auto; }

/* Contact Form */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; line-height: 1.1; }
.contact-info p { font-size: 1.125rem; color: var(--text-3); margin-bottom: 2.5rem; line-height: 1.7; max-width: 90%; }
.contact-details { list-style: none; padding: 0; margin-top: 2rem; }
.contact-details li { margin-bottom: 1.5rem; color: var(--text-4); font-size: 1.05rem; display: flex; align-items: flex-start; gap: 1rem; }

.contact-form {
    background: rgba(20, 20, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--r-lg);
    padding: 3.5rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
}
.form-group { margin-bottom: 1.75rem; position: relative; }
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    padding: 1.25rem 1.5rem;
    color: var(--text);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all var(--t-normal) var(--ease);
    resize: vertical;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.05);
}
.form-group input::placeholder, 
.form-group select::placeholder, 
.form-group textarea::placeholder {
    color: var(--text-5);
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}
.btn-block { 
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.15);
}

/* Card glass for subpages */
.card-glass {
    background: var(--bg-card); backdrop-filter: blur(10px);
    border: 1px solid var(--border); padding: 2.5rem; border-radius: var(--r-md);
    transition: all var(--t-normal) var(--ease);
}
.card-glass:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-4px); }
.card-glass h3 { margin-bottom: 1rem; font-size: 1.35rem; }
.card-glass p { color: var(--text-3); font-size: 0.95rem; line-height: 1.6; }

/* About Grid on Homepage */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-lead { font-size: 1.35rem; color: var(--text); margin-bottom: 1.5rem; font-weight: 500; line-height: 1.5; }
.about-text { color: var(--text-3); margin-bottom: 3rem; font-size: 1.05rem; line-height: 1.7; }
.mission-vision-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-box { padding-top: 1.5rem; border-top: 1px solid var(--border); }
.mv-box h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.75rem; }
.mv-box p { color: var(--text-4); font-size: 0.9rem; line-height: 1.6; }
.about-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.glass-metric { background: rgba(255,255,255,0.02); backdrop-filter: blur(20px); border: 1px solid var(--border); padding: 2rem; border-radius: var(--r-lg); transition: transform var(--t-normal) var(--ease); }
.glass-metric:hover { transform: translateX(-10px); border-color: var(--border-hover); background: rgba(255,255,255,0.04); }
.glass-metric h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--cyan); }
.glass-metric p { color: var(--text-3); font-size: 0.95rem; line-height: 1.5; }

/* Grids for subpages */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.check-list { list-style: none; margin: 1.5rem 0; }
.check-list li { margin-bottom: 0.75rem; padding-left: 1.5rem; position: relative; color: var(--text-3); }
.check-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); }
.check-list strong { color: var(--text); }

/* ─── Animations ─── */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(15px); }
    50% { transform: translateY(-15px) translateX(-10px); }
    75% { transform: translateY(-25px) translateX(5px); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 0.2; transform: translate(-50%,-50%) scale(1.2); }
}
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0.05s; } .stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; } .stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; } .stagger > *:nth-child(6) { transition-delay: 0.3s; }
.stagger > *:nth-child(7) { transition-delay: 0.35s; } .stagger > *:nth-child(8) { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu.active {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: rgba(0,0,0,0.95);
        backdrop-filter: blur(20px); padding: 2rem; border-bottom: 1px solid var(--border); gap: 1rem;
    }
    .nav-menu.active .nav-cta-mobile { display: inline-flex; padding: 0.75rem 1.5rem; background: var(--text); color: var(--bg); border-radius: var(--r-full); font-weight: 600; font-size: 0.9rem; text-align: center; justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero { padding: 7rem 0 4rem; }
    .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
    .hero-desc { font-size: 1.05rem; }
    .hero-centered { align-items: flex-start; text-align: left; }
    .hero-actions-centered { justify-content: flex-start; }
    .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-badges { flex-direction: column; align-items: flex-start; }
    .section { padding: 4rem 0; }
    .grid-2 { grid-template-columns: 1fr; }
    .partners-grid { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .partner-divider { width: 100%; height: 1px; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .mission-vision-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .container { padding: 0 1.25rem; }
    .hero-container { padding: 0 1.25rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}