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

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Layout components */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-28 { gap: 28px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.gap-50 { gap: 50px; }
.gap-54 { gap: 54px; }
.gap-60 { gap: 60px; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.flex-1 { flex: 1; }

/* Header */
.header {
    padding: 10px 0;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    width: 86px;
    height: 74px;
}

.nav-menu {
    display: none;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    margin-right: 40px;
}

.nav-item {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #4268a3;
}

.header-btn {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 10px 34px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.header-btn:hover {
    background-color: #4268a3;
    color: #ffffff;
    border-color: #4268a3;
}

.hamburger {
    display: block;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 5px 0;
    transition: 0.3s;
}

.section-block {
    padding: 0 40px;
}

/* Hero Section */
.hero {
    background: linear-gradient(38deg, #ffffff 0%, #f2fbff 100%);
    border-radius: 20px;
    padding: 52px 16px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-left {
    position: absolute;
    left: 0;
    top: 6px;
    width: 350px;
    height: 316px;
    border-radius: 0px 0px 20px 20px;
}

.hero-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
    height: 316px;
    border-radius: 0px 0px 20px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 44xspx;
    color: #000000;
    max-width: 740px;
    margin: 0 auto 10px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    max-width: 550px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #ffffff;
    background-color: #4268a3;
    border-radius: 20px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #2d4a7a;
    transform: translateY(-2px);
}

.btn-secondary {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #000000;
    background-color: transparent;
    border: 1px solid #4b6fa7;
    border-radius: 20px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #4268a3;
    color: #ffffff;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 40px 0;
}

.service-card {
    background-color: #f4f7f9;
    border-radius: 20px;
    padding: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(66, 104, 163, 0.1);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #000000;
    margin-bottom: 16px;
}

.service-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
}

/* Currency Section */
.currency-section {
    margin: 60px 0;
}

.section-title {
    position: relative;
    margin-bottom: 20px;
}

.title-bg {
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    text-transform: uppercase;
    color: #efefef;
    position: absolute;
    top: -15px;
    left: 0;
}

.title-fg {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
    color: #4268a3;
    position: relative;
    top: 0;
    left: 5px;
}

.currency-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    margin-bottom: 24px;
    max-width: 500px;
}

.currency-widget {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
}

.currency-attribution {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #b3b3b3;
    text-align: right;
}

.currency-attribution a {
    color: #4268a3;
    text-decoration: underline;
}

/* Company Section */
.company-section {
    margin: 60px 0;
}

.company-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.company-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    margin-bottom: 16px;
}

.company-text strong {
    font-weight: 700;
}

.company-values {
    margin-top: 20px;
}

.values-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #000000;
    margin-bottom: 16px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.value-dot {
    width: 5px;
    height: 5px;
    background-color: #4268a3;
    border-radius: 2px;
    margin-top: 8px;
    flex-shrink: 0;
}

.value-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-transform: lowercase;
    color: #4268a3;
}

.company-features {
    background-color: #f5f8f9;
    border-radius: 30px;
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 24px;
    height: 30px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
}

/* Quote Section */
.quote-section {
    background-image: url('images/img_583151_1.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 52px 100px;
    box-sizing: border-box;
}

.quote-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 58px;
    color: #ffffff;
    margin-bottom: 8px;
}

.quote-subtitle {
    font-size: 46px;
    font-weight: 700;
    line-height: 50px;
    color: #ffffff;
    margin-left: 100px;
}

/* Services Showcase */
.services-showcase {
    margin: 60px 0;
}

.showcase-grid {
    display: flex;
    gap: 20px;
}

.showcase-card {
    border-radius: 30px;
    padding: 20px 20px 40px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    background-color: #f5f8f9;
    color: #000000;
    flex: 1;
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-3px);
}

.showcase-card.primary {
    background-color: #4268a3;
    color: #ffffff;
    flex: 3;
}
.showcase-card.primary .text-card {
    display: block;
}
.text-card {
    display: none;
}
.ico-arrow {
    background: url("images/img_vector_indigo_500_42x42.svg");
    display: block;
    width: 42px;
    height: 42px;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.showcase-card.primary .ico-arrow {
    display: block;
    background: url("images/img_vector_white_a700.svg");
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.primary .card-number {
    color: #fff;
}
.card-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    opacity: 0.3;
    color: #4268A3;
}

.card-icon {
    width: 34px;
    height: 24px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    margin-top: auto;
    margin-bottom: 40px;
}

.card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    margin-bottom: 16px;
}

.card-features {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    margin-bottom: 8px;
}

.card-list {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}
.card-list-item {
    margin-bottom: 5px;
    margin-left: 20px;
}
.service-line {
    width: 40px;
    height: 3px;
    background-color: #4268a3;
    margin: 20px 0;
}

/* Process Section */
.process-section {
    margin: 60px 0;
}

.process-grid {
    display: flex;
    align-items: baseline;
}

.process-item {
    text-align: center;
    width: 240px;
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;

}

.process-icon-bg {
    background-color: #f5f8f9;
    border-radius: 100px;
    padding: 26px;
    display: inline-block;
    width: 100px;
    height: 100px;
}

/*.process-icon {*/
/*    width: 34px;*/
/*    height: 44px;*/
/*}*/

.process-number {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    right: -20px;
    background-color: #4268a3;
    color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 20px;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #000000;
    margin-bottom: 8px;
    height: 45px;
}

.process-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #000000;
}

.process-line {
    width: 40px;
    height: 3px;
    background-color: #4268a3;
    margin: 20px auto;

}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    margin: 60px 0;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info {
    padding: 20px 0;
}

.contact-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    margin-bottom: 24px;
    white-space: pre-line;
}
.contact-text .title {
    font-weight: 600;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    border-radius: 10px;
}

.contact-label {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #000000;
    text-decoration: none;
}

.contact-label:hover {
    color: #4268a3;
}

/* Contact Form */
.contact-form {
    background-color: #4268a3;
    border-radius: 30px;
    padding: 36px 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #f2f7f9;
}

.form-label .required {
    color: #ff250c;
}

.form-input {
    background-color: transparent;
    border: 1px solid #f2f7f9;
    border-radius: 22px;
    padding: 14px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #ffffff;
}

.form-input::placeholder {
    color: #b3b3b3;
}

.form-input option {
    background-color: #4268a3;
    color: #ffffff;
    padding: 8px;
}

.form-input:focus {
    outline: none;
    border-color: #ffffff;
}

.form-textarea {
    background-color: transparent;
    border: 1px solid #f2f7f9;
    border-radius: 30px;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #ffffff;
    min-height: 80px;
    resize: vertical;
}

.form-textarea::placeholder {
    color: #b3b3b3;
}

.form-privacy {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #ffffff;
    margin-bottom: 16px;
}

.form-privacy a {
    text-decoration: underline;
    color: #ffffff;
}

.form-submit {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #05385a;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px 34px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Form validation styles */
.form-input.error,
.form-input.error:focus {
    border-color: #ff250c;
}

.form-input.is-valid,
.form-input.is-valid:focus {
    border-color: #2e7d32;
}

select.form-input.error {
    border-color: #ff250c;
}

select.form-input.is-valid {
    border-color: #2e7d32;
}

.error-message {
    font-size: 12px;
    color: #ff250c;
    margin-top: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: #f5f8f9;
    padding: 18px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    width: 86px;
    height: 74px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #000000;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #05385a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4268a3;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-contact-icon {
    width: 20px;
    height: 20px;
    border-radius: 10px;
}

.footer-contact-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
    text-decoration: none;
}

.footer-contact-text:hover {
    color: #4268a3;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
}

.footer-copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #000000b2;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-legal-link {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #000000b2;
    text-decoration: none;
    display: none;
}

.footer-disclaimer {
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    color: #b3b3b3;
    margin-top: 20px;
    max-width: 950px;
}

/* Responsive media queries */

@media (max-width: 1200px) {
    .footer-disclaimer {
        max-width: 750px;
    }
}
@media (max-width: 1025px) {
    .header-btn {
        font-size: 16px;
    }
    .company-text {
        font-size: 16px;
    }
    .feature-text {
        font-size: 16px;
    }
}
@media (max-width: 769px) {
    .nav-item {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
    }
    .header-btn {
        font-size: 16px;
        padding: 5px 15px;
    }
    .nav-menu {
        gap: 20px;
    }
    .service-title {
        font-size: 16px;
        line-height: 20px;
    }
    .service-description {
        font-size: 14px;
    }
    .services-grid {
        gap: 10px;
        margin-top: 20px;
    }
    .company-text-section {
        flex: 2;
    }
    .feature-text {
        font-size: 14px;
    }
    .quote-subtitle {
        margin-left: 0;
    }
    .showcase-grid {
        gap: 10px;
        flex-wrap: wrap;
    }
    .showcase-card {

    }
    .showcase-card.primary {
        flex: 50%;
    }
    .process-icon-bg {
        width: 70px;
        height: 70px;
    }
    .process-number {
        padding: 5px;
        font-size: 10px;
        font-weight: 700;
        line-height: 12px;
    }
    .process-line {
        display: none;
    }
    .process-title {
        font-size: 16px;
        line-height: 20px;
    }
    .footer-disclaimer {
        max-width: 50%;
    }

    .company-features {
        flex: 1;
    }
    .process-line {
        display: none;
    }
    .process-description {
        font-size: 12px;
    }
    .quote-subtitle {
        font-size: 20px;
        line-height: 24px;
    }
    .quote-title {
        font-size: 32px;
        line-height: 36px;
    }
    .contact-content {
        flex-direction: column;
    }
}


@media (min-width: 640px) {


    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 19px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }





    .title-bg {
        font-size: 40px;
        line-height: 48px;
    }

    .title-fg {
        font-size: 38px;
        line-height: 46px;
    }

    .currency-description {
        font-size: 18px;
        line-height: 22px;
    }


    .quote-title {
        font-size: 40px;
        line-height: 48px;
    }



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

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





    .contact-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }

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

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-nav {
        flex-direction: row;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-legal {
        flex-direction: row;
        gap: 20px;
    }
}

@media (min-width: 768px) {


    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

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

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .title-bg {
        font-size: 44px;
        line-height: 53px;
    }

    .title-fg {
        font-size: 42px;
        line-height: 51px;
    }

    .company-content {
        flex-direction: row;
        align-items: flex-start;
    }




    .showcase-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 36px;
        line-height: 43px;
    }

    .title-bg {
        font-size: 48px;
        line-height: 59px;
    }

    .title-fg {
        font-size: 46px;
        line-height: 56px;
    }




}
@media (max-width: 450px) {
    .hero-bg-left,
    .hero-bg-right {
        display: none;
    }

    .hero-title {
        font-size: 22px;
        font-weight: 500;
        line-height: 26px;
    }

    .title-bg {
        font-size: 26px;
    }

    .title-fg {
        font-size: 24px;
    }
    .currency-description {
        font-size: 14px;
        line-height: 16px;
    }
    .process-grid {
        flex-wrap: wrap;
        align-items: stretch;
    }
    .process-item {
        width: 50%;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        max-width: 100%;
    }
}
