@charset "UTF-8";

:root {
    --teal-900: #0A4A54;
    --teal-800: #0C5C68;
    --teal-700: #0E6E7C;
    --teal-600: #108090;
    --teal-500: #1292A4;
    --teal-400: #20B2C8;
    --teal-300: #4ECEE0;
    --teal-200: #8CE4F0;
    --teal-100: #D0F4FA;
    --teal-50: #EDFBFD;
    --orange-600: #EA580C;
    --orange-500: #F97316;
    --orange-400: #FB923C;
    --navy-900: #0F172A;
    --navy-800: #1E293B;
    --navy-700: #334155;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #ffffff;
    --gray-300: #edf0f4;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --success: #10B981;
    /* Bootstrap theme mapping */
    --bs-primary: #F97316;
    --bs-primary-rgb: 249, 115, 22;
    /* optional */
    --bs-secondary: #0E6E7C;
    --bs-success: #10B981;
    --bs-dark: #0F172A;
    --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
    --aim-nav-h: 74px;
}



body {
    padding-top: var(--aim-nav-h);
}

.bg-teal-900 {
    background-color: var(--teal-900) !important;
}

.text-teal-300 {
    color: var(--teal-300) !important;
}

.btn-primary {
    --bs-btn-bg: var(--orange-500);
    --bs-btn-border-color: var(--orange-500);
    --bs-btn-hover-bg: var(--orange-600);
    --bs-btn-hover-border-color: var(--orange-600);
}

.btn-outline-orange {
    --bs-btn-color: var(--orange-500);
    --bs-btn-border-color: var(--orange-500);
    --bs-btn-hover-bg: var(--orange-500);
    --bs-btn-hover-border-color: var(--orange-500);
    --bs-btn-hover-color: #fff;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gray-900);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: var(--teal-800);
    color: var(--white);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--teal-400);
    border-color: var(--gray-400);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange-500);
    border: 2px solid var(--orange-500);
}

.btn-outline-orange:hover {
    background: var(--orange-500);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    padding: 10px 16px;
}

.btn-ghost:hover {
    color: var(--gray-900);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

/* Hero Section - Left Content, Right Visual */
.hero {
    padding-top: 74px;
    padding-bottom: 74px;
    background: var(--teal-900);
    color: var(--white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    min-height: 420px;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--teal-200);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--teal-300);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 16px;
    line-height: 1.7;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--success);
    margin-bottom: 32px;
}

.hero-stats svg {
    width: 18px;
    height: 18px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    background: rgba(77, 25, 25, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta-note {
    font-size: 13px;
    color: var(--gray-400);
}

.hero-visual {
    position: relative;
    height: 500px;
}


/* Section Styles */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--white);
}

.section-dark-teal {
    background: var(--teal-900);
    color: var(--white);
}

.section-dark-teal .section-label {
    color: var(--teal-300);
}

.section-dark-teal .section-subtitle {
    color: var(--gray-300);
}

.section-dark-teal .industry-card,
.section-dark-teal .pillar-card,
.section-dark-teal .layer-card,
.section-dark-teal .industry-showcase-card,
.section-dark-teal .diff-card,
.section-dark-teal .faq-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark-teal .industry-card h4,
.section-dark-teal .pillar-card h3,
.section-dark-teal .layer-card h3,
.section-dark-teal .industry-showcase-card h4,
.section-dark-teal .diff-card h4,
.section-dark-teal .faq-card h4 {
    color: var(--white);
}

.section-dark-teal .industry-card p,
.section-dark-teal .pillar-card p,
.section-dark-teal .layer-card p,
.section-dark-teal .industry-showcase-card p,
.section-dark-teal .diff-card p,
.section-dark-teal .faq-card p {
    color: var(--gray-300);
}

.section-dark-teal .industry-card:hover,
.section-dark-teal .pillar-card:hover,
.section-dark-teal .layer-card:hover,
.section-dark-teal .industry-showcase-card:hover,
.section-dark-teal .diff-card:hover,
.section-dark-teal .faq-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--teal-400);
}

.section-dark-teal .pillar-icon,
.section-dark-teal .industry-showcase-icon,
.section-dark-teal .diff-icon {
    background: rgba(32, 178, 200, 0.2);
}

.section-dark-teal .pillar-stat {
    background: rgba(32, 178, 200, 0.2);
    color: var(--teal-300);
}

.section-dark-teal .layer-number {
    background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
}

.section-dark-teal .faq-card {
    border-left-color: var(--teal-400);
}

.section-dark-teal .faq-card h4::before {
    background: rgba(32, 178, 200, 0.3);
    color: var(--teal-300);
}

.section-dark-teal .security-badge {
    background: rgba(32, 178, 200, 0.2);
    color: var(--teal-300);
}

.section-dark-teal .agent-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark-teal .agent-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--teal-400);
}

.section-dark-teal .agent-info h3 {
    color: var(--white);
}

.section-dark-teal .agent-info p {
    color: var(--gray-400);
}

.section-dark-teal .agent-quote {
    color: var(--gray-300);
    border-left-color: var(--teal-400);
}

.section-dark-teal .agent-capabilities h4,
.section-dark-teal .agent-results h4 {
    color: var(--gray-400);
}

.section-dark-teal .capability-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

.section-dark-teal .agent-results {
    background: rgba(32, 178, 200, 0.15);
}

.section-dark-teal .result-value {
    color: var(--teal-300);
}

.section-dark-teal .result-label {
    color: var(--gray-400);
}

.section-dark-teal .case-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark-teal .case-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--teal-400);
}

.section-dark-teal .case-label {
    color: var(--teal-300);
}

.section-dark-teal .case-card h4 {
    color: var(--white);
}

.section-dark-teal .case-card p {
    color: var(--gray-300);
}

.section-white .case-card {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.section-white .case-card:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--teal-400);
}

.section-white .case-label {
    color: var(--teal-900);
}

.section-white .case-card h4 {
    color: var(--teal-900);
}

.section-white .case-card p {
    color: var(--gray-900);
}

.section-dark {
    background: var(--navy-900);
    color: var(--white);
}

.section-teal {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
    color: var(--white);
}


.counter {
    font-variant-numeric: tabular-nums;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal-500);
    margin-bottom: 16px;
}

.section-dark .section-label {
    color: var(--teal-300);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: var(--gray-400);
}

/* Social Proof Section */
.proof-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.proof-intro p {
    font-size: 20px;
    color: var(--gray-700);
    line-height: 1.7;
}

.proof-intro .highlight {
    color: var(--teal-700);
    font-weight: 600;
}

.section-dark-teal .proof-intro p {
    color: var(--gray-200);
}

.section-dark-teal .proof-intro .highlight {
    color: var(--teal-300);
}


@keyframes floatCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.industry-card:hover {
    border-color: var(--teal-300);
    box-shadow: 0 12px 40px rgba(18, 146, 164, 0.12);
    transform: translateY(-4px);
    animation-play-state: paused;
}

.industry-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-card p {
    font-size: 14px;
    color: var(--gray-500);
}

.trust-banner {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-500) 100%);
    color: var(--white);
    padding: 32px 40px;
    border-radius: 16px;
    text-align: center;
    animation: floatCard 6s ease-in-out infinite;
}

.trust-banner p {
    font-size: 17px;
    line-height: 1.7;
}

/* Future Section - Dashboard Style */
.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.future-visual {
    position: relative;
    height: 520px;
}

/* Industries Showcase */
.industries-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-showcase-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.industry-showcase-card:nth-child(2) {
    animation-delay: 0.5s;
}

.industry-showcase-card:nth-child(3) {
    animation-delay: 1s;
}

.industry-showcase-card:nth-child(4) {
    animation-delay: 1.5s;
}

.industry-showcase-card:nth-child(5) {
    animation-delay: 2s;
}

.industry-showcase-card:nth-child(6) {
    animation-delay: 2.5s;
}

.industry-showcase-card:nth-child(7) {
    animation-delay: 3s;
}

.industry-showcase-card:hover {
    border-color: var(--orange-400);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.1);
    transform: translateY(-6px);
    animation-play-state: paused;
}

.industry-showcase-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.industry-showcase-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-showcase-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

.layers-grid,
.industries-showcase {
    grid-template-columns: repeat(2, 1fr);
}



/* Final CTA */
.final-cta {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-900) 100%);
    color: var(--white);
}

.final-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.final-cta p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-400);
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
    }
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
footer {
    background: var(--navy-900);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand p {
    color: var(#CBD5E1);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--teal-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-legal {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-legal a {
    color: #94a3b8 !important;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1;
}

.footer-legal a:hover {
    color: #2dd4bf !important;
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 8px;
    line-height: 1;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(#CBD5E1);
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.footer-social a:hover {
    background: var(--teal-600);
    color: var(--white);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
}

.mobile-only {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }




    .footer-column ul {
        padding-left: 0 !important;
        list-style: none;
    }

    .mobile-only {
        display: block;
        font-size: 12px;
    }


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .hero-content {
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }
}





@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .mobile-only {
        display: block;
        font-size: 12px;
    }
    .footer-social{
        margin-bottom: 20px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-left {
        align-items: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   PRO MENU OVERRIDES (Bootstrap Navbar) - AIMatric
   Targets your existing base.html (#navbar, #mainNav, .nav-link)
   Place at END so it overrides earlier nav rules.
   ========================================================= */


/* Navbar container */
#navbar {
    height: var(--aim-nav-h);
    min-height: var(--aim-nav-h);
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.10);
    transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom-color: rgba(0, 0, 0, .06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Brand */
#navbar .navbar-brand img {
    transition: transform .25s ease, filter .25s ease;
}

#navbar .navbar-brand:hover img {
    transform: translateY(-1px);
}

/* Nav list */
#mainNav .navbar-nav {
    position: relative;
}

/* Links */
#mainNav .nav-link {
    position: relative;
    font-weight: 800;
    font-size: 12px;
    color: var(--gray-700, #334155);
    padding: 10px 12px;
    border-radius: 12px;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
    white-space: nowrap;
    /* keeps content in single line */
}

/* Hover: subtle pill + micro-lift */
#mainNav .nav-link:hover {
    color: var(--gray-900, #0f172a);
    background: rgba(15, 23, 42, 0.04);
    transform: translateY(-1px);
}

/* Active: stronger pill */
#mainNav .nav-link.active,
#mainNav .nav-link[aria-current="page"] {
    color: var(--gray-900, #0f172a);
    background: rgba(var(--bs-primary-rgb, 59, 130, 246), 0.10);
}

/* Active underline (simple CSS) */
#mainNav .nav-link.active::after,
#mainNav .nav-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb, 59, 130, 246), 0.65);
}

/* CTA button polish (Book a Demo) */
#navbar .btn.btn-primary {
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 12px 24px rgba(var(--bs-primary-rgb, 59, 130, 246), 0.18);
    transition: transform .18s ease, box-shadow .18s ease;
    white-space: nowrap;
}

#navbar .btn.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(var(--bs-primary-rgb, 59, 130, 246), 0.22);
}

/* Toggler */
#navbar .navbar-toggler {
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 12px;
    padding: 8px 10px;
}

#navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb, 59, 130, 246), .20);
}

/* Mobile collapse panel: looks like a dropdown card */
@media (max-width: 991.98px) {
    #navbar .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(15, 23, 42, .08);
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
        transform-origin: top;
        animation: aimNavDrop .18s ease-out;
    }

    @keyframes aimNavDrop {
        from {
            opacity: 0;
            transform: translateY(-6px) scale(.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    #navbar,
    #navbar * {
        transition: none !important;
        animation: none !important;
    }
}

.agent-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.industry-showcase-link {
    text-decoration: none;
}

/* ==========================================================================
   PERFORMANCE FIXES - Append to existing styles.css
   ========================================================================== */

/* Fix CLS from navbar */
#navbar,
nav.aim-nav.navbar {
    contain: layout style;
    will-change: box-shadow;
}

/* Fix CLS from images - add aspect ratios */
.agent-avatar-img,
.agent-card img {
    aspect-ratio: 1 / 1;
}

/* Fix hero layout shift */
.hero {
    min-height: 520px;
    contain: layout paint;
}

.hero-visual {
    min-height: 400px;
}

/* Reduce animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}


.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.recaptcha-disclaimer {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
}

.recaptcha-disclaimer a {
    color: inherit;
    text-decoration: underline;
}

/* =========================================================
       BOOK A DEMO MODAL - Professional Enterprise Design
       ========================================================= */

.demo-modal .modal-dialog {
    max-width: 580px;
    margin: 1.75rem auto;
}

.demo-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.25);
    overflow: hidden;
}

.demo-modal .modal-header {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--navy-900) 100%);
    border: none;
    padding: 28px 32px 24px;
    position: relative;
}

.demo-modal .modal-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.demo-modal .modal-header .modal-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.demo-modal .modal-header .modal-subtitle {
    color: var(--teal-200);
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.demo-modal .modal-header .btn-close {
    filter: invert(1);
    opacity: 0.7;
    position: relative;
    z-index: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.demo-modal .modal-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.demo-modal .modal-body {
    padding: 32px;
    background: var(--white);
}

/* Form Styling */
.demo-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.demo-form .form-label .required {
    color: var(--orange-500);
    font-size: 14px;
}

.demo-form .form-control,
.demo-form .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--gray-900);
    background-color: var(--gray-50);
    transition: all 0.2s ease;
}

.demo-form .form-control:focus,
.demo-form .form-select:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 4px rgba(18, 146, 164, 0.12);
    background-color: var(--white);
    outline: none;
}

.demo-form .form-control::placeholder {
    color: var(--gray-400);
}

.demo-form .form-control.is-invalid,
.demo-form .form-select.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.demo-form .invalid-feedback {
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

/* show feedback when invalid */
.demo-form .is-invalid~.invalid-feedback,
.demo-form .is-invalid+.invalid-feedback {
    display: block;
}

/* Input Icons */
.demo-form .input-icon-wrapper {
    position: relative;
}

.demo-form .input-icon-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    pointer-events: none;
    transition: color 0.2s ease;
}

.demo-form .input-icon-wrapper .form-control {
    padding-left: 42px;
}

.demo-form .input-icon-wrapper:focus-within .input-icon {
    color: var(--teal-500);
}

/* Row spacing */
.demo-form .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 0;
}

.demo-form .mb-3 {
    margin-bottom: 18px !important;
}

/* Terms checkbox */
.demo-form .form-check {
    padding-left: 28px;
    margin-bottom: 24px;
}

.demo-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-left: -28px;
    margin-top: 2px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-form .form-check-input:checked {
    background-color: var(--teal-600);
    border-color: var(--teal-600);
}

.demo-form .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(18, 146, 164, 0.12);
}

.demo-form .form-check-label {
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
}

.demo-form .form-check-label a {
    color: var(--teal-600);
    text-decoration: none;
    font-weight: 500;
}

.demo-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.demo-form .btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.demo-form .btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}

.demo-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.demo-form .btn-submit .spinner-border {
    width: 18px;
    height: 18px;
    border-width: 2px;
}

/* Success state */
.demo-form.submitted .form-content {
    display: none;
}

.demo-form .success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.demo-form.submitted .success-message {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.demo-form .success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
}

.demo-form .success-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.demo-form .success-message h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.demo-form .success-message p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .demo-modal .modal-dialog {
        margin: 10px;
    }

    .demo-modal .modal-header {
        padding: 24px 20px 20px;
    }

    .demo-modal .modal-header .modal-title {
        font-size: 18px;
    }

    .demo-modal .modal-body {
        padding: 24px 20px;
    }

    .demo-form .row>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mobile-only {
        display: block;
        font-size: 12px;
    }


}

.demo-modal.fade .modal-dialog {
    transform: scale(0.95) translateY(-20px);
    transition: transform 0.25s ease;
}

.demo-modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}