@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #121117;
    background-color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 1440px) {
    .hero-inner, .benefits-inner, .testimonials-inner, .contact-heading, .contact-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.preply-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hero-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
}

.hero-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0px;
}

.hero-left {
    flex: 1;
    max-width: 530px;
}

.hero-title {
    text-align: left;
    font-size: 51px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #121117;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #121117;
    margin-bottom: 32px;
    max-width: 400px;
    text-align: left;
}

.hero-button-container {
    margin-top: 24px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: #001CB1;
    color: #ffffff;
    border: 2px solid #000000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hero-button:hover {
    background-color: #0052CC;
}

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

.hero-image-wrapper {
    width: 100%;
    max-width: 600px;
}

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

.benefits-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
}

.benefits-inner {
    max-width: 1200px;
    margin: 40px auto 0px auto;
    padding: 30px 0px;
}

.benefits-heading-container {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #121117;
}

.benefits-items {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-bottom: 30px;
}

.benefit-item {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: #121117;
    margin: 0;
}

.benefit-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #121117;
    margin: 0;
}

.trusted-by-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 64px 0;
}

.trusted-by-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.trusted-by-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 4px;
}

.trusted-by-logos {
    flex: 1;
}

.trusted-by-text {
    font-size: 18px;
    font-weight: 700;
    color: #121117;
    margin: 0;
    white-space: nowrap;
}

.trusted-by-logos {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 0px;
    align-items: center;
}

.trusted-logo-img {
    width: 100%;
}

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

.desktop-testimonial-card {
    width: 100%;
    margin-top: 44px;
    text-align: center;
}

.desktop-testimonial-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    color: #121117;
    margin: 0 auto 32px;
    max-width: 800px;
}

.desktop-testimonial-user {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.desktop-testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.desktop-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.desktop-testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #121117;
}

.desktop-testimonial-title {
    font-size: 16px;
    font-weight: 400;
    color: #4D4C5C;
}

.mobile-trusted-section {
    display: none;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
}

.mobile-trusted-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.mobile-trusted-by {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.mobile-trusted-text {
    font-size: 18px;
    font-weight: 700;
    color: #121117;
    margin: 0;
    width: 160px;
}

.mobile-trusted-logos-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #E5E5E5 transparent;
}

.mobile-trusted-logos-scroll::-webkit-scrollbar {
    height: 4px;
}

.mobile-trusted-logos-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-trusted-logos-scroll::-webkit-scrollbar-thumb {
    background-color: #E5E5E5;
    border-radius: 2px;
}

.mobile-trusted-logos {
    display: flex;
    flex-direction: row;
    gap: 0px;
    align-items: center;
}

.mobile-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo-img {
    width: 100%;
    max-width: 120px;
}

.mobile-testimonial-card {
    margin-top: 32px;
    padding: 0;
}

.mobile-testimonial-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #121117;
    text-align: center;
    margin: 0 0 24px 0;
}

.mobile-testimonial-user {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.mobile-testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #121117;
}

.mobile-testimonial-title {
    font-size: 16px;
    font-weight: 400;
    color: #4D4C5C;
}

.partners-container {
    margin-top: 64px;
}

.partners-logos {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partners-label {
    text-align: left;
}

.partners-text {
    font-size: 18px;
    font-weight: 500;
    color: #0066FF;
}

.partners-logos-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.testimonials-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0px;
}

.testimonials-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

.testimonials-label {
    display: inline-block;
    padding: 6px 16px;
    background: #5F40A71A;
    color: #5F40A7;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    white-space: nowrap;
    margin-bottom: 20px;
}

.testimonials-title {
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 48px;
    line-height: 121%;
    max-width: 525px;
}

.testimonials-navigation {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}
.font-86 {
    font-size: 86px !important;
}
.testimonial-metric {
    padding: 32px 24px;
    border-radius: 12px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-nav-prev {
    background-color: #ffffff;
    color: #121117;
    border: 1px solid #E5E5E5;
}

.testimonial-nav-prev:hover {
    background-color: #F9F9F9;
}

.testimonial-nav-next {
    background-color: #6900F2;
    color: #ffffff;
}

.testimonial-nav-next:hover {
    background-color: #5A00D1;
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: end;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-image-card {
    width: 100%;
}

.testimonial-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.metric-2 {
    background-image: url('./images/linner-grd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 24px;
    min-height: 290px;
    max-width: 334px;
}

.metric-value {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    color: #121117;
    margin-bottom: 0px;
}

.metric-label {
    font-size: 16px;
    font-weight: 400;
    color: #121117;
    max-width: 195px;
}

.testimonials-center {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
}

.testimonial-card {
    background: linear-gradient(360deg, #F6FAF9 0%, rgba(250, 250, 250, 0.5) 53.85%, #F6FAF9 100%);
    border-radius: 30px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-quote-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 8px;
}

.testimonial-quote-icon img {
    width: 100%;
}

.testimonial-card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #121117;
    margin: 0;
    max-width: 275px;
}

.testimonial-card-user {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.testimonial-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card-name {
    font-size: 16px;
    font-weight: 600;
    color: #121117;
}

.testimonial-card-stars {
    display: flex;
    flex-direction: row;
    gap: 2px;
}

.testimonial-card-stars svg {
    width: 16px;
    height: 16px;
    color: #FBBF24;
}

.contact-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
}

.contact-heading {
    text-align: left;
    margin-bottom: 64px;
    max-width: 1200px;
    padding-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    max-width: 1025px;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #121117;
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #121117;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-step-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-step-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.contact-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121117;
    color: #ffffff;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.contact-step-title {
    font-size: 24px;
    font-weight: 600;
    color: #121117;
}

.contact-step-content {
    padding-left: 64px;
}

.contact-step-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #4D4C5C;
}

.contact-step-content span {
    font-weight: 400;
}

.contact-right {
    flex: 1;
    max-width: 500px;
}

.contact-form-container {
    background-color: #ffffff;
    border: 1px solid #DCDCE5;
    border-radius: 12px;
    padding: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 16px;
    font-weight: 500;
    color: #121117;
}

.required {
    color: #4D4C5C;
    font-weight: 400;
}

.form-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #121117;
    background-color: #ffffff;
    border: 1px solid #DCDCE5;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: #0066FF;
}

.form-select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #121117;
}

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

.form-submit-wrapper {
    margin-top: 8px;
}

.form-submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: #121117;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-submit-button:hover {
    background-color: #000000;
}

.form-privacy {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.privacy-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #4D4C5C;
}

.privacy-link {
    color: #0066FF;
    text-decoration: underline;
}

.privacy-link:hover {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .hero-section,
    .benefits-section,
    .testimonials-section,
    .contact-section {
        max-width: 100%;
    }

    .hero-inner {
        flex-direction: column;
    }


    .contact-inner {
        flex-direction: column;
    }

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

    .hero-title {
        font-size: 48px;
    }

    .contact-right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .benefits-section,
    .testimonials-section,
    .contact-section {
        max-width: 100%;
    }

    .trusted-by-section {
        display: none;
    }
    
    .desktop-testimonial-card {
        display: none;
    }

    .hero-title {
        font-size: 32px;
        line-height: normal;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .benefits-title {
        font-weight: 700;
        font-size: 32px;
        text-align: left;
        line-height: normal;
    }
    footer {
        display: none;
    }
    .benefits-items {
        flex-direction: column;
        gap: 24px;
    }

    .contact-title {
        font-size: 41px;
        line-height: normal;
    }

    .contact-step-content {
        padding-left: 0;
    }

    .partners-logos-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonials-title {
        font-size: 32px;
        line-height: normal;
    }

    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metric-value {
        font-size: 36px;
    }
    .benefits-items {
        margin-bottom: 0px;
    }
    .benefits-inner {
        margin-top: 0px;
        padding-top: 0px;
    }
    .mobile-trusted-section {
        display: block;
    }
    .hero-button {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .benefits-section,
    .testimonials-section,
    .contact-section {
        max-width: 100%;
    }

    .benefits-title {
        font-size: 32px;
    }

    .contact-title {
        font-size: 41px;
    }
    .latingles-footer {
        padding: 24px 16px 16px;
    }

    .contact-form-container {
        padding: 24px;
    }
}

.latingles-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 48px 130px 24px;
    margin-top: 80px;
}

.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-heading {
    font-size: 16.4px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-flag {
    font-size: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 0px;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.facebook-icon {
    font-family: Arial, sans-serif;
}

.youtube-icon {
    font-size: 10px;
}

.footer-link {
    text-decoration: underline;
}

.footer-link:hover {
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    padding-top: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background-color: #0066FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-policy-link {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}

.footer-policy-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .latingles-footer {
        padding: 48px 48px 24px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        display: none;
    }
    .contact-heading {
        margin-bottom: 32px;
        padding-top: 10px;
    }
    .contact-step-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .contact-step-number {
        background-color: #ededed;
        color: #000;
        border: 1px solid #000;
    }
    .latingles-footer {
        padding: 32px 24px 24px;
        margin-top: 48px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 12px;
    }
}
input {
    transition: border-color 0.2s ease;
}
input:hover {
    border-color: #000000 !important;
    transition: border-color 0.2s ease;
}

