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


:root {
    --ink: #111827;
    --muted: #667085;
    --blue: #2563eb;
    --blue2: #1d4ed8;
    --line: #e7eaf0;
    --soft: #f6f8fc;
    --white: #ffffff;
    --green: #15803d;
    --red: #dc2626;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: #ffffff;
    line-height: 1.6;
}


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


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 78px;

    position: sticky;
    top: 0;

    z-index: 100;

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

    backdrop-filter: blur(14px);

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0
        max(5%, calc((100vw - 1180px) / 2));
}


.brand,
.footer-brand {
    display: flex;

    align-items: center;

    gap: 10px;
}


.brand strong,
.footer-brand strong {
    display: block;

    letter-spacing: 0.4px;

    font-size: 14px;
}


.brand span,
.footer-brand span {
    display: block;

    color: var(--muted);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


.brand-mark {
    width: 43px;
    height: 43px;

    border-radius: 12px;

    background: var(--blue);

    color: white;

    display: grid;

    place-items: center;

    font-weight: 800;

    font-size: 12px;

    box-shadow:
        0 8px 22px rgba(37, 99, 235, 0.25);
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 14px;

    font-weight: 600;

    color: #475467;
}


.nav-links a {
    transition: 0.2s;
}


.nav-links a:hover {
    color: var(--blue);
}


.nav-cta {
    background: var(--ink);

    color: #ffffff !important;

    padding: 11px 18px;

    border-radius: 10px;
}


.menu-toggle {
    display: none;

    border: none;

    background: transparent;

    font-size: 25px;

    cursor: pointer;
}



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

.hero {
    min-height: 650px;

    background:
        radial-gradient(
            circle at 85% 25%,
            #dbeafe 0,
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #ffffff
        );

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 50px;

    padding:
        80px
        max(5%, calc((100vw - 1180px) / 2));
}


.eyebrow,
.section-label {
    font-size: 11px;

    letter-spacing: 1.7px;

    font-weight: 800;

    color: var(--blue);
}


.hero h1 {
    font-size: clamp(
        45px,
        6vw,
        78px
    );

    line-height: 1.03;

    letter-spacing: -3px;

    margin: 14px 0 24px;
}


.hero h1 span {
    color: var(--blue);
}


.hero-copy > p {
    font-size: 18px;

    color: var(--muted);

    max-width: 590px;
}


.hero-actions {
    display: flex;

    gap: 12px;

    margin: 30px 0 22px;
}


.btn {
    display: inline-flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    padding: 14px 20px;

    border-radius: 11px;

    border: 1px solid transparent;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}


.btn-primary {
    background: var(--blue);

    color: white;

    box-shadow:
        0 10px 25px
        rgba(37, 99, 235, 0.2);
}


.btn-primary:hover {
    background: var(--blue2);

    transform: translateY(-2px);
}


.btn-primary:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}


.btn-light {
    background: white;

    border-color: var(--line);
}


.btn-light:hover {
    border-color: var(--blue);

    color: var(--blue);
}


.trust-row {
    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    color: #667085;

    font-size: 12px;
}



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

.hero-card {
    height: 450px;

    position: relative;

    display: grid;

    place-items: center;
}


.phone-visual {
    width: 225px;

    height: 420px;

    border: 8px solid #111827;

    border-radius: 38px;

    background: #0b1220;

    box-shadow:
        30px 35px 70px
        rgba(15, 23, 42, 0.25);

    transform: rotate(7deg);

    padding: 10px;
}


.phone-screen {
    height: 100%;

    border-radius: 27px;

    background:
        linear-gradient(
            160deg,
            #2563eb,
            #0f172a 72%
        );

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;
}


.screen-logo {
    font-weight: 800;

    font-size: 30px;

    letter-spacing: 2px;
}


.screen-logo + small {
    opacity: 0.75;
}


.floating-card {
    position: absolute;

    background: white;

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

    border-radius: 14px;

    padding: 13px 16px;

    box-shadow:
        0 15px 40px
        rgba(15, 23, 42, 0.1);

    font-size: 12px;
}


.floating-card b,
.floating-card small {
    display: block;
}


.floating-card small {
    color: var(--muted);

    margin-top: 2px;
}


.floating-one {
    top: 55px;

    right: 0;
}


.floating-two {
    bottom: 50px;

    left: 0;
}



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

.section {
    padding:
        95px
        max(5%, calc((100vw - 1180px) / 2));
}



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

.about {
    background: #ffffff;
}


.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    margin-top: 20px;
}


.about h2,
.fix-info h2 {
    font-size: 42px;

    line-height: 1.12;

    letter-spacing: -1.5px;
}


.about p {
    color: var(--muted);

    margin-bottom: 15px;
}



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

.services-section {
    background: var(--soft);
}


.section-heading {
    text-align: center;

    max-width: 680px;

    margin: 0 auto 42px;
}


.section-heading h2 {
    font-size: 43px;

    letter-spacing: -1.5px;

    margin: 8px 0;
}


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


.service-grid {
    display: grid;

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

    gap: 18px;
}


.service-card {
    background: white;

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

    border-radius: 18px;

    padding: 27px;

    min-height: 250px;

    transition: 0.25s;
}


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

    box-shadow:
        0 18px 45px
        rgba(15, 23, 42, 0.08);
}


.service-icon {
    font-size: 30px;

    margin-bottom: 24px;
}


.service-card h3 {
    font-size: 18px;

    margin-bottom: 10px;
}


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

    font-size: 14px;
}



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

.fix-section {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 70px;

    background: #0f172a;

    color: white;
}


.fix-info {
    padding-top: 15px;
}


.fix-info h2 {
    margin: 12px 0 18px;
}


.fix-info p {
    color: #cbd5e1;

    max-width: 420px;
}


.mini-list {
    margin-top: 30px;

    display: grid;

    gap: 11px;

    color: #cbd5e1;

    font-size: 13px;
}



/* =========================
   FORM
========================= */

.repair-form {
    background: white;

    color: var(--ink);

    border-radius: 20px;

    padding: 30px;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.12);
}


.repair-form label {
    display: block;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 16px;
}


.repair-form input,
.repair-form textarea {
    width: 100%;

    display: block;

    margin-top: 7px;

    border:
        1px solid #dfe3ea;

    border-radius: 10px;

    padding: 13px 14px;

    font: inherit;

    outline: none;

    background: white;

    transition: 0.2s;
}


.repair-form input:focus,
.repair-form textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(37, 99, 235, 0.08);
}


.repair-form textarea {
    resize: vertical;

    min-height: 90px;
}


.form-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;
}


.check-row {
    display: flex !important;

    gap: 10px;

    align-items: flex-start;

    font-weight: 500 !important;

    color: #475467;
}


.check-row input {
    width: 18px !important;

    height: 18px;

    margin:
        2px 0 0 !important;

    flex-shrink: 0;
}


.optional {
    color: #98a2b3;

    font-weight: 400;
}


.submit-btn {
    width: 100%;

    border: 0;

    font-size: 14px;
}


.form-status {
    min-height: 22px;

    margin-top: 12px;

    font-size: 13px;

    font-weight: 600;
}



/* =========================
   CONTACT
========================= */

.contact {
    background: #f8fafc;
}


.contact-grid {
    display: grid;

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

    gap: 16px;
}


.contact-card {
    background: white;

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

    padding: 22px;

    border-radius: 15px;

    display: flex;

    gap: 15px;

    align-items: center;

    transition: 0.2s;
}


.contact-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.06);
}


.contact-card > span {
    width: 43px;

    height: 43px;

    border-radius: 11px;

    background: #eff6ff;

    display: grid;

    place-items: center;

    font-size: 20px;

    flex-shrink: 0;
}


.contact-card small {
    display: block;

    color: #98a2b3;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.contact-card strong {
    font-size: 13px;

    display: block;

    margin-top: 3px;

    word-break: break-word;
}



/* =========================
   MAP
========================= */

.location {
    margin-top: 25px;

    width: 100%;

    overflow: hidden;

    border-radius: 18px;

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

    box-shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.08);
}


.location iframe {
    display: block;

    width: 100%;

    height: 400px;
}



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

footer {
    background: #080d18;

    color: white;

    padding:
        35px
        max(5%, calc((100vw - 1180px) / 2));

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


footer p {
    color: #98a2b3;

    font-size: 12px;
}


.footer-brand .brand-mark {
    background: #1d4ed8;
}



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

@media (max-width: 900px) {

    .nav-links {
        gap: 16px;
    }


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


    .hero-card {
        display: none;
    }


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


    .about-grid,
    .fix-section {
        grid-template-columns: 1fr;

        gap: 35px;
    }


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

}



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

@media (max-width: 680px) {

    .navbar {
        height: 68px;

        padding: 0 5%;
    }


    .menu-toggle {
        display: block;
    }


    .nav-links {
        display: none;

        position: absolute;

        top: 68px;

        left: 0;

        right: 0;

        background: white;

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

        padding: 15px 5%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    .nav-links.open {
        display: flex;
    }


    .nav-links a {
        padding: 13px 0;
    }


    .nav-cta {
        padding: 13px 16px !important;

        text-align: center;
    }


    .hero {
        min-height: auto;

        padding-top: 65px;

        padding-bottom: 65px;
    }


    .hero h1 {
        letter-spacing: -2px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .btn {
        width: 100%;
    }


    .section {
        padding-top: 65px;

        padding-bottom: 65px;
    }


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


    .about h2,
    .fix-info h2,
    .section-heading h2 {
        font-size: 34px;
    }


    .repair-form {
        padding: 22px;
    }


    .location iframe {
        height: 320px;
    }


    footer {
        flex-direction: column;

        align-items: flex-start;
    }

}