:root {
    --bg: #080811;
    --bg-soft: #0d0d1a;
    --bg-card: rgba(19, 19, 34, 0.78);
    --bg-card-hover: rgba(25, 24, 45, 0.92);

    --text: #f7f7fb;
    --muted: #aaa9bd;
    --muted-light: #c8c7d4;

    --purple: #9b5cff;
    --purple-light: #c7a3ff;
    --purple-dark: #6632c7;

    --border: rgba(184, 151, 255, 0.16);
    --border-strong: rgba(184, 151, 255, 0.35);

    --green: #76e0a0;

    --max-width: 1180px;
}

/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(circle at 50% -15%,
            rgba(123, 67, 230, 0.18),
            transparent 34%),
        radial-gradient(circle at 0% 55%,
            rgba(103, 55, 205, 0.08),
            transparent 28%),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.5;
}

body::selection {
    background: rgba(155, 92, 255, 0.35);
}

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

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

/* =========================================
   BACKGROUND GLOWS
========================================= */

.page-glow {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(130px);

    pointer-events: none;

    z-index: -1;
}

.glow-one {
    top: 12%;
    left: -360px;

    background: rgba(115, 57, 232, 0.12);
}

.glow-two {
    top: 58%;
    right: -360px;

    background: rgba(157, 83, 255, 0.1);
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    z-index: 100;

    width: min(calc(100% - 48px),
            var(--max-width));

    height: 78px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    font-size: 25px;
    font-weight: 800;

    letter-spacing: -0.8px;
}

.brand-mark {
    color: #b98cff;

    font-size: 28px;

    filter:
        drop-shadow(0 0 12px rgba(155, 92, 255, 0.8));
}

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 36px;

    color: #d2d1dc;

    font-size: 14px;
}

.desktop-nav a {
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 20px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #8b4cff,
            #a75eff);

    box-shadow:
        0 12px 35px rgba(132, 67, 236, 0.24);

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

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

    box-shadow:
        0 17px 42px rgba(132, 67, 236, 0.34);

    filter: brightness(1.08);
}

/* =========================================
   MOBILE NAV
========================================= */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);

    color: white;

    cursor: pointer;

    font-size: 20px;
}

.mobile-nav {
    display: none;
}

/* =========================================
   GENERAL
========================================= */

.section {
    width: min(calc(100% - 48px),
            var(--max-width));

    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    padding: 6px 13px;

    border:
        1px solid rgba(181, 140, 255, 0.42);

    border-radius: 999px;

    background:
        rgba(122, 63, 226, 0.06);

    color: #bb93ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.55px;

    text-transform: uppercase;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 23px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #8b4cff,
            #a75eff);

    color: white;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 13px 35px rgba(132, 67, 236, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 42px rgba(132, 67, 236, 0.35);

    filter: brightness(1.08);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border:
        1px solid rgba(198, 165, 255, 0.5);

    border-radius: 999px;

    color: #f0eaff;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.secondary-button:hover {
    background:
        rgba(155, 92, 255, 0.1);

    transform: translateY(-2px);
}

/* =========================================
   HERO
========================================= */

.hero {
    min-height: 675px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr) minmax(0, 1.1fr);

    align-items: center;

    gap: 60px;

    padding:
        70px 0 95px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-top: 19px;

    font-size:
        clamp(48px,
            6vw,
            76px);

    line-height: 0.98;

    letter-spacing: -4px;
}

.hero h1 span {
    color: #c59cff;

    text-shadow:
        0 0 45px rgba(165, 92, 255, 0.18);
}

.hero-text {
    max-width: 570px;

    margin-top: 26px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;

    gap: 21px;

    margin-top: 25px;

    color: #c4c3d0;

    font-size: 12px;
}

.hero-points span::first-letter {
    color: #bb91ff;
}

/* =========================================
   HERO SHOP MOCKUP
========================================= */

.hero-visual {
    position: relative;
}

.shop-window {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    border:
        1px solid rgba(177, 148, 255, 0.25);

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            rgba(31, 31, 51, 0.96),
            rgba(12, 12, 23, 0.98));

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(129, 72, 240, 0.1);

    transform:
        perspective(1200px) rotateY(-3deg) rotateX(2deg);

    transition:
        transform 0.5s ease;
}

.shop-window:hover {
    transform:
        perspective(1200px) rotateY(-1deg) rotateX(1deg) translateY(-4px);
}

.window-top {
    position: relative;

    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    color: #8d8c9b;

    font-size: 11px;
}

.window-dots {
    position: absolute;

    left: 17px;

    display: flex;

    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #555460;
}

.window-search {
    position: absolute;

    right: 18px;

    font-size: 21px;
}

.shop-content {
    padding: 24px 30px;
}

.shop-brand {
    font-size: 20px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.shop-links {
    display: flex;

    gap: 20px;

    margin-top: 8px;

    color: #7f7e8d;

    font-size: 10px;
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 26px;

    width: 66%;
}

.product-card {
    min-height: 178px;

    padding: 10px;

    border-radius: 13px;

    background:
        rgba(246, 246, 249, 0.94);

    color: #17171d;
}

.product-art {
    position: relative;

    height: 95px;

    margin-bottom: 8px;

    overflow: hidden;

    border-radius: 9px;
}

.product-art::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 10px;

    width: 37px;
    height: 62px;

    transform: translateX(-50%);

    border-radius:
        9px 9px 12px 12px;

    background:
        linear-gradient(160deg,
            rgba(255, 255, 255, 0.85),
            rgba(100, 100, 100, 0.18));

    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.product-art-one {
    background:
        linear-gradient(145deg,
            #d8d9eb,
            #f0eff8);
}

.product-art-two {
    background:
        linear-gradient(145deg,
            #e0d6ed,
            #f3eff8);
}

.product-art-three {
    background:
        linear-gradient(145deg,
            #d4dce5,
            #eeeef2);
}

.product-art-four {
    background:
        linear-gradient(145deg,
            #e2d9d1,
            #f4efea);
}

.product-card small {
    display: block;

    color: #77747c;

    font-size: 7px;
}

.product-card strong {
    display: block;

    margin-top: 2px;

    font-size: 10px;
}

.product-card b {
    display: block;

    margin-top: 5px;

    font-size: 9px;
}

/* =========================================
   MOCK CHAT
========================================= */

.mock-chat {
    position: absolute;

    width: 43%;
    min-width: 235px;

    right: 17px;
    top: 105px;

    padding: 15px;

    border:
        1px solid rgba(180, 151, 255, 0.25);

    border-radius: 18px;

    background:
        rgba(14, 14, 27, 0.96);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.38);

    backdrop-filter: blur(16px);
}

.mock-chat-header {
    display: flex;
    align-items: center;

    gap: 8px;

    padding-bottom: 12px;
}

.mock-chat-header>span {
    margin-left: auto;

    color: #777585;
}

.mock-avatar,
.demo-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 31px;
    height: 31px;

    border-radius: 10px;

    background:
        linear-gradient(135deg,
            #7140d8,
            #ad6cff);

    color: white;

    box-shadow:
        0 5px 20px rgba(137, 74, 245, 0.35);
}

.mock-chat-header strong {
    display: block;

    font-size: 12px;
}

.mock-chat-header small {
    display: block;

    margin-top: 1px;

    color: #777585;

    font-size: 8px;
}

.chat-bubble {
    width: fit-content;
    max-width: 92%;

    margin-top: 8px;

    padding: 8px 10px;

    border-radius: 10px 10px 10px 3px;

    background:
        rgba(40, 39, 58, 0.95);

    color: #d9d8e2;

    font-size: 9px;
}

.mock-input {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 12px;

    padding: 10px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    color: #696877;

    font-size: 8px;
}

.mock-input span {
    color: #a566ff;

    font-size: 12px;
}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 32px;
}

.section-heading h2 {
    margin-top: 14px;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-heading>p {
    max-width: 430px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}

/* =========================================
   STEPS
========================================= */

#produkt {
    padding:
        55px 0 100px;
}

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.step-card {
    position: relative;

    min-height: 250px;

    padding: 25px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        linear-gradient(145deg,
            rgba(23, 23, 40, 0.82),
            rgba(13, 13, 25, 0.72));

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.step-card:hover {
    transform: translateY(-5px);

    border-color:
        var(--border-strong);

    background:
        var(--bg-card-hover);
}

.step-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #59576a;

    font-size: 11px;

    font-weight: 700;
}

.step-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border:
        1px solid rgba(178, 137, 255, 0.2);

    border-radius: 13px;

    background:
        rgba(140, 80, 240, 0.08);

    color: #bd91ff;

    font-size: 22px;

    box-shadow:
        0 10px 30px rgba(108, 53, 201, 0.12);
}

.step-card h3 {
    font-size: 17px;

    letter-spacing: -0.3px;
}

.step-card p {
    margin-top: 9px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;
}

/* =========================================
   DEMO
========================================= */

.demo-section {
    padding:
        20px 0 100px;
}

.demo-shell {
    position: relative;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 45px;

    padding: 50px;

    overflow: hidden;

    border:
        1px solid rgba(180, 151, 255, 0.24);

    border-radius: 27px;

    background:
        radial-gradient(circle at 75% 25%,
            rgba(130, 66, 236, 0.15),
            transparent 35%),
        linear-gradient(135deg,
            rgba(27, 26, 49, 0.96),
            rgba(12, 12, 23, 0.96));

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.28);
}

.demo-shell::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: 22%;
    bottom: -230px;

    border-radius: 50%;

    background:
        rgba(134, 72, 239, 0.18);

    filter: blur(100px);

    pointer-events: none;
}

.demo-copy {
    position: relative;

    z-index: 1;
}

.demo-copy h2 {
    margin-top: 15px;

    font-size: clamp(36px, 4vw, 50px);

    line-height: 1.03;

    letter-spacing: -2.4px;
}

.demo-copy>p {
    max-width: 470px;

    margin-top: 19px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}

.demo-selector {
    margin-top: 28px;
}

.demo-selector label {
    display: block;

    margin-bottom: 8px;

    color: #c6c4d2;

    font-size: 12px;

    font-weight: 700;
}

.demo-selector select {
    width: 100%;

    max-width: 390px;

    padding: 13px 15px;

    outline: none;

    border:
        1px solid rgba(191, 164, 255, 0.2);

    border-radius: 12px;

    background:
        rgba(7, 7, 16, 0.72);

    color: white;

    cursor: pointer;
}

.demo-selector select:focus {
    border-color:
        rgba(170, 119, 255, 0.65);
}

.demo-start {
    margin-top: 13px;
}

.demo-note {
    margin-top: 14px;

    color: #777687;

    font-size: 11px;
}

/* =========================================
   DEMO CHAT
========================================= */

.demo-chat-card {
    position: relative;
    z-index: 2;

    min-height: 430px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border:
        1px solid rgba(184, 151, 255, 0.2);

    border-radius: 21px;

    background:
        rgba(9, 9, 18, 0.82);

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(15px);
}

.demo-chat-top {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 17px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}

.demo-chat-top strong {
    display: block;

    font-size: 13px;
}

.demo-chat-top span:not(.online-dot) {
    display: block;

    margin-top: 2px;

    color: #777585;

    font-size: 9px;
}

.online-dot {
    width: 7px;
    height: 7px;

    margin-left: auto;

    border-radius: 50%;

    background: #6de39a;

    box-shadow:
        0 0 12px rgba(109, 227, 154, 0.75);
}

.demo-messages {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 8px;

    padding: 20px;

    overflow-y: auto;
}

.message {
    max-width: 82%;

    padding: 10px 12px;

    border-radius: 12px;

    font-size: 12px;

    line-height: 1.55;

    animation:
        messageIn 0.25s ease;
}

.message.bot {
    align-self: flex-start;

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-bottom-left-radius: 4px;

    background:
        rgba(39, 38, 56, 0.9);

    color: #d9d8e2;
}

.message.user {
    align-self: flex-end;

    border-bottom-right-radius: 4px;

    background:
        linear-gradient(135deg,
            #7540dc,
            #9552ef);

    color: white;
}

.demo-input-row {
    display: flex;

    gap: 8px;

    padding: 14px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}

.demo-input-row input {
    min-width: 0;
    flex: 1;

    padding: 12px 13px;

    outline: none;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.035);

    color: white;

    font-size: 12px;
}

.demo-input-row input::placeholder {
    color: #666576;
}

.demo-input-row input:focus {
    border-color:
        rgba(169, 116, 255, 0.55);
}

.demo-input-row button {
    width: 44px;

    border-radius: 11px;

    background:
        linear-gradient(135deg,
            #8048e9,
            #a35dff);

    color: white;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.demo-input-row button:hover {
    transform: translateY(-1px);

    filter: brightness(1.08);
}

.demo-input-row button:disabled {
    opacity: .55;

    cursor: wait;

    transform: none;
}

/* =========================================
   BENEFITS
========================================= */

.benefits-section {
    padding:
        20px 0 95px;
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;
}

.benefit-card {
    min-height: 225px;

    padding: 23px;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background:
        rgba(17, 17, 31, 0.65);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);

    border-color:
        var(--border-strong);

    background:
        rgba(25, 24, 44, .9);
}

.benefit-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 31px;

    border-radius: 12px;

    background:
        rgba(142, 83, 244, 0.1);

    color: #b687ff;

    font-size: 20px;
}

.benefit-card h3 {
    font-size: 15px;

    line-height: 1.3;
}

.benefit-card p {
    margin-top: 9px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;
}

/* =========================================
   TRIAL
========================================= */

.trial-section {
    padding:
        10px 0 100px;
}

.trial-card {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 24px;

    padding: 27px 30px;

    border:
        1px solid rgba(175, 135, 255, 0.2);

    border-radius: 21px;

    background:
        linear-gradient(100deg,
            rgba(30, 28, 57, 0.94),
            rgba(18, 17, 37, 0.88));

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.2);
}

.trial-icon {
    width: 59px;
    height: 59px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        rgba(142, 83, 244, 0.12);

    font-size: 27px;
}

.trial-card .eyebrow {
    margin-bottom: 8px;
}

.trial-card h2 {
    font-size: 22px;

    letter-spacing: -0.6px;
}

.trial-card p {
    max-width: 720px;

    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;
}

.trial-card strong {
    color: #e3d5ff;
}

/* =========================================
   FAQ
========================================= */

.faq-section {
    padding:
        10px 0 100px;
}

.faq-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}

.faq-item {
    margin-bottom: 10px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        rgba(16, 16, 29, 0.7);

    transition:
        border-color .2s ease,
        background .2s ease;
}

.faq-item:hover {
    border-color:
        rgba(184, 151, 255, .28);
}

.faq-item[open] {
    background:
        rgba(22, 21, 39, .9);

    border-color:
        rgba(184, 151, 255, .3);
}

.faq-item summary {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 57px;

    padding: 0 45px 0 18px;

    list-style: none;

    cursor: pointer;

    color: #e8e7ef;

    font-size: 13px;

    font-weight: 600;
}

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

.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 18px;

    color: #a875ff;

    font-size: 19px;

    font-weight: 400;

    transition:
        transform .2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding:
        0 18px 18px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}

/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding:
        0 0 85px;
}

.contact-card {
    position: relative;

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    align-items: center;

    gap: 50px;

    padding: 50px;

    overflow: hidden;

    border:
        1px solid rgba(180, 151, 255, 0.24);

    border-radius: 25px;

    background:
        radial-gradient(circle at 75% 30%,
            rgba(137, 73, 240, 0.14),
            transparent 35%),
        rgba(17, 17, 32, .82);
}

.contact-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -170px;
    bottom: -190px;

    border-radius: 50%;

    background:
        rgba(141, 79, 239, .15);

    filter: blur(70px);

    pointer-events: none;
}

.contact-card h2 {
    margin-top: 15px;

    font-size: clamp(37px, 4vw, 52px);

    line-height: 1.02;

    letter-spacing: -2.5px;
}

.contact-card>div:first-child p {
    max-width: 590px;

    margin-top: 19px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}

.contact-info {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: center;

    gap: 12px;
}

.contact-symbol {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        rgba(143, 83, 244, .1);

    color: #bd91ff;
}

.contact-row small {
    display: block;

    color: #777586;

    font-size: 10px;
}

.contact-row strong {
    display: block;

    margin-top: 2px;

    color: #eeeef5;

    font-size: 14px;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    border-top:
        1px solid rgba(255, 255, 255, .06);

    background:
        rgba(6, 6, 13, .65);
}

.footer-main,
.footer-bottom {
    width: min(calc(100% - 48px),
            var(--max-width));

    margin: 0 auto;
}

.footer-main {
    min-height: 95px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-main>a:last-child {
    color: #a8a6b7;

    font-size: 12px;
}

.footer-links {
    display: flex;

    gap: 27px;

    color: #9694a5;

    font-size: 12px;
}

.footer-bottom {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid rgba(255, 255, 255, .04);

    color: #626172;

    font-size: 10px;
}

/* =========================================
   ANIMATIONS
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .hero {
        grid-template-columns: 1fr;

        padding-top: 50px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        max-width: 850px;

        width: 100%;

        margin: 0 auto;
    }

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

    .benefits-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .demo-shell {
        grid-template-columns: 1fr;
    }

    .demo-copy {
        max-width: 650px;
    }

    .demo-chat-card {
        min-height: 450px;
    }

    .trial-card {
        grid-template-columns:
            auto 1fr;
    }

    .trial-card .primary-button {
        grid-column: 2;

        width: fit-content;
    }

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

    .contact-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 760px) {

    .site-header {
        width: min(calc(100% - 32px),
                var(--max-width));

        height: 68px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        position: fixed;

        top: 68px;
        left: 16px;
        right: 16px;

        z-index: 99;

        display: none;
        flex-direction: column;

        padding: 10px;

        border:
            1px solid rgba(184, 151, 255, .18);

        border-radius: 16px;

        background:
            rgba(14, 14, 25, .97);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, .35);

        backdrop-filter: blur(18px);
    }

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        padding: 13px;

        border-radius: 10px;

        color: #d8d7e2;

        font-size: 14px;
    }

    .mobile-nav a:hover {
        background:
            rgba(155, 92, 255, .08);
    }

    .section {
        width: min(calc(100% - 32px),
                var(--max-width));
    }

    .hero {
        min-height: auto;

        padding:
            55px 0 75px;

        gap: 50px;
    }

    .hero h1 {
        font-size: clamp(45px, 13vw, 65px);

        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-points {
        gap: 11px 18px;
    }

    .shop-window {
        min-height: 440px;

        transform: none;
    }

    .shop-window:hover {
        transform: none;
    }

    .shop-content {
        padding: 20px;
    }

    .product-grid {
        width: 58%;
    }

    .mock-chat {
        width: 49%;

        right: 10px;
        top: 90px;

        min-width: 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading>p {
        margin-top: 16px;
    }

    #produkt {
        padding-bottom: 75px;
    }

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

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

    .step-icon {
        margin-bottom: 25px;
    }

    .demo-shell {
        padding: 28px 20px;

        gap: 28px;
    }

    .demo-copy h2 {
        font-size: 38px;
    }

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

    .trial-card {
        grid-template-columns: 1fr;

        padding: 25px;
    }

    .trial-icon {
        width: 50px;
        height: 50px;
    }

    .trial-card .primary-button {
        grid-column: auto;

        width: 100%;
    }

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

    .contact-card {
        padding: 30px 24px;
    }

    .contact-info {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-info .primary-button {
        width: 100%;
    }

    .footer-main {
        min-height: auto;

        padding:
            30px 0;

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-bottom {
        padding:
            18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }
}

@media (max-width: 500px) {

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-points {
        flex-direction: column;

        gap: 7px;
    }

    .shop-window {
        min-height: 390px;

        border-radius: 20px;
    }

    .window-top {
        height: 39px;
    }

    .shop-content {
        padding: 17px;
    }

    .shop-brand {
        font-size: 16px;
    }

    .shop-links {
        gap: 10px;

        font-size: 8px;
    }

    .product-grid {
        width: 52%;

        gap: 7px;
    }

    .product-card {
        min-height: 130px;

        padding: 7px;
    }

    .product-art {
        height: 65px;
    }

    .product-art::after {
        width: 25px;
        height: 44px;
    }

    .product-card strong {
        font-size: 8px;
    }

    .mock-chat {
        width: 54%;

        top: 75px;

        padding: 10px;
    }

    .mock-chat-header {
        padding-bottom: 7px;
    }

    .chat-bubble {
        padding: 6px 7px;

        font-size: 7px;
    }

    .mock-input {
        padding: 7px;

        font-size: 6px;
    }

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

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

    .contact-card h2 {
        font-size: 39px;
    }

    .footer-links {
        flex-wrap: wrap;

        gap: 15px;
    }
}

/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }
}
/* =========================================
   CHAT LOADING
========================================= */

.loading-message {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 48px;
}

.loading-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #b687ff;

    animation: loadingDot 1.2s infinite ease-in-out;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes loadingDot {

    0%,
    60%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-2px);
    }
}