:root {
    --bg: #f8f7fb;
    --bg-2: #ffffff;
    --ink: #19151f;
    --muted: #6f6878;
    --soft: #ece7f4;
    --line: rgba(63, 42, 83, 0.12);
    --purple: #6221a4;
    --purple-deep: #3a0d68;
    --purple-soft: #8d58d0;
    --champagne: #d7b56d;
    --shadow: 0 24px 70px rgba(45, 22, 68, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --max: 1260px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 78% 8%, rgba(137, 82, 209, 0.16), transparent 30%),
        linear-gradient(180deg, #fbfaff 0%, var(--bg) 42%, #ffffff 100%);
}

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

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(var(--max), calc(100% - 40px));
    margin: 14px auto 0;
    padding: 12px 14px 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 46px rgba(59, 32, 85, 0.08);
    backdrop-filter: blur(18px);
}

.site-header.is-menu-open {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.94);
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.9);
}

.brand,
.site-nav,
.hero-actions,
.hero-proof,
.panel-head,
.price-box,
.site-footer {
    display: flex;
    align-items: center;
}

.brand {
    gap: 0;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
    filter: brightness(0.5);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    background: radial-gradient(circle at 30% 18%, #c78cff, var(--purple) 54%, var(--purple-deep));
    box-shadow: 0 0 26px rgba(117, 38, 178, 0.28);
}

.brand-text {
    white-space: nowrap;
}

.site-nav {
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.site-nav a {
    transition: color 160ms ease;
}

.site-nav a:hover {
    color: var(--purple);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 28px rgba(45, 22, 68, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
    margin-top: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(45, 22, 68, 0.16);
    backdrop-filter: blur(18px);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
}

.mobile-menu a:hover {
    background: rgba(98, 33, 164, 0.08);
}

.mobile-menu .mobile-menu-cta {
    justify-content: center;
    margin-top: 6px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.site-header.is-menu-open .mobile-menu {
    display: grid;
    gap: 2px;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta {
    padding: 0 18px;
    color: #fff;
    font-size: 14px;
    background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.button {
    padding: 0 22px;
    font-size: 15px;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-deep));
    box-shadow: 0 18px 36px rgba(98, 33, 164, 0.24);
}

.button-secondary {
    position: relative;
    gap: 10px;
    padding-right: 52px;
    border: 1px solid rgba(98, 33, 164, 0.34);
    color: var(--purple-deep);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(45, 22, 68, 0.1);
}

.button-secondary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--purple);
    transform: translateY(-50%);
}

.button-secondary::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 23px;
    z-index: 1;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: translateY(-50%) translateX(-1px) rotate(45deg);
}

.button-secondary:hover {
    border-color: rgba(98, 33, 164, 0.52);
    box-shadow: 0 18px 36px rgba(98, 33, 164, 0.16);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.section-shell {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

#product,
#ai,
#pricing,
#launch,
#contact {
    scroll-margin-top: 78px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    gap: 42px;
    align-items: start;
    min-height: calc(100vh - 76px);
    padding: 50px 0 62px;
}

.hero-copy h1 {
    max-width: 590px;
    margin: 0;
    font-size: clamp(42px, 4.35vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 590px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

.hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-proof {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-proof span {
    padding: 8px 11px;
    border: 1px solid rgba(63, 42, 83, 0.08);
    border-radius: 999px;
    color: #6b6374;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.42);
}

.hero-product {
    position: relative;
    width: 100%;
    min-height: 600px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    background:
        radial-gradient(circle at 58% 34%, rgba(113, 36, 179, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 253, 0.92));
    box-shadow: var(--shadow);
}

.product-rays {
    position: absolute;
    inset: 38px 48px;
    border: 1px solid rgba(98, 33, 164, 0.13);
    border-radius: 28px;
    pointer-events: none;
}

.product-rays::before,
.product-rays::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(98, 33, 164, 0.2), transparent);
    transform: translate(-50%, -50%) rotate(18deg);
}

.product-rays::after {
    transform: translate(-50%, -50%) rotate(-18deg);
}

.messenger-mock,
.ops-card,
.content-preview-card,
.genius-layer {
    position: absolute;
    z-index: 2;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 54px rgba(42, 19, 65, 0.12);
    backdrop-filter: blur(18px);
}

.messenger-mock {
    left: 36px;
    top: 44px;
    width: 330px;
    padding: 18px;
    border-radius: 28px;
}

.messenger-top,
.messenger-brand,
.time-row {
    display: flex;
    align-items: center;
}

.messenger-top {
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.messenger-brand {
    gap: 10px;
}

.messenger-avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: radial-gradient(circle at 28% 18%, #cc98ff, var(--purple) 58%, var(--purple-deep));
    box-shadow: 0 0 24px rgba(98, 33, 164, 0.24);
}

.messenger-brand strong {
    display: block;
    font-size: 16px;
}

.messenger-brand small,
.online-dot,
.bubble span,
.booking-card span,
.ops-label,
.content-preview-card span,
.genius-layer span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.online-dot {
    padding: 7px 9px;
    border-radius: 999px;
    color: #2f7b47;
    background: #eaf7ee;
}

.conversation {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.bubble {
    max-width: 92%;
    padding: 13px;
    border-radius: 16px;
    line-height: 1.4;
}

.bubble p {
    margin: 6px 0 0;
    font-weight: 700;
}

.client-bubble {
    color: #44384c;
    background: #f4eefb;
}

.bot-bubble {
    justify-self: end;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), #3c0c65);
}

.bot-bubble span {
    color: rgba(255, 255, 255, 0.66);
}

.booking-card {
    display: grid;
    gap: 9px;
    margin-top: 18px;
    padding: 15px;
    border: 1px solid rgba(98, 33, 164, 0.12);
    border-radius: 18px;
    background: #fff;
}

.booking-card strong {
    font-size: 18px;
    line-height: 1.2;
}

.booking-card button {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    background: var(--purple);
}

.work-column {
    position: absolute;
    z-index: 3;
    right: 36px;
    top: 58px;
    display: grid;
    gap: 14px;
    width: 238px;
}

.ops-card {
    position: relative;
    padding: 18px;
    border-radius: 22px;
}

.ops-card h3 {
    margin: 9px 0 0;
    font-size: 22px;
    line-height: 1.08;
}

.schedule-card {
    color: #fff;
    background:
        radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.32), transparent 34%),
        linear-gradient(145deg, #7f2bd4, #3b0a62);
}

.schedule-card .ops-label {
    color: rgba(255, 255, 255, 0.72);
}

.time-row {
    gap: 8px;
    margin-top: 16px;
}

.time-row strong {
    flex: 1;
    padding: 12px 0;
    border-radius: 14px;
    text-align: center;
    color: var(--ink);
    background: #fff;
}

.staff-card p {
    margin: 10px 0 0;
    color: var(--purple);
    font-weight: 800;
}

.content-preview-card {
    left: 334px;
    bottom: 116px;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: center;
    width: 260px;
    padding: 12px;
    border-radius: 22px;
}

.content-preview-card img {
    width: 76px;
    height: 116px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center 72%;
}

.content-preview-card strong {
    display: block;
    margin-top: 7px;
    font-size: 16px;
    line-height: 1.16;
}

.genius-layer {
    left: 44px;
    right: 44px;
    bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 999px;
    color: #fff;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
        linear-gradient(135deg, #18051f, #5d1c8e 52%, #28073d);
    box-shadow: 0 22px 60px rgba(74, 19, 109, 0.28);
}

.genius-layer strong {
    white-space: nowrap;
    font-size: 20px;
}

.genius-layer span {
    color: rgba(255, 255, 255, 0.74);
    text-transform: none;
}

.hero-system {
    position: relative;
    min-height: 590px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 241, 251, 0.84)),
        linear-gradient(135deg, rgba(108, 51, 183, 0.09), transparent);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-system::before,
.hero-system::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-system::before {
    inset: 70px 70px 78px 76px;
    border: 1px solid rgba(98, 33, 164, 0.16);
    border-radius: 50%;
}

.hero-system::after {
    width: 360px;
    height: 360px;
    right: -150px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 39, 178, 0.24), transparent 68%);
}

.system-core {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 164px;
    height: 164px;
    padding: 20px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    background: radial-gradient(circle at 32% 22%, #bb7cff, var(--purple) 55%, #24043e);
    box-shadow: 0 0 54px rgba(108, 37, 174, 0.36);
    transform: translate(-50%, -50%);
}

.core-orbit {
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(141, 88, 208, 0.32);
    border-radius: 50%;
}

.core-label {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 800;
}

.system-core strong {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 120px;
    font-size: 18px;
    line-height: 1.08;
}

.system-panel,
.integration-node {
    position: absolute;
    z-index: 3;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 48px rgba(42, 19, 65, 0.1);
    backdrop-filter: blur(18px);
}

.system-panel {
    padding: 16px;
}

.panel-clients {
    top: 46px;
    left: 34px;
    width: 266px;
}

.panel-team {
    right: 30px;
    top: 18px;
    width: 238px;
}

.panel-booking {
    right: 36px;
    bottom: 10px;
    width: 278px;
}

.panel-head {
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.panel-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--purple);
    background: #f1e9fa;
}

.message-stack {
    display: grid;
    gap: 10px;
}

.message-stack p,
.chat-card,
.confirm-card,
.shift-card,
.scenario-list article {
    border: 1px solid rgba(98, 33, 164, 0.1);
    border-radius: 14px;
    background: #fff;
}

.message-stack p {
    margin: 0;
    padding: 12px;
    color: #403548;
    font-size: 13px;
    line-height: 1.45;
}

.shift-card {
    display: grid;
    gap: 5px;
    padding: 13px;
}

.shift-card span,
.confirm-card span,
.chat-card span,
.integration-node span,
.scenario-list span,
.price-kicker {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.shift-card strong,
.confirm-card strong,
.chat-card strong {
    font-size: 15px;
    line-height: 1.25;
}

.shift-card small {
    color: var(--purple);
    font-weight: 700;
}

.slot-preview {
    height: 108px;
    margin-top: 12px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--soft);
}

.slot-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.chat-card,
.confirm-card {
    display: grid;
    gap: 8px;
    padding: 13px;
}

.chat-card {
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #faf7ff);
}

.confirm-card button {
    width: max-content;
    margin-top: 4px;
    border: 0;
    border-radius: 999px;
    padding: 10px 13px;
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    background: var(--purple);
}

.integration-node {
    left: 42px;
    bottom: 54px;
    display: grid;
    gap: 5px;
    width: 176px;
    padding: 16px;
}

.integration-node strong {
    font-size: 20px;
}

.product-section,
.pricing-section,
.launch-section {
    padding: 84px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.ai-copy h2,
.launch-panel h2,
.contact-shell h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: 0;
}

.section-heading p,
.ai-copy p,
.launch-panel p,
.contact-shell p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

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

.feature-card,
.price-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 50px rgba(35, 14, 56, 0.07);
}

.feature-card {
    padding: 24px;
}

.feature-number {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
    background: #f1e9fa;
}

.feature-card h3 {
    margin: 24px 0 10px;
    font-size: 24px;
    line-height: 1.12;
}

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

.ai-section {
    padding: 92px 0;
    background:
        radial-gradient(circle at 82% 30%, rgba(139, 87, 208, 0.22), transparent 28%),
        linear-gradient(135deg, #201129, #3b155d 58%, #25102f);
    color: #fff;
}

.ai-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
    gap: 56px;
    align-items: center;
}

.ai-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.scenario-list {
    display: grid;
    gap: 14px;
}

.scenario-list article {
    padding: 18px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
}

.scenario-list span {
    color: rgba(255, 255, 255, 0.58);
}

.scenario-list strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.18;
}

.scenario-list p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.5;
}

.cases-section {
    margin-top: 130px;
}

@media (max-width: 1040px) {
    .cases-section {
        margin-top: 80px;
    }
}

.cases-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.case-card {
    padding: 34px 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.case-metric {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    color: var(--purple);
    margin-bottom: 12px;
}

.case-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}

.case-card p {
    margin: 0;
    color: var(--text-mute);
    line-height: 1.5;
}

.faq-section {
    padding: 84px 0;
    max-width: 760px;
}

.faq-heading {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    border-color: #d8cde6;
    box-shadow: 0 8px 24px rgba(132, 50, 196, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span {
    padding-right: 20px;
    line-height: 1.3;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--soft);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--purple);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 10px;
}

details[open] .faq-icon {
    background: var(--purple);
    transform: rotate(180deg);
}

details[open] .faq-icon::before,
details[open] .faq-icon::after {
    background: #fff;
}

details[open] .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-mute);
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

.pricing-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.price-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 560px;
    padding: 24px;
}

.price-card-accent {
    background: linear-gradient(180deg, #ffffff, #fbf8ff);
}



.price-kicker {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(132, 50, 196, 0.1);
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.price-card h3 {
    margin: 10px 0 0;
    font-size: 28px;
    line-height: 1.08;
}

.price-note {
    min-height: 78px;
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.price-box {
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 26px 0 22px;
}

.old-price {
    color: #948b9d;
    font-weight: 700;
    text-decoration: line-through;
}

.price-box strong {
    font-size: 44px;
    line-height: 1;
}

.price-box small {
    width: 100%;
    color: var(--muted);
    font-weight: 700;
}

.price-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 24px;
    color: #51495b;
    line-height: 1.45;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--champagne);
}

.price-card-highlight {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 72% 18%, rgba(216, 178, 255, 0.38), transparent 30%),
        linear-gradient(145deg, var(--purple), #2a083f);
    box-shadow: 0 24px 70px rgba(98, 33, 164, 0.28);
}

.price-card-highlight .price-note,
.price-card-highlight li,
.price-card-highlight .old-price,
.price-card-highlight small {
    color: rgba(255, 255, 255, 0.72);
}

.price-card-highlight .price-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.price-card-highlight h3 {
    color: #fff;
}

.launch-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;
    align-items: center;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.launch-steps {
    display: grid;
    gap: 12px;
}

.launch-steps span {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: #443a4c;
    font-weight: 800;
    background: #fbf9ff;
}

.contact-section {
    padding: 88px 0;
    color: #fff;
    background: linear-gradient(135deg, #2b0b44, #571d86);
}

.contact-shell {
    display: grid;
    justify-items: start;
    max-width: 790px;
}

.contact-shell p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-form {
    width: 100%;
    max-width: 480px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.contact-form select option {
    background: #fff;
    color: #333;
}

.contact-form .button {
    margin-top: 12px;
    width: 100%;
    background: #fff;
    color: var(--purple-deep);
    box-shadow: none;
    border: none;
    justify-content: center;
}

.form-feedback {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #a4f5b5; /* Light green for success */
    min-height: 20px;
}

.site-footer {
    justify-content: space-between;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0;
    color: var(--muted);
    font-size: 14px;
}

/* Hero product collage: follows the approved ImageGen direction more closely. */
.hero {
    grid-template-columns: minmax(430px, 0.72fr) minmax(720px, 1.28fr);
    gap: 42px;
    min-height: calc(100vh - 96px);
}

.hero-copy h1 {
    max-width: 650px;
    font-size: clamp(52px, 5vw, 70px);
    line-height: 1.02;
}

.hero-product {
    position: relative;
    justify-self: end;
    width: 720px;
    min-height: 585px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.hero-product::before {
    content: "";
    position: absolute;
    inset: 54px 48px 34px 142px;
    border-radius: 46px;
    background:
        radial-gradient(circle at 52% 54%, rgba(120, 33, 183, 0.16), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(246, 241, 252, 0.14));
    filter: blur(0);
    pointer-events: none;
}

.collage-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.collage-lines path {
    fill: none;
    stroke: rgba(111, 31, 178, 0.48);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 4 8;
}

.confirm-tile,
.social-tile,
.phone-tile,
.staff-tile,
.yclients-tile {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(79, 43, 118, 0.13);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(50, 20, 72, 0.12);
    backdrop-filter: blur(18px);
}

.copywriter-tile {
    position: absolute;
    left: -16px;
    top: 16px;
    width: 220px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    z-index: 7;
}

.tile-header-line {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.tile-header-line h3 {
    margin: 0;
    font-size: 14px;
}

.post-preview {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 10px;
}

.post-images-single {
    width: 100%;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.post-images-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-preview p {
    margin: 0;
    color: #475569;
    font-size: 10px;
    line-height: 1.4;
}

.tile-check {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #a965ee, var(--purple));
    box-shadow: 0 12px 26px rgba(98, 33, 164, 0.24);
}

.confirm-tile h3,
.staff-tile h3 {
    margin: 12px 0 10px;
    font-size: 16px;
    line-height: 1.2;
}

.confirm-tile p,
.confirm-tile strong,
.confirm-tile small {
    margin: 0;
}

.confirm-tile p {
    color: #34263d;
    font-size: 13px;
    font-weight: 800;
}

.confirm-tile strong {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.confirm-tile small {
    margin-top: 12px;
    color: var(--purple);
    font-weight: 800;
}

.social-tile {
    left: -16px;
    top: 290px;
    width: 220px;
    height: 292px;
    border-radius: 18px;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #9672ab;
}

.social-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.phone-tile {
    left: 220px;
    top: 16px;
    width: 304px;
    min-height: 510px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 5;
}

.phone-head {
    display: grid;
    grid-template-columns: 22px 40px 1fr 20px;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
}

.phone-back,
.phone-menu {
    color: var(--purple);
    font-size: 24px;
    line-height: 1;
}

.phone-avatar {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 16px rgba(98, 33, 164, 0.16);
    overflow: hidden;
}

.phone-avatar img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0.5);
}

.phone-head strong {
    display: block;
    font-size: 15px;
}

.phone-head small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.phone-body {
    display: grid;
    gap: 11px;
    padding: 20px 16px 12px;
    background: linear-gradient(180deg, #f6f3fa, #ffffff 72%);
}

.phone-message {
    max-width: 84%;
    padding: 12px;
    border-radius: 13px;
    font-size: 13.5px;
    line-height: 1.35;
    box-shadow: 0 8px 20px rgba(48, 24, 66, 0.06);
}

.phone-message strong {
    display: block;
    margin-top: 6px;
}

.bot-message {
    justify-self: start;
    color: #46394e;
    background: #fff;
}

.user-message {
    justify-self: end;
    color: #382348;
    background: #e9ddfb;
}

.wide-message {
    max-width: 92%;
}

.small-user {
    max-width: 54%;
}

.voice-message {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}

.play-btn {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-size: 10px;
    padding-left: 2px;
    box-sizing: border-box;
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.voice-wave i {
    width: 2.5px;
    background: rgba(80, 40, 120, 0.4);
    border-radius: 2px;
}

.voice-wave i:nth-child(1) { height: 6px; }
.voice-wave i:nth-child(2) { height: 10px; }
.voice-wave i:nth-child(3) { height: 16px; }
.voice-wave i:nth-child(4) { height: 12px; }
.voice-wave i:nth-child(5) { height: 20px; }
.voice-wave i:nth-child(6) { height: 14px; }
.voice-wave i:nth-child(7) { height: 8px; }
.voice-wave i:nth-child(8) { height: 12px; }
.voice-wave i:nth-child(9) { height: 18px; }
.voice-wave i:nth-child(10) { height: 10px; }
.voice-wave i:nth-child(11) { height: 6px; }

.voice-time {
    font-size: 11.5px;
    color: #6a5382;
    margin-left: 2px;
    font-weight: 600;
}


.phone-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 8px 14px 14px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #b0a8b9;
    font-size: 12px;
    background: #fff;
}

.phone-input i {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
    margin-right: -4px;
}

.phone-input i::after {
    content: "";
    position: absolute;
    top: 52%;
    left: 47%;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.feedback-tile {
    position: absolute;
    left: 540px;
    top: 16px;
    width: 220px;
    padding: 16px;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    z-index: 7;
}

.feedback-tile h3 {
    margin-top: 0;
    font-size: 14px;
}

.feedback-tile p {
    margin: 12px 0 0;
    color: #44384c;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
}

.staff-tile {
    position: absolute;
    left: 540px;
    top: 220px;
    width: 220px;
    padding: 16px;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    z-index: 7;
}

.staff-tile h3 {
    margin-top: 0;
    font-size: 14px;
}

.staff-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.staff-avatar {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #ca9bff, var(--purple));
    flex-shrink: 0;
}

.staff-row strong,
.staff-row small {
    display: block;
}

.staff-row small {
    color: var(--muted);
    font-size: 10px;
}

.staff-tile p {
    margin: 12px 0 0;
    color: #44384c;
    font-size: 13px;
    font-weight: 800;
}

.reactivation-tile {
    position: absolute;
    left: 540px;
    top: 408px;
    width: 220px;
    padding: 16px;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    z-index: 7;
}

.reactivation-tile h3 {
    margin-top: 0;
    font-size: 14px;
}

.reactivation-tile p {
    margin: 12px 0 0;
    color: #44384c;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
}



@media (max-width: 1180px) {
    .hero {
        grid-template-columns: minmax(390px, 0.7fr) minmax(650px, 1.3fr);
    }

    .hero-product {
        width: 720px;
        transform: scale(0.9);
        transform-origin: center right;
    }
}

@media (max-width: 1040px) {
    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero,
    .ai-layout,
    .launch-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-system,
    .hero-product {
        min-height: 620px;
    }

    .feature-grid,
    .cases-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: auto;
    }

    .price-note {
        min-height: 0;
    }
}

@media (max-width: 720px) {
    .site-header {
        width: calc(100% - 24px);
        margin-top: 10px;
        padding: 10px 10px 10px 14px;
    }

    .brand-text {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
    }

    #product,
    #ai,
    #pricing,
    #launch,
    #contact {
        scroll-margin-top: 82px;
    }

    .mobile-menu {
        border-radius: 22px;
    }

    .section-shell,
    .site-footer {
        width: calc(100% - 28px);
    }

    .hero {
        gap: 34px;
        padding-top: 24px;
    }

    .hero-lead {
        margin-top: 20px;
        font-size: 17px;
        line-height: 1.48;
    }

    .hero-actions {
        margin-top: 26px;
    }

    .hero-proof {
        margin-top: 20px;
    }

    .hero-system,
    .hero-product {
        min-height: 930px;
        border-radius: 22px;
    }

    .product-rays {
        inset: 20px;
    }

    .messenger-mock,
    .work-column,
    .content-preview-card,
    .genius-layer {
        left: 16px;
        right: 16px;
        width: auto;
    }

    .messenger-mock {
        top: 18px;
        padding: 16px;
    }

    .work-column {
        top: 438px;
    }

    .content-preview-card {
        bottom: 108px;
        grid-template-columns: 68px 1fr;
    }

    .content-preview-card img {
        width: 68px;
        height: 92px;
    }

    .genius-layer {
        bottom: 18px;
        align-items: flex-start;
        flex-direction: column;
        border-radius: 22px;
    }

    .system-core {
        top: 350px;
        width: 154px;
        height: 154px;
    }

    .system-core strong {
        font-size: 17px;
    }

    .system-panel,
    .integration-node {
        left: 14px;
        right: 14px;
        width: auto;
    }

    .panel-clients {
        top: 16px;
    }

    .panel-team {
        top: 202px;
    }

    .panel-booking {
        bottom: 16px;
    }

    .integration-node {
        bottom: 236px;
    }

    .slot-preview {
        height: 132px;
    }

    .product-section,
    .pricing-section,
    .launch-section,
    .ai-section,
    .contact-section {
        padding: 58px 0;
    }

    .feature-card,
    .price-card,
    .launch-panel {
        padding: 20px;
        border-radius: 18px;
    }

    .price-box strong {
        font-size: 36px;
    }

    .site-footer {
        display: grid;
        gap: 8px;
    }
}

@media (max-width: 430px) {
    .site-header {
        margin-top: 8px;
    }

    .hero {
        padding-top: 34px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 13.8vw, 56px);
        line-height: 1;
    }

    .hero-lead {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.45;
    }

    .hero-actions {
        margin-top: 24px;
    }
}

@media (max-width: 1040px) {
    .hero-product {
        justify-self: center;
        width: min(680px, 100%);
        transform: none;
    }
}

@media (max-width: 720px) {
    .hero-product {
        display: grid;
        gap: 14px;
        min-height: auto;
        width: 100%;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.78);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.46);
        overflow: hidden;
    }

    .hero-product::before,
    .collage-lines {
        display: none;
    }

    .copywriter-tile,
    .social-tile,
    .phone-tile,
    .feedback-tile,
    .staff-tile,
    .reactivation-tile {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none;
    }

    .phone-tile {
        order: 1;
        min-height: auto;
    }

    .copywriter-tile {
        order: 2;
    }

    .feedback-tile {
        order: 3;
    }

    .staff-tile {
        order: 4;
    }

    .reactivation-tile {
        order: 5;
    }

    .social-tile {
        order: 6;
        height: 260px;
    }


}
