* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.page-loader__spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(48, 97, 181, 0.1);
    border-top-color: rgb(48, 97, 181);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.page-content {
    transition: opacity 0.5s ease-in;
    opacity: 0;
}

.page-content.loaded {
    opacity: 1;
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hero animation só inicia após o loading sair */
.page-content.loaded .hero-section__content {
    animation: fadeInUp 1s ease-out;
}

.services-section__card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-section__card.animated {
    opacity: 1;
    transform: translateY(0);
}

.solutions-section__card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.solutions-section__card.animated {
    opacity: 1;
    transform: translateY(0);
}

.solutions-section__ai {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.solutions-section__ai.animated {
    opacity: 1;
    transform: translateY(0);
}

.results-section__stat-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.results-section__stat-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.results-section__case {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.results-section__case.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-section__info-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-section__info-item.animated {
    opacity: 1;
    transform: translateX(0);
}

.contact-section__form-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-section__form-wrapper.animated {
    opacity: 1;
    transform: translateY(0);
}

.results-section {
    padding: 96px 0;
    background-color: rgb(248, 250, 251);
    scroll-margin-top: 80px;
}

.results-section__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.results-section__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .results-section__content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.results-section__left {
    display: flex;
    flex-direction: column;
}

.results-section__header {
    margin-bottom: 32px;
}

.results-section__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: rgb(48, 97, 181);
    margin-bottom: 16px;
    padding: 8px 16px;
    background-color: rgba(48, 97, 181, 0.1);
    border: 1px solid rgba(48, 97, 181, 0.3);
    border-radius: 20px;
    font-family: 'Inter', system-ui, sans-serif;
}

.results-section__title {
    font-size: 36px;
    font-weight: 700;
    color: rgb(19, 35, 57);
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.2;
}

.results-section__description {
    font-size: 16px;
    color: rgba(19, 35, 57, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Inter', system-ui, sans-serif;
}

.results-section__benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.results-section__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-section__benefit-icon-wrapper {
    width: 24px;
    height: 24px;
    background-color: rgba(48, 97, 181, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.results-section__benefit-icon {
    width: 16px;
    height: 16px;
    color: rgb(48, 97, 181);
    stroke-width: 2;
}

.results-section__benefit-text {
    font-size: 14px;
    color: rgba(19, 35, 57, 0.8);
    font-family: 'Inter', system-ui, sans-serif;
}

.results-section__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .results-section__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.results-section__stat-card {
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(19, 35, 57, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.results-section__stat-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: rgba(218, 240, 251, 1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.results-section__stat-icon {
    width: 28px;
    height: 28px;
    color: rgb(48, 97, 181);
    stroke-width: 2;
}

.results-section__stat-value {
    font-size: 36px;
    font-weight: 700;
    color: rgb(19, 35, 57);
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.results-section__stat-label {
    font-size: 14px;
    color: rgba(19, 35, 57, 0.8);
    font-family: 'Inter', system-ui, sans-serif;
}

.results-section__case {
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(19, 35, 57, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .results-section__case {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.results-section__case-title {
    font-size: 24px;
    font-weight: 600;
    color: rgb(19, 35, 57);
    margin-bottom: 16px;
    font-family: 'Inter', system-ui, sans-serif;
}

.results-section__case-description {
    font-size: 16px;
    color: rgba(19, 35, 57, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'Inter', system-ui, sans-serif;
}

.results-section__case-content {
    display: flex;
    flex-direction: column;
}

.results-section__case-chart {
    background: linear-gradient(135deg, rgba(48, 97, 181, 0.1) 0%, rgba(13, 166, 242, 0.1) 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.results-section__chart-title {
    font-size: 13px;
    font-weight: 600;
    color: rgb(48, 97, 181);
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Inter', system-ui, sans-serif;
}

.results-section__chart-bars-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.results-section__chart-bars {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    height: 180px;
    padding-top: 28px;
}

.results-section__chart-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

.results-section__chart-bar-value {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    font-weight: 700;
    color: rgb(100, 116, 139);
    font-family: 'Inter', system-ui, sans-serif;
    white-space: nowrap;
}

.results-section__chart-bar {
    width: 40px;
    background: linear-gradient(to top, rgb(48, 97, 181) 0%, rgb(13, 166, 242) 100%);
    border-radius: 5px;
    transition: height 1s ease-out;
}

.results-section__chart-period {
    font-size: 11px;
    font-weight: 500;
    color: rgb(100, 116, 139);
    text-align: center;
    font-family: 'Inter', system-ui, sans-serif;
    margin-top: 16px;
}

.contact-section {
    padding: 96px 0;
    background-color: rgb(255, 255, 255);
    scroll-margin-top: 80px;
}

.contact-section__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-section__left {
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .contact-section__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .contact-section__left {
        margin-bottom: 0;
    }
}

.contact-section__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: rgb(48, 97, 181);
    margin-bottom: 16px;
    padding: 8px 16px;
    background-color: rgba(48, 97, 181, 0.1);
    border: 1px solid rgba(48, 97, 181, 0.3);
    border-radius: 20px;
    font-family: 'Inter', system-ui, sans-serif;
}

.contact-section__title {
    font-size: 36px;
    font-weight: 700;
    color: rgb(19, 35, 57);
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.2;
}

.contact-section__description {
    font-size: 16px;
    color: rgba(19, 35, 57, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Inter', system-ui, sans-serif;
}

.contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-section__info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: rgb(248, 250, 251);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section__info-item:hover {
    background-color: rgba(48, 97, 181, 0.05);
    transform: translateX(4px);
}

.contact-section__info-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(218, 240, 251, 1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-section__info-icon {
    width: 24px;
    height: 24px;
    color: rgb(48, 97, 181);
    stroke-width: 2;
}

.contact-section__info-label {
    font-size: 12px;
    color: rgba(19, 35, 57, 0.6);
    margin-bottom: 4px;
    font-family: 'Inter', system-ui, sans-serif;
}

.contact-section__info-value {
    font-size: 16px;
    font-weight: 500;
    color: rgb(19, 35, 57);
    font-family: 'Inter', system-ui, sans-serif;
}

.contact-section__info-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-section__director {
    display: flex;
    gap: 16px;
    padding: 16px;
    background-color: rgb(248, 250, 251);
    border-radius: 12px;
}

.contact-section__director-image-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(218, 240, 251, 1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-section__director-icon {
    width: 24px;
    height: 24px;
    color: rgb(48, 97, 181);
    stroke-width: 2;
}

.contact-section__director-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-section__director-title {
    font-size: 16px;
    font-weight: 600;
    color: rgb(19, 35, 57);
    margin-bottom: 8px;
    font-family: 'Inter', system-ui, sans-serif;
}

.contact-section__director-description {
    font-size: 14px;
    color: rgba(19, 35, 57, 0.8);
    line-height: 1.5;
    font-family: 'Inter', system-ui, sans-serif;
}

.contact-section__form-wrapper {
    background-color: rgb(248, 250, 251);
    border-radius: 16px;
    padding: 40px;
}

.contact-section__form-title {
    font-size: 24px;
    font-weight: 600;
    color: rgb(19, 35, 57);
    margin-bottom: 24px;
    font-family: 'Inter', system-ui, sans-serif;
}

.contact-section__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-section__form-label {
    font-size: 14px;
    font-weight: 500;
    color: rgb(19, 35, 57);
    font-family: 'Inter', system-ui, sans-serif;
}

.contact-section__form-input,
.contact-section__form-textarea {
    padding: 12px 16px;
    border: 1px solid rgba(19, 35, 57, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', system-ui, sans-serif;
    color: rgb(19, 35, 57);
    background-color: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

.contact-section__form-input:focus,
.contact-section__form-textarea:focus {
    outline: none;
    border-color: rgb(48, 97, 181);
    box-shadow: 0 0 0 3px rgba(48, 97, 181, 0.1);
}

.contact-section__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-section__form-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: rgb(48, 97, 181);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', system-ui, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-section__form-button:hover {
    background-color: rgb(38, 77, 151);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 97, 181, 0.3);
}

.contact-section__form-button-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.site-footer {
    background-color: rgb(19, 35, 57);
    padding: 48px 0 24px;
    color: rgb(255, 255, 255);
}

.site-footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .site-footer__content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site-footer__logo img {
    height: 40px;
    width: auto;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.site-footer__nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', system-ui, sans-serif;
    transition: color 0.3s ease;
}

.site-footer__nav-link:hover {
    color: rgb(255, 255, 255);
}

.site-footer__button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: rgb(48, 97, 181);
    color: rgb(255, 255, 255);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', system-ui, sans-serif;
    transition: all 0.3s ease;
}

.site-footer__button:hover {
    background-color: rgb(38, 77, 151);
    transform: translateY(-2px);
}

.site-footer__button-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

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

.site-footer__copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-family: 'Inter', system-ui, sans-serif;
}

.site-footer__tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-family: 'Inter', system-ui, sans-serif;
}

.site-footer__powered {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', system-ui, sans-serif;
}

.site-footer__powered-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__powered-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header__container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1280px) {
    .site-header__container {
        max-width: 1280px;
    }
}

.site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header__logo img {
    height: 48px;
    width: auto;
}

.site-header__nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .site-header__nav {
        display: flex;
    }
}

.site-header__nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(19, 35, 57, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.site-header__nav-link:hover {
    color: rgb(48, 97, 181);
}

.site-header__button-wrapper {
    display: none;
    align-items: center;
    gap: 16px;
}

.site-header__button-wrapper--desktop {
    display: none;
}

@media (min-width: 1024px) {
    .site-header__button-wrapper {
        display: none;
    }

    .site-header__button-wrapper--desktop {
        display: flex;
    }

    .site-header__nav .site-header__button-wrapper {
        display: none;
    }
}

.site-header__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgb(48, 97, 181);
    color: rgb(255, 255, 255);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-family: 'Inter', system-ui, sans-serif;
    border: none;
    cursor: pointer;
}

.site-header__button:hover {
    background-color: rgb(38, 77, 145);
}

.site-header__button-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: rgba(19, 35, 57, 0.8);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    position: relative;
    transition: transform 0.2s ease;
}

.site-header__menu-toggle:active {
    transform: scale(0.95);
}

@media (min-width: 1024px) {
    .site-header__menu-toggle {
        display: none;
    }

    .site-header__overlay {
        display: none;
    }
}

.site-header__menu-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-header__menu-icon--close {
    position: absolute;
    opacity: 0;
    transform: rotate(90deg);
}

.site-header__menu-icon--hamburger {
    opacity: 1;
    transform: rotate(0deg);
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon--hamburger {
    opacity: 0;
    transform: rotate(-90deg);
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon--close {
    opacity: 1;
    transform: rotate(0deg);
}

.site-content {
    margin-top: 80px;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.hero-section__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 91, 0.9) 0%, rgba(48, 97, 181, 0.9) 100%);
    opacity: 0.9;
    z-index: 1;
}

.hero-section__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.hero-section__badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'Inter', system-ui, sans-serif;
}

.hero-section__title {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.hero-section__title-accent {
    color: rgb(13, 166, 242);
}

.hero-section__title .hero-section__title-gradient {
    background: linear-gradient(135deg, rgb(13, 166, 242) 0%, rgb(48, 97, 181) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    display: inline-block;
}

@media (min-width: 768px) {
    .hero-section__title {
        font-size: 60px;
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .hero-section__title {
        font-size: 72px;
        line-height: 1;
    }
}

.hero-section__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 672px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-family: 'Inter', system-ui, sans-serif;
}

@media (min-width: 768px) {
    .hero-section__description {
        font-size: 20px;
    }
}

.hero-section__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

@media (min-width: 640px) {
    .hero-section__buttons {
        flex-direction: row;
        gap: 16px;
    }
}

.hero-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Inter', system-ui, sans-serif;
    border: none;
    cursor: pointer;
}

.hero-section__button--primary {
    background-color: rgb(255, 255, 255);
    color: rgb(48, 97, 181);
}

.hero-section__button--primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-section__button--secondary {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-section__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-section__button-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.hero-section__scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s ease;
    z-index: 10;
    font-family: 'Inter', system-ui, sans-serif;
}

.hero-section__scroll-down:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero-section__scroll-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.services-section {
    padding: 96px 0;
    background-color: rgb(248, 250, 251);
    scroll-margin-top: 80px;
}

.services-section__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.services-section__header {
    text-align: center;
    margin-bottom: 64px;
}

.services-section__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: rgb(48, 97, 181);
    margin-bottom: 16px;
    padding: 8px 16px;
    background-color: rgba(48, 97, 181, 0.1);
    border: 1px solid rgba(48, 97, 181, 0.3);
    border-radius: 20px;
    font-family: 'Inter', system-ui, sans-serif;
}

.services-section__title {
    font-size: 36px;
    font-weight: 700;
    color: rgb(19, 35, 57);
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.2;
}

.services-section__title-gradient {
    background: linear-gradient(135deg, rgb(13, 166, 242) 0%, rgb(48, 97, 181) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    display: inline-block;
}

.services-section__description {
    font-size: 18px;
    color: rgb(102, 123, 153);
    max-width: 672px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', system-ui, sans-serif;
}

.services-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-section__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.services-section__card {
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(19, 35, 57, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-section__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-section__card-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: rgb(218, 240, 251);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.services-section__card-icon {
    width: 28px;
    height: 28px;
    color: rgb(48, 97, 181);
    stroke-width: 2;
}

.services-section__card-title {
    font-size: 20px;
    font-weight: 600;
    color: rgb(19, 35, 57);
    margin-bottom: 12px;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.3;
}

.services-section__card-description {
    font-size: 16px;
    color: rgba(19, 35, 57, 0.8);
    line-height: 1.6;
    font-family: 'Inter', system-ui, sans-serif;
}

.solutions-section {
    padding: 96px 0;
    background-color: rgb(255, 255, 255);
    scroll-margin-top: 80px;
}

.solutions-section__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.solutions-section__header {
    text-align: center;
    margin-bottom: 64px;
}

.solutions-section__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: rgb(48, 97, 181);
    margin-bottom: 16px;
    padding: 8px 16px;
    background-color: rgba(48, 97, 181, 0.1);
    border: 1px solid rgba(48, 97, 181, 0.3);
    border-radius: 20px;
    font-family: 'Inter', system-ui, sans-serif;
}

.solutions-section__title {
    font-size: 36px;
    font-weight: 700;
    color: rgb(19, 35, 57);
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.2;
}

.solutions-section__title-gradient {
    background: linear-gradient(135deg, rgb(13, 166, 242) 0%, rgb(48, 97, 181) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    display: inline-block;
}

.solutions-section__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .solutions-section__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solutions-section__card {
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(19, 35, 57, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.solutions-section__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.solutions-section__card-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgb(48, 97, 181);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solutions-section__card-icon {
    width: 24px;
    height: 24px;
    color: rgb(255, 255, 255);
    stroke-width: 2;
}

.solutions-section__card-title {
    font-size: 24px;
    font-weight: 600;
    color: rgb(19, 35, 57);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.3;
}

.solutions-section__card-description {
    font-size: 16px;
    color: rgba(19, 35, 57, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'Inter', system-ui, sans-serif;
}

.solutions-section__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .solutions-section__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solutions-section__feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.solutions-section__feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: rgba(48, 97, 181, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solutions-section__feature-icon {
    width: 20px;
    height: 20px;
    color: rgb(48, 97, 181);
    stroke-width: 2;
}

.solutions-section__feature-text {
    font-size: 14px;
    color: rgba(19, 35, 57, 0.8);
    font-family: 'Inter', system-ui, sans-serif;
}

.solutions-section__feature-text {
    font-size: 14px;
    color: rgba(19, 35, 57, 0.8);
    font-family: 'Inter', system-ui, sans-serif;
}

.solutions-section__ai {
    background: linear-gradient(135deg, rgb(48, 97, 181) 0%, rgb(13, 166, 242) 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(48, 97, 181, 0.3);
}

.solutions-section__ai-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(230, 245, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.solutions-section__ai-icon {
    width: 48px;
    height: 48px;
    color: rgb(255, 255, 255);
    stroke-width: 2;
}

.solutions-section__ai-title {
    font-size: 24px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
    font-family: 'Inter', system-ui, sans-serif;
}

.solutions-section__ai-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', system-ui, sans-serif;
}

@media (max-width: 1023px) {
    .site-header__nav {
        display: flex !important;
        position: fixed;
        left: 0;
        right: 0;
        background-color: rgb(255, 255, 255);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 101;
        top: 80px;
    }

    @media (max-width: 767px) {
        .site-header__nav {
            top: 70px;
        }
    }

    .site-header__nav.mobile-open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
    }

    .site-header__overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 90;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    body.menu-open .site-header__overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-header__nav-link {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(19, 35, 57, 0.1);
        font-size: 16px;
        text-align: left;
    }

    .site-header__nav-link:last-child {
        border-bottom: none;
    }

    .site-header__nav .site-header__button-wrapper {
        display: flex !important;
        position: relative;
        width: 100%;
        background-color: rgb(255, 255, 255);
        border-top: 1px solid rgba(19, 35, 57, 0.1);
        padding: 16px 20px;
        margin: 0;
    }

    .site-header__button-wrapper--desktop {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .site-header {
        height: 70px;
    }

    .site-header__container {
        padding: 0 12px;
        position: relative;
    }

    .site-header__logo img {
        height: 40px;
    }

    .site-header__button {
        width: 100%;
        justify-content: center;
    }

    .site-content {
        margin-top: 70px;
    }

    .hero-section {
        min-height: calc(100vh - 70px);
        padding: 40px 0;
    }

    .hero-section__content {
        padding: 0 16px;
    }

    .hero-section__badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-section__title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-section__description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-section__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-section__button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-section__scroll-down {
        bottom: 20px;
        font-size: 11px;
    }

    .services-section,
    .solutions-section,
    .results-section,
    .contact-section {
        padding: 64px 0;
        scroll-margin-top: 70px;
    }

    .hero-section {
        scroll-margin-top: 70px;
    }

    .services-section__container,
    .solutions-section__container,
    .results-section__container,
    .contact-section__container {
        padding: 0 16px;
    }

    .services-section__header,
    .solutions-section__header,
    .results-section__header {
        margin-bottom: 40px;
    }

    .services-section__title,
    .solutions-section__title,
    .results-section__title,
    .contact-section__title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .services-section__description,
    .solutions-section__description,
    .results-section__description,
    .contact-section__description {
        font-size: 16px;
    }

    .services-section__grid {
        gap: 16px;
    }

    .services-section__card {
        padding: 24px;
    }

    .services-section__card-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .services-section__card-icon {
        width: 24px;
        height: 24px;
    }

    .services-section__card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .services-section__card-description {
        font-size: 14px;
    }

    .solutions-section__card {
        padding: 24px;
    }

    .solutions-section__card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .solutions-section__card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .solutions-section__features {
        gap: 12px;
    }

    .solutions-section__feature {
        padding: 12px;
    }

    .solutions-section__feature-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .solutions-section__feature-icon {
        width: 18px;
        height: 18px;
    }

    .solutions-section__feature-text {
        font-size: 13px;
    }

    .solutions-section__ai {
        padding: 24px;
    }

    .solutions-section__ai-icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .solutions-section__ai-icon {
        width: 32px;
        height: 32px;
    }

    .solutions-section__ai-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .solutions-section__ai-description {
        font-size: 14px;
    }

    .results-section__content {
        flex-direction: column;
        gap: 32px;
    }

    .results-section__left {
        width: 100%;
    }

    .results-section__benefits {
        gap: 12px;
        margin-bottom: 24px;
    }

    .results-section__benefit-text {
        font-size: 13px;
    }

    .results-section__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .results-section__stat-card {
        padding: 24px;
    }

    .results-section__stat-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .results-section__stat-icon {
        width: 24px;
        height: 24px;
    }

    .results-section__stat-value {
        font-size: 32px;
        margin-bottom: 4px;
    }

    .results-section__stat-label {
        font-size: 13px;
    }

    .results-section__case {
        padding: 24px;
        flex-direction: column;
    }

    .results-section__case-content {
        margin-bottom: 24px;
    }

    .results-section__case-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .results-section__case-description {
        font-size: 14px;
    }

    .results-section__case-chart {
        padding: 16px;
    }

    .results-section__chart-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .results-section__chart-bars {
        height: 140px;
        gap: 8px;
        padding-top: 24px;
    }

    .results-section__chart-bar {
        width: 32px;
    }

    .results-section__chart-bar-value {
        font-size: 13px;
    }

    .results-section__chart-period {
        font-size: 12px;
        margin-top: 12px;
    }

    .contact-section__container {
        flex-direction: column;
        gap: 32px;
    }

    .contact-section__left {
        margin-bottom: 0;
    }

    .contact-section__title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-section__description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .contact-section__info {
        gap: 12px;
        margin-bottom: 24px;
    }

    .contact-section__info-item {
        padding: 12px;
    }

    .contact-section__info-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .contact-section__info-icon {
        width: 20px;
        height: 20px;
    }

    .contact-section__info-label {
        font-size: 12px;
    }

    .contact-section__info-value {
        font-size: 14px;
    }

    .contact-section__director {
        padding: 16px;
    }

    .contact-section__director-image-wrapper {
        width: 40px;
        height: 40px;
    }

    .contact-section__director-icon {
        width: 20px;
        height: 20px;
    }

    .contact-section__director-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .contact-section__director-description {
        font-size: 12px;
    }

    .contact-section__form-wrapper {
        padding: 24px;
    }

    .contact-section__form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-section__form-group {
        margin-bottom: 16px;
    }

    .contact-section__form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .contact-section__form-input,
    .contact-section__form-textarea {
        font-size: 14px;
        padding: 12px;
    }

    .contact-section__form-button {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }

    .site-footer {
        padding: 32px 0 16px;
    }

    .site-footer__container {
        padding: 0 16px;
    }

    .site-footer__content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .site-footer__logo img {
        height: 40px;
    }

    .site-footer__nav {
        flex-direction: column;
        gap: 12px;
    }

    .site-footer__nav-link {
        font-size: 14px;
    }

    .site-footer__button {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .site-footer__copyright,
    .site-footer__tagline,
    .site-footer__powered {
        font-size: 12px;
    }

    .site-header__menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section__button,
    .contact-section__form-button,
    .site-footer__button {
        min-height: 44px;
        touch-action: manipulation;
    }

    .services-section__card,
    .solutions-section__card,
    .contact-section__info-item {
        touch-action: manipulation;
    }

    .results-section__chart-bars-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .results-section__chart-bars {
        min-width: min-content;
    }
}

@media (max-width: 480px) {
    .hero-section__title {
        font-size: 28px;
    }

    .services-section__title,
    .solutions-section__title,
    .results-section__title,
    .contact-section__title {
        font-size: 24px;
    }

    .services-section__card,
    .solutions-section__card,
    .results-section__stat-card,
    .results-section__case,
    .contact-section__form-wrapper {
        padding: 20px;
    }

    .results-section__chart-bars {
        height: 120px;
        gap: 6px;
    }

    .results-section__chart-bar {
        width: 28px;
    }

    .results-section__chart-bar-value {
        font-size: 12px;
    }
}
