:root {
    --navy: #071426;
    --navy-light: #10243d;
    --gold: #c88935;
    --gold-light: #e2ad60;
    --white: #ffffff;
    --bg: #f5f6f7;
    --text: #172033;
    --muted: #6b7482;
    --line: #e2e6ea;
    --green: #25d366;
    --radius: 22px;
    --shadow: 0 20px 60px rgba(7, 20, 38, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background: white;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}

section {
    padding: 105px 0;
    scroll-margin-top: 85px;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: .25s;
}

.btn-primary {
    background: var(--gold);
    color: white;
}

.btn-primary:hover {
    background: #b87828;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: white;
}

.btn-dark:hover {
    background: #10243d;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.45);
    color: white;
    background: rgba(255,255,255,.04);
}

.btn-outline:hover {
    background: white;
    color: var(--navy);
}


/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5,15,28,.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    flex-shrink: 0;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(200,137,53,.75);
    color: var(--gold-light);
    font-weight: 900;
    font-size: 20px;
}

.logo-name {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-subtitle {
    display: block;
    margin-top: -4px;
    color: #8f9bad;
    font-size: 8px;
    letter-spacing: 1.5px;
}

nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 19px;
}

nav a {
    color: #dbe1e8;
    font-size: 13px;
    transition: .2s;
    white-space: nowrap;
}

nav a:hover {
    color: var(--gold-light);
}

.partner-menu-link {
    color: var(--gold-light) !important;
    font-weight: 700;
}

.nav-cta {
    padding: 11px 16px;
    border-radius: 7px;
    background: var(--gold);
    color: white !important;
    font-weight: 700;
}

.menu-button {
    display: none;
    background: transparent;
    border: 0;
    color: white;
    font-size: 28px;
}


/* LANGUAGE SWITCHER */

.language-switcher {
    display: flex;
    align-items: center;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    flex-shrink: 0;
}

.lang-btn {
    min-width: 42px;
    height: 32px;
    padding: 0 8px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #9ba7b5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    transition: .2s;
}

.lang-btn:hover {
    color: white;
}

.lang-btn.active {
    background: var(--gold);
    color: white;
}


/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(4,13,25,.98) 0%,
            rgba(4,13,25,.90) 42%,
            rgba(4,13,25,.30) 100%
        ),
        url("hero.jpg") center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    padding-top: 110px;
    padding-bottom: 70px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 27px;
    font-size: clamp(47px,6.5vw,88px);
    line-height: .97;
    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-description {
    max-width: 650px;
    margin-bottom: 35px;
    color: #d2d9e1;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    margin-top: 60px;
    padding-top: 27px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.hero-feature strong {
    display: block;
    color: var(--gold-light);
    font-size: 16px;
}

.hero-feature span {
    color: #aeb8c5;
    font-size: 11px;
}


/* TITLES */

.section-label {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    max-width: 850px;
    margin-bottom: 20px;
    font-size: clamp(35px,4vw,55px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.section-description {
    max-width: 750px;
    color: var(--muted);
    font-size: 17px;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 75px;
    align-items: center;
}

.statement {
    position: relative;
    overflow: hidden;
    padding: 55px;
    border-radius: var(--radius);
    background: var(--navy);
    color: white;
    box-shadow: var(--shadow);
}

.statement::after {
    content: "N";
    position: absolute;
    right: -15px;
    bottom: -105px;
    color: rgba(255,255,255,.035);
    font-size: 300px;
    font-weight: 900;
}

.statement h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.08;
}

.statement h3 span {
    color: var(--gold-light);
}

.statement p {
    position: relative;
    z-index: 2;
    color: #b6c0cc;
}


/* SERVICES */

.services {
    background: linear-gradient(180deg,#f7f8f9 0%,#f2f4f6 100%);
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.services-side-text {
    max-width: 230px;
    padding-bottom: 10px;
    color: #718092;
    font-size: 14px;
}

.services-side-text::before {
    content: "→";
    margin-right: 15px;
    color: var(--gold);
    font-size: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 55px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: white;
    box-shadow: 0 8px 30px rgba(7,20,38,.04);
    transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(7,20,38,.14);
    border-color: transparent;
}

.service-photo {
    position: relative;
    height: 225px;
    overflow: hidden;
    background: #dfe3e7;
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.service-card:hover .service-photo img {
    transform: scale(1.055);
}

.service-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(7,20,38,.02) 40%,
            rgba(7,20,38,.20) 100%
        );
}

.service-number {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    width: 42px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--gold);
    color: white;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

.service-content {
    padding: 25px 25px 29px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.3;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
}

.service-tag {
    display: inline-block;
    margin-top: 18px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ADVANTAGES */

.advantages-section {
    background: var(--navy);
    color: white;
}

.advantages-section .section-description {
    color: #abb6c4;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 55px;
    border-top: 1px solid rgba(255,255,255,.13);
    border-left: 1px solid rgba(255,255,255,.13);
}

.advantage {
    min-height: 205px;
    padding: 37px;
    border-right: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.advantage-icon {
    color: var(--gold-light);
    font-size: 26px;
}

.advantage h3 {
    margin: 17px 0 8px;
    font-size: 18px;
}

.advantage p {
    color: #aab5c3;
    font-size: 13px;
}


/* PROCESS */

.process-list {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    margin-top: 60px;
}

.process-step {
    position: relative;
    padding-right: 15px;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 7px;
    width: 30%;
    height: 1px;
    background: #d7dce1;
}

.step-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 11px;
    font-weight: 800;
}

.process-step:nth-child(even) .step-number {
    background: var(--gold);
}

.process-step h3 {
    font-size: 13px;
}


/* TRIAL */

.trial {
    background: var(--bg);
}

.trial-box {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    color: white;
    box-shadow: var(--shadow);
}

.trial-image {
    position: relative;
    min-height: 500px;
    background:
        linear-gradient(
            180deg,
            rgba(7,20,38,.06),
            rgba(7,20,38,.25)
        ),
        url("service-mop.jpg") center/cover no-repeat;
}

.trial-badge {
    position: absolute;
    left: 32px;
    bottom: 32px;
    max-width: 330px;
    padding: 22px 25px;
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: rgba(7,20,38,.88);
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.trial-badge span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.trial-badge strong {
    display: block;
    margin-bottom: 6px;
    color: white;
    font-size: 15px;
}

.trial-badge small {
    display: block;
    color: #b7c2cf;
    font-size: 11px;
    line-height: 1.5;
}

.trial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.trial-content h2 {
    margin-bottom: 22px;
    font-size: 44px;
    line-height: 1.05;
}

.trial-content p {
    margin-bottom: 20px;
    color: #bac4d0;
}


/* PARTNERS */

.partners {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#071426 0%,#0d223d 100%);
    color: white;
}

.partners::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(200,137,53,.10);
}

.partners-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: end;
}

.partners .section-title {
    color: white;
}

.partners .section-description {
    color: #b6c1ce;
}

.partners-intro {
    padding-left: 30px;
    border-left: 2px solid var(--gold);
}

.partners-intro strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 17px;
}

.partners-intro p {
    color: #aeb9c7;
    font-size: 14px;
}

.partner-types {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin-top: 55px;
}

.partner-type {
    min-height: 190px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    transition: .25s;
}

.partner-type:hover {
    transform: translateY(-5px);
    border-color: rgba(200,137,53,.6);
    background: rgba(255,255,255,.06);
}

.partner-type-number {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
}

.partner-type h3 {
    margin: 27px 0 8px;
    font-size: 17px;
}

.partner-type p {
    color: #9fabb9;
    font-size: 13px;
}

.partner-application {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 65px;
    margin-top: 75px;
    padding: 55px;
    border-radius: 22px;
    background: white;
    color: var(--text);
}

.partner-form-info h3 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.1;
}

.partner-form-info > p {
    color: var(--muted);
}

.partner-benefits {
    margin-top: 35px;
}

.partner-benefit {
    display: flex;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.partner-benefit span:first-child {
    color: var(--gold);
    font-weight: 900;
}


/* FORMS */

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full {
    grid-column: 1/-1;
}

.form label {
    font-size: 11px;
    font-weight: 800;
    color: #5e6875;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dce1e6;
    border-radius: 8px;
    outline: none;
    background: white;
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,137,53,.10);
}

textarea {
    min-height: 115px;
    resize: vertical;
}

.form-submit,
.privacy,
.success-message {
    grid-column: 1/-1;
}

.form-submit .btn {
    width: 100%;
}

.privacy {
    color: #8a929c;
    font-size: 10px;
}

.success-message {
    display: none;
    padding: 15px;
    border-radius: 8px;
    background: #edf8f1;
    color: #176b38;
    font-size: 13px;
    font-weight: 700;
}


/* ESTIMATE */

.estimate {
    background: var(--bg);
}

.estimate-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.estimate-list {
    margin-top: 30px;
}

.estimate-item {
    display: flex;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.estimate-item span:first-child {
    color: var(--gold);
    font-weight: 900;
}

.estimate-form {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: 0 15px 50px rgba(7,20,38,.05);
}

.estimate-form h3 {
    margin-bottom: 23px;
    font-size: 25px;
}


/* CTA */

.cta {
    padding: 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px;
    background: var(--gold);
}

.cta h2 {
    max-width: 750px;
    color: white;
    font-size: clamp(35px,4vw,54px);
    line-height: 1.02;
}


/* FOOTER */

footer {
    padding: 70px 0 25px;
    background: #050e19;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-brand {
    margin-bottom: 16px;
    font-size: 27px;
    font-weight: 900;
}

.footer-brand span {
    color: var(--gold-light);
}

footer h4 {
    margin-bottom: 17px;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

footer p,
footer a {
    color: #98a5b5;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a:hover {
    color: white;
}


/* COMPANY DETAILS */

.company-details {
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.company-details h4 {
    margin-bottom: 22px;
}

.company-details-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.3fr 1fr;
    gap: 35px;
}

.company-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    color: #657284;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.company-detail-item strong {
    color: #c5ced9;
    font-size: 13px;
    font-weight: 500;
}


/* LEGAL */

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-legal a {
    color: #7e8b9b;
    font-size: 11px;
    transition: color .2s ease;
}

.footer-legal a:hover {
    color: var(--gold-light);
}

.footer-dot {
    color: #465466;
    font-size: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 23px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #657284;
    font-size: 11px;
}


/* WHATSAPP */

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: .25s;
}

.whatsapp:hover {
    transform: scale(1.08);
}


/* RESPONSIVE */

@media(max-width:1150px) {

    .nav {
        gap: 13px;
    }

    nav ul {
        gap: 12px;
    }

    nav a {
        font-size: 12px;
    }

    .nav-cta {
        padding: 10px 12px;
    }

    .lang-btn {
        min-width: 37px;
        padding: 0 5px;
    }
}


@media(max-width:1000px) {

    .menu-button {
        display: block;
    }

    nav {
        margin-left: auto;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        padding: 25px;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        border-top: 1px solid rgba(255,255,255,.08);
    }

    nav ul.open {
        display: flex;
    }

    nav a {
        font-size: 14px;
    }

    .about-grid,
    .trial-box,
    .estimate-grid,
    .partners-top,
    .partner-application {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .advantages-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .partner-types {
        grid-template-columns: repeat(2,1fr);
    }

    .process-list {
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }

    .process-step::after {
        display: none;
    }

    .company-details-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .trial-image {
        min-height: 420px;
    }
}


@media(max-width:650px) {

    .container {
        width: min(calc(100% - 28px),1180px);
    }

    section {
        padding: 75px 0;
    }

    .logo-subtitle {
        display: none;
    }

    .logo-symbol {
        width: 39px;
        height: 39px;
    }

    .logo-name {
        font-size: 16px;
    }

    .language-switcher {
        order: 2;
    }

    .lang-btn {
        min-width: 34px;
        height: 30px;
        font-size: 9px;
    }

    nav {
        order: 3;
        margin-left: 0;
    }

    .hero {
        min-height: 780px;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .services-header {
        display: block;
    }

    .services-side-text {
        margin-top: 25px;
    }

    .services-grid,
    .advantages-grid,
    .partner-types,
    .process-list,
    .footer-grid,
    .form,
    .company-details-grid {
        grid-template-columns: 1fr;
    }

    .service-photo {
        height: 215px;
    }

    .form-group.full,
    .form-submit,
    .privacy {
        grid-column: auto;
    }

    .statement,
    .trial-content,
    .estimate-form {
        padding: 29px;
    }

    .trial-image {
        min-height: 320px;
    }

    .trial-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
        padding: 18px;
    }

    .trial-content h2 {
        font-size: 35px;
    }

    .partner-application {
        padding: 28px;
        gap: 40px;
    }

    .cta-inner {
        padding: 45px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .company-details-grid {
        gap: 20px;
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .footer-dot {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}