/* Custom styles for FieldPal.ai */

/* Brand styles are imported in base.html */

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Force text wrapping in hero section containers */
.max-w-7xl * {
    max-width: 100%;
    box-sizing: border-box;
}

.max-w-7xl h1,
.max-w-7xl h2,
.max-w-7xl h3,
.max-w-7xl h4,
.max-w-7xl h5,
.max-w-7xl h6,
.max-w-7xl p,
.max-w-7xl div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

/* Ensure all headings wrap properly */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
}

/* Dot Matrix Background Pattern */
body.bg-white,
body {
    background-color: #FFFFFF !important;
    background-image: radial-gradient(circle, rgba(200, 200, 200, 0.5) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    background-position: 0 0 !important;
}

/* Ensure white sections don't show the pattern */
.section-container,
.capture-module-section,
.partners-section,
.faq-section {
    background-color: #FFFFFF;
    background-image: none;
}

.section-container {
    background-color: #F2F0EF;
    background-image: none;
}

/* Hero Copy Section */
.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
    max-width: 665px;
    margin-bottom: 80px;
    margin-left: 280px;
    margin-right: 0;
    flex: none;
    order: 1;
    flex-grow: 0;
    z-index: 1;
}

.hero-copy-title {
    width: 100%;
    height: auto;
    min-height: 24px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #1D1B20;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-copy-heading {
    width: 100%;
    height: auto;
    min-height: 256px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 57px;
    line-height: 64px;
    letter-spacing: -0.25px;
    color: #1D1B20;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsive Hero Copy */
@media (max-width: 768px) {
    .hero-copy {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: flex-start;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-x: hidden !important;
        min-width: 0 !important;
    }
    
    .hero-copy-title {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        overflow-x: hidden !important;
        hyphens: auto !important;
        min-width: 0 !important;
    }
    
    .hero-copy-heading {
        font-size: 40px;
        line-height: 48px;
        min-height: auto;
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        overflow-x: hidden !important;
        hyphens: auto !important;
        min-width: 0 !important;
    }
    
    /* Override Tailwind padding at low widths - MUST override px-4, sm:px-6, lg:px-8 */
    .max-w-7xl.mx-auto,
    .max-w-7xl {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Ensure hero section container doesn't overflow */
    .max-w-7xl.mx-auto > .hero-copy,
    .max-w-7xl > .hero-copy {
        max-width: calc(100% - 0px) !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .video-container {
        padding: 0 !important;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .video-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .stats-row-container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .stats-item {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero-copy {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
        word-break: break-word !important;
        min-width: 0 !important;
    }
    
    .hero-copy-title {
        padding-right: 0 !important;
        padding-left: 0 !important;
        font-size: 14px;
        line-height: 20px;
        overflow-x: hidden !important;
        word-break: break-word !important;
        hyphens: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .hero-copy-heading {
        font-size: 32px;
        line-height: 40px;
        padding-right: 0 !important;
        padding-left: 0 !important;
        overflow-x: hidden !important;
        word-break: break-word !important;
        hyphens: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

/* Video Container */
.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 976px;
    aspect-ratio: 976 / 635;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
}

.video-splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.video-splash-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.video-splash-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125%;
    height: 125%;
    object-fit: cover;
    object-position: center center;
    display: block;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.video-embed-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.video-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .video-wrapper {
        max-width: 100%;
    }
    
    .hero-copy {
        margin-left: 40px;
    }
    
    .section-content-frame {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .video-container {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .video-container {
        margin-bottom: 40px;
    }
}

/* Stats Row Container */
.stats-row-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    width: 100%;
    max-width: 1130px;
    height: 112px;
    margin: 0 auto;
    flex: none;
    order: 3;
    flex-grow: 0;
    z-index: 3;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    margin: 0 auto;
    width: 209px;
    height: 112px;
    flex: none;
    flex-grow: 0;
}

.stats-number {
    width: 209px;
    height: 64px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 57px;
    line-height: 64px;
    text-align: center;
    letter-spacing: -0.25px;
    color: #1D1B20;
    flex: none;
    order: 0;
    flex-grow: 0;
    transition: opacity 0.3s ease;
}

.stats-label {
    width: 209px;
    height: 32px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #1D1B20;
    flex: none;
    order: 1;
    flex-grow: 0;
}

@media (max-width: 1024px) {
    .stats-row-container {
        gap: 24px;
        max-width: 100%;
    }
    
    .stats-item {
        width: auto;
        flex: 1;
        min-width: 0;
    }
    
    .stats-number,
    .stats-label {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .stats-row-container {
        flex-wrap: wrap;
        height: auto;
        gap: 32px;
        justify-content: center;
    }
    
    .stats-item {
        width: calc(50% - 20px);
        height: auto;
    }
    
    .stats-number {
        font-size: 48px;
        line-height: 56px;
        height: auto;
    }
    
    .stats-label {
        font-size: 20px;
        line-height: 28px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .stats-row-container {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .stats-item {
        width: 100%;
        max-width: 209px;
    }
    
    .stats-number {
        font-size: 40px;
        line-height: 48px;
    }
    
    .stats-label {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Section Container */
.section-container {
    width: 100%;
    height: auto;
    background: #F2F0EF;
    position: relative;
    flex: none;
    flex-grow: 0;
    z-index: 1;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.section-content-frame {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: auto;
}

.section-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    width: 100%;
    max-width: 554px;
    height: auto;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.section-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 32px;
    width: 100%;
    height: auto;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.section-hero-copy-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
    height: auto;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.section-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
    height: auto;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.section-title {
    width: 100%;
    height: auto;
    min-height: 24px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #1D1B20;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.section-heading-medium {
    width: 100%;
    height: auto;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
    line-height: 52px;
    color: #1D1B20;
    margin: 0;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.section-body-text {
    width: 100%;
    height: auto;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
    color: #1D1B20;
    margin: 0;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.section-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 12px;
    width: 100%;
    height: auto;
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
}

.section-list-item {
    width: 100%;
    height: auto;
    min-height: 28px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
    color: #1D1B20;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
    position: relative;
    padding-left: 40px;
}

.section-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url('/static/icons/check_circle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    width: 140px;
    height: 56px;
    background: #E04F00;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    flex: none;
    order: 1;
    flex-grow: 0;
    text-decoration: none;
}

.section-button:hover {
    background: #C04500;
}

.section-button-label {
    width: auto;
    height: 24px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: 0.15px;
    color: #FFFFFF;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.section-image-container {
    position: relative;
    flex: 1;
    max-width: 546px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.section-image {
    width: 100%;
    max-width: 546px;
    height: auto;
    object-fit: contain;
    flex: none;
    order: 1;
    flex-grow: 0;
    display: block;
}

.section-stats-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    position: absolute;
    width: auto;
    max-width: 560px;
    height: 160px;
    bottom: 150px;
    right: 0;
}

.section-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 16px;
    height: 160px;
    border-radius: 16px;
    flex: none;
    flex-grow: 0;
}

.section-stat-card-orange {
    width: 279px;
    background: #E04F00;
}

.section-stat-card-dark {
    width: 257px;
    background: #2D2D2D;
}

.section-stat-number {
    width: 209px;
    height: 64px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 57px;
    line-height: 64px;
    text-align: center;
    letter-spacing: -0.25px;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
    transition: opacity 0.3s ease;
}

.section-stat-label {
    width: auto;
    max-width: 231px;
    height: 32px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* Responsive Section Container */
@media (max-width: 1440px) {
    .section-container {
        max-width: 100%;
    }
    
    .section-content-frame {
        padding: 60px 40px;
        flex-direction: column;
        gap: 40px;
    }
    
    .section-content-column {
        width: 100%;
        max-width: 100%;
        height: auto;
        order: 2;
    }
    
    .section-image-container {
        order: 1;
        flex: none;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0 auto;
        align-items: center;
    }
    
    .section-hero-copy {
        width: auto;
        height: auto;
        align-items: flex-start;
    }
    
    .section-hero-copy-inner {
        align-items: flex-start;
    }
    
    .section-hero-text {
        align-items: flex-start;
    }
    
    .section-image {
        width: 100%;
        height: auto;
        max-width: 546px;
        margin: 0 auto;
    }
    
    .section-stats-container {
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 560px;
        justify-content: center;
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .section-content-frame {
        padding: 40px 0;
        gap: 30px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-content-column {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        margin: 0;
        box-sizing: border-box;
    }
    
    .section-image-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .section-image {
        max-width: 100%;
        width: 100%;
    }
    
    .section-title {
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-heading-medium {
        font-size: 32px;
        line-height: 40px;
        min-height: auto;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-body-text,
    .section-list-item {
        font-size: 18px;
        line-height: 24px;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-list {
        gap: 10px;
        align-items: center;
    }
    
    .section-list-item {
        position: relative;
        padding-left: 32px;
        text-align: left;
    }
    
    .section-list-item::before {
        left: 8px;
    }
    
    .section-stats-container {
        flex-direction: column;
        height: auto;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        margin: 20px auto 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .section-stat-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-stat-card-orange,
    .section-stat-card-dark {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .section-content-frame {
        padding: 30px 16px;
        gap: 24px;
    }
    
    .section-image-container {
        padding: 0;
        margin: 0 auto;
    }
    
    .section-content-column {
        padding: 0;
        margin: 0;
    }
}

/* Capture Module Section */
/* Challenges Features Section */
.challenges-features-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 200px;
    width: 100%;
    max-width: 896px;
    margin: 0 auto;
    padding: 60px 20px 100px 20px;
    position: relative;
    box-sizing: border-box;
}

.challenges-features-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 24px;
    width: 100%;
    height: auto;
    min-height: 300px;
    position: relative;
    will-change: transform, opacity;
    scroll-snap-align: start;
}

.challenges-features-row.active {
    z-index: 1;
}

.challenges-features-row.reverse {
    flex-direction: row-reverse;
}

.challenges-features-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 439px;
    max-width: 100%;
    flex: none;
    flex-grow: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.challenges-features-text-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
}

.challenges-features-title {
    width: 100%;
    height: auto;
    min-height: 24px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #1D1B20;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.challenges-features-heading {
    width: 100%;
    height: auto;
    min-height: 52px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
    line-height: 52px;
    color: #1D1B20;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.challenges-features-body {
    width: 100%;
    height: auto;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #1D1B20;
}

.challenges-features-image-container {
    width: 433px;
    max-width: 100%;
    height: 300px;
    background: transparent;
    border-radius: 16px;
    flex: none;
    flex-grow: 1;
    position: relative;
    overflow: visible;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.challenges-features-image {
    position: absolute;
    object-fit: cover;
    border-radius: 16px;
    width: 100%;
    height: 100%;
}

/* Image positioning for each row - desktop only */
.challenges-features-row:nth-child(1) .challenges-features-image {
    width: 472px;
    height: 342px;
    left: -19px;
    top: -21px;
}

.challenges-features-row:nth-child(2) .challenges-features-image {
    width: 496px;
    height: 360px;
    left: -32px;
    top: -30px;
}

.challenges-features-row:nth-child(3) .challenges-features-image {
    width: 434px;
    height: 314px;
    left: -1px;
    top: -7px;
}

.challenges-features-row:nth-child(4) .challenges-features-image {
    width: 512px;
    height: 372px;
    left: -40px;
    top: -36px;
}

.capture-module-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 1600px;
    background: #FFFFFF;
    padding: 100px 0;
    isolation: isolate;
    overflow: hidden;
    box-sizing: border-box;
}

.capture-module-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 86px; /* Start where top SVG begins (100px padding - 14px SVG offset) */
    bottom: 81.5px; /* End where bottom SVG ends (100px padding - 18.5px SVG offset) */
    background: #2D2D2D;
    z-index: 0;
}

.capture-module-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    gap: 100px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/* Top Section: Image and Text */
.capture-module-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 27px;
    width: 100%;
    max-width: 1130px;
    height: auto;
    min-height: 620px;
    box-sizing: border-box;
}

.capture-module-image-container {
    margin: 0 auto;
    width: auto;
    height: auto;
    position: relative;
    flex: none;
    order: 0;
}

.capture-module-image {
    width: 433px;
    height: 400px;
    object-fit: contain;
    display: block;
}

.capture-module-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 0;
    gap: 24px;
    margin: 0 auto;
    width: 554px;
    max-width: 100%;
    height: auto;
    min-height: 620px;
    flex: none;
    order: 1;
    box-sizing: border-box;
}

.capture-module-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 554px;
    height: auto;
    flex: none;
    order: 0;
    align-self: stretch;
}

.capture-module-subtitle {
    width: 554px;
    max-width: 100%;
    height: auto;
    min-height: 24px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #FFFFFF;
    flex: none;
    order: 0;
    align-self: stretch;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}

.capture-module-heading {
    width: 554px;
    max-width: 100%;
    height: auto;
    min-height: 104px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
    line-height: 52px;
    color: #FFFFFF;
    flex: none;
    order: 1;
    align-self: stretch;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    box-sizing: border-box;
}

.capture-module-body {
    width: 554px;
    height: auto;
    min-height: 140px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #FFFFFF;
    flex: none;
    order: 1;
    align-self: stretch;
    margin: 0;
}

.capture-module-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 554px;
    height: auto;
    min-height: 160px;
    flex: none;
    order: 2;
    align-self: stretch;
    margin: 0;
}

.capture-module-list-item {
    width: 554px;
    height: 28px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #FFFFFF;
    flex: none;
    align-self: stretch;
    position: relative;
    padding-left: 24px;
}

.capture-module-list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFFFFF;
}

/* Divider */
.capture-module-divider {
    width: 100%;
    max-width: 1130px;
    height: 0;
    border: 0.5px solid #D8D8D8;
    flex: none;
    order: 1;
}

/* Bottom Section: Technology Features */
.capture-module-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 64px;
    width: 100%;
    max-width: 1130px;
    height: auto;
    min-height: 380px;
    flex: none;
    order: 2;
}

.capture-module-bottom-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 554px;
    max-width: 100%;
    height: auto;
    min-height: 144px;
    flex: none;
    order: 0;
    box-sizing: border-box;
}

.capture-module-features {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
    max-width: 1130px;
    height: auto;
    min-height: 172px;
    flex: none;
    order: 1;
    align-self: stretch;
}

.capture-module-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 264.5px;
    height: auto;
    min-height: 144px;
    flex: none;
    flex-grow: 1;
}

.capture-module-feature-heading {
    width: 264.5px;
    max-width: 100%;
    height: 64px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    flex: none;
    order: 0;
    align-self: stretch;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}

.capture-module-feature-text {
    width: 264.5px;
    max-width: 100%;
    height: auto;
    min-height: 56px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    flex: none;
    order: 1;
    align-self: stretch;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}

/* Decorative Elements */
.capture-module-decorative-top {
    position: absolute;
    width: 337px;
    height: 329px;
    left: 41px;
    top: -14px;
    z-index: 1;
}

.capture-module-decorative-top svg {
    width: 100%;
    height: 100%;
}

.capture-module-decorative-bottom {
    position: absolute;
    width: 337px;
    height: 329px;
    right: -50px;
    bottom: -60px;
    z-index: 2;
}

.capture-module-decorative-bottom svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .challenges-features-section {
        gap: 120px;
        padding: 80px 20px;
    }
    
    .challenges-features-hero-copy {
        width: 100%;
        max-width: 439px;
    }
    
    .challenges-features-image-container {
        width: 100%;
        max-width: 433px;
        height: 280px;
    }
    
    /* Reset image positioning for tablet */
    .challenges-features-row .challenges-features-image {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
    }
}

@media (max-width: 1200px) {
    .capture-module-top {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .capture-module-image-container {
        width: 100%;
        max-width: 433px;
    }
    
    .capture-module-text {
        width: 100%;
        max-width: 554px;
    }
}

/* Tablet - 2 columns for tech features */
@media (max-width: 1024px) and (min-width: 769px) {
    .capture-module-features {
        flex-wrap: wrap;
    }
    
    .capture-module-feature {
        width: calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .challenges-features-section {
        gap: 80px;
        padding: 60px 16px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .challenges-features-row {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .challenges-features-row.reverse {
        flex-direction: column;
    }
    
    .challenges-features-hero-copy {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        align-items: flex-start;
    }
    
    .challenges-features-text-frame {
        align-items: flex-start;
    }
    
    .challenges-features-title {
        height: auto;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .challenges-features-heading {
        font-size: 32px;
        line-height: 40px;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .challenges-features-body {
        font-size: 18px;
        line-height: 24px;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .challenges-features-image-container {
        width: 100%;
        max-width: 100%;
        height: 250px;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    /* Reset image positioning for mobile */
    .challenges-features-row .challenges-features-image {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0 !important;
        top: 0 !important;
        object-fit: cover;
    }
    
    .capture-module-section {
        padding: 60px 0;
    }
    
    .capture-module-content {
        padding: 60px 16px;
        gap: 60px;
        width: 100%;
        max-width: 100%;
    }
    
    .capture-module-top {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .capture-module-bottom {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    .capture-module-bottom-header {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        box-sizing: border-box;
        align-items: flex-start;
    }
    
    .capture-module-header,
    .capture-module-subtitle,
    .capture-module-heading,
    .capture-module-body,
    .capture-module-list {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-items: center;
    }
    
    .capture-module-list-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 24px;
        padding-right: 0;
        text-align: left;
        position: relative;
    }
    
    .capture-module-list-item::before {
        left: 0;
    }
    
    .capture-module-text {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        box-sizing: border-box;
        align-items: flex-start;
    }
    
    .capture-module-header {
        align-items: flex-start;
    }
    
    .capture-module-subtitle {
        padding-right: 0;
        padding-left: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .capture-module-subtitle {
        padding-right: 0;
        padding-left: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .capture-module-heading {
        font-size: 32px;
        line-height: 40px;
        padding-right: 0;
        padding-left: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .capture-module-body {
        font-size: 18px;
        line-height: 24px;
        padding-right: 0;
        padding-left: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .capture-module-bottom-header {
        align-items: center;
    }
    
    .capture-module-list-item {
        font-size: 18px;
        line-height: 24px;
    }
    
    .capture-module-features {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .capture-module-feature {
        width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        padding-right: 32px;
        box-sizing: border-box;
    }
    
    .capture-module-feature-heading,
    .capture-module-feature-text {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .capture-module-feature-heading {
        height: auto;
        min-height: auto;
    }
    
    .capture-module-decorative-top,
    .capture-module-decorative-bottom {
        display: none;
    }
    
    .video-container {
        margin-bottom: 60px;
        padding: 0 !important;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .video-wrapper {
        border-radius: 24px;
        width: 100%;
        max-width: 100%;
    }
    
    .section-content-frame {
        padding: 40px 16px;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Override Tailwind padding */
    .max-w-7xl.mx-auto,
    .max-w-7xl {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    /* Override Tailwind padding at very low widths */
    .max-w-7xl.mx-auto,
    .max-w-7xl {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Ensure hero section container doesn't overflow at 480px */
    .max-w-7xl.mx-auto > .hero-copy,
    .max-w-7xl > .hero-copy {
        max-width: calc(100% - 0px) !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .video-container {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
    }
    
    .video-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .stats-row-container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .challenges-features-section {
        gap: 60px;
        padding: 40px 12px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .challenges-features-hero-copy {
        padding: 0 12px;
    }
    
    .challenges-features-title {
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }
    
    .challenges-features-heading {
        font-size: 28px;
        line-height: 36px;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }
    
    .challenges-features-body {
        font-size: 16px;
        line-height: 22px;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }
    
    .challenges-features-image-container {
        height: 200px;
        width: 100%;
        max-width: 100%;
    }
    
    .video-wrapper {
        border-radius: 16px;
    }
    
    .faq-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .section-content-frame {
        padding: 30px 0 !important;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .section-content-column {
        padding: 0 12px !important;
    }
    
    .capture-module-content {
        padding: 60px 12px !important;
    }
    
    .problem-section {
        padding-left: 12px !important;
        padding-right: 12px !important;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-copy {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
        max-width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    background: #FFFFFF;
    padding: 100px 0;
}

.faq-container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-header {
    margin-bottom: 64px;
}

.faq-label {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #1D1B20;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-title {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 57px;
    line-height: 64px;
    letter-spacing: -0.25px;
    color: #1D1B20;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.faq-title-accent {
    color: #E04F00;
}

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

.faq-item {
    border-bottom: 1px solid #E6E3E1;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #E6E3E1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.faq-question-text {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #1D1B20;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-icon {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    color: #1D1B20;
    width: 32px;
    text-align: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
}

.faq-icon::before {
    content: '+';
}

.faq-item.active .faq-icon {
    color: #E04F00;
}

.faq-item.active .faq-icon::before {
    content: '−';
}

.faq-indicator {
    display: none;
}

.faq-answer {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #1D1B20;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    margin-top: 16px;
    opacity: 1;
    padding-top: 0;
}

/* Partners Section */
.partners-section {
    width: 100%;
    background: #FFFFFF;
    padding: 100px 124px;
    border-bottom: 1.5px solid #D8D8D8;
    box-sizing: border-box;
}

.partners-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.partners-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    max-width: 896px;
    margin: 0 auto;
}

.partners-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.partners-title {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #1D1B20;
    width: 100%;
}

.partners-heading {
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
    line-height: 52px;
    color: #1D1B20;
    width: 100%;
    margin: 0;
}

.partners-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
    flex-wrap: wrap;
}

.partners-logo-item {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-logo-image {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Partners */
@media (max-width: 1440px) {
    .partners-section {
        padding: 100px 80px;
    }
}

@media (max-width: 1024px) {
    .partners-section {
        padding: 80px 60px;
    }
    
    .partners-content {
        max-width: 100%;
    }
    
    .partners-heading {
        font-size: 40px;
        line-height: 48px;
    }
    
    .partners-logos {
        gap: 60px;
    }
    
    .partners-logo-image {
        max-width: 180px;
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 40px;
    }
    
    .partners-content {
        gap: 48px;
    }
    
    .partners-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .partners-logos {
        flex-direction: column;
        gap: 48px;
    }
    
    .partners-logo-item {
        width: 100%;
        max-width: 200px;
    }
    
    .partners-logo-image {
        max-width: 160px;
        max-height: 60px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 20px;
    }
    
    .partners-content {
        gap: 32px;
    }
    
    .partners-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .partners-title {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Responsive FAQ */
@media (max-width: 1024px) {
    .faq-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-header {
        margin-bottom: 48px;
    }
    
    .faq-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .faq-question-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .faq-answer {
        font-size: 16px;
        line-height: 24px;
    }
    
    .faq-item {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        padding: 0 16px;
    }
    
    .faq-header {
        margin-bottom: 32px;
    }
    
    .faq-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .faq-question-text {
        font-size: 18px;
        line-height: 24px;
    }
    
    .faq-answer {
        font-size: 15px;
        line-height: 22px;
    }
    
    .faq-item {
        padding: 16px 0;
    }
}

