/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.2;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
    padding-top: 60px;
}

/* Remove white space from the very top of the page, keep header edge-to-edge */
body > .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
} 

/* Subtle pop effect */
.container {
    animation: subtlePop 0.6s ease-out;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

@keyframes subtlePop {
    from {
        transform: scale(0.98);
    }
    to {
        transform: scale(1);
    }
}


.header {
    width: 100%;
    padding: 19px 16px 19px 4px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1300;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}

.navbar-left {
    flex-shrink: 0;
}

.navbar-center {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}
}

/* Solutions dropdown */
.nav-item { position: relative; }
.nav-trigger { display: inline-flex; align-items: center; }
.nav-solutions .nav-trigger::after {
    content: '⌵';
    font-size: 14px;
    margin-left: 6px;
    color: currentColor;
    line-height: 1;
    vertical-align: middle;
    font-weight: 400;
    transform: translateY(-2px);
    display: inline-block;
}
.nav-resources .nav-trigger::after {
    content: '⌵';
    font-size: 14px;
    margin-left: 6px;
    color: currentColor;
    line-height: 1;
    vertical-align: middle;
    font-weight: 400;
    transform: translateY(-2px);
    display: inline-block;
}

.nav-solutions {
    position: relative;
}

.nav-resources {
    position: relative;
}

.solutions-menu {
    position: absolute;
    top: calc(100% + 28px);
    left: 0;
    width: min(620px, calc(100vw - 80px));
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1500;
    overflow: hidden;
    transform: translateY(-6px) scale(0.99);
    transform-origin: top center;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transition: opacity 300ms cubic-bezier(.2,.8,.2,1), transform 300ms cubic-bezier(.2,.8,.2,1), visibility 0s 300ms;
}

.solutions-menu::before {
    content: '';
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    height: 23px;
}

.nav-solutions:hover .solutions-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 300ms cubic-bezier(.2,.8,.2,1), transform 300ms cubic-bezier(.2,.8,.2,1), visibility 0s;
}

.resources-menu {
    position: absolute;
    top: calc(100% + 28px);
    left: 0;
    width: min(320px, calc(100vw - 80px));
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1500;
    overflow: hidden;
    transform: translateY(-6px) scale(0.99);
    transform-origin: top center;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transition: opacity 300ms cubic-bezier(.2,.8,.2,1), transform 300ms cubic-bezier(.2,.8,.2,1), visibility 0s 300ms;
}

.resources-menu::before {
    content: '';
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    height: 23px;
}

.nav-resources:hover .resources-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 300ms cubic-bezier(.2,.8,.2,1), transform 300ms cubic-bezier(.2,.8,.2,1), visibility 0s;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solutions-menu-header {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border-bottom: 1px solid #e8e8e8;
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.08) 0 4px, rgba(0,0,0,0.05) 4px 8px);
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
}

.solutions-menu-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.solutions-col { border-right: 1px solid #e8e8e8; }
.solutions-col:last-child { border-right: none; }

.solutions-item {
    display: block;
    padding: 18px 18px;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
}
.solutions-col .solutions-item:last-child { border-bottom: none; }
.solutions-item:hover { background: #f9fafb; color: #000000; font-weight: 500; }

.resources-item {
    display: block;
    padding: 18px 18px;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
}
.resources-item:last-child { border-bottom: none; }
.resources-item:hover { background: #f9fafb; color: #000000; font-weight: 500; }

.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    height: auto;
    cursor: pointer;
    text-decoration: none;
}

.logo:hover {
    color: #666666;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 200ms ease, background-color 200ms ease;
    line-height: normal;
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Base underline for smooth transition (use ::before to avoid arrow conflict) */
.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    height: 2px;
    background: #000000;
    opacity: 0;
    transition: opacity 200ms ease;
    pointer-events: none;
    z-index: 5;
}

.nav-link:hover {
    color: #000000;
    background-color: transparent;
}

.nav-solutions:hover > .nav-link::before,
.nav-resources:hover > .nav-link::before {
    opacity: 1;
}

/* Show underline on hover for all nav links */
.navbar-center .nav-link:hover::before,
.navbar-center .nav-link:focus-visible::before,
.nav-link:hover::before,
.nav-link:focus-visible::before {
    opacity: 1;
}

.cta-button {
    background-color: transparent;
    transition: all 200ms cubic-bezier(.5,1.7,.77,1.01) 0s;
    transition-delay: 60ms;
    transition-delay: 60ms;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 2px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    height: auto;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    line-height: 1;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.cta-button::before {
    content: none;
}

/* Remove old nav-related classes */
.header-content,
.nav-container,
.navigation,
.nav-right-section,
.language-selector,
.dropdown-arrow {
    display: none;
}

.nav-container.shortened .cta-button:hover::before {
    left: 100%;
}

.nav-container.shortened .cta-button:hover {
    color: #FFFFFF;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px clamp(48px, 7vw, 140px) 30px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    overflow: visible;
    background-color: #ffffff;
    background-image: linear-gradient(rgba(200, 200, 200, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 200, 200, 0.25) 1px, transparent 1px);
    background-size: 120px 80px;
    background-position: 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 760px;
    width: 100%;
    position: relative;
    z-index: 10;
    isolation: isolate;
    margin: 0 auto;
}

.hero-blog-badge {
    transition: all 320ms cubic-bezier(.5,1.7,.77,1.01) 0s;
    transition-delay: 210ms;
    display: block;
    transition: all 220ms cubic-bezier(.5,1.7,.77,1.01) 0s;
    transition-delay: 80ms;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #e5e7eb;
    padding: 14px 32px;
    border-radius: 0;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0 auto 44px auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hero-blog-badge:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-blog-arrow {
    font-size: 24px;
    font-weight: 300;
    transition: transform 200ms ease;
}

.hero-blog-badge:hover .hero-blog-arrow {
    transform: translateX(4px);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto 0;
    width: fit-content;
}

.hero-demo-button {
    transition: all 320ms cubic-bezier(.5,1.7,.77,1.01) 0s;
    transition-delay: 210ms;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 2px;
    padding: 22px 40px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    font-family: "PP Neue Montreal";
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    box-shadow: none;
    line-height: 1;
    white-space: nowrap;
}

.hero-demo-button:hover {
    background-color: #ffffff;
    border-color: #000000;
    color: #000000;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
}

.badge-dot {
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 50%;
}

.badge-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-title {
    margin: 0;
    margin-top: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    line-height: 1.05;
    font-size: 75px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.15px;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.hero-title-line-3 {
    letter-spacing: 0.25px;
}

.dotted-text {
    font-style: normal;
    background-image:
        radial-gradient(circle at 0px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 3px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 6px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 9px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 12px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 15px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 18px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 21px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 24px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 27px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 30px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 33px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 36px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 39px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 42px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 45px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 48px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 51px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 54px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 57px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 60px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 63px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 66px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 69px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 72px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 75px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 78px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 81px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 84px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 87px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 90px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 93px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 96px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 99px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 102px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 105px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 108px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 111px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 114px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 117px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 120px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 123px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 126px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 129px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 132px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 135px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 138px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 141px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 144px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 147px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 150px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 153px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 156px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 159px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 162px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 165px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 168px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 171px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 174px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 177px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 180px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 183px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 186px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 189px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 192px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 195px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 198px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 201px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 204px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 207px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 210px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 213px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 216px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 219px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 222px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 225px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 228px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 231px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 234px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 237px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 240px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 243px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 246px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 249px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 252px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 255px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 258px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 261px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 264px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 267px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 270px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 273px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 276px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 279px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 282px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 285px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 288px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 291px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 294px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 297px 0px, currentColor 1px, transparent 1px),
        radial-gradient(circle at 300px 0px, currentColor 1px, transparent 1px);
    background-size: 300px 3px;
    background-position: 0 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    letter-spacing: -0.1em;
    text-rendering: optimizeLegibility;
}

/* Rolling Text Animation */
.rolling-text-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    height: 1.1em;
    line-height: 1.1;
}

.rolling-text {
    display: inline-block;
    font-style: normal;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    letter-spacing: -0.08em;
    white-space: nowrap;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0);
    opacity: 1;
    will-change: transform, opacity;
}

.rolling-text-wrapper.rolling-out .rolling-text {
    transform: translateY(-120%);
    opacity: 0;
}

.rolling-text-wrapper.rolling-in .rolling-text {
    transform: translateY(120%);
    opacity: 0;
    animation: rollIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes rollIn {
    from {
        transform: translateY(120%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Typewriter Animation */
.typewriter-text {
    font-style: normal;
    display: inline-block;
    position: relative;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    letter-spacing: -0.08em;
    height: 1em;
    overflow: visible;
    z-index: 1;
    isolation: isolate;
}

.typewriter-content {
    display: inline-block;
    overflow: visible;
    white-space: nowrap;
    width: var(--typewriter-width, auto);
    --typewriter-width: auto;
    vertical-align: bottom;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    letter-spacing: -0.08em;
    color: #000000;
    box-sizing: content-box;
}

.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
    --highlight-progress: 0;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.3) 0%, rgba(129, 140, 248, 0.3) 50%, rgba(192, 132, 252, 0.3) 100%);
    z-index: -1;
    transform: scaleX(var(--highlight-progress, 0));
    transform-origin: left;
    will-change: transform;
    backface-visibility: hidden;
}

.word-before,
.word-after {
    display: inline-block;
    margin: 0;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    color: #100d0db3;
    line-height: 1.4;
    margin: 32px 0 40px 0;
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.005em;
    text-align: center;
    white-space: nowrap;
}

.hero-description-line {
    display: block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-description-line {
        display: inline;
    }
    
    .process-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .process-flow-container {
        padding: 0 40px;
    }
    
    /* New Roadmap */
    .new-roadmap {
        padding: 60px 0;
    }
    
    .new-roadmap-container {
        padding: 0 20px;
    }
    
    .new-roadmap-wrapper {
        min-height: 600px;
        padding: 30px 0;
    }
    
    .new-roadmap-step {
        margin-bottom: 70px;
    }
    
    .new-roadmap-step.step-right {
        padding-left: calc(50% + 60px);
    }
    
    .new-roadmap-step.step-left {
        padding-right: calc(50% + 60px);
    }
    
    .new-roadmap-content {
        max-width: 350px;
    }
    
    .new-roadmap-title {
        font-size: 20px;
    }
    
    .new-roadmap-description {
        font-size: 16px;
    }
    
    .new-roadmap-icon {
        width: 50px;
        height: 50px;
    }
}

.hero-demo-button {
    transition: all 320ms cubic-bezier(.5,1.7,.77,1.01) 0s;
    transition-delay: 210ms;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 2px;
    padding: 22px 40px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    font-family: "PP Neue Montreal";
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    box-shadow: none;
    line-height: 1;
    white-space: nowrap;
}

.hero-demo-button:hover {
    background-color: #ffffff;
    border-color: #000000;
    color: #000000;
}

.hero-cta-button {
    transition: all 320ms cubic-bezier(.5,1.7,.77,1.01) 0s;
    transition-delay: 210ms;
    background-color: transparent;
    transition: all 200ms cubic-bezier(.5,1.7,.77,1.01) 0s;
    transition-delay: 60ms;
    transition-delay: 60ms;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 2px;
    padding: 22px 40px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    font-family: "PP Neue Montreal";
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    box-shadow: none;
    line-height: 1;
    white-space: nowrap;
    margin: 0 auto;
}

.hero-cta-button:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

/* Section Container */
.container-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* New Roadmap Section */
.new-roadmap {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.new-roadmap-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.new-roadmap-wrapper {
    position: relative;
    min-height: 800px;
    padding: 40px 0;
}

.new-roadmap-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.new-roadmap-path {
    stroke: #000000;
    stroke-width: 2;
    fill: none;
}

.new-roadmap-step {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 2;
}

.new-roadmap-step.step-1 {
    left: 80px;
    top: 80px;
}

.new-roadmap-step.step-2 {
    left: 200px;
    top: 180px;
}

.new-roadmap-step.step-3 {
    left: 320px;
    top: 280px;
}

.new-roadmap-step.step-4 {
    left: 440px;
    top: 380px;
}

.new-roadmap-step.step-5 {
    left: 560px;
    top: 480px;
}

.new-roadmap-step.step-6 {
    left: 680px;
    top: 580px;
}

.new-roadmap-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #000000;
    border-radius: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.new-roadmap-dot.dot-1 {
    left: 60px;
    top: 80px;
}

.new-roadmap-dot.dot-2 {
    left: 180px;
    top: 180px;
}

.new-roadmap-dot.dot-3 {
    left: 300px;
    top: 280px;
}

.new-roadmap-dot.dot-4 {
    left: 420px;
    top: 380px;
}

.new-roadmap-dot.dot-5 {
    left: 540px;
    top: 480px;
}

.new-roadmap-dot.dot-6 {
    left: 660px;
    top: 580px;
}

.new-roadmap-content {
    max-width: 500px;
    flex: 1;
}

.new-roadmap-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.new-roadmap-description {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}

.new-roadmap-title .text-faded,
.new-roadmap-description .text-faded {
    color: #000000;
    opacity: 0.4;
}

.new-roadmap-title em {
    font-style: italic;
}

/* Process Flow Section */
.process-flow {
    padding: 120px 0 40px 0;
    background: #ffffff;
    position: relative;
}

.process-flow-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
    z-index: 1;
}

.process-title {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 44px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 75px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.process-timeline {
    position: relative;
    margin-bottom: 10px;
    z-index: 2;
    padding-top: 45px;
}

.process-timeline-build {
    margin-bottom: 40px;
}

.process-timeline:last-child {
    margin-bottom: 0;
}

.timeline-label {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0;
    position: absolute;
    left: -50px;
    top: 35px;
    z-index: 2;
    line-height: 1;
}

.timeline-label::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 35px;
    width: 4px;
    height: 4px;
    background-color: #000000;
    border-radius: 50%;
    margin-top: -2px;
}

.process-timeline-build .timeline-label::after {
    width: 0;
    height: 0;
    background-color: transparent;
    border-radius: 0;
    border-left: 4px solid #000000;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    margin-top: -3px;
    left: -1px;
}

.timeline-line {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-left: 250px;
    padding-top: 0;
    padding-right: 0;
    gap: 60px;
    min-height: 140px;
    overflow: visible;
}

.timeline-line::before {
    content: '';
    position: absolute;
    left: -130px;
    top: 25px;
    width: calc(100% + 280px);
    height: 1px;
    background-color: #000000;
    z-index: 1;
}

.process-timeline-build .timeline-line::before {
    left: -50px;
    width: calc(100% + 150px);
    background-color: transparent;
    background-image: linear-gradient(to right, #000000 0%, #000000 88%, rgba(0, 0, 0, 0.95) 89%, rgba(0, 0, 0, 0.9) 90%, rgba(0, 0, 0, 0.8) 91%, rgba(0, 0, 0, 0.7) 92%, rgba(0, 0, 0, 0.6) 93%, rgba(0, 0, 0, 0.5) 94%, rgba(0, 0, 0, 0.4) 95%, rgba(0, 0, 0, 0.3) 96%, rgba(0, 0, 0, 0.2) 97%, rgba(0, 0, 0, 0.1) 98%, rgba(0, 0, 0, 0.05) 99%, rgba(0, 0, 0, 0) 100%);
}

.process-timeline-deliver .timeline-line::before {
    left: -130px;
    width: calc(100% + 280px);
    background-color: transparent;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 1%, rgba(0, 0, 0, 0.1) 2%, rgba(0, 0, 0, 0.2) 3%, rgba(0, 0, 0, 0.3) 4%, rgba(0, 0, 0, 0.4) 5%, rgba(0, 0, 0, 0.5) 6%, rgba(0, 0, 0, 0.6) 7%, rgba(0, 0, 0, 0.7) 8%, rgba(0, 0, 0, 0.8) 9%, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.95) 11%, #000000 12%);
}

.timeline-step {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 280px;
    padding-top: 45px;
    margin-top: 0;
    align-self: flex-start;
}

.timeline-step:last-child {
    margin-right: 0;
}

.process-timeline-deliver .timeline-step {
    width: 280px;
}

.step-number {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    position: absolute;
    left: 10px;
    top: -10px;
    z-index: 2;
    white-space: nowrap;
    line-height: 1;
}

.step-marker {
    position: absolute;
    left: 10px;
    top: 25px;
    width: 4px;
    height: 4px;
    background-color: #000000;
    border-radius: 50%;
    z-index: 3;
    margin-top: -2px;
}

.step-content {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-left: 10px;
}

.step-keyword {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #000000;
    border-radius: 6px;
    margin-bottom: 10px;
    white-space: nowrap;
    background-color: #ffffff;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.step-keyword::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #000000;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    display: block;
    border-radius: 6px;
}

.step-keyword:hover::before {
    width: 100%;
}

.step-keyword:hover {
    color: #ffffff !important;
}

.step-keyword:hover::before {
    width: 100%;
}

.step-description {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin-top: 0;
}

.process-background-element {
    position: absolute;
    right: -250px;
    top: -150px;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(200, 200, 200, 0.3) 0%, rgba(180, 180, 180, 0.2) 40%, transparent 70%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

/* Tools Section */
.tools {
    padding: 20px 0;
    background: #ffffff;
}
.tools-container {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}
.tools-label {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.tools-logos {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    margin-bottom: 0;
}

.tools-logos::before,
.tools-logos::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.tools-logos::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.tools-logos::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.tools-logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 15s linear infinite;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.tool-logo {
    height: 36px;
    width: auto;
    opacity: 0.8;
    transition: all 0.2s ease;
    /* Force color display and remove any grayscale */
    filter: hue-rotate(var(--hue, 0deg)) saturate(1.3) brightness(1.1) !important;
    -webkit-filter: hue-rotate(var(--hue, 0deg)) saturate(1.3) brightness(1.1) !important;
    -moz-filter: hue-rotate(var(--hue, 0deg)) saturate(1.3) brightness(1.1) !important;
    -ms-filter: hue-rotate(var(--hue, 0deg)) saturate(1.3) brightness(1.1) !important;
}
.tool-logo:hover {
    opacity: 1;
    transform: translateY(-1px);
    filter: hue-rotate(var(--hue, 0deg)) saturate(1.6) brightness(1.2) !important;
    -webkit-filter: hue-rotate(var(--hue, 0deg)) saturate(1.6) brightness(1.2) !important;
    -moz-filter: hue-rotate(var(--hue, 0deg)) saturate(1.6) brightness(1.2) !important;
    -ms-filter: hue-rotate(var(--hue, 0deg)) saturate(1.6) brightness(1.2) !important;
}

.tool-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    opacity: 0.8;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.tool-logo-wrapper:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.tool-logo-wrapper img {
    height: 36px;
    width: auto;
    display: block;
    filter: hue-rotate(var(--hue, 0deg)) saturate(1.3) brightness(1.1) !important;
    -webkit-filter: hue-rotate(var(--hue, 0deg)) saturate(1.3) brightness(1.1) !important;
    -moz-filter: hue-rotate(var(--hue, 0deg)) saturate(1.3) brightness(1.1) !important;
    -ms-filter: hue-rotate(var(--hue, 0deg)) saturate(1.3) brightness(1.1) !important;
}

.tool-logo-wrapper:hover img {
    filter: hue-rotate(var(--hue, 0deg)) saturate(1.6) brightness(1.2) !important;
    -webkit-filter: hue-rotate(var(--hue, 0deg)) saturate(1.6) brightness(1.2) !important;
    -moz-filter: hue-rotate(var(--hue, 0deg)) saturate(1.6) brightness(1.2) !important;
    -ms-filter: hue-rotate(var(--hue, 0deg)) saturate(1.6) brightness(1.2) !important;
}

.tool-logo-text {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    line-height: 36px;
    height: 36px;
    display: flex;
    align-items: center;
}

/* AWS logo black/white filter - ensure same size and alignment */
.tool-logo[alt="AWS"] {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) brightness(0.1) !important;
    -webkit-filter: grayscale(100%) brightness(0.1) !important;
    -moz-filter: grayscale(100%) brightness(0.1) !important;
    -ms-filter: grayscale(100%) brightness(0.1) !important;
}

.tool-logo[alt="AWS"]:hover {
    filter: grayscale(100%) brightness(0.2) !important;
    -webkit-filter: grayscale(100%) brightness(0.2) !important;
    -moz-filter: grayscale(100%) brightness(0.2) !important;
    -ms-filter: grayscale(100%) brightness(0.2) !important;
}

/* Salesforce logo - change cloud color to black, keep text unchanged */
.tool-logo[alt="Salesforce"] {
    filter: sepia(100%) saturate(0%) brightness(0.7) contrast(2.5) !important;
    -webkit-filter: sepia(100%) saturate(0%) brightness(0.7) contrast(2.5) !important;
    -moz-filter: sepia(100%) saturate(0%) brightness(0.7) contrast(2.5) !important;
    -ms-filter: sepia(100%) saturate(0%) brightness(0.7) contrast(2.5) !important;
}

/* Timeline Roadmap Section */
.timeline-roadmap {
  padding: 100px 0 0px 0;
  background: #ffffff;
  position: relative;
}

.timeline-roadmap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.timeline-roadmap-wrapper {
  position: relative;
  min-height: 800px;
  padding: 0;
}

.timeline-center-line {
  position: absolute;
  left: 50%;
  width: 2px;
  background-color: #000000;
  transform: translateX(-50%);
  z-index: 1;
  top: var(--line-top, 0);
  height: var(--line-height, 0);
}

.timeline-step-card {
  position: relative;
  width: calc(50% - 25px);
  max-width: calc(50% - 25px);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 30px;
  box-shadow: none;
  z-index: 2;
}

.timeline-step-card:last-child {
  margin-bottom: 0;
}

.timeline-step-card.step-1 {
  left: 0;
  right: auto;
  margin-left: 0;
  margin-right: auto;
  width: calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.timeline-step-card.step-2 {
  left: auto;
  right: 0;
  margin-left: auto;
  margin-right: 0;
  width: calc(50% - 35px);
  max-width: calc(50% - 35px);
}

.timeline-step-card.step-3 {
  left: 0;
  right: auto;
  margin-left: 0;
  margin-right: auto;
  width: calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.timeline-step-card.step-4 {
  left: auto;
  right: 0;
  margin-left: auto;
  margin-right: 0;
  width: calc(50% - 35px);
  max-width: calc(50% - 35px);
}

.timeline-step-card.step-5 {
  left: 0;
  right: auto;
  margin-left: 0;
  margin-right: auto;
  width: calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.timeline-step-card.step-6 {
  left: auto;
  right: 0;
  margin-left: auto;
  margin-right: 0;
  width: calc(50% - 35px);
  max-width: calc(50% - 35px);
}

.timeline-step-card .step-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #000000;
  border-radius: 50%;
  top: 50%;
  z-index: 3;
}

/* Ripple effect for first and last markers */
.timeline-step-card.step-1 .step-marker::before,
.timeline-step-card.step-6 .step-marker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000000;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: ripple 2s ease-out infinite;
  z-index: -1;
}

.timeline-step-card.step-1 .step-marker::after,
.timeline-step-card.step-6 .step-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000000;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  animation: ripple 2s ease-out infinite 0.5s;
  z-index: -1;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}


.timeline-step-card.step-1 .step-marker,
.timeline-step-card.step-3 .step-marker,
.timeline-step-card.step-5 .step-marker {
  right: -20px;
  left: auto;
  transform: translate(50%, -50%);
}

.timeline-step-card.step-2 .step-marker,
.timeline-step-card.step-4 .step-marker,
.timeline-step-card.step-6 .step-marker {
  left: -35px;
  right: auto;
  transform: translate(-50%, -50%);
}


.timeline-step-card .step-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 12px;
  line-height: 30px;
  letter-spacing: 0px;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}

.timeline-step-card .step-title .text-faded {
  color: #000000;
  opacity: 0.4;
}


/* Responsive styles for timeline roadmap */
@media (max-width: 1024px) {
  .timeline-step-card {
    width: 380px;
  }
  
  .timeline-step-card.step-1,
  .timeline-step-card.step-3,
  .timeline-step-card.step-5 {
    left: calc(50% - 420px);
  }
  
  .timeline-step-card.step-2,
  .timeline-step-card.step-4 {
    left: calc(50% + 40px);
  }
}

@media (max-width: 768px) {
  .timeline-roadmap {
    padding: 80px 0;
  }
  
  .timeline-roadmap-container {
    padding: 0 20px;
  }
  
  .timeline-roadmap-wrapper {
    min-height: auto;
    padding: 20px 0;
  }
  
  .timeline-center-line {
    left: 20px;
  }
  
  .timeline-step-card {
    width: 100%;
    max-width: 500px;
    left: 0 !important;
    margin-left: 60px !important;
    margin-right: 0;
    margin-bottom: 30px;
    padding: 0;
  }
  
  .timeline-step-card .step-marker {
    left: -50px !important;
    right: auto !important;
  }
  
  .timeline-step-card .step-title {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media (max-width: 600px) {
  .timeline-step-card .step-title {
    font-size: 18px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .timeline-step-card {
    margin-left: 50px !important;
    padding: 0;
  }
  
  .timeline-step-card .step-marker {
    width: 10px;
    height: 10px;
  }
  
  .timeline-step-card .step-title {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* Founder Quote Section */
.founder-quote {
    padding: 42px 0 20px 0;
    background-color: #ffffff;
    position: relative;
    min-height: 600px;
}

.founder-quote .container-section {
    position: relative;
    min-height: 500px;
    display: block;
    padding-bottom: 30px;
}

.founder-quote-card {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 60px 50px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, width 0s, height 0s;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.founder-quote-card.card-1 {
    position: relative;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}


.founder-quote-card.card-2 {
    position: absolute;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, width 0s, height 0s;
    pointer-events: none;
    margin: 0;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}

.founder-quote-card.card-1.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.founder-quote-card.card-2.revealed {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.quote-navigation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
    width: 100%;
}

.quote-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.quote-dot:hover {
    border-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.2);
}

.quote-dot.active {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8);
}

.founder-quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(255, 255, 255, 0.02) 90%,
        transparent 100%);
    pointer-events: none;
    z-index: 0;
    border-radius: 16px;
}

.founder-quote-card > * {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 110px;
    font-family: 'Revalia', sans-serif;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.quote-text {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
}


.quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
}

.quote-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.quote-author {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive styles for founder quote */
@media (max-width: 768px) {
    .founder-quote {
        padding: 60px 0;
    }
    
    .founder-quote-card {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .quote-icon {
        font-size: 82.5px;
        margin-bottom: 20px;
    }
    
    .quote-text {
        font-size: 22px;
        margin-bottom: 30px;
        white-space: pre-line !important;
    }
    
    .quote-attribution {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .founder-quote-card {
        padding: 30px 20px;
    }
    
    .quote-icon {
        font-size: 68.75px;
    }
    
    .quote-text {
        font-size: 18px;
        white-space: pre-line !important;
    }
    
    .quote-author {
        font-size: 14px;
    }
}

/* FAQ Section */
/* Lead Recovery Calculator Section */
.lead-calculator {
    padding: 0px 0 50px 0;
    margin-top: -40px;
    background-color: #ffffff;
    position: relative;
}

.calculator-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator-title {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 44px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 75px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.calculator-form {
    margin-bottom: 0;
    position: relative;
}

.calculator-input-group {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.calculator-slider-container {
    margin-top: 40px;
    margin-bottom: 0;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.slider-wrapper {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
}

.calculator-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.14);
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.14),
        0 1px 6px rgba(0, 0, 0, 0.07),
        0 0 0 1px rgba(255, 255, 255, 0.021);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: trackGlow 3s ease-in-out infinite;
    animation-delay: 0.3s;
}

.calculator-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--slider-progress, 0%);
    background: linear-gradient(to right, #000000, #1a1a1a);
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: subtleGlow 3s ease-in-out infinite;
    animation-delay: 0.3s;
    pointer-events: none;
    z-index: 0;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 0px rgba(0, 0, 0, 0), 0 0 0px rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.24), 0 0 8px rgba(0, 0, 0, 0.12);
    }
}

@keyframes trackGlow {
    0%, 100% {
        box-shadow: 
            inset 0 1px 2px rgba(0, 0, 0, 0.21),
            0 2px 12px rgba(0, 0, 0, 0.14),
            0 0 0 1px rgba(255, 255, 255, 0.035);
    }
    50% {
        box-shadow: 
            inset 0 1px 2px rgba(0, 0, 0, 0.21),
            0 2px 12px rgba(0, 0, 0, 0.14),
            0 0 0 1px rgba(255, 255, 255, 0.035),
            0 0 5px rgba(0, 0, 0, 0.168),
            0 0 8px rgba(0, 0, 0, 0.084);
    }
}

.slider-tooltip {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #999999;
    pointer-events: none;
    white-space: nowrap;
    animation: subtleBlink 2.5s ease-in-out infinite;
    width: 100%;
    max-width: 650px;
    text-align: center;
}

@keyframes subtleBlink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
}

.calculator-slider:hover ~ .slider-tooltip,
.calculator-slider:active ~ .slider-tooltip {
    animation: none;
    opacity: 1;
}

.slider-tooltip.hidden {
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0);
    position: relative;
    animation: thumbGlow 2s ease-in-out infinite;
}

@keyframes thumbGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0);
    }
    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
    }
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(0, 0, 0, 0.1);
    background: #333333;
}

.calculator-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(0, 0, 0, 0.15);
}

.calculator-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.calculator-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(0, 0, 0, 0.1);
    background: #333333;
}

.calculator-slider::-moz-range-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(0, 0, 0, 0.15);
}

.slider-value-display {
    text-align: center;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin: 15px auto 15px auto;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-value-display span {
    font-family: 'Oxanium', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-right: 4px;
}


.calculator-input {
    flex: 1;
    min-width: 500px;
    max-width: 700px;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.calculator-input::placeholder {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15.5px;
}

.calculator-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.calculator-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    background-color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.calculator-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.calculator-result {
    margin: 30px auto 30px auto;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 16px;
    transition: all 0.3s ease;
    max-width: 800px;
    width: 100%;
}

.result-text {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 1.4em;
    text-align: center;
}

.result-highlight {
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #000000;
    display: inline-block;
    min-width: 0;
    white-space: nowrap;
}

.result-microcopy {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-top: 8px;
}

.calculator-cta {
    margin-top: 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator-cta-button {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #000000;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.calculator-cta-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes rollText {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-100%);
        opacity: 0;
    }
    51% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive styles for Lead Calculator */
@media (max-width: 768px) {
    .lead-calculator {
        padding: 40px 0;
    }
    
    .calculator-content {
        padding: 0 20px;
    }
    
    .calculator-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .calculator-input-group {
        flex-direction: column;
        width: 100%;
    }
    
    .calculator-input {
        width: 100%;
        max-width: 100%;
    }
    
    .calculator-button {
        width: 100%;
    }
    
    .result-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .calculator-title {
        font-size: 24px;
    }
    
    .process-title {
        font-size: 24px;
    }
    
    .result-text {
        font-size: 18px;
    }
}

.faq {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.faq-header {
    text-align: left;
    margin-bottom: 45px;
    padding-left: 70px;
}

.faq-label {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 25px 0;
    width: fit-content;
}

.faq-title {
    font-size: 60px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    font-family: 'Mont', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.3;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
}

.faq-title-icon {
    flex-shrink: 0;
    margin-left: auto;
    align-self: center;
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-link-faq {
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 400 !important;
}

.nav-link-poppins {
    font-family: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 400 !important;
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.active {
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 10px 0;
    padding: 0 40px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #333333;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    transition: transform 0.3s ease;
    margin-left: 20px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    padding-left: 40px;
    padding-right: 40px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 40px 30px 40px;
}

.faq-footer-text {
    text-align: center;
    margin-top: 60px;
    padding: 0 40px;
}

.faq-footer-text p {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}

.faq-reach-out-link {
    color: #000000;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.faq-reach-out-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #000000;
    transform: translateX(-50%);
    transition: width 0.6s ease;
}

.faq-reach-out-link:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 60px 20px 40px;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.footer-column {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.footer-column-right {
    align-items: flex-end;
    justify-content: flex-start;
}

.footer-brand-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000000;
    font-family: 'Mont', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    text-transform: lowercase;
    letter-spacing: -0.01em;
    margin-top: 0;
}

.footer-brand-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444444;
    margin: 0;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Footer Slideshow */
.footer-slides {
    position: relative;
    display: block;
    height: 120px;
    width: 100%;
    background: #fff;
    transition: background 1s cubic-bezier(0.99, 1, 0.92, 1);
    margin-top: 4px;
    overflow: hidden;
}

body.is-sliding .footer-slides {
    background: #fff;
    transition: background 0.3s cubic-bezier(0.99, 1, 0.92, 1);
}


.footer-slide {
    z-index: -1;
    padding: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: z-index 1s ease;
}

.footer-slide.is-active {
    z-index: 19;
    transition: z-index 1s ease;
}

.footer-slide__content {
    position: relative;
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 0;
}

.footer-slide__header {
    z-index: 9;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    overflow-y: hidden;
    transform: translateX(0);
}

.footer-slide__title {
    font-family: 'Montserrat', helvetica, sans-serif;
    font-size: 1.95em;
    font-weight: 700;
    color: #111;
    overflow-y: hidden;
    text-align: left;
    margin: 0;
    padding: 0;
}

.footer-title-line {
    display: block;
    overflow-y: hidden;
    line-height: 1.2;
}

.footer-title-line span {
    display: inline-block;
    transform: translate3d(0, 140%, 0);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.8s ease;
}

.footer-title-line:nth-child(1) span {
    transition-delay: 0.15s;
}

.footer-title-line:nth-child(2) span {
    transition-delay: 0.3s;
}

.footer-slide.is-active .footer-title-line span {
    transform: translate3d(0, 0%, 0);
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s ease;
}

.footer-slide.is-active .footer-title-line:nth-of-type(2n) span {
    transition-delay: 0.2s;
}

.footer-slide__figure {
    z-index: 7;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

body.is-sliding .footer-slide__figure {
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-slide__img {
    position: relative;
    display: block;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 0%;
    width: 100%;
    filter: grayscale(0%);
    transition: height 1s 1.4s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s 0.1s ease;
}

.footer-slide.is-active .footer-slide__img {
    height: 100%;
    opacity: 1;
    transition: height 0.5s 0.3s cubic-bezier(0.77, 0, 0.175, 1), filter 0.4s 0.1s ease;
}

body.is-sliding .footer-slide__img {
    filter: grayscale(0%);
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: 0;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #444444;
}

.footer-nav-list li {
    margin-bottom: 8px;
}

.footer-nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 300;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: color 0.3s ease;
}


.footer-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 75px;
    height: 120px;
    justify-content: center;
}

.footer-nav-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
    height: calc(1.95em * 1.2);
    line-height: calc(1.95em * 1.2);
}

.footer-nav-row:first-child {
    margin-bottom: 0;
    margin-top: 0;
    align-self: flex-end;
}

.footer-nav-row:last-child {
    margin-top: 0;
    margin-bottom: 0;
    align-self: flex-start;
}

.footer-nav-row .footer-nav-link {
    white-space: nowrap;
    font-size: 17px;
    line-height: calc(1.95em * 1.2);
    display: inline-block;
    height: calc(1.95em * 1.2);
    vertical-align: top;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    padding: 2px 4px;
    margin: 0 -4px;
    transition: color 0.3s ease;
    background-color: transparent;
    z-index: 2;
    color: #1a1a1a;
}

.footer-nav-row .footer-nav-link > * {
    position: relative;
    z-index: 3;
}

.footer-nav-row .footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 80%;
    transform: translateY(-50%);
    background-color: #000000;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    display: block;
}

.footer-nav-row .footer-nav-link:hover,
.footer-nav-link:hover {
    color: #ffffff !important;
}

.footer-nav-row .footer-nav-link:hover::before {
    width: 100%;
}

.footer-nav-row:last-child .footer-nav-link:last-child {
    margin-left: 12px;
}

.footer-cta-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-cta-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
    color: #666666;
}

.footer-copyright {
    margin: 0;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    color: #666666;
    text-decoration: none;
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-legal-link:hover {
    color: #000000;
}

.faq-answer-link {
    color: #001a4d;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-answer-link:hover {
    color: #0033cc;
    text-decoration: underline;
    opacity: 0.8;
}

/* --- Hero Message Section (Mont font) --- */
.hero-message-section {
  background: #ffffff;
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-message-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 0 100px;
}
.hero-message-label-dark {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8e8e8;
  padding: 10px 18px;
  border-radius: 20px;
  margin: 0 auto 20px auto;
  width: fit-content;
  gap: 8px;
}

.hero-message-faded {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 44px;
  color: #666666;
  font-weight: 400;
  margin-bottom: 0px;
  line-height: 53px;
  text-align: center;
  letter-spacing: 0px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px 0 20px;
}

.highlighted-text {
  color: #000000;
  font-weight: 500;
}

.hero-message-closer {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 44px;
  color: #000000;
  font-weight: 500;
  margin: 0;
  text-align: center;
  line-height: 53px;
  letter-spacing: 0px;
  padding: 0 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-message-closer em {
  font-style: italic;
}
@media (max-width: 900px) {
  .hero-message-container { max-width: 95vw; }
}
@media (max-width: 600px) {
  .hero-message-section { padding: 80px 0 60px; }
  .hero-message-label-dark { margin-bottom: 18px; }
  .hero-message-faded { font-size: 18px; }
  .hero-message-closer { font-size: 24px; }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-message-section,
.booking,
.faq {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 20px 16px;
    }
    
    .header-content.shortened {
        padding: 20px 16px;
    }
    
    .nav-container.shortened {
        width: 100%;
        padding: 0 32px;
        gap: 24px;
    }

    .navigation {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .hero {
        padding: 60px 16px;
    }
    
    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 48px;
    }
    
    .badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .navigation {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 36px;
    }
    
    .badge {
        font-size: 10px;
        padding: 6px 10px;
    }
    
}

/* Booking Section */
.booking {
    padding: 40px 0 100px 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.03), 0 2px 20px rgba(0, 0, 0, 0.03);
}

.booking-description {
    font-size: 22px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0 auto 40px auto;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 700px;
    text-align: center;
}

.booking-calendar {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e0e0e0;
    min-height: 600px;
}

.booking-calendar #my-cal-inline-30min {
    border-radius: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 56px;
    }
    
}

@media (max-width: 768px) {
    /* Header */
    .nav-container {
        padding: 0 16px;
        gap: 20px;
    }
    
    .navigation {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .cta-button {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    /* Hero */
    .hero {
        padding: 60px 20px;
    }
    
    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 40px;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 14px;
        margin: 30px 0;
        line-height: 1.3;
        max-width: 900px;
    }
    
    /* Sections */
    .booking-title {
        font-size: 32px;
    }
    
    .booking-description {
        font-size: 16px;
    }
    
    .booking-calendar {
        padding: 20px;
        min-height: 500px;
    }
    
    /* Hero Message */
    .hero-message-label-dark {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .hero-message-faded {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .hero-message-closer {
        font-size: 20px;
    }
    
    .hero-message-container {
        padding: 0 20px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 20px 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Header */
    .header-content {
        padding: 0 8px;
    }
    
    .header-content.shortened {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 8px 12px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .nav-container.shortened {
        width: 100%;
        padding: 0 32px;
        gap: 12px;
    }

    .logo {
        font-size: 20px;
    }
    
    .nav-container.shortened .logo {
        color: #000000;
        font-weight: 600;
    }
    
    .navigation {
        gap: 12px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .nav-container.shortened .nav-link {
        color: #000000;
    }
    
    .nav-container.shortened .nav-link:hover {
        color: #666666;
    }
    
    .cta-button {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .nav-container.shortened .cta-button {
        background-color: #000000;
        color: #FFFFFF;
        border: none;
        font-weight: 500;
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .nav-container.shortened .cta-button:hover {
        background-color: #000000;
        border: none;
        color: #FFFFFF;
    }
    
    /* Hero */
    .hero {
        padding: 40px 16px;
        margin-top: 10px;
    }
    
    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 28px;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 13px;
        margin: 20px 0;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .hero-cta-button {
    transition: all 320ms cubic-bezier(.5,1.7,.77,1.01) 0s;
    transition-delay: 210ms;
        font-size: 14px;
        padding: 8px 20px;
    }
    
    /* Sections */
    
    .booking-description {
        font-size: 14px;
    }
    
    .booking-calendar {
        padding: 15px;
        min-height: 400px;
    }
    
    .booking,
    .faq {
        padding: 60px 0;
    }
    
    /* Hero Message */
    .hero-message-label-dark {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .hero-message-faded {
        font-size: 16px;
        line-height: 1.4;
        padding: 15px 10px 0 10px;
    }
    
    .hero-message-closer {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-message-container {
        padding: 0 16px;
    }
    
    .hero-message-section {
        padding: 60px 0;
    }
    
    /* FAQ */
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 16px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-brand-title {
        font-size: 1.2rem;
    }
    
    .footer-column-title {
        font-size: 0.9rem;
    }
    
    .footer-nav-list {
        font-size: 0.85rem;
    }
    
    .footer-cta-button {
        font-size: 0.85rem;
        padding: 10px 24px;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    /* New Roadmap */
    .new-roadmap {
        padding: 40px 0;
    }
    
    .new-roadmap-container {
        padding: 0 16px;
    }
    
    .new-roadmap-wrapper {
        min-height: 500px;
        padding: 20px 0;
    }
    
    .new-roadmap-step {
        margin-bottom: 60px;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .new-roadmap-step.step-right {
        padding-left: 0;
    }
    
    .new-roadmap-step.step-left {
        padding-right: 0;
        flex-direction: column !important;
    }
    
    .new-roadmap-icon {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 20px;
        width: 50px;
        height: 50px;
    }
    
    .new-roadmap-content {
        max-width: 100%;
    }
    
    .new-roadmap-title {
        font-size: 18px;
    }
    
    .new-roadmap-description {
        font-size: 15px;
    }
}

.typewriter-cursor {
    display: block;
    width: 8px;
    height: 100%;
    background-color: rgb(0, 0, 0);
    animation: cursor-blink 0.8s steps(2, start) infinite;
    transform: translateX(2px);
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Case Studies Page */
.case-studies-page {
    min-height: 100vh;
    padding-bottom: 80px;
}

.case-studies-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 80px 40px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

.case-studies-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.case-studies-hero-content p {
    font-size: 20px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.case-studies-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-study-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 32px;
}

.case-study-card:hover {
    border-color: #000000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.case-study-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
}

.case-study-tag {
    background: #f0f0f0;
    color: #666666;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.case-study-description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.metric-label {
    display: block;
    font-size: 12px;
    color: #999999;
}

.case-study-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: gap 200ms ease;
    gap: 6px;
}

.case-study-link:hover {
    gap: 10px;
}

/* Blog Page */
.blog-page {
    min-height: 100vh;
    padding-bottom: 80px;
}

.blog-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 80px 40px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

.blog-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.blog-hero-content p {
    font-size: 20px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
    display: grid;
    gap: 40px;
}

.blog-card {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 40px;
}

.blog-card:last-child {
    border-bottom: none;
}

.blog-card-header {
    margin-bottom: 16px;
}

.blog-card-title {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999999;
}

.blog-date, .blog-author {
    display: inline-flex;
    align-items: center;
}

.blog-card-excerpt {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-tag {
    background: #f0f0f0;
    color: #666666;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.blog-card-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: gap 200ms ease;
    gap: 6px;
}

.blog-card-link:hover {
    gap: 10px;
}

/* Footer */
.footer {
    background: #f8f8f8;
    border-top: 1px solid #e8e8e8;
    padding: 60px 40px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 200ms ease;
}

.footer-section a:hover {
    color: #000000;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
    color: #999999;
}
