:root {
    --black: #080b0f;
    --ink: #111820;
    --panel: rgba(241, 245, 249, 0.065);
    --panel-strong: rgba(241, 245, 249, 0.12);
    --text: #f5f8fb;
    --muted: #9aa8b6;
    --line: rgba(255, 255, 255, 0.14);
    --line-strong: rgba(158, 181, 204, 0.32);
    --white: #ffffff;
    --soft: #d9e2ea;
    --steel: #9fb3c8;
    --blue: #5ba9d6;
    --blue-strong: #2e7fa9;
    --cyan: #8fd3ff;
    --warning: #f97316;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    --inner-line: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(91, 169, 214, 0.08), transparent 34%),
        linear-gradient(180deg, #0a0f15 0%, #080b0f 44%, #0d1218 100%),
        var(--black);
    line-height: 1.5;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 11, 15, 0.9);
    backdrop-filter: blur(12px);
}

.navbar {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: "Roboto Mono", monospace;
}

.brand-mark {
    width: 44px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(91, 169, 214, 0.95), rgba(35, 55, 70, 0.95));
    box-shadow: var(--inner-line);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: "Roboto Mono", monospace;
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--panel);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 11, 15, 0.94) 0%, rgba(8, 11, 15, 0.72) 48%, rgba(8, 11, 15, 0.42) 100%),
        linear-gradient(0deg, rgba(8, 11, 15, 0.98) 0%, transparent 45%),
        url("https://images.pexels.com/photos/4489732/pexels-photo-4489732.jpeg?auto=compress&cs=tinysrgb&w=1900") center / cover;
    transform: scale(1);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(143, 211, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 211, 255, 0.055) 1px, transparent 1px),
        repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.028) 18px 19px);
    background-size: 42px 42px, 42px 42px, auto;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-content {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16vh 0 17vh;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: "Roboto Mono", monospace;
}

h1,
h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.02;
    font-weight: 800;
}

h1 {
    max-width: 970px;
    font-size: clamp(3rem, 7.2vw, 7.8rem);
}

h2 {
    max-width: 880px;
    font-size: clamp(2.1rem, 4.6vw, 5rem);
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(247, 247, 242, 0.78);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 21px;
    border-radius: 6px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-family: "Roboto Mono", monospace;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.price-card a:hover,
.booking-button:hover {
    transform: translateY(-1px);
}

.service-card,
.price-card,
.process-card,
.review-card,
.contact-info,
.map-card,
.booking-panel,
.booking-side {
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card:hover,
.price-card:hover,
.process-card:hover,
.review-card:hover,
.contact-info:hover,
.map-card:hover,
.booking-panel:hover,
.booking-side:hover {
    transform: none;
    border-color: rgba(143, 211, 255, 0.46);
}

.button.primary {
    color: var(--white);
    background: linear-gradient(180deg, var(--blue), var(--blue-strong));
    box-shadow: 0 14px 34px rgba(46, 127, 169, 0.22);
}

.button.glass {
    border-color: var(--line-strong);
    background: rgba(15, 23, 31, 0.72);
    backdrop-filter: blur(8px);
}

.button.wide {
    width: max-content;
}

.hero-badges {
    position: absolute;
    right: max(16px, calc((100vw - 1180px) / 2));
    bottom: 46px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 560px;
}

.hero-badges span {
    padding: 9px 12px;
    border: 1px solid rgba(143, 211, 255, 0.22);
    border-radius: 4px;
    background: rgba(15, 23, 31, 0.74);
    backdrop-filter: blur(8px);
    color: rgba(245, 248, 251, 0.86);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: "Roboto Mono", monospace;
}

.intro-strip,
.issue-section,
.section,
.prices-section,
.process-section,
.reviews-section,
.booking-section,
.contact-section,
.footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.intro-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: -42px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro-strip div {
    padding: 24px;
    border-top: 2px solid rgba(91, 169, 214, 0.34);
    background:
        linear-gradient(180deg, rgba(22, 32, 42, 0.98), rgba(13, 18, 24, 0.98));
    backdrop-filter: blur(10px);
}

.intro-strip strong {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-family: "Roboto Mono", monospace;
}

.intro-strip span,
.booking-side span {
    color: var(--muted);
    font-weight: 700;
}

.section,
.issue-section,
.prices-section,
.process-section,
.reviews-section,
.booking-section,
.contact-section {
    padding-top: 112px;
}

.issue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.issue-card {
    position: relative;
    min-height: 260px;
    display: grid;
    align-content: space-between;
    gap: 18px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        #0f171f;
    box-shadow: var(--shadow);
}

.issue-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(143, 211, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 211, 255, 0.045) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(135deg, #000, transparent 80%);
}

.issue-card > * {
    position: relative;
    z-index: 1;
}

.issue-card-featured {
    border-color: rgba(143, 211, 255, 0.54);
    background:
        linear-gradient(135deg, rgba(46, 127, 169, 0.28), rgba(255, 255, 255, 0.03)),
        #0f171f;
}

.issue-code {
    width: max-content;
    padding: 7px 9px;
    border: 1px solid rgba(143, 211, 255, 0.32);
    border-radius: 4px;
    color: var(--cyan);
    background: rgba(91, 169, 214, 0.1);
    font-family: "Roboto Mono", monospace;
    font-size: 0.75rem;
    font-weight: 900;
}

.issue-card h3 {
    margin: 0;
    font-size: 1.45rem;
}

.issue-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.button.compact {
    width: max-content;
    min-height: 44px;
    padding: 0 16px;
}

.issue-card .booking-button {
    width: max-content;
}

.section-heading {
    margin-bottom: 34px;
    padding-left: 18px;
    border-left: 4px solid var(--blue);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.service-card {
    min-height: 500px;
    position: relative;
    grid-column: span 3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line-strong);
    background: var(--ink);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.featured-service {
    grid-column: span 6;
    min-height: 430px;
    border-color: rgba(143, 211, 255, 0.56);
}

.featured-service::before {
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), var(--blue), transparent);
}

.service-card img {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    opacity: 0.74;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.featured-service img {
    min-height: 430px;
}

.service-card:hover img {
    transform: scale(1.025);
    opacity: 0.88;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(8, 11, 15, 0.94), transparent 62%),
        linear-gradient(135deg, rgba(91, 169, 214, 0.18), transparent 46%);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), transparent);
}

.service-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
}

.featured-service div {
    max-width: 720px;
}

.service-card h3,
.price-card h3,
.process-card h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
}

.service-card p {
    max-width: 310px;
    margin: 0;
    color: rgba(247, 247, 242, 0.74);
}

.service-icon {
    width: max-content;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 14px;
    padding: 0 10px;
    border: 1px solid rgba(143, 211, 255, 0.32);
    border-radius: 4px;
    color: var(--cyan);
    background: rgba(8, 11, 15, 0.74);
    font-family: "Roboto Mono", monospace;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.warning-icon {
    border-color: rgba(249, 115, 22, 0.48);
    color: #ffb36b;
}

.service-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 18px 0 0;
}

.service-facts div {
    position: static;
    padding: 10px;
    border: 1px solid rgba(158, 181, 204, 0.24);
    border-radius: 6px;
    background: rgba(8, 11, 15, 0.66);
}

.service-facts dt {
    margin-bottom: 5px;
    color: var(--muted);
    font-family: "Roboto Mono", monospace;
    font-size: 0.66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-facts dd {
    margin: 0;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 800;
}

.service-more {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 10px;
    border: 1px solid rgba(143, 211, 255, 0.26);
    border-radius: 4px;
    background: rgba(15, 23, 31, 0.74);
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "Roboto Mono", monospace;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.price-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        #101820;
    box-shadow: var(--shadow);
}

.price-card::before,
.process-card::before,
.review-card::before,
.booking-side::before,
.contact-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), rgba(91, 169, 214, 0));
}

.price-card.featured {
    background:
        linear-gradient(180deg, rgba(91, 169, 214, 0.18), rgba(255, 255, 255, 0.035)),
        #101820;
    border-color: rgba(143, 211, 255, 0.42);
}

.tag {
    width: max-content;
    display: inline-flex;
    padding: 8px 10px;
    border: 1px solid rgba(143, 211, 255, 0.34);
    border-radius: 4px;
    color: var(--cyan);
    background: rgba(91, 169, 214, 0.12);
    font-size: 0.75rem;
    font-weight: 900;
    font-family: "Roboto Mono", monospace;
}

.warning-tag {
    border-color: rgba(249, 115, 22, 0.5);
    color: #ffb36b;
    background: rgba(249, 115, 22, 0.12);
}

.price-card h3 {
    margin-top: 28px;
}

.price-card strong {
    display: block;
    color: var(--white);
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    font-family: "Roboto Mono", monospace;
}

.price-includes,
.price-excludes {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid rgba(158, 181, 204, 0.22);
    border-radius: 6px;
    background: rgba(8, 11, 15, 0.34);
}

.price-includes h4,
.price-excludes h4 {
    margin: 0 0 10px;
    color: var(--cyan);
    font-family: "Roboto Mono", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.price-includes ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-weight: 700;
}

.price-includes li + li {
    margin-top: 8px;
}

.price-excludes p,
.price-note {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.price-note {
    margin: 14px 0 18px;
    font-family: "Roboto Mono", monospace;
    font-size: 0.78rem;
}

.price-card .booking-button {
    margin-top: auto;
}

.price-card a,
.booking-button,
.apple-calendar,
.google-calendar,
.android-calendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    border: 0;
    border-radius: 6px;
    color: var(--white);
    background: linear-gradient(180deg, var(--blue), var(--blue-strong));
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero-actions .booking-button,
.issue-card .booking-button {
    width: max-content;
    padding: 0 21px;
}

.process-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.process-card,
.review-card,
.booking-panel,
.booking-side,
.contact-info,
.map-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
        rgba(13, 18, 24, 0.88);
    box-shadow: var(--shadow);
}

.process-card::after,
.review-card::after,
.booking-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(143, 211, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 211, 255, 0.035) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(135deg, transparent 0%, #000 100%);
}

.process-card,
.review-card {
    padding: 24px;
}

.process-card > *,
.review-card > *,
.booking-panel > * {
    position: relative;
    z-index: 1;
}

.process-card strong {
    display: block;
    margin-bottom: 28px;
    color: var(--cyan);
    font-size: 0.86rem;
}

.process-card p,
.review-card p,
.booking-panel p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.stars {
    margin-bottom: 18px;
    color: var(--cyan);
    letter-spacing: 0.08em;
}

.review-card p {
    min-height: 116px;
}

.review-job {
    display: inline-flex;
    width: max-content;
    margin-bottom: 12px;
    padding: 7px 9px;
    border: 1px solid rgba(143, 211, 255, 0.28);
    border-radius: 4px;
    color: var(--cyan);
    background: rgba(91, 169, 214, 0.1);
    font-family: "Roboto Mono", monospace;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.review-card strong {
    display: block;
    margin-top: 22px;
}

.review-card span {
    color: var(--muted);
    font-weight: 700;
}

.booking-section {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 16px;
    align-items: stretch;
}

.booking-panel {
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(91, 169, 214, 0.18), rgba(15, 23, 31, 0.2)),
        rgba(13, 18, 24, 0.92);
}

.booking-side {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 34px;
}

.booking-side strong {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 22px;
    align-items: stretch;
}

.contact-info,
.map-card {
    overflow: hidden;
}

.contact-info {
    padding: 34px;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 28px 0;
    color: var(--muted);
    font-weight: 800;
}

.contact-list a:hover {
    color: var(--blue);
}

.map-card {
    min-height: 460px;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 42px 0 32px;
    color: var(--muted);
    font-weight: 800;
}

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: grid;
    gap: 8px;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-contact.dismissed {
    display: none;
}

.floating-button {
    width: 96px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.52);
}

.floating-button svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.floating-button span {
    font-family: "Roboto Mono", monospace;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.call-button {
    background: #273545;
}

.booking-float {
    background: var(--blue-strong);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(14px);
}

.modal-backdrop.open {
    display: grid;
}

.booking-modal,
.service-modal {
    position: relative;
    max-height: calc(100dvh - 36px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: modalIn 0.22s ease;
    scrollbar-color: rgba(223, 230, 237, 0.44) transparent;
}

.booking-modal {
    width: min(520px, 100%);
    background:
        linear-gradient(135deg, rgba(91, 169, 214, 0.16), rgba(255, 255, 255, 0.04)),
        #0b0d10;
}

.service-modal {
    width: min(760px, 100%);
    background:
        linear-gradient(135deg, rgba(143, 211, 255, 0.1), rgba(255, 255, 255, 0.035)),
        #0b0d10;
}

.service-modal h2,
.booking-modal h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.modal-text {
    margin: 14px 0 22px;
    color: var(--muted);
}

.modal-close {
    position: sticky;
    top: 14px;
    z-index: 2;
    float: right;
    right: 14px;
    width: 42px;
    height: 42px;
    margin: -16px -16px 4px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 22px 0;
}

.service-detail-grid article {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
}

.service-detail-grid strong {
    color: var(--cyan);
}

.service-detail-grid ul {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 700;
}

.service-detail-grid li + li {
    margin-top: 8px;
}

.booking-form {
    display: grid;
    gap: 14px;
}

.booking-form[hidden],
.booking-success[hidden] {
    display: none;
}

.booking-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 800;
}

.booking-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
}

.booking-form textarea {
    width: 100%;
    min-height: 96px;
    padding: 12px 14px;
    resize: vertical;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
}

.booking-form input.input-error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.14);
}

.booking-picker {
    display: grid;
    gap: 14px;
}

.picker-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-weight: 800;
}

.date-options,
.time-options {
    display: grid;
    gap: 8px;
}

.date-options {
    grid-template-columns: repeat(3, 1fr);
}

.time-options {
    grid-template-columns: repeat(4, 1fr);
}

.slot-button {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.slot-button:hover {
    transform: translateY(-1px);
    border-color: rgba(102, 217, 255, 0.65);
}

.slot-button.selected {
    color: var(--white);
    border-color: transparent;
    background: var(--blue-strong);
    box-shadow: 0 12px 30px rgba(102, 217, 255, 0.16);
}

.slot-button small {
    display: block;
    margin-top: 2px;
    color: inherit;
    opacity: 0.72;
    font-size: 0.72rem;
}

.empty-slots {
    grid-column: 1 / -1;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.form-status {
    min-height: 22px;
    color: var(--blue);
    font-weight: 800;
}

.form-status.error {
    color: #ff8a8a;
}

.booking-success {
    display: grid;
    gap: 16px;
    text-align: center;
}

.success-mark {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue-strong);
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(46, 127, 169, 0.26);
}

.success-summary {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.success-note {
    margin: 0;
    color: var(--muted);
}

.booking-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.calendar-icon-button {
    min-height: 58px;
    padding: 0;
    position: relative;
    overflow: visible;
}

.calendar-icon-button::after {
    content: attr(title);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(4px);
    min-width: max-content;
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--text);
    background: rgba(5, 6, 7, 0.92);
    border: 1px solid var(--line);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
    font-size: 0.68rem;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.calendar-icon-button:hover::after,
.calendar-icon-button:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.calendar-icon-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.google-calendar svg,
.android-calendar svg {
    fill: none;
}

.gmail-white {
    fill: #ffffff;
}

.gmail-red-left {
    fill: #ea4335;
}

.gmail-red-right {
    fill: #c5221f;
}

.gmail-blue {
    fill: #4285f4;
}

.gmail-green {
    fill: #34a853;
}

.gmail-yellow {
    fill: #fbbc04;
}

.android-head,
.android-body,
.android-arm {
    fill: #3ddc84;
}

.android-antenna,
.android-eye {
    fill: none;
    stroke: #10351f;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.apple-calendar {
    background: #273545;
}

.google-calendar {
    background: var(--blue-strong);
}

.android-calendar {
    background: #b8f7d0;
}

body.modal-open {
    overflow: hidden;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(5, 6, 7, 0.94);
        box-shadow: var(--shadow);
    }

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

    .nav-links a {
        padding: 14px;
        border-radius: 10px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-bottom: 170px;
    }

    .hero-badges {
        left: 16px;
        right: 16px;
        justify-content: flex-start;
    }

    .intro-strip,
    .issue-grid,
    .price-grid,
    .process-grid,
    .review-grid,
    .booking-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

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

    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: auto;
    }

    .featured-service {
        grid-column: auto;
    }

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

@media (max-width: 560px) {
    .navbar,
    .hero-content,
    .intro-strip,
    .section,
    .prices-section,
    .process-section,
    .reviews-section,
    .booking-section,
    .contact-section,
    .footer {
        width: calc(100% - 22px);
    }

    .brand span:last-child {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero {
        min-height: 730px;
    }

    .hero-actions {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-actions .booking-button,
    .issue-card .booking-button {
        width: 100%;
    }

    .intro-strip {
        margin-top: -24px;
    }

    .section,
    .prices-section,
    .process-section,
    .reviews-section,
    .booking-section,
    .contact-section {
        padding-top: 84px;
    }

    .service-card,
    .service-card img {
        min-height: 520px;
    }

    .featured-service,
    .featured-service img {
        min-height: 560px;
    }

    .issue-card {
        min-height: 238px;
        padding: 22px;
    }

    .price-card,
    .booking-panel,
    .booking-side {
        padding: 22px;
    }

    .review-card p,
    .call-card p {
        min-height: auto;
    }

    .contact-info {
        padding: 24px;
    }

    .modal-backdrop {
        align-items: start;
        padding: 10px;
    }

    .booking-modal,
    .service-modal {
        max-height: calc(100dvh - 20px);
        padding: 22px;
        border-radius: 16px;
    }

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

    .date-options,
    .time-options,
    .booking-actions {
        grid-template-columns: 1fr 1fr;
    }

    .booking-actions {
        grid-template-columns: repeat(3, 1fr);
    }

    .calendar-icon-button::after {
        display: none;
    }

    .footer {
        flex-direction: column;
        padding-bottom: 104px;
    }

    .floating-contact {
        left: 50%;
        right: auto;
        bottom: max(8px, env(safe-area-inset-bottom));
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: rgba(8, 11, 15, 0.82);
        backdrop-filter: blur(10px);
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(18px);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
    }

    .floating-contact.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .floating-button {
        width: 86px;
        height: 46px;
        box-shadow: none;
    }

    .floating-button svg {
        width: 19px;
        height: 19px;
    }

    .floating-button span {
        font-size: 0.66rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
