:root {
    --bg: #101010;
    --bg-soft: #121212;
    --panel: #171717;
    --panel-2: #1e1e1e;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #f3f3f3;
    --muted: #9b9b9b;
    --muted-2: #c7c7c7;
    --accent: #994c38;
    --dot-base: #212121;
    --dot-active: #a82800;
    --dot-size: 3px;
    --dot-gap: 20px;
    --shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 30px 80px rgba(0, 0, 0, 0.45);
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(153, 76, 56, 0.18), transparent 26%),
        linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
    overflow-x: hidden;
}

.dot-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.dot-grid__wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.dot-grid__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.site-shell {
    width: min(calc(100% - 24px), 980px);
    margin: 0 auto;
    padding: 28px 0 36px;
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 28px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    display: block;
    border-radius: 10px;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topnav a {
    color: var(--muted-2);
    text-decoration: none;
    font-size: 0.94rem;
}

.hero-block,
.cards-section,
.newsletter-bar,
.reviews-section,
.showcase-section,
.site-footer {
    position: relative;
    z-index: 1;
}

.hero-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 0 46px;
}

.hero-logo-wrap {
    margin-bottom: 18px;
}

.hero-logo-img {
    height: clamp(120px, 18vw, 180px);
    width: auto;
    display: block;
    border-radius: 18px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted-2);
    font-size: 0.9rem;
    font-weight: 700;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(244, 196, 0, 0.9);
}

h1,
h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -0.06em;
}

h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 6vw, 4.1rem);
    line-height: 1.08;
    color: #efefef;
    filter: blur(0.4px);
    text-shadow: 0 0 10px rgba(239, 239, 239, 0.3), 0 0 24px rgba(239, 239, 239, 0.14);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1;
    color: #efefef;
}

.hero-subtext {
    max-width: 52ch;
    margin: 18px auto 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.btn-rounded {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
}

.btn-light {
    background: #f0f0f0;
    color: #111;
    border-color: #f0f0f0;
}

.btn-outline-light {
    border-color: var(--line-strong);
    color: #f0f0f0;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #f0f0f0;
    color: #111;
    border-color: #f0f0f0;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    max-width: 780px;
    margin-top: 44px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-row span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cards-section {
    padding: 28px 0 22px;
}

.service-card,
.review-card,
.newsletter-bar,
.showcase-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(19, 19, 19, 0.9), rgba(12, 12, 12, 0.78));
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 260px;
    padding: 34px 28px;
}

.card-badge {
    position: absolute;
    top: -20px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: #151515;
    font-weight: 800;
}

.service-card p {
    max-width: 30ch;
    margin: 14px 0 22px;
    color: var(--muted);
    line-height: 1.65;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    background: var(--dot-active);
    color: #f5e8e3;
    text-decoration: none;
    font-weight: 700;
}

.card-button:hover,
.card-button:focus {
    background: #b65b43;
    color: #fff3ee;
}

.newsletter-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 720px;
    margin: 36px auto 0;
    padding: 20px 24px;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 1.45rem;
}

.newsletter-copy {
    flex: 1;
}

.newsletter-copy p {
    margin: 0 0 10px;
    color: var(--muted-2);
    font-size: 1.05rem;
    font-weight: 700;
}

.newsletter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-tags span {
    padding: 10px 14px;
    border-radius: 12px;
    background: #d8d8d8;
    color: #1a1a1a;
    font-size: 0.92rem;
    font-weight: 700;
}

.reviews-section,
.showcase-section {
    padding-top: 66px;
}

.google-form-section {
    padding-top: 66px;
}

.google-form-wrap {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #141414;
    box-shadow: var(--shadow);
}

.google-form-wrap iframe {
    display: block;
    width: 100%;
    min-height: 1240px;
    border: 0;
    background: #141414;
        filter: invert(1) hue-rotate(180deg) !important;
    color-scheme: dark;
}

.section-title {
    margin-bottom: 26px;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
}

.reviews-carousel {
    padding: 0 70px 10px;
}

.review-card {
    max-width: 760px;
    min-height: 250px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

.review-index {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.review-card p {
    margin: 0;
    color: #ededed;
    font-size: clamp(1.2rem, 2.6vw, 1.7rem);
    line-height: 1.55;
}

.review-card strong {
    display: block;
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reviews-indicators {
    position: static;
    margin: 0 0 16px;
    gap: 8px;
}

.reviews-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.reviews-indicators .active {
    background: var(--text);
}

.review-control {
    width: 52px;
    height: 52px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.showcase-panel {
    overflow: hidden;
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
}

.window-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d6d6d6;
}

.showcase-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 40px;
    background:
        radial-gradient(circle at center, rgba(153, 76, 56, 0.18), transparent 20%),
        linear-gradient(180deg, rgba(37, 37, 37, 0.65), rgba(17, 17, 17, 0.9));
    text-align: center;
}

.play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #f7ece8;
    font-size: 2rem;
    box-shadow: 0 0 40px rgba(153, 76, 56, 0.3);
}

.showcase-screen p {
    margin: 0;
    color: var(--muted-2);
    font-size: 1rem;
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 44px 0 6px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(20, 20, 20, 0.72);
    color: #efefef;
    text-decoration: none;
    font-weight: 700;
}

.social-links a .bi {
    font-size: 1.15rem;
    line-height: 1;
}

.social-links a .bi-tiktok { color: #ffffff; }
.social-links a .bi-youtube { color: #ff0000; }

@media (max-width: 768px) {
    :root {
        --dot-gap: 18px;
    }

    body::after {
        mask-image: radial-gradient(circle 100px at var(--mouse-x, 50%) var(--mouse-y, 18%), rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 0.92) 28%, transparent 72%);
        -webkit-mask-image: radial-gradient(circle 100px at var(--mouse-x, 50%) var(--mouse-y, 18%), rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 0.92) 28%, transparent 72%);
    }
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .site-shell {
        width: min(calc(100% - 18px), 980px);
        padding-top: 18px;
    }

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

    .topnav {
        gap: 14px;
        flex-wrap: wrap;
    }

    h1 {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
    }

    .logo-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 14px;
    }

    .newsletter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-carousel {
        padding: 0 0 10px;
    }

    .review-control {
        display: none;
    }

    .showcase-screen {
        min-height: 280px;
    }

    .google-form-wrap iframe {
        min-height: 1320px;
    }
}
