@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --navy: #09233f;
    --navy-2: #0c3157;
    --navy-3: #071a2d;

    --gold: #c99a45;
    --gold-light: #e5c47d;

    --white: #ffffff;

    --background: #f7f9fc;
    --background-2: #eef3f8;

    --text: #182433;
    --muted: #697789;

    --border: #e2e8f0;

    --green: #18a66b;

    --shadow:
        0 20px 60px rgba(9, 35, 63, .10);

    --radius: 18px;

}


/* =====================================================
   RESET
===================================================== */

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


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        'Vazirmatn',
        Tahoma,
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.9;

}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


.container {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: auto;

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    height: 82px;

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.96);

    backdrop-filter:
        blur(16px);

    border-bottom:
        1px solid rgba(226,232,240,.8);

    transition: .3s;

}


.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-mark {

    width: 45px;
    height: 45px;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background: var(--navy);

    color: var(--gold);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

}


.brand-text strong,
.brand-text small {

    display: block;

}


.brand-text strong {

    color: var(--navy);

    font-size: 16px;

}


.brand-text small {

    color: var(--muted);

    font-size: 10px;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.main-nav a {

    color: #526174;

    font-size: 13px;

    font-weight: 600;

    transition: .25s;

}


.main-nav a:hover {

    color: var(--navy);

}


.header-cta {

    padding:
        10px 19px;

    background:
        var(--navy);

    color: white;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 700;

    transition: .25s;

}


.header-cta:hover {

    transform:
        translateY(-2px);

    background:
        var(--navy-2);

}


.mobile-menu-btn {

    display: none;

    border: 0;

    background: transparent;

    width: 40px;

    height: 40px;

}


.mobile-menu-btn span {

    display: block;

    width: 23px;

    height: 2px;

    background: var(--navy);

    margin: 5px auto;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    overflow: hidden;

    min-height: 690px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #edf3f8 100%
        );

}


.hero-background {

    position: absolute;

    width: 700px;

    height: 700px;

    left: -300px;

    top: -350px;

    border-radius: 50%;

    background:
        rgba(201,154,69,.09);

}


.hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 90px;

    align-items: center;

    padding: 90px 0;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 20px;

}


.eyebrow-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold);

}


.hero h1 {

    color: var(--navy);

    font-size:
        clamp(
            38px,
            5vw,
            62px
        );

    line-height: 1.35;

    letter-spacing: -1.5px;

    margin-bottom: 22px;

}


.hero h1 span {

    display: block;

    color: var(--gold);

}


.hero-description {

    max-width: 650px;

    color: var(--muted);

    font-size: 15px;

}


.hero-actions {

    display: flex;

    gap: 12px;

    margin:
        32px 0 35px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        13px 23px;

    border-radius: 9px;

    border: 2px solid transparent;

    font-size: 13px;

    font-weight: 800;

    transition: .25s;

}


.btn-primary {

    background: var(--navy);

    color: white;

}


.btn-primary:hover {

    background: var(--navy-2);

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px rgba(9,35,63,.18);

}


.btn-secondary {

    border-color: var(--navy);

    color: var(--navy);

    background: transparent;

}


.btn-secondary:hover {

    background: var(--navy);

    color: white;

}


.phone-icon {

    font-size: 17px;

}


.hero-trust {

    display: flex;

    align-items: center;

    gap: 20px;

}


.trust-item {

    display: flex;

    flex-direction: column;

}


.trust-item strong {

    color: var(--navy);

    font-size: 16px;

}


.trust-item span {

    color: var(--muted);

    font-size: 9px;

}


.trust-line {

    height: 30px;

    width: 1px;

    background: #d6dee8;

}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {

    position: relative;

    min-height: 450px;

}


.hero-card-main {

    position: absolute;

    top: 45px;

    right: 40px;

    width: 390px;

    background: var(--navy);

    color: white;

    border-radius: 25px;

    padding: 30px;

    box-shadow:
        0 35px 80px rgba(9,35,63,.25);

}


.hero-card-top {

    display: flex;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(255,255,255,.1);

    font-size: 12px;

}


.status {

    color: #68d7a4;

    font-size: 10px;

}


.business-path {

    padding:
        25px 0;

}


.path-item {

    display: flex;

    align-items: center;

    gap: 14px;

    opacity: .6;

}


.path-item.active {

    opacity: 1;

}


.path-icon {

    width: 43px;
    height: 43px;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.1);

    color: var(--gold);

    font-weight: 800;

}


.path-item strong {

    display: block;

    font-size: 13px;

}


.path-item small {

    display: block;

    color: #91a2b6;

    font-size: 9px;

}


.path-connector {

    height: 22px;

    width: 1px;

    background:
        rgba(255,255,255,.15);

    margin-right: 21px;

}


.hero-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid rgba(255,255,255,.1);

    padding-top: 20px;

}


.hero-card-footer span {

    color: #93a5b8;

    font-size: 10px;

}


.hero-card-footer a {

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

}


.floating-card {

    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 12px;

    background: white;

    padding:
        14px 18px;

    border-radius: 13px;

    box-shadow: var(--shadow);

    min-width: 205px;

}


.floating-card-one {

    top: 15px;

    left: 0;

}


.floating-card-two {

    bottom: 35px;

    left: 20px;

}


.floating-icon {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #f4f6f9;

    color: var(--gold);

    font-size: 19px;

    font-weight: 900;

}


.floating-card strong,
.floating-card small {

    display: block;

}


.floating-card strong {

    color: var(--navy);

    font-size: 12px;

}


.floating-card small {

    color: var(--muted);

    font-size: 8px;

}


/* =====================================================
   QUICK SERVICES
===================================================== */

.quick-services {

    position: relative;

    z-index: 10;

    margin-top: -35px;

}


.quick-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    background: white;

    border-radius: 15px;

    box-shadow: var(--shadow);

    overflow: hidden;

}


.quick-item {

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 20px;

    border-left:
        1px solid var(--border);

    transition: .25s;

}


.quick-item:last-child {

    border-left: 0;

}


.quick-item:hover {

    background:
        #f9fafb;

}


.quick-item > span {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        var(--background);

    font-size: 20px;

}


.quick-item strong,
.quick-item small {

    display: block;

}


.quick-item strong {

    color: var(--navy);

    font-size: 12px;

}


.quick-item small {

    color: var(--muted);

    font-size: 9px;

}


.quick-item b {

    margin-right: auto;

    color: var(--gold);

}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    padding:
        105px 0;

}


.section-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;

}


.section-heading > div {

    max-width: 650px;

}


.section-heading > p {

    max-width: 360px;

    color: var(--muted);

    font-size: 12px;

}


.section-tag {

    color: var(--gold);

    font-size: 12px;

    font-weight: 900;

}


.section-heading h2,
.smart-intro h2,
.about-content h2,
.consultation-content h2,
.cta-section h2 {

    color: var(--navy);

    font-size:
        clamp(
            27px,
            4vw,
            40px
        );

    line-height: 1.5;

    margin-top: 8px;

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    background: white;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.service-card {

    position: relative;

    padding: 30px;

    min-height: 315px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background: white;

    transition: .3s;

    overflow: hidden;

}


.service-card:hover {

    transform:
        translateY(-7px);

    border-color:
        transparent;

    box-shadow:
        var(--shadow);

}


.service-featured {

    background:
        var(--navy);

    color: white;

    border-color:
        var(--navy);

}


.service-number {

    position: absolute;

    left: 25px;

    top: 25px;

    color:
        rgba(9,35,63,.15);

    font-size: 25px;

    font-weight: 900;

}


.service-featured .service-number {

    color:
        rgba(255,255,255,.12);

}


.service-icon {

    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        var(--background);

    color: var(--gold);

    font-size: 25px;

    margin-bottom: 22px;

}


.service-featured .service-icon {

    background:
        rgba(255,255,255,.1);

}


.service-card h3 {

    color: var(--navy);

    font-size: 18px;

    margin-bottom: 10px;

}


.service-featured h3 {

    color: white;

}


.service-card p {

    color: var(--muted);

    font-size: 11px;

    max-width: 300px;

}


.service-featured p {

    color:
        #9eafc1;

}


.service-card a {

    position: absolute;

    bottom: 27px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 900;

}


/* =====================================================
   BUSINESS
===================================================== */

.business-section {

    position: relative;

    overflow: hidden;

    background:
        var(--navy);

    color: white;

    padding:
        105px 0;

}


.business-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 50%;

    left: -220px;

    top: -200px;

}


.business-grid {

    position: relative;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;

}


.section-tag.light {

    color: var(--gold-light);

}


.business-content h2 {

    max-width: 600px;

    color: white;

    font-size:
        clamp(
            32px,
            5vw,
            52px
        );

    line-height: 1.4;

    margin:
        10px 0 18px;

}


.business-content > p {

    max-width: 600px;

    color: #9aabba;

    font-size: 13px;

}


.business-services {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin:
        35px 0;

}


.business-service {

    display: flex;

    gap: 12px;

    align-items: center;

    padding: 15px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 12px;

    background:
        rgba(255,255,255,.025);

}


.business-service > span {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    background:
        rgba(255,255,255,.08);

    border-radius: 10px;

    color: var(--gold-light);

}


.business-service strong,
.business-service small {

    display: block;

}


.business-service strong {

    font-size: 11px;

}


.business-service small {

    color: #7f91a5;

    font-size: 8px;

}


.btn-gold {

    background: var(--gold);

    color: white;

}


.btn-gold:hover {

    background:
        #b78937;

    transform:
        translateY(-2px);

}


/* =====================================================
   BUSINESS VISUAL
===================================================== */

.business-visual {

    position: relative;

    min-height: 440px;

    display: grid;

    place-items: center;

}


.globe {

    width: 330px;
    height: 330px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.1);

    color:
        rgba(255,255,255,.08);

    font-size: 220px;

}


.trade-card {

    position: absolute;

    background:
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(15px);

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 15px;

    padding: 20px;

}


.trade-card-top {

    top: 45px;

    right: 10px;

    width: 220px;

}


.trade-card-top span {

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 2px;

}


.trade-card-top strong {

    display: block;

    font-size: 18px;

    margin-top: 5px;

}


.trade-card-bottom {

    bottom: 45px;

    left: 0;

    width: 290px;

    display: flex;

    align-items: center;

    gap: 14px;

}


.trade-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        var(--gold);

}


.trade-card-bottom strong,
.trade-card-bottom small {

    display: block;

}


.trade-card-bottom strong {

    font-size: 11px;

}


.trade-card-bottom small {

    color: #8d9caf;

    font-size: 8px;

}


/* =====================================================
   SMART
===================================================== */

.smart-section {

    background:
        var(--background);

}


.smart-box {

    background: white;

    border:
        1px solid var(--border);

    border-radius: 25px;

    padding: 55px;

    box-shadow:
        0 15px 50px rgba(9,35,63,.06);

}


.smart-intro {

    text-align: center;

    max-width: 650px;

    margin:
        0 auto 40px;

}


.smart-intro p {

    color: var(--muted);

    font-size: 12px;

}


.smart-options {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 12px;

}


.smart-option {

    min-height: 130px;

    padding: 20px;

    border:
        1px solid var(--border);

    background: white;

    border-radius: 14px;

    text-align: right;

    transition: .25s;

}


.smart-option:hover {

    border-color:
        var(--gold);

    transform:
        translateY(-4px);

}


.smart-option span {

    display: block;

    font-size: 25px;

    margin-bottom: 12px;

}


.smart-option strong {

    color: var(--navy);

    font-size: 11px;

}


.smart-result {

    display: none;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

    padding: 18px;

    border-radius: 13px;

    background:
        #f3f8f6;

    border:
        1px solid #dcefe7;

}


.smart-result.show {

    display: flex;

}


.result-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--green);

    color: white;

}


.smart-result strong {

    display: block;

    color: var(--navy);

    font-size: 12px;

}


.smart-result p {

    color: var(--muted);

    font-size: 10px;

}


.smart-result a {

    margin-right: auto;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

}


/* =====================================================
   PROCESS
===================================================== */

.process-section {

    background: white;

}


.centered {

    display: block;

    text-align: center;

}


.centered > p {

    margin:
        10px auto 0;

}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 25px;

}


.process-item {

    position: relative;

    text-align: center;

}


.process-number {

    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    margin:
        0 auto 20px;

    border-radius: 50%;

    background:
        var(--navy);

    color: var(--gold);

    font-size: 20px;

    font-weight: 900;

    box-shadow:
        0 0 0 8px #f0f4f8;

}


.process-item h3 {

    color: var(--navy);

    font-size: 16px;

}


.process-item p {

    color: var(--muted);

    font-size: 10px;

    max-width: 210px;

    margin:
        5px auto;

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    background:
        var(--background);

}


.about-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 90px;

    align-items: center;

}


.about-visual {

    position: relative;

    min-height: 420px;

    border-radius: 25px;

    overflow: hidden;

    background:
        var(--navy);

    display: grid;

    place-items: center;

}


.about-pattern {

    position: absolute;

    width: 360px;
    height: 360px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 50%;

}


.about-pattern::before,
.about-pattern::after {

    content: "";

    position: absolute;

    inset: 35px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 50%;

}


.about-pattern::after {

    inset: 75px;

}


.about-center {

    position: relative;

    z-index: 2;

    text-align: center;

}


.about-center span {

    display: block;

    color: var(--gold);

    font-size: 80px;

    font-weight: 900;

    line-height: 1;

}


.about-center strong {

    display: block;

    color: white;

    font-size: 23px;

}


.about-center small {

    display: block;

    color: #8799ad;

    font-size: 10px;

}


.about-floating {

    position: absolute;

    bottom: 25px;

    right: 25px;

    background: white;

    color: var(--navy);

    padding:
        14px 20px;

    border-radius: 12px;

    box-shadow: var(--shadow);

}


.about-floating strong,
.about-floating span {

    display: block;

}


.about-floating strong {

    font-size: 11px;

}


.about-floating span {

    color: var(--muted);

    font-size: 8px;

}


.about-content p {

    color: var(--muted);

    font-size: 12px;

    margin:
        15px 0;

}


.about-features {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 25px;

}


.about-features div {

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;

}


.about-features span {

    color: var(--green);

    margin-left: 5px;

}


/* =====================================================
   CONSULTATION
===================================================== */

.consultation-section {

    padding:
        100px 0;

    background:
        var(--navy);

}


.consultation-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

    align-items: center;

}


.consultation-content h2 {

    color: white;

    margin-bottom: 15px;

}


.consultation-content > p {

    color: #91a2b5;

    font-size: 12px;

    max-width: 500px;

}


.direct-contact {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 30px;

}


.direct-contact a {

    display: flex;

    align-items: center;

    gap: 13px;

    width: fit-content;

}


.direct-contact a > span {

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        rgba(255,255,255,.08);

    color: var(--gold);

}


.direct-contact small,
.direct-contact strong {

    display: block;

}


.direct-contact small {

    color: #7f91a5;

    font-size: 8px;

}


.direct-contact strong {

    color: white;

    font-size: 12px;

}


.consultation-form {

    background: white;

    border-radius: 22px;

    padding: 35px;

}


.form-title {

    margin-bottom: 25px;

}


.form-title strong {

    display: block;

    color: var(--navy);

    font-size: 19px;

}


.form-title span {

    color: var(--muted);

    font-size: 9px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

}


.form-field {

    margin-bottom: 15px;

}


.form-field label {

    display: block;

    color: var(--navy);

    font-size: 10px;

    font-weight: 800;

    margin-bottom: 6px;

}


.form-field input,
.form-field textarea,
.form-field select {

    width: 100%;

    border:
        1px solid var(--border);

    border-radius: 8px;

    padding:
        11px 13px;

    outline: none;

    color: var(--text);

    font-size: 11px;

    background: white;

    transition: .2s;

}


.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {

    border-color:
        var(--navy);

    box-shadow:
        0 0 0 3px rgba(9,35,63,.07);

}


.form-field textarea {

    resize: vertical;

}


.form-submit {

    width: 100%;

    border: 0;

}


.form-message {

    display: none;

    margin-top: 12px;

    padding: 10px;

    border-radius: 8px;

    text-align: center;

    font-size: 10px;

}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    background:
        var(--gold);

    padding:
        55px 0;

}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.cta-inner span {

    color:
        rgba(255,255,255,.8);

    font-size: 11px;

}


.cta-section h2 {

    color: white;

    font-size: 29px;

}


.btn-light {

    background: white;

    color: var(--navy);

}


.btn-light:hover {

    transform:
        translateY(-3px);

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background:
        var(--navy-3);

    color: white;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding:
        70px 0;

}


.footer-brand p {

    max-width: 300px;

    color: #718499;

    font-size: 10px;

    margin-top: 20px;

}


.footer-logo .brand-text strong {

    color: white;

}


.footer-column h3 {

    font-size: 12px;

    margin-bottom: 15px;

}


.footer-column a {

    display: block;

    color: #788ba0;

    font-size: 10px;

    margin:
        8px 0;

    transition: .2s;

}


.footer-column a:hover {

    color: white;

}


.manager-name {

    display: block;

    color: var(--gold);

    margin-top: 18px;

    font-size: 11px;

}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.06);

}


.footer-bottom .container {

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #5e7185;

    font-size: 8px;

}


/* =====================================================
   FLOATING
===================================================== */

.floating-actions {

    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 900;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.floating {

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    font-size: 20px;

    box-shadow:
        0 7px 25px rgba(0,0,0,.2);

    transition: .25s;

}


.floating:hover {

    transform:
        scale(1.08);

}


.whatsapp {

    background:
        #20c76b;

}


.call {

    background:
        var(--navy);

}


/* =====================================================
   REVEAL
===================================================== */

.service-card,
.process-item,
.about-content,
.about-visual {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.visible {

    opacity: 1 !important;

    transform:
        translateY(0) !important;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .main-nav {

        position: absolute;

        top: 82px;

        right: 20px;

        left: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: white;

        padding: 10px;

        border-radius: 12px;

        box-shadow: var(--shadow);

    }


    .main-nav.active {

        display: flex;

    }


    .main-nav a {

        padding: 12px;

        border-bottom:
            1px solid var(--border);

    }


    .mobile-menu-btn {

        display: block;

        margin-right: auto;

    }


    .header-cta {

        display: none;

    }


    .hero-grid {

        grid-template-columns:
            1fr;

        gap: 60px;

    }


    .hero-visual {

        min-height: 470px;

    }


    .quick-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .quick-item {

        border-bottom:
            1px solid var(--border);

    }


    .services-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .business-grid,
    .about-grid,
    .consultation-grid {

        grid-template-columns:
            1fr;

        gap: 50px;

    }


    .business-visual {

        min-height: 400px;

    }


    .smart-options {

        grid-template-columns:
            1fr 1fr;

    }


    .process-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 45px;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {

        width:
            calc(100% - 28px);

    }


    .site-header {

        height: 70px;

    }


    .main-nav {

        top: 70px;

        right: 14px;

        left: 14px;

    }


    .hero-grid {

        padding:
            65px 0;

    }


    .hero h1 {

        font-size: 36px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-actions {

        flex-direction: column;

    }


    .btn {

        width: 100%;

    }


    .hero-trust {

        gap: 10px;

        justify-content: space-between;

    }


    .trust-line {

        display: none;

    }


    .hero-visual {

        min-height: 410px;

    }


    .hero-card-main {

        top: 30px;

        right: 0;

        width: 100%;

        padding: 24px;

    }


    .floating-card {

        transform:
            scale(.82);

    }


    .floating-card-one {

        left: -25px;

    }


    .floating-card-two {

        left: -25px;

        bottom: 10px;

    }


    .quick-grid {

        grid-template-columns:
            1fr;

    }


    .quick-item {

        border-left: 0;

        min-height: 85px;

    }


    .section {

        padding:
            75px 0;

    }


    .section-heading {

        display: block;

    }


    .section-heading > p {

        margin-top: 15px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .business-services {

        grid-template-columns:
            1fr;

    }


    .business-content h2 {

        font-size: 35px;

    }


    .business-visual {

        min-height: 330px;

    }


    .globe {

        width: 240px;
        height: 240px;

        font-size: 150px;

    }


    .trade-card-top {

        right: 0;

        top: 20px;

        width: 170px;

    }


    .trade-card-bottom {

        left: 0;

        bottom: 20px;

        width: 250px;

    }


    .smart-box {

        padding:
            30px 20px;

    }


    .smart-options {

        grid-template-columns:
            1fr;

    }


    .smart-result {

        align-items: flex-start;

    }


    .smart-result a {

        display: none;

    }


    .process-grid {

        grid-template-columns:
            1fr;

    }


    .about-visual {

        min-height: 330px;

    }


    .about-features {

        grid-template-columns:
            1fr;

    }


    .consultation-form {

        padding:
            25px 18px;

    }


    .form-row {

        grid-template-columns:
            1fr;

    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .cta-section h2 {

        font-size: 25px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 35px;

    }


    .footer-bottom .container {

        flex-direction: column;

        justify-content: center;

        gap: 3px;

        padding:
            15px 0;

    }


    .floating-actions {

        left: 12px;

        bottom: 12px;

    }


}