@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #070b18;
    --panel: #0f172a;
    --panel-soft: #111c33;
    --text: #f8fafc;
    --muted: #94a3b8;
    --line: rgba(148, 163, 184, 0.2);
    --blue: #3b82f6;
    --blue-dark: #1d4ed8;
    --cyan: #22d3ee;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.18), transparent 28%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 16px;
    z-index: 20;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

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

.nav-btn,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s ease;
}

.nav-btn,
.primary-btn {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.28);
}

.nav-btn:hover,
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(59, 130, 246, 0.38);
}

.secondary-btn {
    border: 1px solid var(--line);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.secondary-btn:hover {
    border-color: rgba(34, 211, 238, 0.55);
    transform: translateY(-2px);
}

.hero {
    width: min(1180px, calc(100% - 32px));
    min-height: 86vh;
    margin: 0 auto;
    padding: 110px 0 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 52px;
    align-items: center;
}

.eyebrow {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
}

.hero-text {
    max-width: 640px;
    color: var(--muted);
    font-size: 19px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
}

.trust-row div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.trust-row strong {
    display: block;
    font-size: 20px;
}

.trust-row span {
    color: var(--muted);
    font-size: 13px;
}

.hero-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.browser-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(248, 250, 252, 0.35);
}

.mockup {
    min-height: 430px;
    padding: 24px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(34, 211, 238, 0.08)),
        #0b1222;
    border: 1px solid var(--line);
}

.mockup-header {
    width: 54%;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 52px;
}

.mockup-title {
    width: 86%;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    margin-bottom: 18px;
}

.mockup-line {
    width: 75%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    margin-bottom: 12px;
}

.mockup-line.short {
    width: 54%;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 42px 0;
}

.mockup-grid div {
    height: 76px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--line);
}

.mockup-button {
    width: 160px;
    height: 44px;
    border-radius: 999px;
    background: var(--white);
}

section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 90px 0;
}

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

.section-heading h2,
.contact-copy h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

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

.service-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card,
.price-box,
.portfolio-card,
.contact-box {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card {
    padding: 28px;
    transition: 0.2s ease;
}

.card:hover,
.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.45);
}

.card-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.14);
    color: var(--cyan);
    font-weight: 800;
}

.card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.card p,
.portfolio-card p {
    color: var(--muted);
}

.pricing {
    width: 100%;
    max-width: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.pricing .section-heading,
.pricing .price-box {
    width: min(1180px, calc(100% - 32px));
}

.price-box {
    max-width: 620px;
    margin: 0 auto;
    padding: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: "";
    position: absolute;
    inset: -80px -80px auto auto;
    width: 200px;
    height: 200px;
    background: rgba(34, 211, 238, 0.18);
    filter: blur(40px);
}

.price-badge {
    width: fit-content;
    margin: 0 auto 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    color: var(--cyan);
    font-weight: 800;
    font-size: 13px;
}

.price-box h3 {
    font-size: 72px;
    letter-spacing: -0.06em;
}

.price-subtitle,
.monthly {
    color: var(--muted);
}

.price-box ul {
    list-style: none;
    margin: 28px 0;
    text-align: left;
}

.price-box li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: #dbeafe;
}

.price-box li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.12);
    color: var(--cyan);
    font-weight: 800;
}

.full-btn {
    width: 100%;
    margin-top: 24px;
}

.portfolio-card {
    overflow: hidden;
    transition: 0.2s ease;
}

.portfolio-top {
    min-height: 170px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(34, 211, 238, 0.1));
}

.portfolio-top.cleaning {
    background:
        radial-gradient(circle at 70% 20%, rgba(34, 211, 238, 0.45), transparent 25%),
        linear-gradient(135deg, #1e3a8a, #0f172a);
}

.portfolio-top.barber {
    background:
        radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.45), transparent 25%),
        linear-gradient(135deg, #111827, #1d4ed8);
}

.portfolio-top.moving {
    background:
        radial-gradient(circle at 70% 70%, rgba(34, 211, 238, 0.4), transparent 25%),
        linear-gradient(135deg, #0f172a, #0369a1);
}

.portfolio-body {
    padding: 24px;
}

.portfolio-body h3 {
    margin-bottom: 8px;
}

.contact-box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    padding: 38px;
}

.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    color: var(--muted);
}

.contact-details a {
    color: var(--cyan);
    font-weight: 800;
    text-decoration: none;
}

form {
    display: grid;
    gap: 14px;
}

input,
textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font: inherit;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #64748b;
}

input:focus,
textarea:focus {
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    min-height: 50px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

button:disabled {
    background: #475569;
    cursor: not-allowed;
}

#status-message {
    color: var(--cyan);
    font-weight: 700;
    min-height: 24px;
}

footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 24px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.72);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

footer p {
    color: var(--muted);
    margin-top: 6px;
}

footer a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 980px) {
    .site-header {
        border-radius: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }

    .hero-card {
        transform: none;
        display: none;
    }

    .service-grid,
    .portfolio-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .trust-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .site-header {
        width: calc(100% - 20px);
        top: 10px;
    }

    .nav-btn {
        width: 100%;
    }

    .hero,
    section {
        width: calc(100% - 24px);
    }

    .hero {
        padding-top: 70px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .price-box,
    .contact-box {
        padding: 24px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
