/* ============================================
   LoudStack — Global Design Tokens & Navbar
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --ls-blue:          #2563EB;
    --ls-blue-dark:     #1D4ED8;
    --ls-blue-light:    #3B82F6;
    --ls-blue-glow:     rgba(37, 99, 235, 0.25);

    /* Neutrals */
    --ls-white:         #FFFFFF;
    --ls-off-white:     #F8FAFC;
    --ls-gray-100:      #F1F5F9;
    --ls-gray-200:      #E2E8F0;
    --ls-gray-400:      #94A3B8;
    --ls-gray-600:      #475569;
    --ls-gray-800:      #1E293B;
    --ls-gray-900:      #0F172A;

    /* Typography */
    --font-family:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Sizing */
    --navbar-height:    60px;
    --container-max:    1280px;
    --container-pad:    24px;

    /* Transitions */
    --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast:  0.2s var(--ease-out);
    --transition-med:   0.35s var(--ease-out);
    --transition-slow:  0.5s var(--ease-out);

    /* Shadows */
    --shadow-navbar:    0 1px 0 rgba(0, 0, 0, 0.04);
    --shadow-navbar-scrolled:
                        0 4px 24px -2px rgba(0, 0, 0, 0.08),
                        0 1px 4px  -1px rgba(0, 0, 0, 0.04);
    --shadow-btn:       0 1px 3px rgba(37, 99, 235, 0.18),
                        0 4px 12px rgba(37, 99, 235, 0.12);
    --shadow-btn-hover: 0 2px 8px rgba(37, 99, 235, 0.28),
                        0 8px 24px rgba(37, 99, 235, 0.18);

    /* Radius */
    --radius-sm:        8px;
    --radius-md:        12px;
    --radius-full:      9999px;
}


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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--ls-gray-800);
    background: var(--ls-off-white);
    line-height: 1.6;
}

p, h1, h2, h3, h4, h5, h6, span, a, li, button, td, th, input, textarea {
    overflow-wrap: break-word;
    word-break: break-word;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img, svg, video, canvas, iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--ls-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-navbar);
    overflow: hidden;
    transition: background var(--transition-med),
                box-shadow var(--transition-med);
}

/* Scrolled state — applied via JS */
.navbar--scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-navbar-scrolled);
}

/* Keep the bar solid while the mobile menu is open, and allow the mobile sheet to overflow */
.navbar--menu-open {
    background: rgba(255, 255, 255, 0.98);
    overflow: visible !important;
}


/* ---------- Container ---------- */
.navbar__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ---------- Logo ---------- */
.navbar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    margin-left: -36px;
    margin-right: 20px;
    transition: opacity var(--transition-fast);
}

.navbar__logo:hover {
    opacity: 0.85;
}

.navbar__logo-img {
    height: 105px !important;
    max-height: none !important;
    width: auto;
    max-width: 310px;
    display: block;
    object-fit: contain;
    object-position: left center;
}


/* ---------- Navigation Links ---------- */
.navbar__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__link {
    position: relative;
    padding: 8px 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ls-gray-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast),
                background var(--transition-fast);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ls-blue);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width var(--transition-med);
}

.navbar__link:hover {
    color: var(--ls-gray-900);
    background: var(--ls-gray-100);
}

.navbar__link:hover::after {
    width: 20px;
}

.navbar__link--active {
    color: var(--ls-blue);
    font-weight: 600;
}

.navbar__link--active::after {
    width: 20px;
    background: var(--ls-blue);
}


/* ---------- CTA Button ---------- */
.navbar__actions {
    display: flex;
    align-items: center;
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 26px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ls-white);
    background: linear-gradient(135deg, var(--ls-blue) 0%, var(--ls-blue-dark) 100%);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-btn);
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast),
                background var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.navbar__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ls-blue-light) 0%, var(--ls-blue) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.navbar__cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn-hover);
}

.navbar__cta:hover::before {
    opacity: 1;
}

.navbar__cta span,
.navbar__cta {
    position: relative;
    z-index: 1;
}

.navbar__cta:active {
    transform: translateY(0);
}


/* ---------- Hamburger (Mobile) ---------- */
.navbar__hamburger {
    /* hidden by default; display:flex is applied via media query below */
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--transition-fast);
}

.navbar__hamburger:hover {
    background: var(--ls-gray-100);
}

.navbar__hamburger:active {
    transform: scale(0.92);
}

/* Distinct pressed/open state — tinted circle instead of plain gray,
   so it's obvious the control is a toggle, not just a hover target */
.navbar__hamburger--active {
    background: rgba(37, 99, 235, 0.1);
}

.navbar__hamburger--active:hover {
    background: rgba(37, 99, 235, 0.16);
}

/* The 3-line "bun" wrapper inside the button */
.navbar__hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 24px;
    height: 18px;   /* 3×2px lines + 2×5px gaps = 16px, padded to 18px */
    pointer-events: none;
}

.navbar__hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ls-gray-800);
    border-radius: 2px;
    transform-origin: center;
    transition: transform var(--transition-med),
                opacity   var(--transition-fast),
                background var(--transition-fast);
}

/* Lines pick up the brand color once the menu is open, matching the
   tinted circle behind them */
.navbar__hamburger--active .navbar__hamburger-line {
    background: var(--ls-blue);
}

/* Hamburger → X animation
   gap = 5px, line-height = 2px → center-to-center = 7px
   Line 1 must jump DOWN 7px to overlap line 3 (rotate 45°)
   Line 3 must jump UP   7px to overlap line 1 (rotate -45°) */
.navbar__hamburger--active .navbar__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger--active .navbar__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar__hamburger--active .navbar__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ---------- Mobile Menu ---------- */
.navbar__mobile-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--navbar-height));
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition-med),
                visibility var(--transition-med),
                transform var(--transition-med);
    padding-bottom: env(safe-area-inset-bottom);
    overflow-y: auto;
}

.navbar__mobile-menu--open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.navbar__mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 360px;
    padding: 0 var(--container-pad);
}

.navbar__mobile-links li {
    width: 100%;
    /* Each link fades/slides in with its own delay (--i, set inline
       per <li>), staggered only while the sheet is open */
    opacity: 0;
    transform: translateY(10px);
}

.navbar__mobile-menu--open .navbar__mobile-links li {
    animation: mobileLinkIn 0.35s var(--ease-out) forwards;
    animation-delay: calc(var(--i, 0) * 0.045s + 0.05s);
}

.navbar__mobile-menu--open .navbar__mobile-cta {
    animation: mobileLinkIn 0.35s var(--ease-out) forwards;
    animation-delay: calc(var(--i, 6) * 0.045s + 0.05s);
}

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

.navbar__mobile-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ls-gray-600);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast),
                background var(--transition-fast),
                transform var(--transition-fast);
}

.navbar__mobile-link:hover {
    color: var(--ls-gray-900);
    background: var(--ls-gray-100);
    transform: scale(1.01);
}

.navbar__mobile-link--active {
    color: var(--ls-blue);
    font-weight: 600;
    background: rgba(37, 99, 235, 0.06);
}

.navbar__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ls-white);
    background: linear-gradient(135deg, var(--ls-blue) 0%, var(--ls-blue-dark) 100%);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-btn);
    opacity: 0;
    transform: translateY(10px);
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.navbar__mobile-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn-hover);
}


/* ---------- Spacer ---------- */
.navbar__spacer {
    height: var(--navbar-height);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    display: flex;
    align-items: center;
    background: var(--ls-off-white);
}

.hero__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px var(--container-pad) 30px var(--container-pad);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 580px;
}

.hero__heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ls-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero__subtext {
    font-size: 1.1875rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--ls-gray-800);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast),
                background var(--transition-fast),
                color var(--transition-fast),
                border-color var(--transition-fast);
    cursor: pointer;
}

/* Book a Free Demo — filled */
.hero__btn--primary {
    color: var(--ls-white);
    background: linear-gradient(135deg, var(--ls-blue) 0%, var(--ls-blue-dark) 100%);
    box-shadow: var(--shadow-btn);
}

.hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

.hero__btn--primary:active {
    transform: translateY(0);
}

/* Contact Us — outlined */
.hero__btn--secondary {
    color: var(--ls-blue);
    background: transparent;
    border: 2px solid var(--ls-blue);
    box-shadow: none;
}

.hero__btn--secondary:hover {
    color: var(--ls-white);
    background: var(--ls-blue);
    border-color: var(--ls-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
}

.hero__btn--secondary:active {
    transform: translateY(0);
}

/* ---------- Stats Grid (Right Side) ---------- */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero__stat-card {
    background: var(--ls-white);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--ls-gray-200);
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast),
                border-color var(--transition-fast);
}

.hero__stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px -4px rgba(15, 23, 42, 0.12);
    border-color: var(--ls-gray-400);
}

.hero__stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

/* Eye-catching color accents per stat */
.hero__stat-card:nth-child(1) .hero__stat-number {
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__stat-card:nth-child(2) .hero__stat-number {
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__stat-card:nth-child(3) .hero__stat-number {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__stat-card:nth-child(4) .hero__stat-number {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__stat-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ls-gray-800);
    line-height: 1.4;
}

/* Hero responsive */
@media (max-width: 968px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
@media (max-width: 768px) {
    .hero__heading {
        font-size: 2.25rem;
    }

    .hero__btn {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

    .hero__stat-number {
        font-size: 2.5rem !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .hero__heading {
        font-size: 1.75rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__btn {
        width: 100%;
        text-align: center;
    }

    .hero__stat-number {
        font-size: 2.1rem !important;
        white-space: nowrap !important;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   INDUSTRIES WE SERVE SECTION
   ============================================ */
.industries {
    padding: 40px 0 40px 0;
    background: var(--ls-white);
    position: relative;
    scroll-margin-top: calc(var(--navbar-height) + 20px);
}

.industries__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* Header */
.industries__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px auto;
}

.industries__badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ls-blue);
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.industries__title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ls-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.industries__subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ls-gray-800);
    line-height: 1.6;
}

/* 4-column Grid */
.industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Industry Card */
.industry-card {
    background: var(--ls-white);
    border: 1.5px solid var(--ls-gray-400);
    border-radius: 16px;
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-med),
                box-shadow var(--transition-med),
                border-color var(--transition-med);
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12);
    border-color: var(--ls-gray-900);
}

/* Icon Wrap */
.industry-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ls-off-white);
    border: 1px solid var(--ls-gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.industry-card:hover .industry-card__icon-wrap {
    background: var(--ls-gray-900);
    border-color: var(--ls-gray-900);
}

.industry-card__icon {
    width: 24px;
    height: 24px;
    stroke: var(--ls-gray-900);
    transition: stroke var(--transition-fast);
}

.industry-card:hover .industry-card__icon {
    stroke: var(--ls-white);
}

/* Custom 15th Industry Accent Block */
.industry-card--custom {
    border: 1.5px dashed var(--ls-blue);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(241, 245, 249, 0.6) 100%);
}

.industry-card--custom:hover {
    border: 1.5px solid var(--ls-blue);
    background: var(--ls-white);
}

/* Card Typography */
.industry-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ls-gray-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.industry-card__desc {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ls-gray-800);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Outlined CTA Button with Arrow Animation */
.industry-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ls-gray-900);
    background: transparent;
    border: 1px solid var(--ls-gray-400);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast),
                color var(--transition-fast),
                border-color var(--transition-fast);
}

.industry-card__arrow {
    width: 16px;
    height: 16px;
    stroke: var(--ls-gray-900);
    transition: transform var(--transition-fast), stroke var(--transition-fast);
}

.industry-card__cta:hover {
    background: var(--ls-gray-900);
    color: var(--ls-white);
    border-color: var(--ls-gray-900);
}

.industry-card__cta:hover .industry-card__arrow {
    transform: translateX(4px);
    stroke: var(--ls-white);
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .industries__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries {
        padding: 80px 0;
    }
    
    .industries__title {
        font-size: 2rem;
    }

    .industries__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .industry-card {
        padding: 24px 18px;
    }
}

@media (max-width: 520px) {
    .industries__grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   INSIGHTS SECTION
   ============================================ */
.insights {
    padding: 40px 0 0 0;
    background: var(--ls-off-white);
    position: relative;
    scroll-margin-top: calc(var(--navbar-height) + 20px);
}

.insights__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* 1. Hero Section */
.insights__hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
}

.insights__badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ls-blue);
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.insights__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ls-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.insights__subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ls-gray-800);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Search Box */
.insights__search-box {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.insights__search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    stroke: var(--ls-gray-400);
}

.insights__search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--ls-gray-900);
    background: var(--ls-white);
    border: 1px solid var(--ls-gray-200);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.insights__search-input:focus {
    border-color: var(--ls-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* 2. Categories Filter Chips */
.insights__categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 56px;
}

.insights__chip {
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ls-gray-600);
    background: var(--ls-white);
    border: 1px solid var(--ls-gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.insights__chip:hover {
    color: var(--ls-gray-900);
    border-color: var(--ls-gray-400);
}

.insights__chip--active {
    color: var(--ls-white);
    background: var(--ls-gray-900);
    border-color: var(--ls-gray-900);
}

.insights__chip--active:hover {
    color: var(--ls-white);
    background: var(--ls-gray-900);
}

/* 3. Featured Article Card */
.insights__featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--ls-white);
    border: 1px solid var(--ls-gray-200);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 64px;
    align-items: center;
    box-shadow: 0 6px 24px -4px rgba(15, 23, 42, 0.04);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.insights__featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.08);
}

.insights__featured-image-wrap {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
}

.insights__placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insights__placeholder-img svg {
    width: 48px;
    height: 48px;
    stroke: rgba(255, 255, 255, 0.6);
}

.insights__placeholder-img--featured {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.insights__placeholder-img--featured svg {
    stroke: rgba(255, 255, 255, 0.9);
    width: 64px;
    height: 64px;
}

.insights__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ls-gray-600);
    margin-bottom: 12px;
}

.insights__category-badge {
    color: var(--ls-blue);
    font-weight: 600;
}

.insights__dot {
    color: var(--ls-gray-400);
}

.insights__featured-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--ls-gray-900);
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.insights__featured-desc {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ls-gray-800);
    line-height: 1.6;
    margin-bottom: 24px;
}

.insights__author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--ls-gray-100);
}

.insights__author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ls-gray-900);
}

.insights__read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ls-blue);
    transition: gap var(--transition-fast);
}

.insights__read-btn:hover {
    gap: 10px;
}

.insights__arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* 4. Articles Grid */
.insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 96px;
}

.article-card {
    background: var(--ls-white);
    border: 1px solid var(--ls-gray-200);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px -6px rgba(15, 23, 42, 0.08);
    border-color: var(--ls-gray-900);
}

.article-card__img-wrap {
    width: 100%;
    height: 180px;
}

.article-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ls-gray-900);
    line-height: 1.35;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.article-card__desc {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ls-gray-800);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--ls-gray-100);
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ls-gray-900);
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.article-card:hover .article-card__link {
    color: var(--ls-blue);
    gap: 8px;
}

/* 5. Newsletter Section */
.insights__newsletter {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 24px;
    padding: 64px 32px;
    text-align: center;
    color: var(--ls-white);
    margin-bottom: 96px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2);
}

.insights__newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.insights__newsletter .insights__badge {
    background: rgba(255, 255, 255, 0.1);
    color: #60A5FA;
}

.insights__newsletter-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ls-white);
}

.insights__newsletter-text {
    font-size: 1.05rem;
    color: var(--ls-gray-400);
    margin-bottom: 32px;
    line-height: 1.6;
}

.insights__newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.insights__newsletter-input {
    flex-grow: 1;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--ls-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    outline: none;
    transition: border-color var(--transition-fast);
}

.insights__newsletter-input:focus {
    border-color: var(--ls-blue-light);
}

.insights__newsletter-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ls-white);
    background: var(--ls-blue);
    border-radius: var(--radius-full);
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.insights__newsletter-btn:hover {
    background: var(--ls-blue-light);
    transform: translateY(-1px);
}

/* 6. Final CTA Section */
.insights__cta-banner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0;
}

.insights__cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ls-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.insights__cta-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ls-gray-800);
    line-height: 1.6;
    margin-bottom: 36px;
}

.insights__cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Insights Responsive */
@media (max-width: 1024px) {
    .insights__featured-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .insights__title {
        font-size: 2.25rem;
    }

    /* Mobile Featured Article Card Styling */
    .insights__featured-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
        border-radius: 16px;
        margin-bottom: 32px;
    }

    .insights__featured-image-wrap {
        height: 180px;
        border-radius: 12px;
    }

    .insights__meta {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .insights__featured-title {
        font-size: 1.3rem;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .insights__featured-desc {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .insights__author-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding-top: 12px;
    }

    .insights__author-name {
        font-size: 0.82rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .insights__read-btn {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Convert Insights Grid on Mobile to Horizontal Swipeable Slider */
    .insights__grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 4px 4px 20px 4px !important;
        margin-bottom: 48px !important;
        scrollbar-width: none;
    }

    .insights__grid::-webkit-scrollbar {
        display: none;
    }

    .insights__grid .article-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
        scroll-snap-align: center !important;
        box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08) !important;
    }

    .insights__newsletter-form {
        flex-direction: column;
    }

    .insights__newsletter-btn {
        width: 100%;
    }

    .insights__cta-title {
        font-size: 1.85rem;
    }
}
/* Tablet & Mobile view */
@media (max-width: 968px) {
    .navbar__links,
    .navbar__actions {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__logo {
        margin-left: 0 !important;
        overflow: hidden !important;
    }

    .navbar__logo-img {
        height: 65px !important;
        max-width: 240px !important;
        object-fit: contain;
    }
}

/* Small phones */
@media (max-width: 480px) {
    :root {
        --navbar-height: 60px;
        --container-pad: 16px;
    }

    .navbar__logo {
        margin-left: 0 !important;
        overflow: hidden !important;
    }

    .navbar__logo-img {
        height: 65px !important;
        max-width: 210px !important;
        object-fit: contain;
    }

    .navbar__mobile-link {
        font-size: 1.1rem;
        padding: 14px 20px;
    }
}

/* ============================================
   MEET OUR TEAM CAROUSEL SECTION (#view-team)
   ============================================ */
.team {
    padding: 20px 0 60px 0;
    background: var(--ls-off-white);
    position: relative;
    overflow: hidden;
    scroll-margin-top: calc(var(--navbar-height) + 20px);
}

.team__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.team__header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

.team__header {
    max-width: 620px;
    margin-bottom: 36px;
}

.team__badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ls-blue);
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.team__title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ls-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.team__subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ls-gray-600);
    line-height: 1.6;
}

/* Outer Carousel Wrapper */
.team__carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 12px;
}

/* Side Navigation Arrows (Floating beside card 1 & card 4) */
.team__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ls-white);
    border: 1.5px solid var(--ls-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ls-gray-900);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.14);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.team__arrow--prev {
    left: -64px;
}

.team__arrow--next {
    right: -64px;
}

.team__arrow:hover {
    background: var(--ls-gray-900);
    color: var(--ls-white);
    border-color: var(--ls-gray-900);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.24);
}

.team__arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.team__arrow svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
}

/* Carousel Viewport & Track */
.team__carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    padding: 12px 0 24px 0;
    margin: -12px 0 -24px 0;
}

.team__carousel-viewport:active {
    cursor: grabbing;
}

.team__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.team-card {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
    background: var(--ls-white);
    border: 1px solid var(--ls-gray-200);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Top 65-70% Image Area */
.team-card__image-container {
    position: relative;
    width: 100%;
    height: 270px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s var(--ease-out);
}

.team-card:hover .team-card__img {
    transform: scale(1.04);
}

.team-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 40%, rgba(37, 99, 235, 0.25) 0%, rgba(15, 23, 42, 0.95) 75%);
    color: var(--ls-white);
    position: relative;
}

.team-card__avatar-badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ls-blue) 0%, #7C3AED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ls-white);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.2);
    letter-spacing: -0.02em;
}

.team-card__photo-hint {
    margin-top: 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* Bottom 30-35% Info Area */
.team-card__info {
    padding: 24px 22px 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--ls-white);
    flex-grow: 1;
}

.team-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ls-gray-900);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ls-blue);
    margin-bottom: 12px;
}

.team-card__bio {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ls-gray-600);
    line-height: 1.45;
}

/* Pagination Dots */
.team__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.team__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ls-gray-200);
    border: none;
    cursor: pointer;
    transition: all var(--transition-med);
}

.team__dot:hover {
    background: var(--ls-gray-400);
}

.team__dot--active {
    width: 28px;
    border-radius: 12px;
    background: var(--ls-blue);
}

/* Team Responsive rules */
@media (max-width: 1024px) {
    .team-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .team__header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .team-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

@media (max-width: 1400px) {
    .team__arrow--prev {
        left: -16px;
    }
    .team__arrow--next {
        right: -16px;
    }
}

@media (max-width: 768px) {
    .team__arrow {
        width: 38px;
        height: 38px;
    }

    .team__arrow--prev {
        left: 4px;
    }
    .team__arrow--next {
        right: 4px;
    }
}


/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 100px 0 60px;
    background: var(--ls-off-white);
}

.faq__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.faq__badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.16));
    color: var(--ls-blue);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--ls-gray-900);
    margin-bottom: 14px;
    line-height: 1.2;
}

.faq__subtitle {
    font-size: 1.05rem;
    color: var(--ls-gray-600);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq__grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual FAQ Item */
.faq__item {
    background: var(--ls-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--ls-gray-200);
    overflow: hidden;
    transition: all var(--transition-med);
}

.faq__item:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 2px 16px rgba(37, 99, 235, 0.06);
}

.faq__item--active {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

/* Question Button */
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background var(--transition-fast);
}

.faq__question:hover {
    background: rgba(37, 99, 235, 0.03);
}

.faq__question-text {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ls-gray-800);
    line-height: 1.5;
    flex: 1;
}

.faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.14));
    color: var(--ls-blue);
    transition: all var(--transition-med);
}

.faq__icon svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-med);
}

.faq__item--active .faq__icon {
    background: var(--ls-blue);
    color: var(--ls-white);
    transform: rotate(45deg);
}

/* Answer Panel */
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__answer-inner {
    padding: 0 24px 22px;
}

.faq__answer-inner p {
    font-size: 0.95rem;
    color: var(--ls-gray-600);
    line-height: 1.75;
    border-top: 1px solid var(--ls-gray-100);
    padding-top: 16px;
}

/* FAQ CTA */
.faq__cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(37, 99, 235, 0.08));
    border-radius: var(--radius-md);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.faq__cta-text {
    font-size: 1.05rem;
    color: var(--ls-gray-600);
    margin-bottom: 20px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 72px 0 48px;
    }

    .faq__question {
        padding: 18px 18px;
    }

    .faq__answer-inner {
        padding: 0 18px 18px;
    }

    .faq__question-text {
        font-size: 0.94rem;
    }
}


/* ============================================
   CONTACT US MODAL
   ============================================ */

/* Overlay */
.contact-modal__overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

.contact-modal__overlay--active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.contact-modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--ls-white);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.08);
    transform: translateY(24px) scale(0.96);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.contact-modal__overlay--active .contact-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Close Button */
.contact-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ls-gray-100);
    color: var(--ls-gray-600);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.contact-modal__close:hover {
    background: var(--ls-gray-200);
    color: var(--ls-gray-900);
    transform: rotate(90deg);
}

.contact-modal__close svg {
    width: 18px;
    height: 18px;
}

/* Modal Header */
.contact-modal__header {
    text-align: center;
    margin-bottom: 12px;
}

.contact-modal__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
    color: var(--ls-white);
    margin-bottom: 8px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.contact-modal__icon-wrap svg {
    width: 20px;
    height: 20px;
}

.contact-modal__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ls-gray-900);
    margin-bottom: 2px;
}

.contact-modal__desc {
    font-size: 0.82rem;
    color: var(--ls-gray-600);
    line-height: 1.4;
}

/* Form */
.contact-modal__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-modal__field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-modal__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ls-gray-800);
    letter-spacing: 0.01em;
}

.contact-modal__input {
    width: 100%;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--ls-gray-200);
    background: var(--ls-off-white);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ls-gray-800);
    outline: none;
    transition: all var(--transition-fast);
}

.contact-modal__input::placeholder {
    color: var(--ls-gray-400);
}

.contact-modal__input:focus {
    border-color: var(--ls-blue);
    background: var(--ls-white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-modal__textarea {
    resize: vertical;
    min-height: 60px;
    height: 60px;
}

/* Submit Button */
.contact-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--ls-blue), var(--ls-blue-dark));
    color: var(--ls-white);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-btn);
    margin-top: 4px;
}

.contact-modal__submit:hover {
    box-shadow: var(--shadow-btn-hover);
    transform: translateY(-1px);
}

.contact-modal__submit:active {
    transform: translateY(0);
}

.contact-modal__submit svg {
    width: 18px;
    height: 18px;
}

/* Success State */
.contact-modal__success {
    text-align: center;
    padding: 20px 0;
}

.contact-modal__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--ls-white);
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal__success-icon svg {
    width: 32px;
    height: 32px;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.contact-modal__success-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ls-gray-900);
    margin-bottom: 10px;
}

.contact-modal__success-text {
    font-size: 0.92rem;
    color: var(--ls-gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-modal__success-text a {
    color: var(--ls-blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Modal Responsive */
@media (max-width: 640px) {
    .contact-modal {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .contact-modal__overlay {
        padding: 16px;
        align-items: flex-end;
    }

    .contact-modal__title {
        font-size: 1.3rem;
    }
}

/* Scrollbar styling for modal */
.contact-modal::-webkit-scrollbar {
    width: 6px;
}

.contact-modal::-webkit-scrollbar-track {
    background: transparent;
}

.contact-modal::-webkit-scrollbar-thumb {
    background: var(--ls-gray-200);
    border-radius: 3px;
}

.contact-modal::-webkit-scrollbar-thumb:hover {
    background: var(--ls-gray-400);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    background: #090D16;
    color: var(--ls-gray-400);
    padding: 40px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 28px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo-img {
    height: 40px;
    width: auto;
}

.footer__brand-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94A3B8;
    max-width: 340px;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    transition: all var(--transition-fast);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__social-link:hover {
    background: var(--ls-blue);
    color: var(--ls-white);
    transform: translateY(-2px);
}

.footer__col-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ls-white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__link {
    font-size: 0.9375rem;
    color: #94A3B8;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--ls-white);
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__contact-list svg {
    width: 18px;
    height: 18px;
    stroke: var(--ls-blue);
    flex-shrink: 0;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.875rem;
}

.footer__copyright {
    color: #64748B;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__legal-link {
    color: #64748B;
    transition: color var(--transition-fast);
}

.footer__legal-link:hover {
    color: #94A3B8;
}

.footer__legal-dot {
    color: #334155;
}

@media (max-width: 968px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 580px) {
    .footer {
        padding: 60px 0 28px 0;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}