/* =========================================================
   BASE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: rgb(15, 15, 15);
    color: rgb(245, 245, 247);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}


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

header {
    background: rgb(19, 18, 20);
    width: 100%;
    height: clamp(50px, 10vh, 70px);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

header::after {
    content: "";
    position: absolute;

    bottom: 0;
    left: 2%;
    width: 96%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(250, 250, 253, 0.7) 32%,
        rgba(250, 250, 253, 0.7) 68%,
        transparent
    );
}

.headerInner {
    position: relative;
    width: 100%;
    height: 100%;
}


/* LOGO */

.logo {
    position: absolute;

    left: 4%;
    top: 50%;

    transform: translateY(-50%);

    font-size: clamp(13px, 3vw, 18px);
    font-weight: 800;
    letter-spacing: 0.12em;

    opacity: 0.9;
}


/* ACCOUNT */

.account {
    position: absolute;

    right: 4%;
    top: 50%;

    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.account:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
}


/* CENTER TITLE */

header .texth {
    position: absolute;

    top: 50%;
    left: 50%;

    width: max-content;
    height: 100%;

    transform: translate(-50%, -50%);

    text-align: center;
}

header .title {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    white-space: nowrap;

    font-size: clamp(16px, 5vw, 24px);
    font-weight: 600;

    line-height: 1;

    transition:
        transform 0.8s ease;
}

header .supported {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, 10px);

    opacity: 0;

    white-space: nowrap;

    font-size: 8px;
    line-height: 1;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

header .supported strong {
    display: block;

    font-size: 10px;
    line-height: 1;
}

header .texth.show .title {
    transform:
        translate(-50%, calc(-50% - 8px));
}

header .texth.show .supported {
    opacity: 1;

    transform:
        translate(-50%, 8px);
}


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

main {
    overflow: hidden;
}

.section {
    width: min(1200px, 92%);
    margin: 0 auto;

    padding: 110px 0;
}

.darkSection {
    width: 100%;
    max-width: none;

    padding-left: max(4%, calc((100% - 1200px) / 2));
    padding-right: max(4%, calc((100% - 1200px) / 2));

    background: rgb(18, 18, 20);
}

.sectionHeader {
    max-width: 720px;
    margin-bottom: 55px;
}

.sectionHeader.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.sectionLabel {
    display: block;

    margin-bottom: 15px;

    color: rgba(255,255,255,0.48);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h2 {
    margin-bottom: 20px;

    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.sectionHeader p {
    max-width: 600px;

    color: rgba(255,255,255,0.55);

    font-size: 16px;
    line-height: 1.6;
}


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

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 0 22px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: white;
    color: rgb(15,15,15);
}

.button.primary:hover {
    background: rgb(225,225,225);
}

.button.secondary {
    border: 1px solid rgba(255,255,255,0.18);

    color: white;

    background: rgba(255,255,255,0.025);
}

.button.secondary:hover {
    border-color: rgba(255,255,255,0.4);
}


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

.hero {
    width: 100%;

    min-height: min(720px, 85vh);

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255,255,255,0.06),
            transparent 35%
        );
}

.heroContent {
    width: min(1200px, 92%);

    margin: 0 auto;

    display: grid;

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

    gap: 70px;

    align-items: center;
}

.heroText {
    max-width: 620px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: rgba(255,255,255,0.45);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.hero h1 {
    margin-bottom: 25px;

    font-size: clamp(42px, 7vw, 76px);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.hero h1 span {
    color: rgba(255,255,255,0.42);
}

.heroText > p {
    max-width: 540px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.58);

    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
}

.heroButtons {
    display: flex;
    gap: 10px;

    flex-wrap: wrap;
}

.heroImage {
    overflow: hidden;

    border-radius: 14px;

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

    box-shadow:
        0 30px 80px rgba(0,0,0,0.35);
}

.heroImage img {
    aspect-ratio: 3 / 2;
    object-fit: cover;

    opacity: 0.78;
}


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

.serviceGrid {
    display: grid;

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

    gap: 12px;
}

.serviceCard {
    min-height: 270px;

    padding: 30px;

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

    border-radius: 12px;

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

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.serviceCard:hover {
    transform: translateY(-5px);

    border-color: rgba(255,255,255,0.18);

    background: rgba(255,255,255,0.045);
}

.serviceIcon {
    width: 45px;
    height: 45px;

    margin-bottom: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9px;

    font-size: 20px;

    color: rgba(255,255,255,0.8);
}

.serviceCard h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.serviceCard p {
    margin-bottom: 0;

    color: rgba(255,255,255,0.48);

    font-size: 14px;
    line-height: 1.55;
}


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

.aboutGrid {
    display: grid;

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

    gap: 80px;

    align-items: center;
}

.aboutImage {
    overflow: hidden;

    border-radius: 14px;

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

.aboutImage img {
    aspect-ratio: 3 / 2;
    object-fit: cover;

    opacity: 0.8;
}

.aboutText p {
    max-width: 560px;

    color: rgba(255,255,255,0.55);

    line-height: 1.65;
}

.textLink {
    display: inline-block;

    margin-top: 15px;

    color: white;

    font-size: 14px;
    font-weight: 600;

    transition: opacity 0.2s ease;
}

.textLink:hover {
    opacity: 0.6;
}


/* =========================================================
   STATISTICS
========================================================= */

.statistics {
    text-align: center;
}

.statsGrid {
    display: grid;

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

    gap: 15px;
}

.stat {
    padding: 35px 15px;

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

.stat strong {
    display: block;

    margin-bottom: 8px;

    font-size: clamp(30px, 5vw, 48px);

    letter-spacing: -0.04em;
}

.stat span {
    color: rgba(255,255,255,0.45);

    font-size: 13px;
}

.statsNote {
    margin-top: 25px;

    color: rgba(255,255,255,0.3);

    font-size: 12px;
}


/* =========================================================
   REPAIRS
========================================================= */

.rowHeader {
    max-width: none;

    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 20px;
}

.rowHeader h2 {
    margin-bottom: 0;
}

.repairGrid {
    display: grid;

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

    gap: 15px;
}

.repairCard {
    overflow: hidden;

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

    border-radius: 12px;

    background: rgb(19,19,21);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.repairCard:hover {
    transform: translateY(-4px);

    border-color: rgba(255,255,255,0.18);
}

.repairCard > img {
    aspect-ratio: 4 / 3;

    object-fit: cover;

    opacity: 0.8;
}

.repairBody {
    padding: 22px;
}

.status {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 10px;
    font-weight: 700;
}

.status.restored {
    color: rgba(130,255,170,0.8);
}

.status.process {
    color: rgba(255,210,100,0.85);
}

.repairBody h3 {
    margin-bottom: 10px;

    font-size: 18px;
}

.repairBody p {
    margin-bottom: 0;

    color: rgba(255,255,255,0.45);

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   WARNING
========================================================= */

.warningSection {
    display: grid;

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

    gap: 70px;

    align-items: center;

    padding-top: 90px;
    padding-bottom: 90px;

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

.warningContent p {
    max-width: 520px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.52);

    line-height: 1.6;
}

.warningImage {
    position: relative;

    overflow: hidden;

    border-radius: 14px;

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

.warningImage img {
    aspect-ratio: 10 / 7;

    object-fit: cover;

    filter: grayscale(0.4);

    opacity: 0.65;
}

.deadBadge {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 9px 13px;

    background: rgba(10,10,10,0.85);

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

    border-radius: 6px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


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

.processGrid {
    display: grid;

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

    gap: 15px;
}

.processStep {
    position: relative;

    padding: 30px 25px;

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

.processStep > span {
    display: block;

    margin-bottom: 35px;

    color: rgba(255,255,255,0.3);

    font-size: 12px;
    font-weight: 700;
}

.processStep h3 {
    margin-bottom: 12px;

    font-size: 18px;
}

.processStep p {
    margin-bottom: 0;

    color: rgba(255,255,255,0.45);

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   SOCIAL
========================================================= */

.socialSection {
    padding-top: 90px;
    padding-bottom: 90px;
}

.socialGrid {
    display: grid;

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

    gap: 12px;
}

.socialCard {
    padding: 30px;

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

    border-radius: 10px;

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

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

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

    background: rgba(255,255,255,0.05);
}

.socialCard strong {
    display: block;

    margin-bottom: 8px;

    font-size: 20px;
}

.socialCard span {
    color: rgba(255,255,255,0.4);

    font-size: 13px;
}


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

.cta {
    width: 100%;

    padding: 120px 5%;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.07),
            transparent 55%
        );

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

.cta > div {
    max-width: 700px;

    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;

    color: rgba(255,255,255,0.5);
}


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

footer {
    background: rgb(11,11,12);

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

.footerBody {
    width: min(1200px, 92%);

    margin: 0 auto;

    padding: 65px 0;

    display: grid;

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

    gap: 50px;
}

.footerBrand strong {
    font-size: 20px;

    letter-spacing: 0.1em;
}

.footerBrand p {
    max-width: 250px;

    margin-top: 15px;

    color: rgba(255,255,255,0.35);

    font-size: 13px;
    line-height: 1.5;
}

.footerColumn {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footerColumn strong {
    margin-bottom: 8px;

    font-size: 13px;
}

.footerColumn a {
    color: rgba(255,255,255,0.4);

    font-size: 13px;

    transition: color 0.2s ease;
}

.footerColumn a:hover {
    color: white;
}

.footerBottom {
    width: min(1200px, 92%);

    margin: 0 auto;

    padding: 20px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

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

    color: rgba(255,255,255,0.25);

    font-size: 11px;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


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

@media (max-width: 900px) {

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

        gap: 45px;
    }

    .hero {
        padding: 90px 0;
    }

    .heroImage {
        max-width: 650px;
    }

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

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

        gap: 45px;
    }

    .aboutImage {
        max-width: 700px;
    }

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

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

    .repairCard:last-child {
        display: none;
    }

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

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

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

    .footerBrand {
        grid-column: 1 / -1;
    }
}


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

@media (max-width: 600px) {

    header {
        height: 55px;
    }

    .logo {
        left: 5%;
    }

    .account {
        right: 5%;

        width: 27px;
        height: 27px;
    }

    header .title {
        font-size: 17px;
    }

    header .supported {
        font-size: 7px;
    }

    header .supported strong {
        font-size: 9px;
    }


    .section {
        width: 90%;

        padding: 75px 0;
    }


    .hero {
        min-height: auto;

        padding: 80px 0 70px;
    }

    .heroContent {
        width: 90%;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .heroText > p {
        font-size: 15px;
    }


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

    .serviceCard {
        min-height: auto;

        padding: 25px;
    }


    .sectionHeader {
        margin-bottom: 35px;
    }

    h2 {
        font-size: 34px;
    }


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

    .stat {
        padding: 25px 10px;
    }

    .stat strong {
        font-size: 32px;
    }

    .stat span {
        font-size: 11px;
    }


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

    .repairCard:last-child {
        display: block;
    }


    .rowHeader {
        display: block;
    }

    .rowHeader .textLink {
        margin-top: 20px;
    }


    .warningSection {
        width: 90%;
    }


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


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


    .cta {
        padding: 85px 5%;
    }


    .footerBody {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footerBrand {
        grid-column: auto;
    }

    .footerBottom {
        width: 90%;

        flex-direction: column;

        gap: 8px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

}

/* =========================================================
   CONTACTS
========================================================= */

.contactHero {
    width: min(1200px, 92%);

    margin: 0 auto;

    padding: 110px 0 80px;
}

.contactHeroInner {
    max-width: 800px;
}

.contactHero h1 {
    margin-bottom: 25px;

    font-size: clamp(44px, 8vw, 78px);
    line-height: 0.98;

    letter-spacing: -0.055em;
}

.contactHero p {
    max-width: 600px;

    margin: 0;

    color: rgba(255,255,255,0.52);

    font-size: 17px;
    line-height: 1.6;
}


/* MAIN CONTACT */

.contactSection {
    width: min(1200px, 92%);

    margin: 0 auto;

    padding: 40px 0 110px;
}

.contactGrid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, 0.75fr);

    gap: 80px;

    align-items: start;
}


/* FORM */

.contactFormBlock h2 {
    margin-bottom: 15px;

    font-size: clamp(30px, 5vw, 44px);
}

.formDescription {
    max-width: 600px;

    margin-bottom: 40px;

    color: rgba(255,255,255,0.45);

    line-height: 1.6;
}

.contactForm {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.formGroup {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.formGroup label {
    color: rgba(255,255,255,0.7);

    font-size: 12px;
    font-weight: 600;
}

.formGroup input,
.formGroup textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;

    outline: none;

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

    color: white;

    font: inherit;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.formGroup input {
    height: 48px;
}

.formGroup textarea {
    min-height: 140px;

    resize: vertical;
}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.formGroup input:focus,
.formGroup textarea:focus {
    border-color: rgba(255,255,255,0.35);

    background: rgba(255,255,255,0.055);
}

.submitButton {
    border: 0;

    cursor: pointer;

    align-self: flex-start;
}

.formNote {
    max-width: 500px;

    margin: -5px 0 0;

    color: rgba(255,255,255,0.25);

    font-size: 10px;
    line-height: 1.5;
}


/* ASIDE */

.contactAside {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contactCard,
.contactInfo {
    padding: 30px;

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

    border-radius: 12px;

    background: rgba(255,255,255,0.025);
}

.contactCard h3,
.contactInfo h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.contactCard > p {
    margin-bottom: 25px;

    color: rgba(255,255,255,0.45);

    font-size: 13px;
    line-height: 1.55;
}


/* CONTACT LINKS */

.contactLinks {
    display: flex;

    flex-direction: column;
}

.contactLink {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 17px 0;

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

    transition: opacity 0.2s ease;
}

.contactLink:hover {
    opacity: 0.6;
}

.contactLink strong {
    display: block;

    margin-bottom: 4px;

    font-size: 14px;
}

.contactLink small {
    color: rgba(255,255,255,0.35);

    font-size: 11px;
}

.contactLink b {
    color: rgba(255,255,255,0.5);

    font-size: 18px;

    font-weight: 400;
}


/* INFO */

.contactInfo {
    background: rgb(18,18,20);
}

.contactInfo ul {
    display: flex;

    flex-direction: column;

    gap: 13px;

    padding: 0;

    margin: 22px 0 0;

    list-style: none;
}

.contactInfo li {
    position: relative;

    padding-left: 18px;

    color: rgba(255,255,255,0.45);

    font-size: 12px;
    line-height: 1.5;
}

.contactInfo li::before {
    content: "—";

    position: absolute;

    left: 0;

    color: rgba(255,255,255,0.3);
}


/* BOTTOM */

.contactBottom {
    padding: 110px 5%;

    text-align: center;

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

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.06),
            transparent 55%
        );
}

.contactBottom h2 {
    margin-bottom: 20px;

    font-size: clamp(34px, 6vw, 56px);
}

.contactBottom p {
    max-width: 560px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,0.45);

    line-height: 1.6;
}


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

@media (max-width: 900px) {

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

        gap: 50px;
    }

    .contactAside {
        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .contactHero {
        width: 90%;

        padding: 75px 0 50px;
    }

    .contactHero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .contactHero p {
        font-size: 15px;
    }

    .contactSection {
        width: 90%;

        padding-top: 20px;
        padding-bottom: 75px;
    }

    .contactCard,
    .contactInfo {
        padding: 23px;
    }

    .submitButton {
        width: 100%;
    }

    .contactBottom {
        padding: 80px 7%;
    }

}
.serviceImage {
    width: 100%;
    height: 180px;

    overflow: hidden;
    border-radius: 10px;

    margin-bottom: 20px;
}

.serviceImage img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.serviceCard:hover .serviceImage img {
    transform: scale(1.04);
}

.servicesHero {
width: min(1200px, 92%);
margin: 0 auto;
padding: 110px 0 90px;
}

.servicesHeroInner {
max-width: 850px;
}

.servicesHero h1 {
margin-bottom: 25px;
font-size: clamp(42px, 7vw, 76px);
line-height: 0.98;
letter-spacing: -0.055em;
}

.servicesHero h1 span {
color: rgba(255,255,255,0.42);
}

.servicesHero p {
max-width: 650px;
margin: 0;
color: rgba(255,255,255,0.52);
font-size: 17px;
line-height: 1.6;
}

.priceNote {
display: flex;
align-items: center;
gap: 12px;
margin-top: 28px;
color: rgba(255,255,255,0.45);
font-size: 12px;
line-height: 1.5;
}

.priceNote strong {
color: rgba(255,255,255,0.85);
}

.priceNoteMark {
width: 7px;
height: 7px;
flex-shrink: 0;
border-radius: 50%;
background: rgba(255,255,255,0.7);
}

.categoryTabs {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 45px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255,255,255,0.06);
}

.categoryTab {
padding: 10px 20px;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 7px;
background: transparent;
color: rgba(255,255,255,0.45);
font-family: inherit;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition:
color 0.2s ease,
background 0.2s ease,
border-color 0.2s ease;
}

.categoryTab:hover {
color: white;
border-color: rgba(255,255,255,0.25);
}

.categoryTab.active {
color: white;
background: rgba(255,255,255,0.07);
border-color: rgba(255,255,255,0.25);
}

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

.serviceCard {
overflow: hidden;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 12px;
background: rgb(19,19,21);
transition:
transform 0.25s ease,
border-color 0.25s ease,
background 0.25s ease;
}

.serviceCard:hover {
transform: translateY(-5px);
border-color: rgba(255,255,255,0.18);
background: rgb(22,22,24);
}

.serviceImage {
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
}

.serviceImage img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
opacity: 0.78;
transition:
transform 0.45s ease,
opacity 0.45s ease;
}

.serviceCard:hover .serviceImage img {
transform: scale(1.04);
opacity: 0.9;
}

.serviceBody {
padding: 23px;
}

.serviceLabel {
display: block;
margin-bottom: 10px;
color: rgba(255,255,255,0.32);
font-size: 9px;
font-weight: 700;
letter-spacing: 0.15em;
}

.serviceBody h3 {
margin-bottom: 10px;
font-size: 19px;
line-height: 1.25;
}

.serviceDesc {
min-height: 62px;
margin-bottom: 18px;
color: rgba(255,255,255,0.45);
font-size: 13px;
line-height: 1.55;
}

.priceRow {
display: flex;
align-items: baseline;
gap: 10px;
padding-top: 15px;
border-top: 1px solid rgba(255,255,255,0.07);
}

.oldPrice {
color: rgba(255,255,255,0.25);
font-size: 13px;
text-decoration: line-through;
}

.currentPrice {
color: white;
font-size: 21px;
font-weight: 700;
letter-spacing: -0.02em;
}

.priceFrom {
color: rgba(255,255,255,0.3);
font-size: 11px;
font-weight: 400;
}

.orderBtn {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 42px;
margin-top: 15px;
padding: 0 16px;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 7px;
background: rgba(255,255,255,0.035);
color: rgba(255,255,255,0.7);
font-family: inherit;
font-size: 12px;
font-weight: 600;
cursor: pointer;
transition:
background 0.2s ease,
border-color 0.2s ease,
color 0.2s ease;
}

.orderBtn:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(255,255,255,0.25);
color: white;
}

.categoryGroup {
    display: block;
}

.categoryGroup + .categoryGroup {
    margin-top: 55px;
}

.categoryGroup.hidden {
    display: none;
}

.commonService {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
gap: 0;
overflow: hidden;
margin-bottom: 55px;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 14px;
background: rgb(18,18,20);
}

.commonServiceImage {
min-height: 330px;
overflow: hidden;
}

.commonServiceImage img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.72;
transition:
transform 0.5s ease,
opacity 0.5s ease;
}

.commonService:hover .commonServiceImage img {
transform: scale(1.03);
opacity: 0.85;
}

.commonServiceBody {
display: flex;
flex-direction: column;
justify-content: center;
padding: 45px;
}

.commonServiceBody h3 {
margin-bottom: 15px;
font-size: clamp(26px, 4vw, 38px);
letter-spacing: -0.035em;
}

.commonServiceBody p {
max-width: 500px;
margin-bottom: 25px;
color: rgba(255,255,255,0.48);
font-size: 14px;
line-height: 1.65;
}

.commonServicePrice {
margin-bottom: 20px;
}

.commonServicePrice .oldPrice {
margin-right: 10px;
}

.guaranteeSection {
margin-top: 70px;
padding-top: 45px;
border-top: 1px solid rgba(255,255,255,0.06);
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 35px;
}

.guaranteeItem {
padding-right: 20px;
}

.guaranteeItem strong {
display: block;
margin-bottom: 9px;
font-size: 14px;
}

.guaranteeItem p {
margin: 0;
color: rgba(255,255,255,0.38);
font-size: 12px;
line-height: 1.55;
}

.priceInformation {
margin-top: 55px;
padding: 25px 0;
border-top: 1px solid rgba(255,255,255,0.06);
border-bottom: 1px solid rgba(255,255,255,0.06);
}

.priceInformation p {
max-width: 750px;
margin: 0;
color: rgba(255,255,255,0.32);
font-size: 12px;
line-height: 1.6;
}

@media (max-width: 900px) {


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

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

.commonServiceImage {
    min-height: 300px;
}

.commonServiceBody {
    padding: 35px;
}

.guaranteeSection {
    grid-template-columns: 1fr;
    gap: 25px;
}

.guaranteeItem {
    padding-right: 0;
}


}

@media (max-width: 600px) {


.servicesHero {
    width: 90%;
    padding: 75px 0 65px;
}

.servicesHero h1 {
    font-size: clamp(38px, 12vw, 58px);
}

.servicesHero p {
    font-size: 15px;
}

.priceNote {
    align-items: flex-start;
}

.categoryTabs {
    gap: 6px;
    margin-bottom: 35px;
}

.categoryTab {
    padding: 8px 14px;
    font-size: 11px;
}

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

.serviceBody {
    padding: 22px;
}

.serviceDesc {
    min-height: auto;
}

.commonService {
    margin-bottom: 45px;
}

.commonServiceImage {
    min-height: 230px;
}

.commonServiceBody {
    padding: 28px 23px;
}

.commonServiceBody h3 {
    font-size: 30px;
}

.guaranteeSection {
    margin-top: 50px;
    padding-top: 35px;
}

}
/* =========================================================
   SUBMIT CAPTCHA POPUP
========================================================= */

.submitCaptcha {
    position: relative;

    width: min(100%, 430px);

    z-index: 5;
}


/* =========================================================
   MAIN BUTTON
========================================================= */

.submitButton {
    position: relative;

    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border: 0;
    border-radius: 8px;

    background: white;
    color: rgb(15,15,15);

    font: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    /*
     * В обычном состоянии кнопка полностью ровная.
     */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 100%
    );

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        clip-path 0.45s cubic-bezier(.2,.8,.2,1);
}

.submitButton:hover {
    background: rgb(235,235,235);

    transform: translateY(-2px);
}

.submitButton span {
    position: relative;

    z-index: 2;
}

/* =========================================================
   РВАНАЯ НИЖНЯЯ ГРАНИЦА КНОПКИ
========================================================= */

.submitCaptcha.captchaActive .submitButton {

    /*
     * Верх остаётся идеально ровным,
     * нижняя граница превращается в рваную.
     */

    clip-path: polygon(
        0 0,
        100% 0,

        100% 100%,

        96% 91%,
        92% 100%,
        87% 90%,
        82% 98%,
        76% 88%,
        70% 100%,
        64% 90%,
        58% 98%,
        52% 87%,
        46% 100%,
        40% 90%,
        34% 98%,
        28% 88%,
        22% 100%,
        16% 91%,
        10% 98%,
        5% 90%,
        0 100%
    );

    transform: none;
}
/* =========================================================
   CAPTCHA POPUP
========================================================= */

.captchaPopup {
    position: relative;

    width: 100%;

    max-height: 0;

    margin-top: 0;

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(-15px)
        scaleY(0.85);

    transform-origin: top center;

    pointer-events: none;

    transition:
        max-height 0.45s cubic-bezier(.2,.8,.2,1),
        margin-top 0.45s cubic-bezier(.2,.8,.2,1),
        opacity 0.25s ease,
        transform 0.45s cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   ORANGE "ПРЫЩ"
========================================================= */

.captchaPopup::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 7%;

    width: 86%;
    height: 18px;

    background: rgb(255, 132, 32);

    clip-path: polygon(
        0 100%,
        5% 55%,
        10% 70%,
        16% 25%,
        23% 58%,
        30% 15%,
        37% 60%,
        45% 30%,
        53% 65%,
        61% 20%,
        69% 55%,
        76% 12%,
        84% 60%,
        91% 30%,
        100% 100%
    );

    z-index: 2;
}


/* =========================================================
   CAPTCHA BODY
========================================================= */

.captchaPopupInner {
    position: relative;

    width: 100%;

    min-height: 90px;

    margin-top: 8px;

    padding: 18px 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgb(255, 132, 32);

    border-radius: 0 0 10px 10px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.28);

    clip-path: polygon(
        0 5%,
        3% 2%,
        7% 5%,
        12% 1%,
        17% 4%,
        23% 1%,
        29% 4%,
        35% 1%,
        42% 4%,
        50% 1%,
        58% 4%,
        65% 1%,
        72% 4%,
        79% 1%,
        86% 5%,
        93% 2%,
        100% 6%,
        100% 100%,
        0 100%
    );
}


/* =========================================================
   TURNSTILE
========================================================= */

.captchaPopup .cf-turnstile {
    opacity: 0;

    transform:
        translateY(8px)
        scale(0.95);

    transition:
        opacity 0.25s ease 0.18s,
        transform 0.35s ease 0.18s;
}


/* =========================================================
   OPEN
========================================================= */

.submitCaptcha.captchaActive
.captchaPopup {

    max-height: 140px;

    margin-top: 8px;

    opacity: 1;

    transform:
        translateY(0)
        scaleY(1);

    pointer-events: auto;
}


.submitCaptcha.captchaActive
.captchaPopup .cf-turnstile {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   VERIFIED
========================================================= */

.submitCaptcha.captchaVerified
.captchaPopup {

    max-height: 0;

    margin-top: 0;

    opacity: 0;

    transform:
        translateY(-15px)
        scaleY(0.85);

    pointer-events: none;
}


/* =========================================================
   BUTTON SUCCESS
========================================================= */

.submitCaptcha.captchaVerified
.submitButton {

    background: rgb(255, 132, 32);

    color: white;

    transform: none;
}


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

@media (max-width: 600px) {

    .submitCaptcha {
        width: 100%;
    }

    .captchaPopupInner {
        min-height: 92px;

        padding: 16px 10px;
    }

}
/* =========================================================
FORM VALIDATION
========================================================= */

.formGroup.inputError input,
.formGroup.inputError textarea {
    border-color: rgb(255, 70, 70);
    background: rgba(255, 70, 70, 0.045);
}

/* Красная рамка остаётся после окончания тряски */
.formGroup.inputError input:focus,
.formGroup.inputError textarea:focus {
    border-color: rgb(255, 70, 70);
}

/* Тряска 0.4 секунды */
.formGroup.inputShake input,
.formGroup.inputShake textarea {
    animation: formInputShake 0.4s ease-in-out;
}

@keyframes formInputShake {
    0% {
        transform: translateX(0);
    }

    12% {
        transform: translateX(-7px);
    }

    25% {
        transform: translateX(7px);
    }

    37% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }

    62% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }

    87% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}
.privacy_text {
    width: 90%;
    height: 700px;

    margin: 0 auto;
    margin-bottom: 10px;

    padding: 20px;

    overflow-y: auto;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;

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

    color: white;

    font-size: 14px;
    line-height: 1.6;

    box-sizing: border-box;
}


/* Chrome / Edge / Opera */
.privacy_text::-webkit-scrollbar {
    width: 8px;
}

.privacy_text::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}

.privacy_text::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0.2);
}

.privacy_text::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}


/* Firefox */
.privacy_text {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.18) rgba(255,255,255,0.03);
}
@media (max-width: 600px) {
    .privacy_text {
        width: 90%;
        height: 600px;
        padding: 15px;
    }
}
.categoryHeading {
    margin: 70px 0 30px;
    padding-top: 10px;
}

.categoryHeading .sectionLabel {
    display: block;
    margin-bottom: 10px;
}

.categoryHeading h2 {
    margin: 0;
}

.categoryHeading p {
    max-width: 700px;
    margin-top: 12px;
    margin-bottom: 0;
    opacity: 0.65;
    line-height: 1.6;
}