/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --le-charcoal: #454545;
    --le-blue: #3a8dff;
    --le-coral: #ff6b5e;
    --le-gold: #ffd666;
    --le-grey: #eaeaea;
    --le-offwhite: #f8f8f8;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--le-charcoal);
    background: var(--le-offwhite);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* Typography System - More sophisticated like premium websites */
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--le-charcoal);
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}

p {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--le-charcoal);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Button System - More refined */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--le-blue);
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #2a7ae5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(58, 141, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--le-charcoal);
    border: 1.5px solid var(--le-grey);
}

.btn-secondary:hover {
    background-color: var(--le-offwhite);
    border-color: var(--le-charcoal);
    color: var(--le-charcoal);
}

/* Navigation - More premium feel */
.nav {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--le-grey);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.nav-brand {
    flex: 0 0 auto;
}

.nav-menu {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.logo:hover {
    opacity: 1;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: var(--le-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.975rem;
    transition: color 0.15s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--le-blue);
}

.nav-link.active,
.nav-link-active {
    color: var(--le-blue) !important;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--le-charcoal);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--le-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--le-blue);
    font-weight: 500;
}

.mobile-nav-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle,
    .mobile-menu-overlay {
        display: flex;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 4rem 0 5rem;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .funnel-img {
        max-width: 80%;
    }
    
    /* Button improvements for mobile */
    .btn-primary,
    .btn-secondary {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
        min-height: 48px; /* Touch-friendly target */
        width: 100%;
        max-width: 280px;
    }
    
    /* Features and Cards Mobile */
    .features {
        padding: 5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .feature-card {
        padding: 2rem;
        text-align: center;
    }
    
    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Leonard Section Mobile */
    .leonard-section,
    .vision-section,
    .cta-section {
        padding: 5rem 0;
    }
    
    .capabilities-list {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .capabilities li {
        font-size: 1rem;
        padding: 0.875rem 0;
        padding-left: 2.25rem;
    }
    
    /* FAQ Mobile Improvements */
    .faq-item {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Section Headers Mobile */
    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 0;
    }
    
    /* Vision Quote Mobile */
    .vision-quote {
        font-size: 1.25rem;
        margin: 2.5rem 0;
        padding: 0 1rem;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-text {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Improved touch targets for mobile links */
    .mobile-nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background-color: rgba(58, 141, 255, 0.1);
    }
    
    /* Improve spacing for mobile content */
    .container {
        padding: 0 1.25rem;
    }
    
    /* Make icons more readable on mobile */
    .icon-circle {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }
}

/* Even smaller screens (phones in portrait) */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .feature-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .capabilities-list {
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.375rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
    
    .vision-quote {
        font-size: 1.125rem;
    }
}

/* Hero Section - Split layout */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, var(--le-offwhite) 0%, #ffffff 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    opacity: 1;
    animation: none;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--le-coral) 0%, #ff8a5b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
    line-height: 1.3;
    padding-bottom: 0.2em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--le-charcoal);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

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

.funnel-img {
    max-width: 85%;
    height: auto;
    display: block;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.how-it-works .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--le-charcoal);
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-it-works-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--le-grey);
}

.process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--le-blue);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--le-charcoal);
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 214, 102, 0.08) 0%, rgba(255, 214, 102, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;<br/>    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 1s ease-out;
}

.use-cases.active::before {
    opacity: 0;
}

.use-cases .container {
    position: relative;
    z-index: 1;
}

.use-cases .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--le-charcoal);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    position: relative;
}

.vertical-divider {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, transparent, var(--le-blue), transparent);
    transform: translateX(-50%);
    transition: height 1s ease-out;
    z-index: 2;
}

.use-cases.active .vertical-divider {
    height: 100%;
}

.use-case-card {
    padding: 2rem 0 2rem 2.5rem;
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateX(8px);
}

.use-case-card:first-of-type {
    padding-right: 2.5rem;
    padding-left: 0;
}

.use-case-card:first-of-type:hover {
    transform: translateX(-8px);
}

.use-case-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--le-charcoal);
    margin-bottom: 2rem;
    line-height: 1.3;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--le-blue);
    display: inline-block;
}

.use-case-section {
    margin-bottom: 1.75rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--le-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.use-case-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--le-charcoal);
}

.use-case-benefits {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(69, 69, 69, 0.15);
}

.benefits-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--le-charcoal);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.outcome-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--le-charcoal);
    font-weight: 500;
}

/* Hiring an Agent Section */
.hiring-section {
    padding: 6rem 0;
    background: var(--le-offwhite);
    position: relative;
    overflow: hidden;
}

.hiring-section::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    width: 1400px;
    height: 200px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 214, 102, 0.4) 25%, rgba(58, 141, 255, 0.4) 50%, rgba(255, 107, 94, 0.4) 75%, transparent 100%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}

.hiring-section .container {
    position: relative;
    z-index: 1;
}

.hiring-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--le-charcoal);
    position: relative;
    z-index: 2;
}

.hiring-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--le-charcoal);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hiring-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.toggle-btn {
    padding: 0.875rem 2rem;
    background: white;
    border: 2px solid var(--le-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--le-charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.toggle-btn:hover {
    border-color: var(--le-blue);
    color: var(--le-blue);
}

.toggle-btn.active {
    background: var(--le-blue);
    border-color: var(--le-blue);
    color: white;
}

.hiring-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hiring-option {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.hiring-option.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.5s ease forwards;
}

#day-zero {
    background-color: rgba(255, 214, 102, 0.15);
}

#always-on {
    background-color: rgba(58, 141, 255, 0.08);
}

.option-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--le-charcoal);
    margin-bottom: 0.75rem;
}

.option-tagline {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--le-blue);
    margin-bottom: 2rem;
}

.option-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--le-charcoal);
    margin-bottom: 1rem;
}

.option-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--le-grey);
}

.option-benefits .benefits-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--le-charcoal);
    margin-bottom: 1rem;
}

.option-benefits ul {
    list-style: none;
    padding: 0;
}

.option-benefits ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--le-charcoal);
}

/* Problem Statement Section */
.problem-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-block,
.solution-block {
    display: flex;
    flex-direction: column;
}

.problem-title,
.solution-title {
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--le-charcoal);
    margin-bottom: 2rem;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.problem-title::after,
.solution-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0,5 Q5,2 10,5 T20,5 T30,5 T40,5 T50,5 T60,5 T70,5 T80,5 T90,5 T100,5 T110,5 T120,5 T130,5 T140,5 T150,5 T160,5 T170,5 T180,5 T190,5 T200,5' stroke='%23FF6B6B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M2,6 Q7,3 12,6 T22,6 T32,6 T42,6 T52,6 T62,6 T72,6 T82,6 T92,6 T102,6 T112,6 T122,6 T132,6 T142,6 T152,6 T162,6 T172,6 T182,6 T192,6 T202,6' stroke='%23FF6B6B' stroke-width='1.5' fill='none' opacity='0.6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.problem-intro,
.solution-intro {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--le-charcoal);
    margin-bottom: 2rem;
    font-weight: 500;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.problem-list li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--le-charcoal);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--le-coral);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
}

.problem-conclusion {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--le-charcoal);
    margin-top: 1.5rem;
    font-style: italic;
}

.solution-highlight {
    border-left: 4px solid var(--le-blue);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.solution-tagline {
    font-size: 1.5rem;
    color: var(--le-charcoal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-details {
    font-size: 1.125rem;
    color: var(--le-charcoal);
    margin-bottom: 0;
    line-height: 1.6;
}

.solution-image-container {
    margin-top: -25px;
    margin-left: -62px;
    display: flex;
    align-items: flex-end;
}

.insight-scale-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 4rem 0;
    }
    
    .how-it-works .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .how-it-works-image {
        order: -1;
    }
    
    .process-step {
        padding-bottom: 2rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .use-cases {
        padding: 4rem 0;
    }
    
    .use-cases .section-title {
        margin-bottom: 3rem;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vertical-divider {
        display: none;
    }
    
    .use-case-card {
        padding: 1.5rem 0 1.5rem 2rem;
    }
    
    .use-case-card:hover {
        transform: translateX(4px);
    }
    
    .use-case-title {
        font-size: 1.25rem;
    }
    
    .hiring-section {
        padding: 4rem 0;
    }
    
    .hiring-section .section-title {
        font-size: 2rem;
    }
    
    .hiring-subtitle {
        font-size: 1.125rem;
    }
    
    .hiring-toggle {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 3rem;
    }
    
    .toggle-btn {
        padding: 0.75rem 1.5rem;
    }
    
    .option-title {
        font-size: 1.5rem;
    }
    
    .problem-section {
        padding: 5rem 0;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .problem-intro,
    .solution-intro {
        font-size: 1.125rem;
    }
    
    .solution-highlight {
        padding: 2rem;
    }
}

/* Features Section - More refined */
.features {
    padding: 8rem 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid var(--le-grey);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(58, 141, 255, 0.15);
    border-color: var(--le-blue);
}

.feature-icon {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, var(--le-offwhite) 0%, var(--le-grey) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.75rem;
}

.feature-title {
    margin-bottom: 1.25rem;
    color: var(--le-charcoal);
    font-size: 1.375rem;
    font-weight: 400;
}

.feature-description {
    color: var(--le-charcoal);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Leonard Section */
.leonard-section {
    padding: 8rem 0;
    background-color: var(--le-offwhite);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.375rem;
    color: var(--le-charcoal);
    margin-bottom: 0;
    line-height: 1.5;
}

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

.detail-text {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.capabilities-list {
    margin: 4rem 0;
    text-align: left;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--le-grey);
    box-shadow: 0 4px 24px rgba(58, 141, 255, 0.08);
}

.capabilities-title {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.375rem;
    font-weight: 400;
}

.capabilities {
    list-style: none;
    padding: 0;
}

.capabilities li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--le-grey);
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.05rem;
}

.capabilities li:last-child {
    border-bottom: none;
}

.capabilities li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--le-blue);
    font-weight: 600;
    font-size: 1.125rem;
}

.leonard-actions {
    margin-top: 3rem;
}

/* Vision Section */
.vision-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

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

.vision-title {
    margin-bottom: 2.5rem;
}

.vision-quote {
    font-size: 1.625rem;
    font-style: italic;
    color: var(--le-charcoal);
    margin-bottom: 4rem;
    line-height: 1.5;
    font-weight: 400;
}

.vision-description {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--le-charcoal) 0%, var(--le-blue) 100%);
    color: #ffffff;
    text-align: center;
}

.cta-title {
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.cta-actions .btn-primary {
    background-color: #ffffff;
    color: var(--le-blue);
}

.cta-actions .btn-primary:hover {
    background-color: var(--le-offwhite);
    transform: translateY(-2px);
}

/* Privacy Policy Page */
.privacy-content {
    padding: 6rem 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    color: var(--le-charcoal);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--le-blue);
    font-style: italic;
    margin-bottom: 2rem;
}

.content-wrapper h2 {
    font-size: 1.75rem;
    color: var(--le-charcoal);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    font-size: 1.25rem;
    color: var(--le-charcoal);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-wrapper p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--le-charcoal);
    margin-bottom: 1rem;
}

.content-wrapper ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.content-wrapper ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--le-charcoal);
    margin-bottom: 0.5rem;
}

.content-wrapper a {
    color: var(--le-blue);
    text-decoration: underline;
}

.content-wrapper a:hover {
    color: var(--le-coral);
}

/* Security Page */
.security-content {
    padding: 6rem 0;
    background: white;
}

.security-content .intro-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--le-charcoal);
    margin-bottom: 1.5rem;
}

.trust-centre-cta {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background: var(--le-offwhite);
    border-radius: 8px;
}

.trust-centre-cta .btn-primary {
    display: inline-block;
    color: white;
}

.security-contact {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--le-grey);
}

.security-contact h3 {
    font-size: 1.5rem;
    color: var(--le-charcoal);
    margin-bottom: 1rem;
}

.security-contact p {
    margin-bottom: 0.5rem;
}

.security-contact a {
    color: var(--le-blue);
    text-decoration: underline;
    font-weight: 500;
}

.security-contact a:hover {
    color: var(--le-coral);
}

/* Security Highlights */
.security-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.highlight-card {
    background: var(--le-offwhite);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--le-blue);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--le-charcoal);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Security Cards */
.security-cards {
    margin: 3rem 0;
}

.security-card {
    background: white;
    border: 2px solid var(--le-grey);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.security-card:hover {
    border-color: var(--le-blue);
}

.security-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.security-card-header:hover {
    background: var(--le-offwhite);
}

.security-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--le-charcoal);
    margin: 0;
    flex: 1;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--le-blue);
    transition: transform 0.3s ease;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--le-blue);
    border-radius: 6px;
    flex-shrink: 0;
}

.security-card.active .toggle-icon {
    transform: rotate(0deg);
}

.security-card-content {
    display: none;
    padding: 0 2rem 2rem 2rem;
}

.security-card.active .security-card-content {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.security-card-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.security-card-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.security-card-content ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.security-card-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--le-blue);
    font-weight: bold;
}

/* Trust Centre Section */
.trust-centre-section {
    margin: 4rem 0;
    text-align: center;
}

.trust-centre-section h2 {
    font-size: 2rem;
    color: var(--le-charcoal);
    margin-bottom: 1rem;
}

.trust-centre-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .security-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .security-card-header {
        padding: 1.25rem 1.5rem;
    }
    
    .security-card-header h3 {
        font-size: 1.1rem;
    }
    
    .security-card.active .security-card-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* Agents Page */
.agents-content {
    padding: 6rem 0;
}

.agents-section-white {
    background: white;
}

.agents-section-grey {
    background: var(--le-offwhite);
}

.agents-section-gold {
    background: linear-gradient(135deg, rgba(255, 214, 102, 0.12) 0%, rgba(255, 214, 102, 0.06) 100%);
}

.agents-section-blue {
    background: linear-gradient(135deg, rgba(58, 141, 255, 0.08) 0%, rgba(58, 141, 255, 0.04) 100%);
}

.agents-section-coral {
    background: linear-gradient(135deg, rgba(255, 107, 94, 0.12) 0%, rgba(255, 107, 94, 0.06) 100%);
}

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

.agents-why-content {
    /* Content styles inherited from content-wrapper */
}

.agents-why-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.agents-content .intro-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--le-charcoal);
    margin-bottom: 1.5rem;
}

.agents-content ol {
    margin: 1rem 0 1.5rem 2rem;
    list-style: decimal;
}

.agents-content ol li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--le-charcoal);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--le-grey);
    margin: 3rem 0;
}

.agents-content .emphasis {
    font-style: italic;
    font-weight: 500;
    color: var(--le-blue);
}

.agents-cta {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background: var(--le-offwhite);
    border-radius: 8px;
}

.agents-cta .btn-primary {
    display: inline-block;
    color: white;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background-color: var(--le-offwhite);
    border-top: 1px solid var(--le-grey);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-text p {
    margin: 0;
    color: var(--le-charcoal);
    font-size: 0.925rem;
}

.footer-link {
    color: var(--le-charcoal);
    text-decoration: none;
    font-size: 0.925rem;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: var(--le-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 6rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .features {
        padding: 5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .leonard-section,
    .vision-section,
    .cta-section {
        padding: 5rem 0;
    }
    
    .capabilities-list {
        text-align: center;
        padding: 2rem;
    }
    
    .capabilities {
        text-align: left;
    }
    
    .vision-quote {
        font-size: 1.375rem;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
    }
    
    .agents-why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .agents-why-image {
        order: -1;
    }
    
    .agent-image {
        max-width: 100%;
    }
}

/* ============================================
   SCROLL ANIMATIONS SYSTEM
   ============================================ */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Base scroll animation classes - Add these to HTML elements */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.active {
    opacity: 1;
}

/* Fade In Up - Default scroll animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Fade In Left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered animations for lists and grids */
.stagger-animate > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-animate.active > *:nth-child(1) { 
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards; 
}
.stagger-animate.active > *:nth-child(2) { 
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; 
}
.stagger-animate.active > *:nth-child(3) { 
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; 
}
.stagger-animate.active > *:nth-child(4) { 
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; 
}
.stagger-animate.active > *:nth-child(5) { 
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards; 
}
.stagger-animate.active > *:nth-child(6) { 
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards; 
}

/* Parallax effect - subtle movement on scroll */
.parallax-slow {
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Initial page load animations */
.hero-content {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.hero-title {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

/* Reduced motion support - accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-animate,
    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .scale-in {
        opacity: 1;
        transform: none;
    }
}

/* Smooth scrolling and focus states */
*:focus {
    outline: 2px solid var(--le-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .nav,
    .footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* FAQ Styles */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--le-grey);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--le-blue);
    box-shadow: 0 4px 12px rgba(58, 141, 255, 0.15);
}

.faq-question {
    color: var(--le-charcoal);
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.faq-answer {
    color: var(--le-charcoal);
    font-size: 1.125rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--le-blue);
    font-weight: 500;
} 
/* Team Photo Styles */
.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--le-grey);
    transition: all 0.3s ease;
    transform: scale(1.1);
}

.feature-card:hover .team-photo {
    border-color: var(--le-blue);
    transform: scale(1.05);
}

.team-linkedin {
    display: inline-block;
    margin-top: 1rem;
    color: var(--le-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.team-linkedin:hover {
    color: var(--le-charcoal);
    text-decoration: underline;
}
