/* =========================================================
   MWC DIGITAL SOLUTION
   RESPONSIVE WEBSITE CSS
   Desktop + Laptop + Tablet + Mobile
   ========================================================= */


/* =========================================================
   1. GLOBAL VARIABLES
   ========================================================= */

:root {
    --navy: #071a3d;
    --navy-dark: #041027;
    --blue: #1267e8;
    --blue-light: #eaf3ff;
    --purple: #653cff;
    --pink: #f32167;
    --yellow: #ffbd18;

    --white: #ffffff;
    --black: #111827;
    --text: #1e293b;
    --gray: #64748b;
    --gray-light: #f7f9fc;

    --border: #e5eaf1;

    --container: 1180px;

    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;

    --shadow:
        0 20px 60px rgba(7, 26, 61, 0.10);

    --transition:
        all 0.3s ease;
}


/* =========================================================
   2. RESET
   ========================================================= */

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


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {
    margin: 0;
    padding: 0;

    width: 100%;
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}


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


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


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


button {
    cursor: pointer;
}


/* =========================================================
   3. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(92%, var(--container));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(229, 234, 241, 0.8);
}


.navbar {
    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 165px;
    height: 65px;
    overflow: hidden;
}

.logo img {
    width: 165px;
    height: 65px;
    object-fit: contain;
    object-position: center;
    display: block;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.navigation {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 30px;
}


.navigation > a {
    color: #334155;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition: var(--transition);
}


.navigation > a:hover {
    color: var(--blue);
}


/* CTA */

.nav-button {
    padding: 12px 22px;

    color: var(--white) !important;

    background: var(--navy);

    border-radius: 50px;

    transition: var(--transition);
}


.nav-button:hover {
    background: var(--blue);

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 10px;

    background: var(--blue-light);

    color: var(--navy);

    font-size: 24px;

    line-height: 1;
}


/* =========================================================
   5. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-top: 145px;

    padding-bottom: 90px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(18, 103, 232, 0.13),
            transparent 25%
        ),

        radial-gradient(
            circle at 5% 85%,
            rgba(243, 33, 103, 0.08),
            transparent 25%
        ),

        var(--white);
}


.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -320px;
    top: 80px;

    border:
        80px solid rgba(18, 103, 232, 0.04);

    border-radius: 50%;

    pointer-events: none;
}


.hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, 0.9fr);

    align-items: center;

    gap: clamp(40px, 6vw, 90px);
}


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

.hero-content {
    min-width: 0;
}


.hero-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    margin-bottom: 24px;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;
}


.status-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    background: #22c55e;

    border-radius: 50%;
}


.hero h1 {
    margin: 0;

    max-width: 800px;

    color: var(--navy);

    font-size:
        clamp(45px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}


.hero h1 span {
    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--purple),
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-description {
    max-width: 650px;

    margin:
        25px 0 32px;

    color: var(--gray);

    font-size:
        clamp(15px, 1.5vw, 18px);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


.button {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 24px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);

    text-align: center;
}


.button-primary {
    color: var(--white);

    background: var(--navy);

    box-shadow:
        0 12px 30px rgba(7, 26, 61, 0.18);
}


.button-primary:hover {
    background: var(--blue);

    transform: translateY(-3px);
}


.button-secondary {
    color: var(--navy);

    background: var(--white);

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


.button-secondary:hover {
    color: var(--blue);

    border-color: var(--blue);

    transform: translateY(-3px);
}


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

.hero-stats {
    display: flex;

    flex-wrap: wrap;

    gap:
        clamp(20px, 4vw, 40px);

    margin-top: 48px;
}


.hero-stat strong {
    display: block;

    color: var(--navy);

    font-size:
        clamp(23px, 3vw, 30px);

    font-weight: 800;
}


.hero-stat span {
    display: block;

    color: var(--gray);

    font-size: 12px;
}


/* =========================================================
   6. HERO DASHBOARD
   ========================================================= */

.hero-visual {
    position: relative;

    width: 100%;

    min-height: 550px;
}


.growth-card {
    position: absolute;

    top: 20px;
    right: 0;

    width: min(100%, 520px);

    padding: clamp(18px, 3vw, 27px);

    background:
        rgba(255, 255, 255, 0.97);

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

    border-radius: var(--radius-large);

    box-shadow: var(--shadow);

    transform: rotate(2deg);
}


.growth-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}


.growth-header small {
    display: block;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.growth-header h3 {
    margin-top: 4px;

    color: var(--navy);

    font-size: 18px;
}


.live-indicator {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #16a34a;

    font-size: 10px;

    font-weight: 800;
}


.live-indicator span {
    width: 8px;
    height: 8px;

    background: #22c55e;

    border-radius: 50%;
}


/* =========================================================
   CHART
   ========================================================= */

.chart {
    position: relative;

    width: 100%;

    height: 200px;

    overflow: hidden;

    border-radius: 18px;

    background:

        linear-gradient(
            rgba(18, 103, 232, 0.06) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(18, 103, 232, 0.06) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}


.chart::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 70%;

    background:
        linear-gradient(
            180deg,
            rgba(18, 103, 232, 0.18),
            transparent
        );

    clip-path:
        polygon(
            0 82%,
            15% 70%,
            30% 74%,
            45% 50%,
            60% 56%,
            74% 30%,
            87% 36%,
            100% 5%,
            100% 100%,
            0 100%
        );
}


.chart-line {
    position: absolute;

    inset: 0;
}


.chart-line::before {
    content: "";

    position: absolute;

    left: -5%;

    top: 60%;

    width: 110%;

    height: 4px;

    background: var(--blue);

    transform:
        rotate(-10deg);

    border-radius: 20px;
}


/* =========================================================
   CHART POINTS
   ========================================================= */

.chart-point {
    position: absolute;

    z-index: 3;

    width: 11px;
    height: 11px;

    background: var(--white);

    border:
        3px solid var(--blue);

    border-radius: 50%;
}


.point-one {
    left: 16%;
    top: 65%;
}


.point-two {
    left: 38%;
    top: 49%;
}


.point-three {
    left: 57%;
    top: 38%;
}


.point-four {
    left: 77%;
    top: 25%;
}


.point-five {
    right: 2%;
    top: 8%;
}


/* =========================================================
   METRICS
   ========================================================= */

.metrics {
    display: grid;

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

    gap: 10px;

    margin-top: 15px;
}


.metric {
    padding: 14px;

    background: var(--gray-light);

    border-radius: 14px;

    min-width: 0;
}


.metric span {
    display: block;

    color: var(--gray);

    font-size: 11px;
}


.metric strong {
    display: block;

    margin-top: 3px;

    color: var(--navy);

    font-size: 20px;
}


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

.floating-card {
    position: absolute;

    z-index: 5;

    padding:
        17px 21px;

    border-radius: 18px;

    box-shadow: var(--shadow);
}


.floating-card strong {
    display: block;

    font-size: 24px;
}


.floating-card span {
    display: block;

    font-size: 11px;
}


.floating-card-one {
    left: -20px;
    bottom: 105px;

    color: var(--white);

    background: var(--navy);
}


.floating-card-two {
    right: -10px;
    bottom: 20px;

    color: var(--navy);

    background: var(--white);

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


/* =========================================================
   7. TRUST BAR
   ========================================================= */

.trust-bar {
    padding: 28px 0;

    background: var(--navy);

    color: var(--white);
}


.trust-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.trust-container p {
    color: #cbd5e1;

    font-size: 13px;
}


.trust-services {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 20px;
}


.trust-services span {
    color: var(--white);

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   8. GENERAL SECTIONS
   ========================================================= */

.section {
    padding:
        clamp(70px, 9vw, 115px) 0;
}


.section-label {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.65fr);

    align-items: end;

    gap: 50px;

    margin-bottom: 55px;
}


.section-heading h2 {
    max-width: 700px;

    color: var(--navy);

    font-size:
        clamp(36px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;
}


.section-heading p {
    color: var(--gray);

    font-size: 15px;
}


/* =========================================================
   9. SERVICES
   ========================================================= */

.services-intro {
    background: var(--gray-light);
}


.services-grid {
    display: grid;

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

    gap: 20px;
}


.service-card {
    position: relative;

    overflow: hidden;

    min-width: 0;

    padding: 32px;

    background: var(--white);

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

    border-radius: var(--radius-medium);

    transition: var(--transition);
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: transparent;

    box-shadow: var(--shadow);
}


.service-number {
    position: absolute;

    top: 14px;
    right: 20px;

    color: #edf1f7;

    font-size: 43px;

    font-weight: 800;
}


.service-icon {
    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    margin-bottom: 24px;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 15px;

    font-size: 21px;

    font-weight: 800;
}


.service-card h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 21px;
}


.service-card p {
    color: var(--gray);

    font-size: 14px;
}


.service-card a {
    display: inline-block;

    margin-top: 20px;

    color: var(--blue);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   PORTFOLIO
   ========================================================= */

.portfolio-intro {
    background: var(--gray-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.portfolio-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.portfolio-card-visual {
    min-height: 190px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #155bd5);
}

.portfolio-card:nth-child(2) .portfolio-card-visual {
    background: linear-gradient(135deg, #6b239d, var(--pink));
}

.portfolio-card:nth-child(3) .portfolio-card-visual {
    background: linear-gradient(135deg, #b45d00, var(--yellow));
}

.portfolio-card-visual span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 25px;
    font-weight: 800;
}

.portfolio-card-content {
    padding: 28px;
}

.portfolio-card-content small {
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-card-content h3 {
    margin: 10px 0 12px;
    color: var(--navy);
    font-size: 22px;
}

.portfolio-card-content p {
    color: var(--gray);
    font-size: 14px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.portfolio-tags span {
    padding: 6px 10px;
    border-radius: 50px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.faq-section {
    background: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-item {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
}

.faq-item h3 {
    color: var(--navy);
    font-size: 18px;
}

.faq-item p {
    margin-top: 10px;
    color: var(--gray);
    font-size: 14px;
}

.service-page-hero {
    min-height: 62vh;
}

.service-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-point {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
}

.service-point span {
    display: block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.service-point h3 {
    margin: 14px 0 10px;
    color: var(--navy);
    font-size: 21px;
}

.service-point p {
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-points {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   10. ABOUT
   ========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(350px, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 80px;
}


.about-visual {
    position: relative;

    min-height: 500px;

    width: 100%;
}


.about-box {
    position: absolute;

    top: 25px;
    left: 20px;

    width: 82%;
    height: 420px;

    overflow: hidden;

    border-radius: var(--radius-large);

    background:
        linear-gradient(
            145deg,
            var(--navy),
            #123f8d
        );
}


.about-box::before {
    content: "";

    position: absolute;

    right: -160px;
    top: -130px;

    width: 350px;
    height: 350px;

    border:
        60px solid rgba(255,255,255,0.06);

    border-radius: 50%;
}


.about-logo {
    position: absolute;

    top: 35px;
    left: 35px;

    color: var(--white);

    font-size: 25px;

    font-weight: 900;
}


.about-big-text {
    position: absolute;

    left: 35px;
    bottom: 35px;

    color: var(--white);

    font-size:
        clamp(34px, 4vw, 44px);

    line-height: 1.05;

    font-weight: 800;
}


.experience-card {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 190px;

    padding: 24px;

    background: var(--white);

    border-radius: 20px;

    box-shadow: var(--shadow);
}


.experience-card strong {
    display: block;

    color: var(--blue);

    font-size: 42px;

    line-height: 1;
}


.experience-card span {
    display: block;

    margin-top: 8px;

    color: var(--gray);

    font-size: 12px;
}


.about-content h2 {
    max-width: 700px;

    color: var(--navy);

    font-size:
        clamp(36px, 5vw, 56px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.about-content > p {
    max-width: 650px;

    margin:
        22px 0 28px;

    color: var(--gray);

    font-size: 16px;
}


.check-list {
    display: grid;

    gap: 14px;

    list-style: none;
}


.check-list li {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    color: #334155;

    font-size: 14px;

    font-weight: 600;
}


.check-list li span {
    flex:
        0 0 24px;

    width: 24px;
    height: 24px;

    display: grid;

    place-items: center;

    background: #e8f8ef;

    color: #16a34a;

    border-radius: 50%;

    font-size: 12px;
}


.about-button {
    margin-top: 28px;
}


/* =========================================================
   11. PROCESS
   ========================================================= */

.process-section {
    background: var(--gray-light);
}


.process-heading {
    text-align: center;

    margin-bottom: 55px;
}


.process-heading h2 {
    color: var(--navy);

    font-size:
        clamp(36px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.process-heading p {
    max-width: 650px;

    margin: 18px auto 0;

    color: var(--gray);

    font-size: 15px;
}


.process-grid {
    display: grid;

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

    gap: 20px;
}


.process-card {
    padding: 30px;

    background: var(--white);

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

    border-radius: var(--radius-medium);
}


.process-card > span {
    color: var(--blue);

    font-size: 13px;

    font-weight: 900;
}


.process-card h3 {
    margin:
        22px 0 10px;

    color: var(--navy);

    font-size: 20px;
}


.process-card p {
    color: var(--gray);

    font-size: 13px;
}


/* =========================================================
   12. CTA
   ========================================================= */

.cta-section {
    padding:
        clamp(60px, 8vw, 95px) 0;
}


.cta-box {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

    padding:
        clamp(40px, 6vw, 75px);

    border-radius: var(--radius-large);

    background:
        linear-gradient(
            120deg,
            var(--navy),
            #0d3b85
        );

    color: var(--white);
}


.cta-box::before {
    content: "";

    position: absolute;

    right: -230px;
    top: -270px;

    width: 500px;
    height: 500px;

    border:
        75px solid rgba(255,255,255,0.05);

    border-radius: 50%;
}


.cta-box h2 {
    position: relative;

    z-index: 2;

    max-width: 750px;

    color: var(--white);

    font-size:
        clamp(36px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.cta-box p {
    position: relative;

    z-index: 2;

    max-width: 650px;

    margin-top: 18px;

    color: #cbd5e1;
}


.button-light {
    position: relative;

    z-index: 2;

    flex-shrink: 0;

    background: var(--white);

    color: var(--navy);
}


.button-light:hover {
    background: var(--yellow);

    transform: translateY(-3px);
}


/* =========================================================
   13. FOOTER
   ========================================================= */

footer {
    padding:
        70px 0 25px;

    background: #050f24;

    color: var(--white);
}


.footer-grid {
    display: grid;

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

    gap: 45px;

    padding-bottom: 55px;
}


.footer-brand img {
    width: 145px;

    max-height: 60px;

    object-fit: contain;
}


.footer-brand p {
    max-width: 330px;

    margin-top: 18px;

    color: #94a3b8;

    font-size: 13px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-links .instagram-icon {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}


.footer-grid h4 {
    margin-bottom: 18px;

    font-size: 15px;
}


.footer-grid a,
.footer-grid > div > span {
    display: block;

    margin-bottom: 11px;

    color: #94a3b8;

    font-size: 13px;

    transition: var(--transition);
}


.footer-grid a:hover {
    color: var(--white);
}


.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 23px;

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


.footer-bottom p {
    color: #64748b;

    font-size: 11px;
}


/* =========================================================
   14. LARGE LAPTOP
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .container {
        width: min(94%, 1100px);
    }

    .hero-grid {
        gap: 45px;
    }

    .navigation {
        gap: 22px;
    }

}


/* =========================================================
   15. TABLET / SMALL LAPTOP
   1024px
   ========================================================= */

@media (max-width: 1024px) {

    .navbar {
        min-height: 76px;
    }


    .navigation {
        gap: 16px;
    }


    .navigation > a {
        font-size: 13px;
    }


    .hero {
        padding-top: 130px;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .hero-content {
        max-width: 850px;
    }


    .hero-visual {
        width: min(100%, 700px);

        min-height: 530px;

        margin: 0 auto;
    }


    .growth-card {
        right: 50%;

        transform:
            translateX(50%)
            rotate(1deg);
    }


    .floating-card-one {
        left: 0;
    }


    .floating-card-two {
        right: 0;
    }


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


    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .about-visual {
        width: min(100%, 650px);

        margin: auto;
    }


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


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

}


/* =========================================================
   16. TABLET
   850px
   ========================================================= */

@media (max-width: 850px) {

    .navigation {
        gap: 12px;
    }


    .navigation > a {
        font-size: 12px;
    }


    .section-heading {
        grid-template-columns: 1fr;

        align-items: start;

        gap: 20px;
    }


    .trust-container {
        align-items: flex-start;

        flex-direction: column;
    }


    .trust-services {
        justify-content: flex-start;
    }


    .cta-box {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   17. MOBILE NAVIGATION
   750px
   ========================================================= */

@media (max-width: 750px) {

    .container {
        width: 92%;
    }


    .navbar {
        min-height: 70px;
    }


    .logo img {
        width: 125px;

        max-height: 52px;
    }


    /* Hide desktop nav */

    .navigation {
        position: fixed;

        top: 70px;
        left: -100%;

        width: 100%;

        height:
            calc(100vh - 70px);

        padding: 30px;

        background: var(--white);

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 0;

        overflow-y: auto;

        box-shadow:
            0 20px 40px rgba(7,26,61,0.10);

        transition:
            left 0.3s ease;
    }


    .navigation.active {
        left: 0;
    }


    .navigation > a {
        width: 100%;

        padding: 15px 0;

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

        font-size: 18px;
    }


    .navigation .nav-button {
        width: auto;

        margin-top: 20px;

        padding:
            13px 24px;
    }


    .menu-button {
        display: grid;

        place-items: center;
    }


    /* Hero */

    .hero {
        min-height: auto;

        padding-top: 120px;

        padding-bottom: 70px;
    }


    .hero::before {
        width: 400px;
        height: 400px;

        right: -250px;
    }


    .hero-grid {
        gap: 55px;
    }


    .hero h1 {
        font-size:
            clamp(42px, 12vw, 62px);

        letter-spacing:
            -2px;
    }


    .hero-description {
        font-size: 16px;

        margin-top: 20px;
    }


    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .button {
        width: 100%;
    }


    .hero-stats {
        display: grid;

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

        gap: 15px;

        margin-top: 35px;
    }


    .hero-stat strong {
        font-size: 23px;
    }


    .hero-stat span {
        font-size: 10px;
    }


    /* Hero dashboard */

    .hero-visual {
        min-height: 420px;
    }


    .growth-card {
        position: relative;

        top: 0;
        right: auto;

        width: 100%;

        transform: none;
    }


    .floating-card-one {
        left: -5px;

        bottom: 45px;
    }


    .floating-card-two {
        right: -5px;

        bottom: 0;
    }


    /* Trust */

    .trust-container {
        gap: 20px;
    }


    .trust-services {
        gap: 12px 18px;
    }


    /* Sections */

    .section {
        padding:
            75px 0;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading h2,
    .about-content h2 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }


    /* Services */

    .services-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .service-card {
        padding: 28px;
    }


    /* About */

    .about-visual {
        min-height: 430px;
    }


    .about-box {
        left: 0;

        width: 90%;

        height: 380px;
    }


    .experience-card {
        width: 175px;

        padding: 20px;
    }


    /* Process */

    .process-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    /* CTA */

    .cta-section {
        padding:
            60px 0;
    }


    .cta-box {
        padding:
            45px 28px;

        gap: 30px;
    }


    .cta-box h2 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   18. SMALL MOBILE
   550px
   ========================================================= */

@media (max-width: 550px) {

    .container {
        width: 90%;
    }


    .hero {
        padding-top: 110px;
    }


    .hero h1 {
        font-size: 43px;

        line-height: 1.04;
    }


    .hero-label {
        font-size: 11px;

        padding: 8px 13px;
    }


    .hero-description {
        font-size: 15px;
    }


    .hero-stats {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 22px;
    }


    .hero-visual {
        min-height: 390px;
    }


    .growth-card {
        padding: 16px;

        border-radius: 20px;
    }


    .growth-header {
        margin-bottom: 15px;
    }


    .growth-header h3 {
        font-size: 16px;
    }


    .chart {
        height: 135px;
    }


    .metrics {
        gap: 7px;
    }


    .metric {
        padding: 10px;
    }


    .metric span {
        font-size: 9px;
    }


    .metric strong {
        font-size: 16px;
    }


    .floating-card {
        padding: 12px 15px;

        border-radius: 13px;
    }


    .floating-card strong {
        font-size: 19px;
    }


    .floating-card span {
        font-size: 9px;
    }


    .section-heading h2,
    .about-content h2,
    .process-heading h2 {
        font-size: 38px;
    }


    .about-visual {
        min-height: 380px;
    }


    .about-box {
        height: 330px;
    }


    .about-big-text {
        left: 25px;
        bottom: 25px;

        font-size: 34px;
    }


    .experience-card {
        width: 155px;

        padding: 17px;
    }


    .experience-card strong {
        font-size: 34px;
    }


    .cta-box h2 {
        font-size: 37px;
    }

}


/* =========================================================
   19. VERY SMALL PHONES
   400px
   ========================================================= */

@media (max-width: 400px) {

    .container {
        width: 88%;
    }


    .hero h1 {
        font-size: 39px;
    }


    .hero-stats {
        grid-template-columns:
            1fr 1fr;
    }


    .hero-stat strong {
        font-size: 21px;
    }


    .growth-card {
        padding: 13px;
    }


    .metrics {
        grid-template-columns:
            1fr 1fr 1fr;
    }


    .metric strong {
        font-size: 14px;
    }


    .floating-card-one {
        left: -3px;
    }


    .floating-card-two {
        right: -3px;
    }


    .section-heading h2,
    .about-content h2,
    .process-heading h2 {
        font-size: 34px;
    }


    .service-card {
        padding: 24px;
    }


    .cta-box {
        padding:
            35px 22px;
    }


    .cta-box h2 {
        font-size: 34px;
    }

}


/* =========================================================
   20. ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition: none !important;

        animation: none !important;
    }

}
