/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {
    --black: #000000;
    --white: #ffffff;
    --blue: #1809e8;
    --blue-dark: #1005a8;
    --pink: #ef72c9;
    --pink-light: #f58bd2;
    --grey: #f4f4f4;
    --dark-grey: #111111;
    --border: #242424;
}


/* =====================================================
   GENERAL
===================================================== */

.container {
    width: min(90%, 1400px);
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.section-dark {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 70px;
}

.section-heading > span,
.eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.section-heading h2 {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.section-heading p {
    max-width: 650px;
    margin-top: 28px;
    color: #666666;
    font-size: 17px;
    line-height: 1.7;
}

.section-heading.light > span {
    color: var(--pink);
}

.section-heading.light p {
    color: #aaaaaa;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 15px 25px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: var(--pink);
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.94);
    color: var(--white);
    z-index: 1000;
    transition: background 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.logo-symbol {
    width: 32px;
    height: 32px;
    display: block;
    background: linear-gradient(
        135deg,
        var(--blue),
        var(--pink)
    );
    clip-path: polygon(
        0 0,
        100% 0,
        100% 35%,
        45% 100%,
        0 100%
    );
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 45px);
}

.nav-links a {
    position: relative;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.quote-button {
    padding: 13px 20px;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.quote-button:hover {
    background: var(--pink);
    color: var(--black);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-button {
    width: 42px;
    height: 42px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    width: 25px;
    height: 2px;
    display: block;
    background: var(--white);
    transition: 0.25s ease;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--black);
    color: var(--white);
}

.hero-container {
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr 0.85fr;
}

.hero-content {
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content .eyebrow {
    color: var(--pink);
}

.hero-content h1 {
    font-size: clamp(5rem, 11vw, 11rem);
    line-height: 0.8;
    letter-spacing: -0.07em;
}

.hero-content p {
    max-width: 600px;
    margin-top: 35px;
    color: #bbbbbb;
    font-size: 17px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.hero-visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--pink),
        var(--blue)
    );
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

.hero-shape-one {
    width: 65%;
    height: 65%;
    top: 15%;
    left: 15%;
}

.hero-shape-two {
    width: 40%;
    height: 40%;
    top: 35%;
    left: 30%;
    border-width: 20px;
}

.hero-shape-three {
    width: 25%;
    height: 25%;
    top: 10%;
    right: 10%;
}

.hero-visual-text {
    position: absolute;
    right: 8%;
    bottom: 8%;
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 900;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.15);
}


/* =====================================================
   INTRO STRIP
===================================================== */

.intro-strip {
    background: var(--blue);
    color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.intro-item {
    min-height: 190px;
    padding: 35px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-item:last-child {
    border-right: none;
}

.intro-item strong {
    display: block;
    margin-bottom: 20px;
    color: var(--pink);
    font-size: 12px;
}

.intro-item h3 {
    margin-bottom: 12px;
    font-size: 15px;
    letter-spacing: 0.08em;
}

.intro-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.6;
}


/* =====================================================
   OUR WORK
===================================================== */

.work-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.work-card {
    position: relative;
    min-height: 260px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: var(--white);
    background: var(--dark-grey);
}

.work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(24, 9, 232, 0.8),
        rgba(239, 114, 201, 0.4)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover::before {
    opacity: 1;
}

.work-card span {
    position: relative;
    color: var(--pink);
    font-size: 11px;
}

.work-card h3 {
    position: relative;
    margin-top: 10px;
    font-size: 20px;
    letter-spacing: 0.04em;
}

.work-card-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 45px;
    opacity: 0.25;
}

.mechanical {
    background: linear-gradient(
        145deg,
        #111111,
        #333333
    );
}

.electrical {
    background: linear-gradient(
        145deg,
        #1809e8,
        #1005a8
    );
}

.fabrication {
    background: linear-gradient(
        145deg,
        #222222,
        #000000
    );
}

.security {
    background: linear-gradient(
        145deg,
        #ef72c9,
        #9c2d83
    );
}

.work-content .number {
    display: block;
    margin-bottom: 25px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.work-content h3 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.work-content p {
    margin-top: 30px;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}

.text-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* =====================================================
   SERVICES
===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}

.service-card {
    position: relative;
    min-height: 350px;
    padding: 40px 35px;
    background: var(--black);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover {
    background: var(--blue);
    transform: translateY(-5px);
}

.service-number {
    color: #666666;
    font-size: 11px;
}

.service-icon {
    margin: 40px 0 25px;
    font-size: 42px;
    color: var(--pink);
}

.service-card h3 {
    max-width: 300px;
    font-size: 23px;
    line-height: 1.1;
}

.service-card p {
    margin-top: 18px;
    color: #999999;
    font-size: 14px;
    line-height: 1.7;
}

.service-card a {
    display: inline-block;
    margin-top: 25px;
    color: var(--pink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* =====================================================
   TIERS
===================================================== */

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tier-card {
    position: relative;
    padding: 45px 35px;
    background: var(--blue);
    color: var(--white);
}

.tier-card.featured {
    background: var(--black);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px;
    background: var(--pink);
    color: var(--black);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.tier-number {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.tier-card h3 {
    margin-top: 35px;
    font-size: 30px;
}

.tier-card p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.tier-card ul {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.tier-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
}

.tier-card li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--pink);
}

.tier-button {
    display: inline-block;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* =====================================================
   ABOUT
===================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--blue),
        var(--pink)
    );
}

.about-circle {
    width: 65%;
    aspect-ratio: 1;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.about-text {
    position: absolute;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
}

.about-content h2 {
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.85;
    letter-spacing: -0.06em;
}

.about-content p {
    max-width: 600px;
    margin-top: 25px;
    color: #aaaaaa;
    font-size: 16px;
    line-height: 1.8;
}

.about-content .btn {
    margin-top: 35px;
}


/* =====================================================
   PROCESS
===================================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #dddddd;
}

.process-item {
    padding: 40px 30px;
    background: var(--white);
}

.process-item > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.process-item h3 {
    margin-top: 50px;
    font-size: 25px;
}

.process-item p {
    margin-top: 15px;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   CUSTOMER RATINGS
===================================================== */

.ratings {
    position: relative;
    background: linear-gradient(
        180deg,
        #f4f4f4 0%,
        #ffffff 100%
    );
    overflow: hidden;
}

.ratings::before {
    content: "★★★★★";
    position: absolute;
    top: 30px;
    right: 3%;
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 10px;
    color: rgba(24, 9, 232, 0.035);
    pointer-events: none;
}


/* =====================================================
   RATING OVERVIEW
===================================================== */

.ratings-overview {
    position: relative;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 80px;
}


/* =====================================================
   AVERAGE RATING
===================================================== */

.rating-summary {
    position: relative;
    padding: 45px 30px;
    background: var(--black);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.rating-summary::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -60px;
    right: -60px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.7;
}

.rating-summary::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: -55px;
    left: -45px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.5;
}

.average-rating {
    position: relative;
    z-index: 2;
    font-size: 68px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -4px;
}

.stars-display {
    position: relative;
    z-index: 2;
    margin: 18px 0;
    font-size: 30px;
    letter-spacing: 4px;
    color: var(--pink);
}

.rating-summary p {
    position: relative;
    z-index: 2;
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.6;
}

.rating-summary strong {
    color: var(--white);
}


/* =====================================================
   RATING BREAKDOWN
===================================================== */

.rating-breakdown {
    width: 100%;
    max-width: 700px;
}

.rating-row {
    display: grid;
    grid-template-columns: 15px 25px 1fr 35px;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
}

.small-star {
    color: var(--blue);
    font-size: 14px;
}

.rating-bar {
    height: 10px;
    background: #dddddd;
    overflow: hidden;
    border-radius: 20px;
}

.rating-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        var(--blue),
        var(--pink)
    );
    border-radius: 20px;
    transition: width 0.6s ease;
}


/* =====================================================
   REVIEW FORM
===================================================== */

.review-form-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 90px;
    padding: 50px;
    background: var(--white);
    border: 1px solid #e2e2e2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.review-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--blue),
        var(--pink)
    );
}

.review-form-heading {
    margin-bottom: 35px;
}

.review-form-heading span,
.reviews-header span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.review-form-heading h3,
.reviews-header h3 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.04em;
}


/* =====================================================
   STAR INPUT
===================================================== */

.star-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
}

.star-rating button {
    width: 43px;
    height: 43px;
    padding: 0;
    border: none;
    background: transparent;
    color: #d2d2d2;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.star-rating button:hover {
    transform: scale(1.15);
    color: var(--pink);
}

.star-rating button.active {
    color: var(--blue);
}

.rating-message {
    display: block;
    margin-top: 8px;
    color: #777777;
    font-size: 12px;
}


/* =====================================================
   REVIEW CARDS
===================================================== */

.reviews-header {
    margin-bottom: 35px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    position: relative;
    min-height: 240px;
    padding: 32px;
    background: var(--white);
    border: 1px solid #e4e4e4;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 5px;
    right: 22px;
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1;
    color: rgba(24, 9, 232, 0.08);
}

.review-stars {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    color: #555555;
    font-size: 14px;
    line-height: 1.8;
}

.review-author {
    position: relative;
    z-index: 2;
    color: var(--black);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-date {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 6px;
    color: #999999;
    font-size: 11px;
}


/* =====================================================
   NO REVIEWS
===================================================== */

.no-reviews {
    grid-column: 1 / -1;
    padding: 55px 25px;
    background: var(--white);
    border: 1px dashed #cccccc;
    text-align: center;
    color: #777777;
    font-size: 14px;
}

.no-reviews::before {
    content: "★";
    display: block;
    margin-bottom: 15px;
    color: var(--pink);
    font-size: 30px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    padding: 120px 0;
    background: var(--grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}


/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    background: var(--white);
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 19px;
}

.contact-item small {
    display: block;
    margin-bottom: 5px;
    color: #777777;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.contact-item div > span {
    display: block;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    word-break: break-word;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-wrapper {
    padding: 40px;
    background: var(--white);
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--black);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    background: #ffffff;
    color: #000000;
    font-size: 15px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    min-height: 52px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(24, 9, 232, 0.08);
}

.form-submit {
    width: 100%;
    border: none;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 70px 0 25px;
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 20px;
    color: #777777;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 10px;
    color: var(--pink);
    font-size: 11px;
    letter-spacing: 0.12em;
}

.footer-links a,
.footer-contact a {
    color: #999999;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    color: #666666;
    font-size: 11px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .nav-links,
    .quote-button {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        min-height: 650px;
        padding: 100px 7%;
    }

    .hero-visual {
        min-height: 450px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ratings-overview {
        grid-template-columns: 280px 1fr;
        gap: 45px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    body {
        font-size: 15px;
    }

    .container {
        width: 92%;
    }

    .section,
    .section-dark,
    .contact {
        padding: 75px 0;
    }


    /* -------------------------------------------------
       NAVIGATION
    ------------------------------------------------- */

    .navbar {
        height: 68px;
        padding: 0 5%;
    }

    .logo {
        font-size: 16px;
    }

    .logo-symbol {
        width: 28px;
        height: 28px;
    }

    .menu-button {
        width: 42px;
        height: 42px;
    }


    /* -------------------------------------------------
       MOBILE MENU
    ------------------------------------------------- */

    .mobile-menu {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        height: calc(100vh - 68px);
        display: flex;
        flex-direction: column;
        padding: 25px 7%;
        background: var(--black);
        z-index: 999;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu a {
        padding: 19px 0;
        border-bottom: 1px solid var(--border);
        color: var(--white);
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .mobile-menu .mobile-quote {
        margin-top: 25px;
        padding: 17px 20px;
        border: none;
        background: var(--blue);
        text-align: center;
        font-size: 14px;
    }


    /* -------------------------------------------------
       HERO
    ------------------------------------------------- */

    .hero {
        padding-top: 68px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        min-height: auto;
        padding: 80px 5% 65px;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
        line-height: 0.87;
    }

    .hero-content p {
        margin-top: 25px;
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 320px;
        height: 65vw;
        max-height: 420px;
    }


    /* -------------------------------------------------
       SECTION HEADINGS
    ------------------------------------------------- */

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: clamp(3rem, 13vw, 5rem);
    }

    .section-heading p {
        font-size: 15px;
    }


    /* -------------------------------------------------
       INTRO
    ------------------------------------------------- */

    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-item {
        min-height: 170px;
        padding: 25px 18px;
    }

    .intro-item:nth-child(2) {
        border-right: none;
    }

    .intro-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    /* -------------------------------------------------
       WORK
    ------------------------------------------------- */

    .work-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .work-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .work-card {
        min-height: 190px;
        padding: 20px;
    }

    .work-card h3 {
        font-size: 16px;
    }

    .work-card-icon {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }

    .work-content h3 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }


    /* -------------------------------------------------
       SERVICES
    ------------------------------------------------- */

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .service-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .service-icon {
        margin: 25px 0 20px;
    }


    /* -------------------------------------------------
       TIERS
    ------------------------------------------------- */

    .tiers-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .tier-card {
        padding: 35px 25px;
    }


    /* -------------------------------------------------
       ABOUT
    ------------------------------------------------- */

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-visual {
        min-height: 350px;
    }

    .about-content h2 {
        font-size: clamp(3rem, 13vw, 5rem);
    }


    /* -------------------------------------------------
       PROCESS
    ------------------------------------------------- */

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .process-item {
        padding: 30px 25px;
    }

    .process-item h3 {
        margin-top: 25px;
    }


    /* =================================================
       RATINGS
    ================================================= */

    .ratings::before {
        display: none;
    }

    .ratings-overview {
        display: flex;
        flex-direction: column;
        gap: 35px;
        margin-top: 40px;
        margin-bottom: 55px;
    }

    .rating-summary {
        width: 100%;
        padding: 40px 25px;
    }

    .average-rating {
        font-size: 58px;
    }

    .stars-display {
        font-size: 26px;
        letter-spacing: 3px;
    }

    .rating-breakdown {
        width: 100%;
    }

    .rating-row {
        grid-template-columns: 15px 22px 1fr 30px;
        gap: 6px;
        margin-bottom: 12px;
    }

    .rating-bar {
        height: 8px;
    }


    /* -------------------------------------------------
       REVIEW FORM
    ------------------------------------------------- */

    .review-form-wrapper {
        width: 100%;
        padding: 35px 22px;
        margin-bottom: 60px;
    }

    .review-form-heading h3,
    .reviews-header h3 {
        font-size: 27px;
    }

    .star-rating {
        gap: 3px;
    }

    .star-rating button {
        width: 40px;
        height: 40px;
        font-size: 31px;
    }


    /* -------------------------------------------------
       REVIEWS
    ------------------------------------------------- */

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card {
        min-height: auto;
        padding: 28px 24px;
    }


    /* =================================================
       CONTACT
    ================================================= */

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .contact .section-heading h2 {
        font-size: clamp(3rem, 13vw, 5rem);
    }


    /* -------------------------------------------------
       CONTACT CARDS
    ------------------------------------------------- */

    .contact-info {
        width: 100%;
        gap: 10px;
    }

    .contact-item {
        min-height: 76px;
        padding: 16px;
        gap: 15px;
    }

    .contact-icon {
        width: 43px;
        height: 43px;
        font-size: 17px;
    }

    .contact-item div > span {
        font-size: 13px;
    }


    /* -------------------------------------------------
       CONTACT FORM
    ------------------------------------------------- */

    .contact-form-wrapper {
        width: 100%;
        padding: 22px 17px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .form-submit {
        min-height: 55px;
    }


    /* -------------------------------------------------
       FOOTER
    ------------------------------------------------- */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 45px;
    }
}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 390px) {

    .container {
        width: 94%;
    }

    .navbar {
        padding: 0 4%;
    }

    .hero-content {
        padding-left: 4%;
        padding-right: 4%;
    }

    .hero-content h1 {
        font-size: 2.9rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-item {
        min-height: auto;
        border-right: none !important;
    }

    .intro-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .work-gallery {
        grid-template-columns: 1fr;
    }

    .work-card {
        min-height: 180px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .contact-item {
        padding: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }


    /* Ratings */

    .review-form-wrapper {
        padding: 30px 17px;
    }

    .star-rating button {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .average-rating {
        font-size: 52px;
    }

    .stars-display {
        font-size: 23px;
    }
}


/* =====================================================
   ACCESSIBILITY / TOUCH DEVICES
===================================================== */

@media (hover: none) {

    .btn:hover {
        transform: none;
    }

    .contact-item:hover {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }

    .review-card:hover {
        transform: none;
    }

    .star-rating button:hover {
        transform: none;
    }
}


/* =====================================================
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}
