@charset "utf-8";
/* CSS Document */

:root {
    --bg: #050505;
    --panel: #0d0d0f;
    --panel-soft: #151518;
    --text: #ffffff;
    --muted: #cfcfd6;
    --purple: #9b00b5;
    --purple-soft: #d46be6;
    --border: rgba(212, 107, 230, 0.35);
}
    
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

.contact-form button {
    cursor: pointer;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(155, 0, 181, 0.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(155, 0, 181, 0.15), transparent 35%),
        var(--bg);
    color: var(--text);
}

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

.footer-email {
    position: relative;
    cursor: pointer;
    transition: color 0.25s ease;
}

.footer-email:hover {
    color: #ffffff;
}

#copy-msg {
    position: absolute;
    top: -22px;
    left: 50%;

    transform: translateX(-50%) translateY(4px);

    opacity: 0;

    font-size: 12px;
    color: var(--purple-soft);
    white-space: nowrap;

    transition: all 0.25s ease;
}

#copy-msg.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.page {
    min-height: 100vh;
    padding: 32px;
}

.site-shell {
    min-height: calc(100vh - 64px);
    border: 1px solid var(--border);
    border-radius: 42px;
    background: rgba(0, 0, 0, 0.78);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 0 45px rgba(155, 0, 181, 0.18);
    overflow: hidden;
}

.phone-copy {
    display: inline;
    position: relative;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: none;
    color: inherit;
    font: inherit;
}

.phone-copy:hover,
.phone-call:hover {
    color: #ffffff;
}

.phone-call {
    display: none;
}

#copy-phone-msg {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    opacity: 0;
    font-size: 12px;
    color: var(--purple-soft);
    white-space: nowrap;
    transition: all 0.25s ease;
}

#copy-phone-msg.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 700px) {
    .phone-copy {
        display: none;
    }

    .phone-call {
        display: inline;
    }
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    color: var(--muted);
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(212, 107, 230, 0.18);
}

.about-content:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.about-content p {
    margin: 0 0 26px;
}

.contact-form {
    max-width: 900px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;

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

    background: rgba(255,255,255,0.04);
    color: #fff;

    font-size: 16px;
    font-family: inherit;

    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-soft);

    box-shadow:
        0 0 0 1px rgba(212,107,230,0.3),
        0 0 24px rgba(155,0,181,0.18);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus {

    -webkit-text-fill-color: #ffffff;

    -webkit-box-shadow:
        0 0 0px 1000px rgba(255,255,255,0.04) inset;

    transition: background-color 5000s ease-in-out 0s;

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

/* =========================
   Header
   ========================= */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 42px;
}

.brand-small {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 18px var(--purple-soft);
}

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: var(--muted);
}

.nav a {
    position: relative;
    padding-bottom: 6px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--purple-soft);
    transition: width 0.25s ease;
}

.nav a:hover {
    color: #fff;
}

.nav a:hover::after {
    width: 100%;
}

/* =========================
   Hero
   ========================= */

.hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
    padding: 55px 80px 45px;
}

.logo-wrap {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow:
        0 0 0 8px rgba(255,255,255,0.08),
        0 0 55px rgba(212, 107, 230, 0.35);
}

.logo-wrap img {
    height: auto;
    display: block;
}

.hero-kicker {
    color: var(--purple-soft);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    margin: 0 0 22px;
}

.hero h2 {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 400;
    color: var(--muted);
}

.hero p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 34px;
}

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 13px 24px;
    color: #fff;
    background: rgba(255,255,255,0.04);
    transition: all 0.25s ease;
}

.btn.primary {
    background: var(--purple);
    border-color: var(--purple);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(212, 107, 230, 0.3);
}

/* =========================
   Statement
   ========================= */

.statement {
    margin: 10px 80px 60px;
    padding: 36px 42px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(155,0,181,0.14), transparent),
        var(--panel);
}

.statement h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    margin: 0 0 18px;
}

.statement-intro {
    font-size: 22px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.promise-list {
    max-width: 760px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 20px;
    line-height: 1.9;
    color: #ffffff;
}

.promise-list div {
    position: relative;
    display: table;
    margin: 0 auto 18px auto;
    padding-left: 24px;
}

.promise-list div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;

    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #c000ff;

    box-shadow:
        0 0 6px rgba(192, 0, 255, 0.9),
        0 0 14px rgba(192, 0, 255, 0.5);
}
    
.promise-final {
    margin-top: 18px;
    color: var(--purple-soft);
    font-size: 22px;
    font-weight: 700;
}
    
/* =========================
   Services
   ========================= */

.services {
    padding: 0 80px 80px;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 20px;

    font-size: 22px;
    line-height: 1.7;

    color: var(--muted);
    font-weight: bold;
}

.section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    margin: 0 0 28px;
}

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

.service-card {
    padding: 30px;
    min-height: 220px;
    border-radius: 28px;
    background: var(--panel-soft);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: 0 0 28px rgba(155,0,181,0.18);
}

.service-card h4 {
    font-size: 22px;
    margin: 0 0 16px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* =========================
   Footer
   ========================= */

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 42px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 14px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
    .page {
        padding: 16px;
    }

    .site-shell {
        border-radius: 28px;
    }

    .site-header {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 28px;
        gap: 36px;
    }

    .logo-wrap {
        margin: 0 auto;
        width: 230px;
        height: 230px;
    }

    .logo-wrap img {
        width: 185px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .actions {
        justify-content: center;
    }

    .statement,
    .services {
        margin: 0 24px 50px;
        padding: 28px;
    }

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

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