/* ============================================
   LINTELAI WEBSITE - STYLES
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: manipulation;
    /* Disable double tap zoom on mobile */

}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;

}

body {
    font-family: 'Garet', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #062251;
    background: #F6F6F6;
    /* overflow-x: hidden; */
}

body.menu-open {
    touch-action: none;
    overscroll-behavior: none;
}

/* Hide floating demo button when menu is open */
body.menu-open .floating-demo-btn {
    display: none !important;
}


/* ============================================
   COLORS (from brand guidelines)
   ============================================ */
:root {
    --white: #FFFFFF;
    --off-white: #F6F6F6;
    --light-blue-1: #F0F5FF;
    --light-blue-2: #C7D8FF;
    --light-blue-3: #D9E5FF;
    --dark-blue-1: #003986;
    --dark-blue-2: #062251;

    --text-primary: #062251;
    --text-secondary: #062251;
    --text-muted: #718096;

    /* Gradient for headers */
    --gradient-start: #F6F6F6;
    --gradient-end: #ACCAEC;
}

/* ============================================
   RESPONSIVE UTILITY CLASSES
   ============================================ */
.mobile-only { display: none; }

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: inline !important; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
    font-family: 'Agrandir', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
}

h2 {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

h3 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

h4 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
}

p,
body {
    font-family: 'Garet', sans-serif;
    font-size: 1.0625rem;
    color: var(--text-primary);
}


/* =========================
   INTRO OVERLAY
   ========================= */
.intro-overlay {
    position: fixed;
    inset: 0;
    background: #003986;
    z-index: 99999;
    display: grid;
    place-items: center;

    transform: scale(1);
    opacity: 1;
    transform-origin: center;

    transition:
        transform 0.8s ease,
        opacity 0.8s ease;
}

.intro-overlay.is-hiding {
    transform: scale(1.35);
    opacity: 0;
    pointer-events: none;
}

.intro-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-logo {
    width: 440px;
    height: auto;

    opacity: 0;
    transform: scale(0.9);
    animation: introLogoZoom 900ms ease forwards;
}

@keyframes introLogoZoom {
    to {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* lock scroll during intro */
body.intro-lock {
    overflow: hidden;
}

@media (max-width: 768px) {
    .intro-logo {
        width: 220px;
        /* phone size */
    }
}





/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: transform 0.3s ease;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    transition: background 0.3s ease, border 0.3s ease;
}

/* Scrolled state - dark blue background */
.nav.scrolled .nav-container {
    background: #003986;
    border: 1px solid #003986;
}

.nav.scrolled .nav-links a {
    color: white;
}

.nav.scrolled .nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.nav.scrolled .dropdown-icon {
    border-color: white;
}

.nav.scrolled .logo span {
    color: white;
}

.nav.scrolled .dropdown-menu {
    background: #002a66;
    border: 1px solid #003986;
}

.nav.scrolled .dropdown-menu a {
    color: white !important;
}

.nav.scrolled .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav.scrolled .dropdown-chevron {
    border-color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Agrandir', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 110px;
    height: 30px;
}

/* Logo swap on scroll */
.logo-icon .logo-white {
    display: none;
}

.nav.scrolled .logo-icon .logo-blue {
    display: none;
}

.nav.scrolled .logo-icon .logo-white {
    display: block;
}

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

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-family: 'Garet', sans-serif;
    color: #062251;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-trigger span {
    line-height: 1;
}

.dropdown-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1.8rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 4px 20px rgba(6, 34, 81, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--dark-blue-2) !important;
    font-size: 0.9rem;
    transition: all 0.2s;
}



/* Nav hidden behind mobile menu when open */

/* Blue theme mobile menu when scrolled */
.mobile-menu.scrolled-theme {
    background: #003986;
}

.mobile-menu.scrolled-theme .mobile-menu-links a {
    color: white;
}

.mobile-menu.scrolled-theme .mobile-menu-links li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* Logo/close handled inside mobile menu now */

/* Hamburger Button - hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #062251;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.scrolled .hamburger-line {
    background: white;
}

/* Hamburger X animation */
.hamburger.active .hamburger-line {
    background: #062251;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /* height: 100%; */
    background: #F6F6F6;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Mobile menu header (close button only) */
.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem;
}

/* Close button (X) */
.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    position: relative;
    padding: 0;
}

.close-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #062251;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
}

.close-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu.scrolled-theme .close-line {
    background: white;
}

/* Staggered link animation */
.mobile-menu-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.active .mobile-menu-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-content {
    padding: 0.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    /* min-height: calc(80vh); */
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    border-bottom: 1px solid rgba(6, 34, 81, 0.1);
}

.mobile-menu-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Garet', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #062251;
    text-decoration: none;
    padding: 1.25rem 0;
    transition: color 0.2s ease;
}

.mobile-menu-links a:hover {
    color: #003986;
}

/* Mobile menu buttons */
.mobile-menu-buttons {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 2rem;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.active .mobile-menu-buttons {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.35s;
}

.mobile-menu-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Garet', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.7rem 0.85rem;
    border-radius: 50px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-btn-primary {
    background: #062251;
    color: white;
    border: 2px solid #062251;
}

.mobile-menu-btn-primary:hover {
    background: #0a3470;
    border-color: #0a3470;
}

.mobile-menu-btn-secondary {
    background: transparent;
    color: #062251;
    border: 2px solid #062251;
}

.mobile-menu-btn-secondary:hover {
    background: rgba(6, 34, 81, 0.06);
}

/* Scrolled (blue) theme button overrides */
.mobile-menu.scrolled-theme .mobile-menu-btn-primary {
    background: white;
    color: #003986;
    border-color: white;
}

.mobile-menu.scrolled-theme .mobile-menu-btn-primary:hover {
    background: #e8eef7;
    border-color: #e8eef7;
}

.mobile-menu.scrolled-theme .mobile-menu-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Show hamburger, hide nav on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none !important;
    }

    .mobile-menu {
        display: block;
    }

    .nav-container {
        padding: 0.5rem 0.5rem 0.5rem 1rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Garet', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-white {
    background: white;
    color: var(--dark-blue-1);
    padding: 0.5rem 1.4rem;
    font-weight: 500;
}

.btn-white:hover {
    background: var(--light-blue-1);
}

.btn-glass {
    background: var(--dark-blue-2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--dark-blue-2);
    border-radius: 50px;
    color: white;
    padding: 0.6rem 1.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 80%
    );
    animation: btn-shimmer 6s ease-in-out infinite;
}

@keyframes btn-shimmer {
    0%   { left: -100%; }
    40%  { left: 150%; }
    100% { left: 150%; }
}

.btn-glass:hover {
    background: var(--dark-blue-1);
    border-color: var(--dark-blue-1);
}

.btn-glass-outline {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--dark-blue-2);
    border-radius: 50px;
    color: var(--dark-blue-2);
    padding: 0.6rem 1.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn-glass-outline:hover {
    background: rgba(6, 34, 81, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    /* Spotlight variables */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-size: 0px;
}

/* Gradient overlay with spotlight effect */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/New-hero-background.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Spotlight mask - follows mouse */
    -webkit-mask-image: radial-gradient(
        circle var(--spotlight-size) at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        black 100%
    );
    mask-image: radial-gradient(
        circle var(--spotlight-size) at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        black 100%
    );
}

/* Background dashboard images */
.hero-bg-images {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Column containers */
.hero-bg-column {
    position: absolute;
    top: 0;
    width: 510px;
    height: 100%;
    overflow: hidden;
    opacity: 1;
    background: transparent;
    /* Fade at top and bottom */
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
}

.hero-bg-left {
    left: 1.5%;
}

.hero-bg-right {
    right: 1.5%;
}

/* Scrolling container */
.hero-bg-scroll {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-bg-left .hero-bg-scroll {
    animation: scrollUp 40s linear infinite;
}

.hero-bg-right .hero-bg-scroll {
    animation: scrollDown 40s linear infinite;
}

/* Individual images */
.hero-bg-img {
    width: 100%;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Scroll animations */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Fade out at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #F6F6F6 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    transition: transform 0.8s ease;
}

.hero-description-desktop .line-1,
.hero-description-desktop .line-2 {
    display: block;
}

.hero-content.centered {
    transform: translateY(60px);
}

.hero-content.settled {
    transform: translateY(0);
}

.hero-description-desktop,
.hero-cta-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-description-desktop.show,
.hero-cta-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-family: 'Agrandir', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: radial-gradient(
        circle at 50% 50%,
        #2b7cff,
        #003986,
        #062251
    );
    background-size: 250% 250%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-radial 16s ease infinite;
}

@keyframes gradient-radial {
    0%   { background-position: 50% 50%; }
    25%  { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    75%  { background-position: 100% 0%; }
    100% { background-position: 50% 50%; }
}


.hero p {
    font-family: 'Garet', sans-serif;
    font-size: 1.0625rem;
    color: #062251;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero CTA wrapper */
.hero-cta-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero CTA group */
.hero-cta {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0.35rem;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(6, 34, 81, 0.08);
}

/* Book a demo button outside the pill */
.btn-demo-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--dark-blue-2);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(6, 34, 81, 0.08);
}

.btn-demo-outline:hover {
    background: rgba(255, 255, 255, 0.85);
}

/* Email input */
.hero-input {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #062251;
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    min-width: 180px;
    outline: none;
}

.hero-input::placeholder {
    color: rgba(6, 34, 81, 0.5);
}

/* ============================================
   MOBILE RESPONSIVE - NAVBAR & HERO SECTION
   ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0.5rem 1rem 0.5rem 1.25rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .btn-white {
        padding: 0.45rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }


    .nav-links {
        display: none;
    }

    .nav {
        padding: 1rem;
    }

    .nav-container {
        padding: 0.4rem 0.4rem 0.4rem 1rem;
        border-radius: 40px;
        justify-content: space-between;
    }

    .logo-icon img {
        width: 110px;
        height: 32px;
    }

    .btn-white {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .hero {
        min-height: 100vh;
        padding: 6rem 1.5rem 3rem;
        align-items: flex-start;
        padding-top: 35vh;
    }

    .hero h1 {
        font-size: 3.2rem !important;
        margin-bottom: 1rem;
        line-height: 1.15;
    }

    .hero p {
        font-size: 0.90rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-cta-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 340px;
        gap: 0.75rem;
        margin-bottom: 1rem;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .hero-cta {
        display: contents !important;
    }

    .hero-input {
        display: block !important;
        width: 100%;
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
        text-align: left;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 50px;
        color: #062251;
    }

    .hero-input::placeholder {
        color: rgba(6, 34, 81, 0.5);
    }

    .hero-cta-wrapper .btn-glass,
    .hero-cta-wrapper .btn-demo-outline {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-cta .btn-glass {
        background: var(--dark-blue-2);
        border-color: var(--dark-blue-2);
        color: white;
    }

    .btn-demo-outline {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.8);
        color: var(--dark-blue-2);
    }

    /* Buttons side by side container */
    .hero-cta-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .hero-cta-wrapper .hero-input {
        grid-column: 1 / -1;
    }
}

/* ============================================
   HERO BACKGROUND IMAGES - RESPONSIVE
   Adjust width values to change image sizes
   ============================================ */
@media (max-width: 1800px) {
    .hero-bg-column {
        width: 420px;
    }
}

@media (max-width: 1680px) {
    .hero-bg-column {
        width: 360px;
    }
}

@media (max-width: 1440px) {
    .hero-bg-column {
        width: 300px;
    }
}

@media (max-width: 1280px) {
    .hero-bg-column {
        width: 250px;
    }
}

@media (max-width: 991px) {
    /* Hide hero background images on tablet/mobile */
    .hero-bg-column {
        display: none;
    }
}


/* ============================================
   CAROUSEL SECTION
   ============================================ */
.carousel-section {
    padding: 5rem 2rem;
    background: var(--off-white);
    text-align: left;
    overflow: hidden;
}

.carousel-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.carousel-header h2 {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--dark-blue-2);
    margin-bottom: 1rem;
    /* Start hidden - no transition so reset is instant */
    opacity: 0;
    transform: translateX(-100px);
}

.carousel-header p {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    /* Start hidden - no transition so reset is instant */
    opacity: 0;
    transform: translateX(-80px);
}

/* When in view - animate in */
.carousel-header.in-view h2 {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.carousel-header.in-view p {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.carousel-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 5%;
    /* Start hidden - no transition so reset is instant */
    opacity: 0;
    transform: translateX(150px);
}

/* When carousel section is in view - animate in */
.carousel-section.in-view .carousel-container {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.carousel-slide {
    flex: 0 0 45%;
    max-width: 45%;
    transition: all 0.5s ease-in-out;
    opacity: 0.4;
    transform: scale(0.9);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(6, 34, 81, 0.15);
}

/* Slide captions */
.slide-caption {
    text-align: center;
    padding: 1.5rem 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.carousel-slide.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}


.slide-caption p {
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--dark-blue-2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--dark-blue-1);
    transform: scale(1.05);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   HERO & CAROUSEL SECTION RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-input {
        min-width: 100%;
    }

    .carousel-header h2 {
        font-size: 2rem;
    }

    .carousel-header p {
        font-size: 1rem;
    }

    .carousel-slide {
        flex: 0 0 85%;
        max-width: 85%;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h2 {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--dark-blue-2);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-family: 'Garet', sans-serif;
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 550px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 4rem;
    padding-top: 2rem;

}

.stat {
    text-align: left;
}

.stat-value {
    display: block;
    font-family: 'Agrandir', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue-2);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: 'Garet', sans-serif;
    font-size: 1.0625rem;
    color: var(--dark-blue-2);
}

/* ============================================
   FAMILIAR SECTION
   ============================================ */
.familiar-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.familiar-container {
    max-width: 1150px;
    margin: 0 auto;
}

.familiar-title {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.625rem;
    font-weight: 400;
    /* color: var(--light-blue-2); */
    color: #ACCAEC;
    text-align: center;
    margin-bottom: 4rem;
}

.familiar-title strong {
    font-family: 'Garet', sans-serif;
    font-weight: 600;
    color: var(--dark-blue-2);
}

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

.familiar-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(6, 34, 81, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.familiar-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 300%;
    height: 300%;
    background: linear-gradient(180deg, #062251 0%, #003986 100%);
    z-index: -1;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: var(--mouse-x, 50%) var(--mouse-y, 50%);
    transition: transform 0.6s ease-out;
}

.familiar-item:hover::before {
    transform: scale(1);
}

.familiar-item:hover {
    box-shadow: 0 8px 24px rgba(6, 34, 81, 0.15);
}

.familiar-item h4,
.familiar-item p {
    transition: color 0.3s ease;
}

.familiar-item:hover h4,
.familiar-item:hover p {
    color: white;
}

.familiar-icon {
    transition: background 0.3s ease;
}

.familiar-icon svg {
    transition: color 0.3s ease;
}

.familiar-item:hover .familiar-icon {
    background: white;
}

.familiar-item:hover .familiar-icon svg {
    color: var(--dark-blue-2);
}

.familiar-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-blue-2);
    margin-bottom: 1.25rem;
}

.familiar-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.familiar-item h4 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue-2);
    margin-bottom: 0.5rem;
}

.familiar-item p {
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   FAMILIAR SECTION ANIMATIONS
   ============================================ */

/* Initial state - hidden */
.familiar-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.familiar-section .familiar-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

/* When in view - visible */
.familiar-section.in-view .familiar-title {
    opacity: 1;
    transform: translateY(0);
}

.familiar-section.in-view .familiar-item {
    opacity: 1;
    transform: translateY(0);
}

.familiar-section.in-view .familiar-item:hover {
    transform: scale(1.03);
}

/* Tablet */
@media (max-width: 991px) {
    .familiar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .familiar-title {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .familiar-section {
        padding: 4rem 1.5rem;
    }

    .familiar-title {
        font-size: 1.625rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }

    .familiar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .familiar-item {
        padding: 1.25rem;
    }

    .familiar-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-bottom: 1rem;
    }

    .familiar-icon svg {
        width: 20px;
        height: 20px;
    }

    .familiar-item h4 {
        font-size: 0.95rem;
    }

    .familiar-item p {
        font-size: 0.85rem;
    }
}

/* ============================================
   EVERYTHING IN ONE PLACE SECTION
   ============================================ */
.one-place-section {
    padding: 5rem 2rem;
    background: var(--off-white);
    min-height: 500vh;
    position: relative;
}

.one-place-header {
    margin-bottom: 1.5rem;
}

.one-place-title {
    font-family: 'Garet', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: #ACCAEC;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.one-place-title strong {
    font-family: 'Agrandir', sans-serif;
    font-weight: 600;
    color: var(--dark-blue-2);
}

.one-place-subtitle {
    font-family: 'Garet', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 800px;
}

.one-place-subtitle-mobile {
    display: none;
}

@media (max-width: 768px) {
    .one-place-subtitle-desktop {
        display: none;
    }
    .one-place-subtitle-mobile {
        display: block;
    }
}

.one-place-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Garet', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--dark-blue-2);
    text-decoration: none;
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(6, 34, 81, 0.05);
    transition: all 0.3s ease;
}

.one-place-cta::after {
    content: '→';
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.one-place-cta:hover {
    box-shadow: 0 6px 25px rgba(6, 34, 81, 0.15);
    transform: translateY(-2px);
}

.one-place-cta:hover::after {
    transform: translateX(3px);
}

.one-place-sticky-wrapper {
    position: sticky;
    top: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.one-place-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
}

/* Left Navigation */
.one-place-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.one-place-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-indicator {
    width: 3px;
    height: 20px;
    background: transparent;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.one-place-nav-item.active .nav-indicator {
    background: var(--dark-blue-2);
}

.nav-text {
    font-family: 'Garet', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.one-place-nav-item.active .nav-text {
    color: var(--dark-blue-2);
    font-weight: 500;
}

.one-place-nav-item:hover .nav-text {
    color: var(--dark-blue-2);
}

/* Right Content */
.one-place-content {
    position: relative;
}

.one-place-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.one-place-panel.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.one-place-panel h3 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--dark-blue-2);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.1s;
}

.one-place-panel.active h3 {
    opacity: 1;
    transform: translateY(0);
}

.one-place-image {
    background: linear-gradient(180deg, var(--light-blue-3) 0%, var(--light-blue-1) 100%);
    border-radius: 10px;
    padding: 1rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.2s;
}

.one-place-panel.active .one-place-image {
    opacity: 1;
    transform: translateY(0);
}

.one-place-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    border-radius: 6px;
}

.one-place-description {
    margin-top: 0.7rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.3s;
}

.one-place-panel.active .one-place-description {
    opacity: 1;
    transform: translateY(0);
}

.one-place-description p {
    font-family: 'Garet', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 550px;
}

.one-place-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid var(--light-blue-2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-blue-2);
}

.one-place-arrow:hover {
    background: var(--dark-blue-2);
    border-color: var(--dark-blue-2);
    color: white;
}

/* Large Laptop / MacBook "More Space" */
@media (max-width: 1800px) {
    .one-place-image img {
        max-height: 400px;
    }
}

/* Laptop (MacBook) */
@media (max-width: 1680px) {
    .one-place-image {
        max-width: 700px;
    }

    .one-place-image img {
        max-height: 350px;
    }

    .one-place-description {
        max-width: 700px;
    }

    .one-place-sticky-wrapper {
        top: 40px;
    }
}

@media (max-width: 1440px) {
    .one-place-image img {
        max-height: 340px;
    }
}

@media (max-width: 1280px) {
    .one-place-sticky-wrapper {
        padding: 0 1.5rem;
    }

    .one-place-container {
        gap: 1.5rem;
    }

    .one-place-image img {
        max-height: 320px;
    }

    .one-place-title {
        font-size: 2rem;
    }

    .one-place-subtitle {
        font-size: 0.875rem;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .one-place-container {
        grid-template-columns: 160px 1fr;
        gap: 1.5rem;
    }

    .one-place-title {
        font-size: 1.75rem;
    }

    .one-place-panel h3 {
        font-size: 1.25rem;
    }

    .one-place-image img {
        max-height: 280px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .one-place-section {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .one-place-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .one-place-title {
        font-size: 1.75rem;
    }

    .one-place-subtitle {
        text-align: center;
    }

    .one-place-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        position: relative;
        top: 0;
    }

    .one-place-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--light-blue-2);
    }

    .one-place-nav-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }

    .nav-indicator {
        width: 24px;
        height: 3px;
        order: 1;
    }

    .nav-text {
        font-size: 13px;
        order: 0;
    }

    .one-place-panel h3 {
        font-size: 1.375rem;
        text-align: center;
    }

    .one-place-image {
        padding: 1rem;
    }

    .one-place-description {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .one-place-description p {
        text-align: center;
        max-width: 430px;
        margin: 0 auto;
    }

    /* Hide desktop nav on mobile */
    .one-place-nav {
        display: none !important;
    }
}

/* Mobile Button Navigation - Always defined, hidden by default */
.one-place-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.one-place-mobile-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.one-place-mobile-btn {
    background: var(--light-blue-3);
    color: var(--dark-blue-2);
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    font-family: 'Agrandir', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.one-place-mobile-btn:hover {
    background: var(--light-blue-2);
}

.one-place-mobile-btn.active {
    background: var(--dark-blue-2);
    color: white;
}

/* Mobile CTA - hidden by default */
.one-place-cta-mobile {
    display: none;
    font-family: 'Agrandir', sans-serif;  /* <-- Change font here */
    font-size: 0.875rem;               /* <-- Change size here */
    font-weight: 700;                  /* <-- Change weight here */
}

/* Show mobile nav and CTA on mobile screens */
@media (max-width: 768px) {
    .one-place-mobile-nav {
        display: flex !important;
    }

    /* Hide desktop CTA and arrow on mobile */
    .one-place-cta-desktop {
        display: none !important;
    }

    .one-place-arrow {
        display: none !important;
    }

    /* Show and style mobile CTA */
    .one-place-cta-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-family: 'Garet', sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--dark-blue-2);
        text-decoration: none;
        background: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(6, 34, 81, 0.1);
        margin: 1rem auto 0;
        transition: all 0.3s ease;
    }

    .one-place-cta-mobile:hover {
        background: var(--light-blue-1);
        transform: translateY(-2px);
    }
}

/* ============================================
   RENTAL ON AUTOPILOT SECTION
   ============================================ */
.autopilot-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.autopilot-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.autopilot-left h2 {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--dark-blue-2);
    margin-bottom: 1rem;
}

.autopilot-left>p {
    font-family: 'Garet', sans-serif;
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
}

.autopilot-image {
    border-radius: 20px;
    overflow: hidden;
}

.autopilot-image img {
    width: 100%;
    height: auto;
    display: block;
}

.autopilot-right {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

.autopilot-feature {
    display: flex;
    gap: 1.25rem;
    padding: 2em 0;
    border-bottom: 1px solid rgba(6, 34, 81, 0.1);
}



.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--dark-blue-2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h4 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-blue-2);
    margin-bottom: 0.35rem;
}

.feature-content p {
    font-family: 'Garet', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ============================================
   AUTOPILOT SECTION ANIMATIONS
   ============================================ */

/* Initial state - hidden */
.autopilot-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.autopilot-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When in view - visible */
.autopilot-section.in-view .autopilot-left {
    opacity: 1;
    transform: translateX(0);
}

.autopilot-section.in-view .autopilot-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

/* AUTOPILOT RESPONSIVE */

/* Autopilot section - laptop screens */
@media (max-width: 1440px) {
    .autopilot-section {
        padding: 3rem 2rem;
    }

    .autopilot-container {
        gap: 1rem;
    }

    .autopilot-right {
        margin-top: 3rem;
    }

    .autopilot-feature {
        padding: 1.25rem 0;
    }

    .autopilot-left h2 {
        font-size: 2rem;
    }

    .autopilot-image img {
        max-width: 450px;
        max-height: 780px;
        object-fit: cover;
    }
}

/* Autopilot section - smaller laptops */
@media (max-width: 1280px) {
    .autopilot-section {
        padding: 2.5rem 2rem;
    }

    .autopilot-right {
        margin-top: 20px;
        margin-left: 1rem;
    }

    .autopilot-feature {
        padding: 1rem 0;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.875rem;
    }

    .autopilot-image img {
        max-height: 480px;
    }
}

@media (max-width: 900px) {
    .autopilot-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .autopilot-left>p {
        max-width: 100%;
    }

    .autopilot-image {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .autopilot-left h2 {
        font-size: 2rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-content h4 {
        font-size: 1rem;
    }
}

/* ABOUT US RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content p {
        max-width: 100%;
    }

    .about-stats {
        gap: 2rem 3rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}




/* ============================================
   PUT YOUR PROPERTIES ON AUTOPILOT SECTION
   ============================================ */
.properties-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.properties-container {
    max-width: 1100px;
    margin: 0 auto;
}

.properties-header {
    text-align: center;
    margin-bottom: 4rem;
}

.properties-header h2 {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--dark-blue-2);
    margin-bottom: 1rem;
}

.properties-header p {
    font-family: 'Garet', sans-serif;
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.property-card {
    text-align: center;
}

.property-animation {
    margin: 0 auto 1.5rem;
}

.animation-calendar {
    width: 300px;
    height: 300px;
    margin-top: -37px;
    margin-bottom: -37px;
}

.animation-house {
    width: 200px;
    height: 200px;
}

.animation-bus {
    width: 200px;
    height: 200px;
}

.property-animation lottie-player {
    width: 100%;
    height: 100%;
}

.property-card h4 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-blue-2);
    margin-bottom: 0.75rem;
}

.property-card p {
    font-family: 'Garet', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .properties-header h2 {
        font-size: 2rem;
    }

    .property-animation {
        width: 120px;
        height: 120px;
    }

    .animation-calendar {
        width: 200px;
        height: 200px;
        margin-top: -25px;
        margin-bottom: -25px;
    }

    .animation-house {
        width: 150px;
        height: 150px;
    }

    .animation-bus {
        width: 150px;
        height: 150px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .animation-calendar {
        width: 250px;
        height: 250px;
        margin-top: -30px;
        margin-bottom: -30px;
    }

    .animation-house {
        width: 170px;
        height: 170px;
    }

    .animation-bus {
        width: 170px;
        height: 170px;
    }
}

/* ============================================
   LINTELAI IS FOR SECTION (Scroll-based)
   ============================================ */
.lintel-for-section {
    height: 600vh;
    position: relative;
    background: var(--off-white);
}

.lintel-for-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Side */
.lintel-for-left {
    flex: 0 0 280px;
}

.lintel-for-subtitle {
    font-family: 'Garet', sans-serif;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Dropdown wrapper */
.lintel-for-dropdown {
    position: relative;
    margin-bottom: 3rem;
}

.lintel-for-usertype {
    font-family: 'Agrandir', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-blue-2);
    margin-bottom: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
}

.lintel-for-usertype:hover {
    opacity: 0.7;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lintel-for-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.lintel-for-options {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(6, 34, 81, 0.12);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.lintel-for-dropdown.open .lintel-for-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lintel-for-option {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: background 0.2s ease, color 0.2s ease;
}

.lintel-for-option:hover {
    background: var(--light-blue-1);
    color: var(--dark-blue-2);
}

.lintel-for-option.active {
    color: var(--dark-blue-2);
    font-weight: 600;
}

/* Stepper */
.lintel-stepper {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.stepper-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.stepper-item.active {
    opacity: 1;
}

.stepper-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-blue-3);
    color: var(--dark-blue-2);
    font-family: 'Agrandir', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stepper-item.active .stepper-circle {
    background: var(--dark-blue-2);
    color: white;
    transform: scale(1.1);
}

.stepper-label {
    font-family: 'Garet', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.stepper-item.active .stepper-label {
    color: var(--dark-blue-2);
    font-weight: 500;
}

/* Vertical line between steps */
.stepper-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 64px;
    width: 2px;
    height: calc(100% - 48px);
    background: var(--light-blue-3);
    z-index: 1;
}

/* Right Side */
.lintel-for-right {
    flex: 1;
    max-width: 600px;
    position: relative;
    min-height: 500px;
}

.lintel-for-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.lintel-for-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lintel-for-content h3 {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--dark-blue-2);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lintel-for-content p {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lintel-for-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(6, 34, 81, 0.12);
}

.lintel-for-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .lintel-for-section {
        height: 500vh;
    }

    .lintel-for-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 3rem 1.5rem;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 6rem;
    }

    .lintel-for-left {
        flex: none;
        width: 100%;
    }

    .lintel-for-dropdown {
        margin-bottom: 1.5rem;
    }

    .lintel-for-usertype {
        font-size: 2.5rem;
    }

    .lintel-stepper {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .stepper-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .stepper-item:not(:last-child)::after {
        display: none;
    }

    .stepper-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stepper-label {
        font-size: 0.85rem;
    }

    .lintel-for-right {
        width: 100%;
        max-width: 100%;
        min-height: 250px;
        position: relative;
    }

    .lintel-for-content {
        position: absolute;
        width: 100%;
    }

    .lintel-for-content h3 {
        font-size: 1.75rem;
    }

    .lintel-for-content p {
        font-size: 1rem;
    }

    .lintel-for-options {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .lintel-for-section {
        height: 450vh;
    }

    .lintel-for-dropdown {
        margin-bottom: 1rem;
    }

    .lintel-for-usertype {
        font-size: 2rem;
    }

    .lintel-for-usertype .dropdown-arrow {
        width: 20px;
        height: 20px;
    }

    .lintel-for-content h3 {
        font-size: 1.5rem;
    }

    .stepper-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .stepper-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   FROM SETUP TO AUTOPILOT SECTION
   ============================================ */
.setup-section {
    padding: 5rem 2rem;
    background: var(--off-white);
    overflow: hidden;
}

/* Slide-in animations */
.setup-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.setup-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.setup-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.setup-section.in-view .setup-slide-left,
.setup-section.in-view .setup-slide-right,
.setup-section.in-view .setup-slide-up {
    opacity: 1;
    transform: translate(0);
}

.setup-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.setup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.setup-container h2 {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--dark-blue-2);
    margin: 0;
}

/* Tabs */
.setup-tabs {
    display: inline-flex;
    gap: 0.5rem;
    background: var(--off-white);
    padding: 0.35rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(6, 34, 81, 0.08);
    position: relative;
}

.tab-slider {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    height: calc(100% - 0.7rem);
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(6, 34, 81, 0.1);
    transition: all 0.3s ease;
    z-index: 0;
}

.setup-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.setup-tab:hover {
    color: #1a1a1a;
}

.setup-tab.active {
    color: #1a1a1a;
}

.setup-tab .tab-icon {
    width: 20px;
    height: 20px;
}

/* Card */
.setup-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(6, 34, 81, 0.06);
    display: grid;
}

/* Content - all stack in same grid cell */
.setup-content {
    grid-row: 1;
    grid-column: 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.setup-content.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Steps */
.setup-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 5rem;
    text-align: left;
}

.setup-step {
    position: relative;
    min-width: 180px;
}

.step-label {
    display: inline-block;
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: var(--off-white);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.step-icon {
    margin-bottom: 2.5rem;
}

.step-icon img {
    width: 38px;
    height: 38px;
}

.step-line {
    position: absolute;
    top: 75px;
    left: 75px;
    width: calc(100% - 35px);
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.setup-step:last-child .step-line {
    display: none;
}

.setup-step h4 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.setup-step ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.setup-step li {
    font-family: 'Garet', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    padding: 0.35rem 0;
    padding-left: 1rem;
    position: relative;
    white-space: nowrap;
}

.setup-step li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #003986;
    border-radius: 50%;
}

/* Setup Section Responsive */
@media (max-width: 768px) {
    .setup-section {
        padding: 3rem 1rem;
    }

    .setup-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .setup-container h2 {
        font-size: 2rem;
    }

    .setup-tabs {
        gap: 0rem;
        padding: 0.35rem;
        width: auto;
        max-width: 400px;
    }

    .setup-tab {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        gap: 0.5rem;
    }

    .setup-tab .tab-icon {
        width: 20px;
        height: 20px;
    }

    .setup-card {
        padding: 2rem 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .setup-content {
        top: 2rem;
        left: 1.5rem;
        right: 1.5rem;
    }

    .setup-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .setup-step {
        display: grid;
        grid-template-columns: 50px 1fr;
        grid-template-rows: auto auto auto;
        gap: 0 1.25rem;
        padding: 1.75rem 0;
        min-width: unset;
        border-bottom: none;
    }

    .setup-step:last-child {
        padding-bottom: 0;
    }

    .setup-step:first-child {
        padding-top: 0;
    }

    .step-icon {
        grid-row: 1 / 4;
        grid-column: 1;
        margin-bottom: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 0;
    }

    .step-icon img {
        width: 42px;
        height: 42px;
    }

    .step-label {
        grid-row: 1;
        grid-column: 2;
        justify-self: start;
        width: auto;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        padding: 0.35rem 0.85rem;
        background: var(--off-white);
        color: var(--text-muted);
        border-radius: 50px;
    }

    .setup-step h4 {
        grid-row: 2;
        grid-column: 2;
        font-size: 1.2rem;
        font-weight: 500;
    }

    .setup-step ul {
        grid-row: 3;
        grid-column: 2;
    }

    .setup-step li {
        font-size: 1rem;
        padding: 0.4rem 0;
        padding-left: 1.35rem;
        white-space: normal;
        line-height: 1.4;
    }

    /* Vertical line between steps */
    .step-line {
        display: block;
        position: absolute;
        top: 40%;
        left: 19px;
        width: 1px;
        height: 8rem;
        background: rgba(0, 0, 0, 0.12);
    }

    .setup-step:last-child .step-line {
        display: none;
    }
}

/* ============================================
   MADE FOR SECTION
   ============================================ */
.made-for-section {
    height: 450vh;
    /* More scroll distance per word */
    position: relative;
    background: #f6f6f6;
}

.made-for-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.made-for-subtitle {
    font-family: 'Garet', sans-serif;
    font-size: 1.5rem;
    color: #7a8aa3;
    margin-bottom: 3rem;
}

.made-for-words {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.made-for-word {
    position: absolute;
    font-family: 'Agrandir', sans-serif;
    font-size: 15rem;
    /* font-size: 10rem; */
    font-weight: 600;
    background: linear-gradient(180deg, #4a6fa5 0%, #062251 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.made-for-word.active {
    opacity: 1;
    transform: translateY(0);
}

.made-for-word.exit {
    opacity: 0;
    transform: translateY(-40px);
}

/* Made For Responsive */

/* Medium-large screens (992px - 1199px) */
@media (max-width: 1199px) {
    .made-for-word {
        font-size: 7rem;
    }

    .made-for-words {
        height: 110px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .made-for-section {
        height: 350vh;
    }

    .made-for-subtitle {
        font-size: 1.3rem;
    }

    .made-for-word {
        font-size: 7rem;
    }

    .made-for-words {
        height: 90px;
    }
}

/* Small tablets / large phones (576px - 767px) */
@media (max-width: 767px) {
    .made-for-section {
        height: 350vh;
    }

    .made-for-subtitle {
        font-size: 1.1rem;
    }

    .made-for-word {
        font-size: 7rem;
    }

    .made-for-words {
        height: 70px;
    }
}

/* Mobile phones (under 576px) */
@media (max-width: 575px) {
    .made-for-section {
        height: 350vh;
    }

    .made-for-subtitle {
        font-size: 1rem;
    }

    .made-for-word {
        font-size: 5rem;
    }

    .made-for-words {
        height: 50px;
    }
}

/* ============================================
   BUILT DIFFERENTLY SECTION
   ============================================ */
.built-diff-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.built-diff-container {
    max-width: 1200px;
    margin: 0 auto;
}

.built-diff-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

.built-diff-left h2 {
    font-family: 'Agrandir', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--dark-blue-2);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.built-diff-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--dark-blue-2);
    color: white;
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.built-diff-btn:hover {
    background: var(--dark-blue-1);
}

.built-diff-right {
    max-width: 400px;
}

.built-diff-right p {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cards Container */
.built-diff-cards {
    display: flex;
    gap: 1rem;
}

/* Individual Card */
.diff-card {
    flex: 1;
    min-height: 280px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

/* Collapsed State (dark blue) */
.diff-card .diff-card-collapsed {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 2rem;
    background: var(--dark-blue-2);
    border-radius: 24px;
    opacity: 1;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 2;
}

.diff-card .diff-card-collapsed h3 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.diff-card .diff-arrow {
    color: white;
    align-self: flex-end;
}

/* Expanded State (white) */
.diff-card .diff-card-expanded {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(6, 34, 81, 0.1);
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.diff-card .diff-card-content {
    flex: 1;
}

.diff-card .diff-card-content h3 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-blue-2);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.diff-card .diff-card-content p {
    font-family: 'Garet', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.diff-card .diff-card-image {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 12px;
    overflow: hidden;
}

.diff-card .diff-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Active State */
.diff-card.active {
    flex: 1.8;
}

.diff-card.active .diff-card-collapsed {
    opacity: 0;
    pointer-events: none;
}

.diff-card.active .diff-card-expanded {
    opacity: 1;
    z-index: 3;
}

/* Built Differently Responsive */
@media (max-width: 1200px) {
    .diff-card {
        min-height: 220px;
    }

    .diff-card .diff-card-collapsed {
        padding: 1.5rem;
    }

    .diff-card .diff-card-collapsed h3 {
        font-size: 1.25rem;
    }

    .diff-card .diff-card-expanded {
        padding: 1.25rem;
    }

    .diff-card .diff-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .diff-card .diff-card-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .built-diff-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .built-diff-right {
        max-width: 100%;
    }

    .built-diff-left h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .built-diff-cards {
        flex-direction: column;
        gap: 1rem;
    }

    .diff-card {
        min-height: auto;
        flex: none;
        cursor: default;
        pointer-events: none;
    }

    .diff-card.active {
        flex: none;
    }

    /* Hide collapsed state on mobile */
    .diff-card .diff-card-collapsed {
        display: none;
    }

    /* Always show expanded state on mobile */
    .diff-card .diff-card-expanded {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        padding: 1.5rem;
        opacity: 1;
        z-index: auto;
    }

    .diff-card.active .diff-card-collapsed {
        display: none;
    }

    .diff-card .diff-card-content {
        flex: 1;
    }

    .diff-card .diff-card-content h3 {
        margin-bottom: 0.75rem;
    }

    .diff-card .diff-card-image {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

/* ============================================
   FOUNDING STORY SECTION
   ============================================ */
.founding-story-section {
    padding: 8rem 2rem;
    background: var(--dark-blue-2);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.founding-story-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.founding-story-slider {
    position: relative;
    height: 320px;
}

.founding-slide {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.founding-slide.active {
    position: absolute;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
    opacity: 1;
    animation: clipReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.founding-slide.exit {
    position: absolute;
    animation: clipExit 0.5s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
}

@keyframes clipReveal {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes clipExit {
    from {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
    to {
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
}

.founding-number {
    font-family: 'Agrandir', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1.1;
    flex-shrink: 0;
    min-width: 240px;
    text-align: left;
}

.founding-slide.active .founding-number {
    animation: numberFlash 0.8s ease-out forwards;
}

@keyframes numberFlash {
    0% {
        color: rgba(255, 255, 255, 0.15);
    }
    30% {
        color: rgba(255, 255, 255, 1);
    }
    100% {
        color: rgba(255, 255, 255, 0.15);
    }
}

.founding-content {
    flex: 1;
    padding-top: 0.25rem;
}

.founding-heading {
    font-family: 'Garet', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founding-content p {
    font-family: 'Garet', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    margin-bottom: 1.5rem;
}

.founding-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.founding-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.founding-story-section .author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.founding-story-section .author-name {
    font-family: 'Garet', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.founding-story-section .author-role {
    font-family: 'Garet', sans-serif;
    font-size: 1rem;
    color: #9ca3af;
}


.founding-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6rem;
}

.founding-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.progress-bar {
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: white;
    border-radius: 2px;
}

.progress-bar.done::after {
    width: 100%;
}

.progress-bar.active::after {
    animation: progressFill 6s linear forwards;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

.slide-counter {
    font-family: 'Garet', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 1.5rem;
    letter-spacing: 0.1em;
}

.founding-arrows {
    display: flex;
    gap: 0.75rem;
}

.founding-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.founding-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

/* Smaller laptops - founding story */
@media (max-width: 1200px) {
    .founding-story-section {
        padding: 6rem 2rem;
        min-height: auto;
    }

    .founding-number {
        font-size: 7rem;
        min-width: 180px;
    }

    .founding-content p {
        font-size: 1.5rem;
    }

    .founding-story-slider {
        height: 200px;
    }

    .founding-slide {
        gap: 2rem;
    }
}

/* Tablet - founding story */
@media (max-width: 991px) {
    .founding-story-section {
        padding: 5rem 1.5rem;
    }

    .founding-number {
        font-size: 6rem;
        min-width: 140px;
    }

    .founding-content p {
        font-size: 1.35rem;
    }

    .founding-heading {
        font-size: 1.1rem;
    }

    .founding-story-slider {
        height: 200px;
    }
}

/* Mobile styles for founding story */
@media (max-width: 768px) {
    .founding-story-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .founding-story-slider {
        height: 350px;
    }

    .founding-slide {
        flex-direction: column;
        gap: 1.5rem;
    }

    .founding-number {
        font-size: 5rem;
    }

    .founding-content p {
        font-size: 1.1rem;
    }

    .author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .author-info .author-role::before {
        display: none;
    }

    .founding-controls {
        margin-top: 3rem;
    }

    .progress-bar {
        width: 35px;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 5rem 2rem;
    background: var(--off-white);
    position: relative;
}


.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-family: 'Agrandir', sans-serif;
    font-size: 7.5rem;
    font-weight: 500;
    background: linear-gradient(180deg, #003986 0%, #ACCAEC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    line-height: 1;
}

.pricing-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    max-width: 420px;
    background: white;
    border: none;
    border-radius: 20px;
    padding: 2rem 1.8rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #003986;
}

.pricing-card.featured:hover {
    box-shadow: 0 8px 40px rgba(0, 57, 134, 0.15);
}


.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pricing-card h3 {
    font-family: 'Garet', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    min-height: 1.5rem;
}

.pricing-header h3 {
    margin-bottom: 0;
}

.pricing-badge {
    background: #1a1a1a;
    color: white;
    font-family: 'Garet', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.pricing-subtitle {
    display: none;
}

.pricing-amount {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
}

.pricing-amount .price {
    font-family: 'Agrandir', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #003986;
}

.pricing-amount .price.custom {
    font-size: 3.5rem;
}

.pricing-amount .period {
    font-family: 'Garet', sans-serif;
    font-size: 1rem;
    color: #999;
    margin-left: 0.15rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 50px;
    background: #003986;
    color: white;
    font-family: 'Garet', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.pricing-btn:hover {
    background: #002a66;
    color: white;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pricing-features li {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.pricing-features li.included {
    color: #1a1a1a;
}

.pricing-features li.not-included {
    color: #b0b8c4;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-size: contain;
}

.pricing-features li.included::before {
    background: transparent;
    border: 1.5px solid #555;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23555'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
}

.pricing-features li.not-included::before {
    background: #d0d5dd;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
}

/* Pricing Responsive */



/* Smaller laptops */
@media (max-width: 1200px) {
    .pricing-title {
        font-size: 4.5rem;
    }

    .pricing-card {
        max-width: 340px;
        padding: 1.8rem 1.2rem;
    }

    .pricing-amount .price {
        font-size: 2.4rem;
    }

    .pricing-amount .price.custom {
        font-size: 2.4rem;
    }

    .pricing-cards {
        gap: 1rem;
    }
}

@media (max-width: 991px) {
    .pricing-title {
        font-size: 4rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .pricing-title {
        font-size: 3rem;
    }

    .pricing-amount .price {
        font-size: 2.2rem;
    }

    .pricing-amount .price.custom {
        font-size: 2.2rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-family: 'Agrandir', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #003986;
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #003986;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #003986;
    padding: 8px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #003986;
}

.author-role {
    font-family: 'Garet', sans-serif;
    font-size: 0.85rem;
    color: #6b9dd4;
}

/* Testimonials Responsive */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 2rem;
    background: var(--off-white);
    position: relative;
    z-index: 10;
}

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

.faq-title {
    font-family: 'Agrandir', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #003986;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.5s ease-in-out;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: rgba(0, 57, 134, 0.01);
}

.faq-question span:first-child {
    font-family: 'Garet', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #003986;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid #003986;
    border-bottom: 2px solid #003986;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 0.4s ease-in-out;
}

.faq-item.active .faq-icon::before {
    transform: translate(-50%, -30%) rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    font-family: 'Garet', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: left;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question span:first-child {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 1.75rem;
    }

    .faq-subtitle {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question span:first-child {
        font-size: 0.9rem;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-title {
    font-family: 'Agrandir', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #003986;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.team-card {
    perspective: 1000px;
    height: 400px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.team-card-front {
    background: #e8ecf3;
}

.team-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    text-align: left;
}

.team-card-overlay h3 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.team-card-overlay p {
    font-family: 'Garet', sans-serif;
    font-size: 0.9rem;
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.team-card-back {
    background: #003986;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    text-align: left;
}

.team-back-content {
    flex: 1;
}

.team-card-back h3 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.team-card-back .team-role {
    font-family: 'Garet', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.team-card-back .team-bio {
    font-family: 'Garet', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.team-socials {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
}

.team-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    transition: background 0.3s ease;
}

.team-socials a:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Team Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-card {
        height: 350px;
    }
}

/* ============================================
   SITE CONTENT WRAPPER (for sticky reveal footer)
   ============================================ */
.site-content {
    position: relative;
    z-index: 2;
    background: var(--off-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: var(--dark-blue-2);
    padding: 5rem 0 0;
    overflow: hidden;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 140px;
    height: 70px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-description {
    font-family: 'Garet', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-family: 'Garet', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-column h4 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

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

.footer-column li {
    margin-bottom: 0.85rem;
}

.footer-column a {
    font-family: 'Garet', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Garet', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-big-text {
    font-family: 'Agrandir', sans-serif;
    font-size: 18vw;
    font-weight: 700;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1;
    max-width: 1200px;
    margin: 2rem auto 0;
    /* padding: 0.1em 2rem 0; */
    user-select: none;
    white-space: nowrap;
    transform: scale(0.85);
    transform-origin: center bottom;
    will-change: transform;
}

/* 2K monitors and above */
@media (min-width: 2000px) {
    .footer-big-text {
        max-width: none;
        font-size: 16.5vw;
    }
}

@media (max-width: 1680px) {
    .footer-big-text {
        font-size: 22.5vw;
        max-width: 1200px;
    }
}

/* Footer Responsive */
@media (max-width: 1440px) {
    .footer-big-text {
        font-size: 25vw;
    }
}

@media (max-width: 1280px) {
    .footer-big-text {
        font-size: 28vw;
    }
}

@media (max-width: 1024px) {
    /* Disable sticky reveal footer on mobile/tablet */
    .footer {
        position: relative;
        padding: 3rem 0 0;
    }

    .footer-container{
        padding: 0 2rem;
    }

    .site-content {
        margin-bottom: 0 !important;
    }

    .footer-logo-icon {
        width: 110px;
        height: 55px;
    }

    .footer-description {
        font-size: 0.95rem;
    }

    .footer-status {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.95rem;
    }

    .footer-big-text {
        font-size: 27.5vw;
        transform: scale(1) !important;
    }
}

@media (max-width: 991px) {
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-content {
        flex-direction: column;
        margin-bottom: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-icon {
        width: 100px;
        height: 50px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-status {
        font-size: 0.75rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-column {
        flex: 1;
        min-width: 140px;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    .footer-big-text {
        font-size: 26vw;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        margin-bottom: 2rem;
    }

    .footer-logo-icon {
        width: 90px;
        height: 45px;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .footer-status {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        margin-top: 1rem;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-column {
        min-width: 0;
    }

    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.85rem;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    .footer-column li {
        margin-bottom: 0.7rem;
    }

    .footer-big-text {
        font-size: 25.5vw;
    }
}

/* ======================================================================================== */


/* ============================================
   MEET LINTELAI AUTOMATION SECTION
   ============================================ */
.modules-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

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

.modules-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modules-header h2 {
    font-family: 'Garet', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue-2);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modules-header p {
    font-family: 'Garet', sans-serif;
    font-size: 1.125rem;
    color: var(--text-muted);
}

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

.module-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(6, 34, 81, 0.06);
}

/* Large card spans 2 columns */
.module-card.module-large {
    grid-column: span 2;
}

/* Small card spans 1 column */
.module-card.module-small {
    grid-column: span 1;
}

.module-card h3 {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--dark-blue-2);
    margin-bottom: 0.75rem;
}

.module-card p {
    font-family: 'Garet', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-image {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.module-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .module-card.module-large,
    .module-card.module-small {
        grid-column: span 1;
    }

    .modules-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .module-card {
        padding: 1.5rem;
    }

    .modules-header h2 {
        font-size: 1.75rem;
    }

    .module-card h3 {
        font-size: 1.25rem;
    }

    .module-card p {
        font-size: 0.875rem;
    }
}

/* ============================================
   FLOATING BOOK A DEMO BUTTON
   ============================================ */
.floating-demo-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #062251;
    font-family: 'Agrandir', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 2rem 0.75rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-btn-lottie {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.floating-demo-btn.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    animation: pulseGlow 2s ease-in-out infinite;
}

.floating-demo-btn:hover {
    transform: translateX(-50%) translateY(0) scale(1.02);
}

/* Slide to right side when in scroll-driven sections */
.floating-demo-btn.slide-right {
    transform: translateX(calc(43vw - 50% - 30px)) translateY(0);
}

.floating-demo-btn.slide-right:hover {
    transform: translateX(calc(43vw - 50% - 30px)) translateY(0) scale(1.02);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(172, 202, 236, 0.3),
            0 0 30px rgba(0, 57, 134, 0.15);
    }

    50% {
        box-shadow:
            0 0 15px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(172, 202, 236, 0.4),
            0 0 45px rgba(0, 57, 134, 0.25);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-demo-btn {
        bottom: 25px;
        padding: 0.6rem 1.5rem 0.6rem 0.75rem;
        font-size: 1rem;
    }

    .floating-btn-lottie {
        width: 32px;
        height: 32px;
    }

    /* Keep centered on mobile, disable slide-right */
    .floating-demo-btn.slide-right {
        transform: translateX(-50%) translateY(0);
    }

    .floating-demo-btn.slide-right:hover {
        transform: translateX(-50%) translateY(0) scale(1.02);
    }
}