/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #89160f;
    --color-primary-dark: #84150e;
    --color-text-primary: #212529;
    --color-text-secondary: #495057;
    --color-text-light: rgba(255, 255, 255, 0.85);
    --color-bg-light: #f8f9fa;
    --color-bg-white: #ffffff;
    --color-border: rgba(0, 0, 0, 0.1);
    --color-gray-light: #e2e8f0;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 16px 0;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo img {
    height: 52.728px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: var(--color-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.btn-contato {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.36px;
    cursor: pointer;
    transition: background 0.3s;
    height: 60px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.desktop-visible {
    display: inline-flex;
}

.mobile-visible {
    display: none;
}

.btn-contato:hover {
    background: var(--color-primary-dark);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
    margin-top: 92px;
    background: var(--color-bg-white);
    padding: 140px 220px;
    position: relative;
    min-height: 921px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    background: var(--color-primary);
    width: 633px;
    height: 718px;
    left: calc(75% - 117.75px);
    top: 80px;
    z-index: 0;
}

.hero-container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 0 0 656px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: normal;
    color: var(--color-text-primary);
    letter-spacing: -1.28px;
    margin: 0;
}


.hero-description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-text-secondary);
    letter-spacing: -0.36px;
    width: 594px;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.36px;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 18px 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.36px;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

.hero-image {
    position: relative;
    width: 824px;
    height: 549px;
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Trust Section */
.trust-section {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    padding: 40px 220px 120px;
    text-align: center;
    overflow: hidden;
}

.trust-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 26.658px;
    line-height: 31.989px;
    color: #1e1f4b;
    letter-spacing: 0.2666px;
    margin-bottom: 40px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.trust-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
}

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

/* Operation Section */
.operation-section {
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    padding: 120px 220px 60px;
}

.operation-container {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.operation-content {
    flex: 1;
}

.operation-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: normal;
    color: var(--color-text-primary);
    letter-spacing: -1.28px;
    width: 609px;
}

.operation-title .highlight {
    color: var(--color-primary);
}

.operation-description {
    flex: 1;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-text-secondary);
    letter-spacing: -0.36px;
    width: 722px;
}

.operation-description p {
    margin-bottom: 20px;
}

/* Statistics Section */
.statistics-section {
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    padding: 60px 220px;
}

.statistics-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: normal;
    color: var(--color-text-primary);
    text-align: center;
    letter-spacing: -1.28px;
    margin-bottom: 60px;
}

.statistics-grid {
    display: flex;
    gap: 49.333px;
    justify-content: center;
    max-width: 1480px;
    margin: 0 auto;
}

.stat-card {
    flex: 1;
    background: var(--color-primary);
    border: 1.233px solid var(--color-primary);
    padding: 49.333px 40.7px;
    display: flex;
    flex-direction: column;
    gap: 14.103px;
    align-items: center;
    min-height: 272px;
    backdrop-filter: blur(6.167px);
}

.stat-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 59.2px;
    line-height: 94.72px;
    color: white;
    text-align: center;
    letter-spacing: -1.184px;
}

.stat-label {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20.72px;
    line-height: 33.152px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    text-transform: lowercase;
}

/* About Section */
.about-section {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    padding: 117.79px 220px;
}

.about-container {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    gap: 96.104px;
    align-items: flex-start;
}

.about-card-wrapper {
    flex: 1;
    position: relative;
}

.about-card-bg-left {
    position: absolute;
    background: var(--color-primary);
    width: 212px;
    height: 465px;
    left: -36px;
    top: -36.58px;
    z-index: 1;
}

.about-card-bg-right {
    position: absolute;
    background: rgba(137, 22, 15, 0.05);
    width: 307.532px;
    height: 307.532px;
    bottom: -28.68px;
    right: -29.58px;
    z-index: 1;
}

.about-card {
    position: relative;
    background: var(--color-bg-white);
    border: 1.201px solid var(--color-gray-light);
    box-shadow: 0px 30.032px 60.065px -14.416px rgba(0, 0, 0, 0.25);
    padding: 39.643px;
    display: flex;
    flex-direction: column;
    gap: 38.442px;
    z-index: 10;
}

.card-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4.805px;
    background: var(--color-primary-dark);
}

.card-content {
    padding-left: 33.636px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28.831px;
    line-height: 38.442px;
    color: #0f172a;
    margin-bottom: 20px;
}

.card-title .highlight-red {
    color: var(--color-primary);
}

.card-content p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16.82px;
    line-height: 28px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.card-logo {
    margin-top: auto;
    text-align: right;
    align-self: flex-end;
}

.card-logo img {
    width: 111.809px;
    height: 78.462px;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 19.221px;
}

.about-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: 48.052px;
    color: #0f172a;
    letter-spacing: -1.0812px;
}

.about-content p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 21.623px;
    line-height: 35.138px;
    color: var(--color-text-secondary);
}

/* How We Work Section */
.how-we-work-section {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    padding: 117.79px 220px;
}

.how-we-work-container {
    max-width: 1481px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.how-we-work-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: 86.827px;
    color: var(--color-text-primary);
    text-align: center;
    letter-spacing: -1.0853px;
}

.how-we-work-subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 21.62px;
    line-height: 34.731px;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 697px;
}

.features-grid {
    display: flex;
    gap: 38.468px;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 265.426px;
}

.feature-icon {
    width: 94.584px;
    height: 94.584px;
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.feature-icon img {
    width: 61.146px;
    height: 61.146px;
}

.feature-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16.83px;
    line-height: 24.042px;
    color: var(--color-text-primary);
    text-align: center;
}

/* Solutions Section */
.solutions-section {
    background: var(--color-primary-dark);
    border-bottom: 1px solid var(--color-border);
    padding: 162px 220px;
}

.solutions-container {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 78.946px;
}

.solutions-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: normal;
    color: white;
    text-align: center;
    letter-spacing: -1.0853px;
}

.solutions-subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 21.62px;
    line-height: 34.731px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 674px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 39px;
}

.solution-card {
    background: var(--color-bg-white);
    border: 2.467px solid transparent;
    box-shadow: 0px 4.933px 7.4px 0px rgba(0, 0, 0, 0.08);
    padding: 61.667px 51.8px;
    display: flex;
    flex-direction: column;
    gap: 34.533px;
    align-items: center;
    position: relative;
    min-height: 310px;
}

.solution-icon-wrapper {
    position: relative;
    width: 98.667px;
    height: 98.667px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -9.87px;
    margin-bottom: 9.87px;
}

.solution-icon-bg {
    position: absolute;
    background: var(--color-bg-light);
    width: 98.667px;
    height: 98.667px;
    border-radius: 49.333px;
    top: 0;
    left: 0;
    z-index: 1;
}

.solution-icon {
    position: relative;
    width: 78.933px;
    height: 78.933px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 16px;
    box-sizing: border-box;
}

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

.solution-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 24.667px;
    line-height: 37px;
    color: #1a1a1a;
    text-align: center;
}

/* Location Section */
.location-section {
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    padding: 86px 220px;
}

.location-container {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 78.933px;
}

.location-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: 86.827px;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: -1.0853px;
}

.location-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.location-address {
    background: var(--color-primary-dark);
    padding: 49px 40px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 475px;
    min-height: 315px;
    justify-content: center;
}

.address-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 25.5px;
    line-height: 1.3;
    color: white;
    margin-bottom: 10px;
}

.address-subtitle {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 20.675px;
    color: rgba(255, 255, 255, 0.85);
}

.address-divider {
    width: 100%;
    height: 1.343px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.address-description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 21.62px;
    line-height: 35.1px;
    color: white;
}

.location-map {
    flex: 1;
    height: 740px;
    border: 1.233px solid #e0e0e0;
    box-shadow: 0px 9.867px 24.667px 0px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-white);
    padding: 96px 224px;
}

.contact-container {
    max-width: 1473px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: 36px;
    color: #0f172a;
    letter-spacing: -0.75px;
    margin-bottom: 16px;
}

.contact-description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #64748b;
    width: 484px;
    margin-bottom: 24px;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 72px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--color-bg-light);
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.contact-label {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.contact-value {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #475569;
}

.contact-link {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-primary-dark);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-container {
    flex: 1;
    background: var(--color-bg-light);
    border: 1px solid #f1f5f9;
    padding: 33px;
}

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

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

.form-group label {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--color-bg-white);
    border: none;
    padding: 11px 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #94a3b8;
    width: 100%;
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--color-primary);
    color: var(--color-text-primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-submit {
    background: var(--color-primary-dark);
    color: white;
    border: none;
    padding: 12px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0px 10px 15px -3px rgba(137, 22, 15, 0.1), 0px 4px 6px -4px rgba(137, 22, 15, 0.1);
}

.btn-submit:hover {
    background: var(--color-primary);
}

/* Footer */
.footer {
    background: linear-gradient(130.45deg, #1a1a1a 0%, #000000 100%);
    padding: 80px 224px 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(137, 22, 15, 0), rgba(137, 22, 15, 0.3), rgba(137, 22, 15, 0));
}

.footer-container {
    max-width: 1473px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    gap: 58.98px;
    margin-bottom: 58.98px;
    padding-bottom: 40.549px;
    border-bottom: 1.229px solid rgba(255, 255, 255, 0.1);
}

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

.footer-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 23.592px;
    line-height: 37.747px;
    color: white;
    margin-bottom: 8px;
}

.footer-text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 17.694px;
    line-height: 28.261px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text-bold {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 17.694px;
    line-height: 28.261px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-link {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 17.694px;
    line-height: 28.261px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 585.094px;
}

.footer-logo img {
    height: 61.437px;
    width: auto;
}

.footer-copyright {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 17.694px;
    line-height: 28.261px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1600px) {
    .header-container,
    .hero-section,
    .operation-section,
    .statistics-section,
    .about-section,
    .how-we-work-section,
    .solutions-section,
    .location-section,
    .contact-section {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        flex: 1;
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
        max-width: 824px;
    }
    
    .statistics-grid {
        flex-wrap: wrap;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        flex-direction: column;
    }
    
    .location-address {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 92px;
        left: 0;
        right: 0;
        background: var(--color-bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid var(--color-border);
    }
    
    .btn-contato.desktop-visible {
        display: none;
    }
    
    .btn-contato.mobile-visible {
        display: inline-flex;
        width: 100%;
        margin-top: 10px;
        order: 10;
        height: 50px;
        padding: 15px;
        font-size: 16px;
    }
    
    .hero-section {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    
    .hero-description {
        width: 100%;
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 16px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        min-height: 300px;
    }
    
    .hero-section::before {
        display: none;
    }
    
    .trust-section {
        padding: 40px 20px 120px;
    }
    
    .trust-logos {
        gap: 20px;
        padding: 0 10px;
    }
    
    .trust-logo {
        height: 30px;
        max-width: 100px;
    }
    
    .operation-section,
    .statistics-section,
    .about-section,
    .how-we-work-section,
    .solutions-section,
    .location-section,
    .contact-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .operation-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .operation-title {
        font-size: 36px;
        width: 100%;
    }
    
    .operation-description {
        width: 100%;
        font-size: 16px;
    }
    
    .statistics-title {
        font-size: 36px;
    }
    
    .statistics-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-card-wrapper {
        width: 100%;
    }
    
    .about-card {
        width: 100%;
    }
    
    .about-card-bg-left,
    .about-card-bg-right {
        display: none;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .how-we-work-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .how-we-work-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        flex-direction: column;
        overflow-x: visible;
        padding-bottom: 0;
        align-items: center;
        gap: 30px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 265px;
    }
    
    .solutions-title {
        font-size: 36px;
    }
    
    .solutions-subtitle {
        font-size: 18px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card {
        padding: 40px 30px;
    }
    
    .location-title {
        font-size: 36px;
    }
    
    .location-content {
        flex-direction: column;
    }
    
    .location-address {
        width: 100%;
    }
    
    .location-map {
        height: 400px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-description {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-container {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer {
        padding: 60px 20px 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

