:root {
    --font-family-base: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --color-base-900: #1f1f1f;
    --color-base-700: #474747;
    --color-base-500: #8f8f8f;
    --color-surface: #ffffff;
    --color-border: #e3e3e3;
    --color-nav-link: #038593;
    --color-brand: #00a3a1;
    --color-brand-strong: #0078a9;
    --color-primary-base: #038593;
    --color-primary-text: #f5fefe;
    --header-height: 88px;
    --header-outer-height: 120px;
    --container-width: 1120px;
    --radius-main: 0.9rem;
    --radius-pill: 999px;
    --radius-card: 24px;
    --shadow-soft: 0 16px 48px rgba(23, 23, 23, 0.08);
    --button-padding-y: 0.81rem;
    --button-padding-x: 1.86rem;
    --hero-gap-title-subtitle: 24px;
    --hero-gap-subtitle-actions: calc(var(--hero-gap-title-subtitle) * 3.05);
    --hero-lift-offset: -12%;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    background-image: 
        linear-gradient(to right, rgba(0, 133, 147, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 133, 147, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    line-height: 1.6;
    position: relative;
}

/* Header */
.header {
    padding: 20px 30px;
    background-color: transparent;
    max-width: 846px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 6px 6px 12px;
    margin: 0 auto;
    background-color: #FAFAFA;
    border-radius: 12px;
    gap: 1rem;
}

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

.logo svg {
    width: 27px;
    height: 30px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Header Menu */
.header-menu {
    display: none;
}

.header-menu-book-demo {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: #038593;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    font-family: "Geist", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0px 0px 29px 0px #09C6DB inset;
    height: 52px;
}

.header-menu-book-demo:hover {
    background: linear-gradient(90deg, #007a85 0%, #0d9488 100%);
    box-shadow: none;
}

.header-menu-book-demo .arrow {
    color: #ffffff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.header-menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu-item {
    margin: 0;
}

.menu-item a {
    color: #038593;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    font-family: "Geist", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
    cursor: pointer;
}

.menu-item a:hover {
    color: #008593;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 100;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #038593;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu-header {
    background-color: #FAFAFA;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e3e3e3;
    border-radius: 1rem 1rem 0 0;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-logo svg {
    width: 27px;
    height: 30px;
    flex-shrink: 0;
}

.mobile-menu-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 0;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem 1rem;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 1.25rem;
}

.mobile-menu-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 1rem 0;
}

.mobile-menu-link:hover {
    color: #038593;
}

.mobile-menu-cta {
    width: calc(100% - 2.5rem);
    margin: 0 1.25rem 1.5rem 1.25rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    color: #038593;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-cta:hover {
    background-color: #f9fafb;
    border-color: #038593;
}

.mobile-menu-cta img {
    width: 16px;
    height: 16px;
}

.w-100 {
    width: 100%;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal[aria-hidden="false"],
.modal.modal--visible {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal__dialog {
    position: relative;
    background-color: #ffffff;
    border-radius: 1rem;
    max-width: 500px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: #1f2937;
}

.modal__body {
    padding: 2rem;
}

.modal__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.modal__description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-form__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.modal-form__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.modal-form__field input {
    padding: 0.75rem 1rem;
    border: 1px solid #e3e3e3;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
    transition: border-color 0.3s ease;
}

.modal-form__field input:focus {
    outline: none;
    border-color: #038593;
}

.modal-form__field.is-invalid input {
    border-color: #ef4444;
}

.modal-form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.modal-form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.modal-form__checkbox.is-invalid {
    color: #ef4444;
}

.modal-form__submit {
    width: 100%;
    padding: 1rem;
    background-color: #038593;
    color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.modal-form__submit:hover {
    background-color: #007a85;
}

.modal__success {
    display: none;
    text-align: center;
}

.modal--success .modal__form-wrapper {
    display: none;
}

.modal--success .modal__success {
    display: block;
}

.modal__success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.modal__success p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.button--primary {
    background-color: #038593;
    color: #ffffff;
}

.button--primary:hover {
    background-color: #007a85;
}

.button--secondary {
    background-color: #f9fafb;
    color: #1f2937;
    border: 1px solid #e3e3e3;
}

.button--secondary:hover {
    background-color: #f3f4f6;
}

.button__icon {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    padding: 2rem 1.25rem;
}

.hero-tags {
    display: flex;
    padding: 8px 12px;
    width: 100%;
    max-width: 370px;
    gap: 32px;
    background-color: #FAFAFA;
    border-radius: 100px;
    margin: 0 auto;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    background-color: rgba(247, 247, 247, 0.9);
    border: 1px solid rgba(227, 227, 227, 0.8);
    margin: 0 auto;
    width: fit-content;
  }

  .hero__badge-label-image {
    height: 24px;
    width: auto;
  }
  
  .hero__badge-label {
    font-size: 14px;
    color: var(--color-base-500);
  }
  
  .hero__partners {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .hero__partner {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-base-700);
  }
  
  .hero__partner img {
    display: block;
    width: auto;
    max-height: 46px;
    object-fit: contain;
  }
  

.hero-container {
    max-width: 100%;
}

.hero-image-container {
    margin: 32px auto 0 auto;
    max-width: 1140px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
    background: linear-gradient(0deg, #FFFFFF 0%, #3D3D3D 46%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 20px;
}

.hero-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

            /* Companies Section */
            .companies {
                padding: 4rem 1.25rem;
                background-color: #ffffff;
            }

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

            .companies-title {
                text-align: center;
                font-size: 1rem;
                color: #6b7280;
                margin-bottom: 3rem;
                font-weight: 400;
            }

            .companies-slider-wrapper {
                overflow: hidden;
                position: relative;
                width: 100%;
                mask-image: linear-gradient(
                    to right,
                    transparent,
                    black 10%,
                    black 90%,
                    transparent
                );
                -webkit-mask-image: linear-gradient(
                    to right,
                    transparent,
                    black 10%,
                    black 90%,
                    transparent
                );
            }

            .companies-slider {
                width: 100%;
                overflow: hidden;
            }

            .companies-slider-track {
                display: flex;
                gap: 4rem;
                animation: slide 20s linear infinite;
                width: fit-content;
            }

            .companies-slider-item {
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 60px;
                opacity: 1;
            }


            .companies-slider-item img {
                max-height: 60px;
                max-width: 150px;
                object-fit: contain;
            }


            @keyframes slide {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-50%);
                }
            }



.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-gradient {
    background: #038593;
    box-shadow: 0px 0px 29px 0px #09C6DB inset;
    padding: 14px 28px 14px 32px;
    border-radius: 0.75rem;
    border: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    font-family: "Geist", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    max-height: 52px;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #007a85 0%, #0d9488 100%);
    box-shadow: none;
}

.btn-gradient .arrow {
    color: #ffffff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.btn {
    max-height: 52px;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
}

.btn-outline {
    background: #ffffff;
    border: 1px solid #D1D5DB;
    color: #3D3D3D;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    font-family: "Geist", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-outline:hover {
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    color: #3D3D3D;
}

/* Common Section Styles */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto 1rem auto;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
    border: 1px dashed #14B8A6;
    color: #038593;
    border-radius: 6px;
    width: fit-content;
}

.section-label .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #14B8A6;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.card {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
}

.card-outine {
    background-color: transparent;
    border: none;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Results Section */
.results {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

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

.results-title {
    text-align: center;
    margin-bottom: 1rem;
}

.results-header {
    display: flex;
}

.results-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.results-background {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 400px;
}

.results-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.results-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.results-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.25rem;
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Different heights for desktop - only apply on larger screens */
@media (min-width: 768px) {
    .results-card:nth-child(1){
        max-height: 166px;
    }

    .results-card:nth-child(2){
        max-height: 193px;
    }

    .results-card:nth-child(3){
        max-height: 193px;
    }

    .results-card:nth-child(4){
        max-height: 166px;
    }

}

.results-card-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.results-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .results {
        padding: 3rem 1rem;
    }

    .results-title {
        font-size: 1.75rem;
    }

    .results-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .results-background {
        min-height: 350px;
    }

    .results-cards {
        position: relative;
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .results-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        max-height: none !important;
    }

    .results-card-value {
        font-size: 2rem;
    }
    
    .results-bg-image {
        display: none;
    }

    .hero-tags {
        gap:8px;
    }
}

/* Guide Section (How it works) */
.guide-section {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

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

.guide-section-title {
    margin-bottom: 1rem;
}

.guide-section-subtitle {
    margin-bottom: 3rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.guide-step-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; */
}

/* .guide-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
} */

.guide-step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14B8A6;
    margin-bottom: 0.75rem;
}

.guide-step-title {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-step-card-full {
    grid-column: 1 / -1;
}

/* AI Features Section (What TrustMe AI Does) */
.ai-features {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

.ai-features-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: var(--radius-card, 1.5rem);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft, 0 16px 48px rgba(23, 23, 23, 0.08));
}

/* .ai-features-label uses .section-label */

.ai-features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    text-align: left;

}

.ai-features-title {
    margin: 0;
}

.ai-features-subtitle {
    margin: 0;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.ai-feature-card {
    background-color: #FAFAFA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
/* 
.ai-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
} */

.ai-feature-icon {
    width: 22px;
    height: 22px;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}


.ai-feature-title {
    margin-bottom: 1rem;
}

.ai-feature-description {
    margin-bottom: 1.5rem;
}

.ai-feature-result {
    font-size: 0.9375rem;
    color: #474747;
    line-height: 1.5;
    padding-top: 1rem;
}

.ai-feature-result strong {
    color: #1f2937;
    font-weight: 600;
}


/*
 * Reviews
 *
 * Customer testimonials layout.
 */

 .reviews {
    background-color: #FAFAFA;
    padding: 120px 0;
  }
  
  .reviews__shell {
    padding: 0.5em;
    display: flex;
    justify-content: center;
  }
  
  .reviews__inner {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    width: min(100%, 960px);
    margin: 0 auto;
  }
  
  .reviews__title {
    margin: 0;
    font-size: clamp(36px, 3vw, 48px);
  }
  
  .reviews__subtitle {
    margin: 0 0 32px;
    color: var(--color-base-500);
    font-size: 1.05rem;
  }
  
  .reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  
  .review-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: #fff;
  }
  
  .review-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .review-card__name {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-base-900);
  }
  
  .review-card__role {
    margin: 0;
    color: var(--color-base-500);
    font-size: 0.95rem;
  }
  
  .review-card__text {
    margin: 12px 0 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-base-700);
  }
  
  @media (max-width: 1024px) {
    .reviews__grid {
      grid-template-columns: 1fr;
    }
  }
  


/* Industry Section (Your Industry, Your Documents, Your Workflow) */
.industry {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

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

.industry-title {
    margin-bottom: 3rem;
    text-align: center;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.industry-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border-radius: 12px;
    text-align: left;
}

/* .industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
} */

.industry-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.industry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .industry-card:hover .industry-card-image img {
    transform: scale(1.05);
} */

.industry-card-content {
    padding: 1.5rem;
}

.industry-card-title {
    margin-bottom: 0.75rem;
}

/* Partnership Section */
.partnership {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

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

.partnership-title {
    margin-bottom: 1rem;
}

.partnership-description {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-phases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.partnership-phase {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    border: none;
    align-items: center;
}

.partnership-phase-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 1px 1px 0px #0000000F;
    border-radius: 0.75rem;
}

.partnership-phase-icon svg {
    width: 48px;
    height: 48px;
}

.partnership-phase-title {
    margin-bottom: 1rem;
}

.partnership-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.partnership-cta .btn-gradient {
    display: inline-flex;
}

/* Purpose Section (Built for Trust and Transparency) */
.purpose {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

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

.purpose-title {
    margin-bottom: 3rem;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.purpose-card {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.purpose-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: 0.75rem;
}

.purpose-icon svg {
    width: 48px;
    height: 48px;
}

.purpose-card-title {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    margin-bottom: 1rem;
}

.faq-subtitle {
    margin-bottom: 0;
}

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

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}


.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
    width: 24px;
    text-align: center;
}

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

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

.faq-answer p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Banner Section */
.cta-banner {
    padding: 4rem 1.25rem;
    background-color: #ffffff;
}

.cta-banner-container {
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 24px;
    background: linear-gradient(180deg, #038593 0%, #91AFFF 100%);
    padding: 5rem 4rem;
}

.cta-banner-content {
    border-radius: 2rem;
    max-width: 570px;
    width: 100%;
    font-size: 44px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    
}

.cta-banner-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-banner-text {
    margin-bottom: 2.5rem;
}

.cta-banner-text p {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-banner-text p:last-child {
    margin-bottom: 0;
}

.cta-banner-button {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #002EA414;
    box-shadow: 0px 0px 29px 0px #8EAEFF inset;

}

.cta-banner-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-banner-button .arrow {
    color: #1f2937;
    font-size: 1.25rem;
}

/* Overview Section */
.overview {
    padding: 3rem 1.25rem;
}

.overview-container {
    max-width: 100%;
}

.overview-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #14B8A6;
}

.overview-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

.bg-grey {
    background: #F5F5F5;
}

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

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }

    .header-menu {
        display: flex;
        flex: 1;
        justify-content: center;
    }

    .header-menu-list {
        margin: 0 auto;
    }

    .header-menu-book-demo {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .btn {
        width: auto;
        min-width: 200px;
    }

    .overview {
        padding: 4rem 2rem;
    }

    .overview-title {
        font-size: 2.25rem;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .companies {
        padding: 5rem 2rem;
    }

    .companies-title {
        font-size: 1.125rem;
        margin-bottom: 4rem;
    }

    .companies-slider-item {
        height: 80px;
    }

    .companies-slider-item img {
        max-height: 80px;
        max-width: 200px;
    }

    .companies-slider-track {
        gap: 6rem;
    }

    .results {
        padding: 5rem 2rem;
    }

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

    .results-subtitle {
        font-size: 1.125rem;
    }

    .results-background {
        min-height: 500px;
    }

    .results-cards {
        padding: 2.5rem;
        gap: 1.5rem;
    }

    .results-card {
        padding: 2rem;
        min-width: 220px;
        max-width: 300px;
    }

    .results-card-value {
        font-size: 2.5rem;
    }

    .guide-section {
        padding: 5rem 2rem;
    }

    .guide-section-title {
        font-size: 2.5rem;
    }

    .guide-section-subtitle {
        font-size: 1.125rem;
    }

    .guide-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .guide-step-card {
        padding: 2.5rem;
    }

    .guide-step-card-full {
        grid-column: 1 / -1;
        max-width: 800px;
        margin: 0 auto;
    }

    .ai-features {
        padding: 5rem 2rem;
    }

    .ai-features-container {
        padding: 4rem 3rem;
    }

    .ai-features-header {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
        text-align: left;
        margin-bottom: 3rem;
    }

    .ai-features-title {
        font-size: 2.5rem;
        flex: 1;
        margin-bottom: 0;
    }

    .ai-features-subtitle {
        font-size: 1.125rem;
        flex: 1;
        margin: 0;
    }

    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .ai-feature-card {
        padding: 2.5rem;
    }

    .industry {
        padding: 5rem 2rem;
    }

    .industry-title {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }

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

    .industry-card-image {
        height: 240px;
    }

    .industry-card-content {
        padding: 2rem;
    }

    .partnership {
        padding: 5rem 2rem;
    }

    .partnership-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .partnership-description {
        font-size: 1.125rem;
        margin-bottom: 4rem;
    }

    .partnership-phases {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .partnership-phase {
        padding: 2.5rem;
    }

    .purpose {
        padding: 5rem 2rem;
    }

    .purpose-title {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }

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

    .purpose-card {
        padding: 2.5rem;
    }

    .faq {
        padding: 5rem 2rem;
    }

    .faq-container {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
    }

    .faq-header {
        text-align: left;
        margin-bottom: 0;
        top: 100px;
    }

    .faq-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

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

    .faq-list {
        gap: 1.5rem;
    }

    .faq-question {
        padding: 2rem;
        font-size: 1.25rem;
    }

    .faq-answer {
        padding: 0 2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 2rem 2rem 2rem;
    }

    .cta-banner {
        padding: 5rem 2rem;
    }

    .cta-banner-content {
        /* padding: 5rem 4rem; */
        border-radius: 2.5rem;
    }

    .cta-banner-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .cta-banner-text {
        margin-bottom: 3rem;
    }

    .cta-banner-text p {
        font-size: 1.25rem;
    }

    .cta-banner-button {
        font-size: 1.25rem;
        padding: 1.25rem 2.5rem;
    }
}

/*
 * Footer
 *
 * Multi-column layout with brand description and CTA.
 */

 .footer {
    padding: 120px 0 80px;
    background-color: #fff;
  }
  
  .footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: flex-start;
  }
  
  .footer__brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7em;
  }
  
  .footer__logo-row {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
  }
  
  .footer__logo-img {
    width: 44px;
    height: 44px;
  }
  
  .footer__logo-text {
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .footer__description {
    margin-top: 10px;
    max-width: 315px;
    color: var(--color-base-500);
    line-height: 1.6;
  }
  
  .footer__socials {
    margin-top: 2em;
    display: inline-flex;
    gap: 12px;
  }
  
  .footer__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3d3d3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-base-900);
  }
  
  .footer__social img {
    width: 22px;
    height: 22px;
  }
  
  .footer__links {
    flex: 1.2;
    min-width: 60%;
    display: flex;
    gap: 1em;
  }
  
  .footer__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  
  .footer__title {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-base-900);
    font-weight: 600;
  }
  
  .footer__link {
    color: var(--color-nav-link);
    font-weight: 600;
    font-size: 1.05rem;
  }
  
  .footer__column--cta {
    gap: 0.7em;
    flex: 0 0 40%;
  }
  
  .footer__cta-text {
    margin: 0 0 2em;
    color: var(--color-base-500);
    line-height: 1.5;
  }
  
  @media (max-width: 960px) {
    .footer__inner {
      flex-direction: column;
    }
  
    .footer__links {
      flex-direction: column;
    }
  }




@media (min-width: 1024px) {
    .header {
        padding: 1.75rem 3rem;
    }

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

    .header-menu-list {
        gap: 2.5rem;
    }

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

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


