:root {
    color-scheme: dark;
    --background: #090911;
    --surface: #10101b;
    --surface-soft: rgba(18, 18, 31, 0.78);
    --text: #f8fafc;
    --muted: rgba(248, 250, 252, 0.72);
    --subtle: rgba(248, 250, 252, 0.55);
    --line: rgba(255, 255, 255, 0.12);
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --blue: #2563eb;
    --teal: #14b8a6;
    --green: #22c55e;
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-nav.nav-scrolled,
.site-nav.is-scrolled {
    background: rgba(9, 9, 17, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--primary));
    color: #fff;
    transform: rotate(-12deg);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.32);
}

.brand-mark::first-letter {
    display: inline-block;
    transform: rotate(12deg);
}

.brand-text {
    font-size: 1.05rem;
}

.brand-text span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a:not(.button) {
    color: var(--muted);
    font-weight: 650;
    transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--primary-light);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 2px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--blue));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.24);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(124, 58, 237, 0.34);
}

.button-small {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.9rem;
}

.button-outline {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 104px 0 72px;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    background: url("/images/hero-bg.jpg") center/cover no-repeat;
    opacity: 0.22;
}

.hero-overlay {
    background:
        linear-gradient(135deg, rgba(124, 58, 237, 0.92), rgba(37, 99, 235, 0.82) 56%, rgba(20, 184, 166, 0.72)),
        linear-gradient(180deg, rgba(9, 9, 17, 0.2), rgba(9, 9, 17, 0.86));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.rating span {
    color: #facc15;
}

.rating p {
    margin: 0;
}

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

.hero h1 {
    max-width: 980px;
    margin: 0 auto 24px;
    font-size: clamp(2.75rem, 7vw, 5.7rem);
    line-height: 1;
    background: linear-gradient(90deg, #fff, #c4b5fd, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 2.4s ease-in-out infinite;
}

.hero-lead {
    max-width: 790px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.08rem, 2.4vw, 1.5rem);
}

.hero-lead strong,
.section-heading span,
.about-layout h2 span {
    color: #ddd6fe;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 820px;
    margin: 0 auto;
}

.hero-metrics div {
    animation: float 3.2s ease-in-out infinite;
}

.hero-metrics div:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-metrics div:nth-child(3) {
    animation-delay: 1.4s;
}

.hero-metrics strong {
    display: block;
    color: #ddd6fe;
    font-size: 2rem;
    line-height: 1.1;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.78);
}

.section {
    padding: 86px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading h2,
.about-layout h2 {
    font-size: clamp(2.1rem, 4.5vw, 3.65rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.section-heading p,
.lead {
    color: var(--muted);
    font-size: 1.18rem;
}

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

.service-card,
.stat-card,
.info-card,
.contact-form,
.success-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(16, 16, 27, 0.92), rgba(21, 21, 34, 0.92));
    box-shadow: var(--shadow);
}

.service-card {
    padding: 26px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(167, 139, 250, 0.48);
}

.icon-badge {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.18);
    color: #c4b5fd;
    font-weight: 900;
    font-size: 0.85rem;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.text-link {
    display: inline-flex;
    margin-top: 20px;
    color: #d8b4fe;
    font-weight: 800;
}

.text-link:hover {
    color: #fff;
}

.service-card p,
.about-layout p,
.site-footer p {
    color: var(--muted);
}

.service-card ul,
.check-list {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li,
.check-list li {
    position: relative;
    padding-left: 18px;
    color: #c4b5fd;
    font-size: 0.95rem;
}

.service-card li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--teal);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

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

.stat-card {
    min-height: 148px;
    display: grid;
    place-items: center;
    padding: 22px;
    text-align: center;
}

.stat-card strong {
    display: block;
    color: #fff;
    font-size: 2rem;
}

.stat-card span {
    color: var(--subtle);
    font-size: 0.95rem;
}

.contact-section {
    background: linear-gradient(145deg, rgba(16, 16, 27, 0.82), rgba(12, 12, 22, 1));
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 26px;
}

.contact-info {
    display: grid;
    gap: 16px;
    align-content: start;
}

.info-card {
    display: grid;
    gap: 5px;
    padding: 22px;
}

.info-card strong {
    color: #fff;
}

.info-card span,
.hours {
    color: var(--muted);
}

.hours {
    display: grid;
    gap: 8px;
    margin: 8px 0 0;
}

.hours div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.hours dt,
.hours dd {
    margin: 0;
}

.contact-form {
    padding: 30px;
}

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

label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 650;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font: inherit;
    padding: 13px 14px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: rgba(167, 139, 250, 0.78);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
}

.form-submit {
    width: 100%;
}

.form-note {
    min-height: 22px;
    margin: 14px 0 0;
    color: #bbf7d0;
    text-align: center;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 60px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--primary-light);
    font-size: 1.5rem;
}

.site-footer h4 {
    margin: 0 0 14px;
}

.site-footer a {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    color: var(--muted);
}

.site-footer a:hover,
.legal-content a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--subtle);
}

.chat-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 25;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.34);
    cursor: pointer;
}

.chat-button svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 138px 0 86px;
    background: #090911;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(37, 99, 235, 0.22) 48%, rgba(20, 184, 166, 0.18)),
        url("/images/hero-bg.jpg") center/cover no-repeat;
    opacity: 0.78;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 17, 0.14), #090911 96%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    text-align: center;
}

.eyebrow {
    margin-bottom: 14px;
    color: #c4b5fd;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 6vw, 5rem);
    line-height: 1.02;
}

.service-lead {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.08rem, 2.2vw, 1.42rem);
}

.split-content,
.two-columns {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: start;
}

.split-content h2,
.two-columns h2,
.cta-panel h2,
.related-section h2 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.split-content p,
.cta-panel p {
    color: var(--muted);
    font-size: 1.08rem;
}

.highlight-card {
    border: 1px solid rgba(167, 139, 250, 0.32);
    border-radius: 8px;
    padding: 28px;
    background: rgba(124, 58, 237, 0.12);
}

.highlight-card strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.15rem;
}

.highlight-card p {
    margin: 0;
    color: var(--muted);
}

.service-band {
    background: linear-gradient(145deg, rgba(16, 16, 27, 0.82), rgba(12, 12, 22, 1));
}

.local-seo-section {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.local-links {
    align-content: start;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 150px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.045);
}

.feature-card span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    font-weight: 900;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

.large-list,
.process-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.large-list li,
.process-list li {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 17px 18px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
}

.process-list {
    counter-reset: process;
}

.process-list li {
    position: relative;
    padding-left: 58px;
}

.process-list li::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 18px;
    top: 16px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--blue));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
}

.cta-section {
    padding-top: 38px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(167, 139, 250, 0.34);
    border-radius: 8px;
    padding: 34px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(37, 99, 235, 0.16));
}

.cta-panel p:last-child {
    margin-bottom: 0;
}

.related-section {
    padding-top: 28px;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.related-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 16px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
}

.related-links a:hover {
    border-color: rgba(167, 139, 250, 0.5);
    color: #fff;
}

.legal-page {
    padding: 118px 0 72px;
}

.legal-content {
    max-width: 880px;
}

.legal-content h1 {
    margin-bottom: 34px;
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.legal-content section {
    margin-bottom: 32px;
}

.legal-content h2 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.legal-content h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
}

.legal-content a {
    color: #c4b5fd;
}

.success-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    background: linear-gradient(145deg, #090911, #121229);
}

.success-card {
    width: min(440px, 100%);
    padding: 34px;
    text-align: center;
}

.success-icon {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.14);
    color: var(--green);
    font-size: 2.2rem;
    font-weight: 900;
}

.success-card p,
.success-card span,
.success-card small {
    color: var(--muted);
}

.success-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.84; }
}

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

    .nav-links {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 16px 18px;
        background: rgba(9, 9, 17, 0.96);
        border-bottom: 1px solid var(--line);
    }

    .nav-links.is-open,
    .nav-links-static {
        display: flex;
    }

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

    .nav-links .button {
        margin-top: 10px;
    }

    .card-grid,
    .about-layout,
    .contact-layout,
    .footer-grid,
    .split-content,
    .two-columns {
        grid-template-columns: 1fr;
    }

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

    .about-layout {
        gap: 34px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand-text {
        font-size: 0.95rem;
    }

    .hero {
        padding-top: 92px;
    }

    .service-hero {
        padding: 112px 0 64px;
    }

    .rating {
        display: none;
    }

    .hero-actions,
    .footer-bottom {
        flex-direction: column;
    }

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

    .hero-metrics,
    .stats-grid,
    .form-grid,
    .success-actions,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 0;
    }

    .contact-form {
        padding: 22px;
    }
}

@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;
    }
}
