body.home-page {
    font-family: 'Golos Text', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--ink);
    background: #f7f5f1;
}

.home-page .display {
    font-family: 'Golos Display', 'Golos Text', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    letter-spacing: -0.02em;
}

.home-page main {
    padding-top: 0;
    background: #fff;
}

.home-page .container {
    width: min(1200px, 100% - 2rem);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    color: #f8fafc;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 16px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: currentColor;
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(31, 191, 99, 0.45);
    background: rgba(31, 191, 99, 0.2);
    color: #dff7ea;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(248, 250, 252, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    display: none;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

body.home-page #header.glass {
    background: rgba(248, 247, 244, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 36px -30px rgba(15, 23, 42, 0.65);
    color: var(--ink);
}

body.home-page #header.glass .nav-link {
    color: var(--ink-soft);
}

body.home-page #header.glass .nav-link:hover {
    color: var(--accent-strong);
}

body.home-page #header.glass .nav-pill {
    background: rgba(31, 191, 99, 0.12);
    color: var(--accent-strong);
    border-color: rgba(31, 191, 99, 0.35);
}

body.home-page #header.glass .icon-btn {
    background: #ffffff;
    color: var(--ink);
    border-color: rgba(15, 23, 42, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    padding: 14px 26px;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 18px 40px -24px rgba(31, 191, 99, 0.6);
}

.btn-primary:hover {
    background: var(--accent-strong);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 13px 24px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    color: var(--ink);
    background: #ffffff;
}

.btn-secondary:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

.btn-ghost {
    padding: 13px 24px;
    border: 1px solid rgba(248, 250, 252, 0.35);
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 12, 0.55);
    backdrop-filter: blur(8px);
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 90%);
    background: #ffffff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

.mobile-link-accent {
    color: var(--accent);
}

.mobile-cta {
    margin-top: 10px;
}

.hero {
    position: relative;
    padding: 170px 0 120px;
    background: radial-gradient(900px 520px at 12% 18%, rgba(31, 191, 99, 0.22), transparent 60%), radial-gradient(700px 420px at 88% 25%, rgba(15, 23, 42, 0.35), transparent 60%), linear-gradient(135deg, #0b1f14 0%, #0f172a 60%, #0b1f14 100%);
    border-radius: 0 0 450px 0px;
    color: #f8fafc;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
    opacity: 0.14;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(31, 191, 99, 0.3), transparent 70%);
    top: -120px;
    right: -120px;
    filter: blur(10px);
    opacity: 0.55;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
    animation: heroIn 0.9s ease-out both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2f7ec;
    width: fit-content;
}

.eyebrow.light {
    background: rgba(31, 191, 99, 0.12);
    border-color: rgba(31, 191, 99, 0.25);
    color: var(--accent-strong);
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1.05;
    color: #f2f7f4;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    text-wrap: balance;
}

@supports (-webkit-background-clip: text) {
    .hero-title {
        background: linear-gradient(120deg, #f5faf7 0%, #dff7ea 45%, #9fe7c6 60%, #f5faf7 85%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.hero-lead {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: rgba(226, 240, 234, 0.78);
    max-width: 540px;
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 14px;
}

.proof-item {
    min-width: 140px;
}

.proof-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(242, 247, 244, 0.92);
}

.proof-label {
    font-size: 0.9rem;
    color: rgba(226, 240, 234, 0.68);
}

.hero-chips {
    position: absolute;
    left: 0;
    bottom: -36px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    box-shadow: 0 24px 50px -40px rgba(15, 23, 42, 0.6);
}

.chip {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(241, 243, 236, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.hero-card {
    position: relative;
    height: 350px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.6);
    animation: heroIn 1s ease-out both 0.1s;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-footer {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(8, 12, 10, 0.52);
    box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.metric {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 8px 10px;
}

.metric-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(242, 247, 244, 0.92);
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(226, 240, 234, 0.65);
}

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

.section {
    padding: 110px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
}

.section-center {
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.1;
    margin-top: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 460px;
}

.services {
    background: #ffffff;
    padding-top: 140px;
}

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

.package-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-soft);
}

.package-card.featured {
    background: linear-gradient(160deg, rgba(31, 191, 99, 0.08), rgba(255, 255, 255, 1));
    border-color: rgba(31, 191, 99, 0.28);
}

.package-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.package-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.package-price {
    font-weight: 700;
    color: var(--accent);
}

.package-desc {
    color: var(--ink-soft);
    line-height: 1.6;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--ink-soft);
}

.package-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.package-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: 700;
}

.package-cta {
    margin-top: auto;
}

.addon-block {
    margin-top: 48px;
}

.addon-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.addon-card {
    background: #f8f7f3;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
}

.addon-name {
    font-weight: 700;
    margin-bottom: 6px;
}

.addon-desc {
    color: var(--muted);
    font-size: 0.95rem;
}

.portfolio {
    background: #f8f7f3;
}

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

.case-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.case-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.case-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.case-for {
    color: var(--muted);
    font-size: 0.95rem;
}

.case-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--ink-soft);
}

.case-label {
    font-weight: 700;
    color: var(--ink);
    margin-right: 6px;
}

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

.tag {
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f3ec;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.section-cta {
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.cta-text {
    font-size: 1.05rem;
    color: var(--ink-soft);
}

.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-top: 18px;
}

.about-text {
    color: var(--muted);
    line-height: 1.7;
    margin-top: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.value-card {
    background: #f8f7f3;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    font-weight: 600;
}

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

.stat-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}

.about-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(31, 191, 99, 0.2), rgba(15, 23, 42, 0.1));
    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    padding: 40px;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.contact {
    background: #f8f7f3;
}

.contact-telegram {
    margin-top: 16px;
    font-weight: 600;
    color: var(--ink-soft);
}

.contact-telegram a {
    color: var(--accent);
    text-decoration: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: start;
}

.form-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    display: grid;
    gap: 20px;
    box-shadow: var(--shadow-soft);
}

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

.form-field {
    display: grid;
    gap: 10px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--border-strong);
    font-size: 1rem;
    font-family: inherit;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

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

.info-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.info-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--ink-soft);
}

.info-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.info-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: 700;
}

.info-text {
    color: var(--ink-soft);
    line-height: 1.6;
}

.info-actions {
    display: grid;
    gap: 12px;
}

.site-footer {
    padding: 32px 0 48px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.footer-inner {
    text-align: center;
    color: var(--muted);
}

.footer-inner strong {
    color: var(--ink);
}

body.home-page {
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 191, 99, 0.8) rgba(9, 14, 12, 0.85);
}

body.home-page::-webkit-scrollbar {
    width: 10px;
}

body.home-page::-webkit-scrollbar-track {
    background: rgba(9, 14, 12, 0.85);
}

body.home-page::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(31, 191, 99, 0.85), rgba(14, 143, 74, 0.8));
    border-radius: 999px;
    border: 2px solid rgba(9, 14, 12, 0.6);
}

body.home-page::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(46, 213, 113, 0.95), rgba(12, 120, 60, 0.85));
}

@media (max-width: 1100px) {
    .hero-inner,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .section-center {
        align-items: center;
        text-align: center;
    }

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

    .hero-card-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .nav,
    .header-cta {
        display: none;
    }

    .icon-btn {
        display: inline-flex;
    }

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

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

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

@media (max-width: 720px) {
    .hero {
        padding: 120px 0 90px;
    }

    .hero-chips {
        position: static;
        padding: 0;
        margin-top: 18px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .hero-chips .chip {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(236, 253, 243, 0.9);
    }

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

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

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

    .metric-value {
        font-size: 0.6rem;
    }

    .metric-label {
        font-size: 0.6rem;
    }

    .metric {
        padding: 5px 10px;
    }

    .hero {
        border-radius: 0 0 270px 0px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 80px 0;
    }

    .hero-actions,
    .section-cta {
        width: 100%;
    }

    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-proof {
        gap: 16px;
    }
}