:root {
    --bg: #faf6f0;
    --bg-alt: #f3ecf8;
    --surface: #ffffff;
    --fg: #1a1721;
    --muted: #6b6577;
    --purple: #6d4aa3;
    --purple-dark: #5a3d8a;
    --purple-soft: #b89ed8;
    --purple-tint: #efe8f7;
    --border: #e8e0d4;
    --border-soft: #ece4f3;
    --shadow-sm: 0 1px 2px rgba(26, 23, 33, 0.04), 0 2px 8px rgba(26, 23, 33, 0.04);
    --shadow-md: 0 8px 28px -14px rgba(109, 74, 163, 0.28);
    --shadow-lg: 0 22px 48px -22px rgba(109, 74, 163, 0.4);
    --radius: 16px;
    --radius-sm: 12px;
    --max-width: 1080px;
    --max-prose: 720px;
}

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

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--purple);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0 0 8px 0;
    z-index: 100;
}
.skip-link:focus {
    left: 0;
}

/* Top bar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.9rem 0;
    background: rgba(250, 246, 240, 0.72);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.topbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px -16px rgba(26, 23, 33, 0.5);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: var(--fg);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s;
}

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

.nav-cta {
    padding: 0.45rem 1rem;
    background: var(--purple);
    color: #fff !important;
    border-radius: 999px;
    transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    position: relative;
    padding: 4rem 0 3.5rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 760px;
    height: 520px;
    background: radial-gradient(ellipse at center, rgba(184, 158, 216, 0.32), rgba(184, 158, 216, 0) 68%);
    pointer-events: none;
    z-index: -1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 1rem 0.3rem 0.35rem;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.6rem;
}

/* Mini avatar v odznaku, zelená tečka funguje jako stavová kontrolka */
.badge-face {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.badge-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.badge-dot {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--surface);
    border-radius: 50%;
    background: #3fb27f;
    box-shadow: 0 0 0 0 rgba(63, 178, 127, 0.5);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(63, 178, 127, 0.5); }
    70% { box-shadow: 0 0 0 7px rgba(63, 178, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(63, 178, 127, 0); }
}

.hero h1 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.1rem, 5.2vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0 auto 1.3rem;
    max-width: 880px;
}

.hl {
    color: var(--purple);
    font-style: italic;
    font-weight: 600;
}

.subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--muted);
    margin: 0 auto 2rem;
    max-width: 580px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.cta {
    display: inline-block;
    padding: 0.95rem 1.8rem;
    background: var(--purple);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cta:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-ghost {
    background: transparent;
    color: var(--purple);
    border: 1px solid var(--purple-soft);
    box-shadow: none;
}
.cta-ghost:hover {
    background: var(--purple-tint);
    color: var(--purple-dark);
    box-shadow: none;
}

.cta-big {
    font-size: 1.1rem;
    padding: 1.1rem 2.4rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.eyebrow {
    display: inline-block;
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

/* Stats strip */
.stats {
    padding: 1.6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--purple);
    line-height: 1.1;
}

.stat span {
    font-size: 0.88rem;
    color: var(--muted);
}

/* Card base */
.card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.service-card {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple-soft);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--purple-tint);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-family: "Fraunces", serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card > p {
    color: var(--muted);
    font-size: 0.98rem;
    margin-bottom: 1.1rem;
}

.card-list {
    list-style: none;
    margin-bottom: 1.4rem;
    display: grid;
    gap: 0.55rem;
}

.card-list li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.95rem;
    color: var(--fg);
}

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

.card-price {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
    font-size: 0.95rem;
    color: var(--muted);
}
.card-price strong {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    color: var(--fg);
}

.services-note {
    margin-top: 1.6rem;
    text-align: center;
    color: var(--muted);
}
.services-note a {
    color: var(--purple);
    font-weight: 500;
}

/* Startovací nabídka — karta s přelévajícím se gradientovým rámečkem */
.offer {
    margin-top: 2.2rem;
    border-radius: var(--radius);
    padding: 1.5px;
    background: linear-gradient(120deg, var(--purple-soft), var(--purple), #e3b98f, var(--purple-soft));
    background-size: 300% 300%;
    animation: offer-border 7s ease infinite;
    box-shadow: var(--shadow-md);
}

@keyframes offer-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.offer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2.5rem;
    flex-wrap: wrap;
    background: var(--surface);
    border-radius: calc(var(--radius) - 1.5px);
    padding: 1.7rem 2rem;
}

.offer-text {
    max-width: 620px;
}

.offer-text .eyebrow {
    margin-bottom: 0.35rem;
}

.offer-text h3 {
    font-family: "Fraunces", serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.offer-text p:last-child {
    color: var(--muted);
    font-size: 0.97rem;
}

.offer-cta {
    white-space: nowrap;
}

/* Audit zdarma */
.audit {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.audit-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
}

.audit h2 {
    margin-bottom: 0.7rem;
}

.audit-text p:last-child {
    color: var(--muted);
    max-width: var(--max-prose);
}

/* Process */
.process {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    counter-reset: step;
}

.step {
    position: relative;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.step p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Work */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.work-item {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

a.work-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple-soft);
}

.work-thumb {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--purple);
    background: var(--bg-alt);
}

.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.work-thumb--1 { background: linear-gradient(135deg, #f3ecf8, #e2d2f0); }
.work-thumb--2 { background: linear-gradient(135deg, #efe8f5, #d6c4ea); }
.work-thumb--3 { background: repeating-linear-gradient(45deg, #f6f1ea, #f6f1ea 10px, #f1ebe2 10px, #f1ebe2 20px); color: var(--muted); }

.work-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.work-item h3 {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.work-item p {
    font-size: 0.95rem;
    color: var(--muted);
}

.work-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--purple);
    font-weight: 500;
    font-size: 0.92rem;
}

.work-item--empty {
    border-style: dashed;
    border-color: var(--purple-soft);
    box-shadow: none;
}

/* Why */
.why-content {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2.8rem;
    align-items: center;
}

.why-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.why-text p {
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    max-width: var(--max-prose);
}

.why-text p:last-child {
    margin-bottom: 0;
}

/* Contact */
.contact {
    text-align: center;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 4.5rem 0;
}

.contact-lead {
    color: var(--muted);
    margin: 0 auto 1.8rem;
    max-width: 480px;
    font-size: 1.08rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

/* Footer */
footer {
    padding: 2rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-nav a:hover {
    color: var(--purple);
}

/* Reveal on scroll — only when JS is active, so no-JS still shows everything */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(6px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 0.65, 0.3, 1),
        transform 0.65s cubic-bezier(0.22, 0.65, 0.3, 1),
        filter 0.65s ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

.hero [data-reveal].is-visible,
.service-grid [data-reveal].is-visible,
.process-grid [data-reveal].is-visible,
.work-grid [data-reveal].is-visible,
.stats-grid [data-reveal].is-visible {
    transition-delay: var(--reveal-delay, 0s);
}

/* Okamžité odhalení bez animace (reload uprostřed stránky, skrytá záložka) */
.js .no-anim,
.js .no-anim *,
.js .no-anim::before,
.js .no-anim::after {
    transition: none !important;
}

/* ===== Efekty navíc ===== */

/* Jen pro čtečky obrazovky */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Tenká lišta průběhu scrollu nahoře */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--purple-soft));
    transform: scaleX(0);
    transform-origin: left;
    z-index: 60;
    pointer-events: none;
}

/* Podtržení odkazů v navigaci */
.nav-links a:not(.nav-cta) {
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

/* Plovoucí barevné bubliny v hero sekci */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: blob-drift 18s ease-in-out infinite alternate;
}

.blob--1 {
    width: 340px;
    height: 340px;
    background: #d9c3f2;
    top: -90px;
    left: 6%;
}

.blob--2 {
    width: 280px;
    height: 280px;
    background: #f6dcc4;
    top: 30px;
    right: 8%;
    animation-duration: 23s;
    animation-delay: -7s;
}

.blob--3 {
    width: 240px;
    height: 240px;
    background: #c4a9e6;
    bottom: -130px;
    left: 44%;
    animation-duration: 27s;
    animation-delay: -13s;
}

@keyframes blob-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(42px, 28px) scale(1.12); }
}

/* Jemná tečkovaná mřížka pod hero obsahem */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(109, 74, 163, 0.13) 1px, transparent 1.5px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 38%, #000, transparent 72%);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 38%, #000, transparent 72%);
    pointer-events: none;
}

/* Rotující slovo v nadpisu — má vlastní řádek, ať zbytek věty neskáče */
.hl {
    display: block;
}

.rotator.rotating {
    display: inline-block;
    white-space: nowrap;
    transition: opacity 0.24s ease, transform 0.24s ease, filter 0.24s ease;
}

.rotator.rotating.swap-out {
    opacity: 0;
    transform: translateY(-0.38em);
    filter: blur(5px);
}

/* Výchozí pozice nového slova (pod řádkem) se nastaví skokem, bez animace */
.rotator.rotating.swap-in {
    opacity: 0;
    transform: translateY(0.38em);
    filter: blur(5px);
    transition: none;
}

/* Odlesk na kartách sledující kurzor (souřadnice dodává JS) */
.card {
    position: relative;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        240px circle at var(--mx, 50%) var(--my, 50%),
        rgba(109, 74, 163, 0.12),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

/* Lesk přejíždějící přes plná tlačítka */
.cta {
    position: relative;
    overflow: hidden;
}

.cta:not(.cta-ghost)::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-20deg);
}

.cta:not(.cta-ghost):hover::after {
    left: 130%;
    transition: left 0.55s ease;
}

/* Ukázky: zoom náhledu a šipka */
.work-thumb {
    overflow: hidden;
}

.work-thumb img {
    transition: transform 0.5s cubic-bezier(0.22, 0.65, 0.3, 1);
}

a.work-item:hover .work-thumb img {
    transform: scale(1.06);
}

.work-link::after {
    content: "→";
    display: inline-block;
    margin-left: 0.4em;
    transition: transform 0.25s ease;
}

a.work-item:hover .work-link::after {
    transform: translateX(5px);
}

/* Čísla kroků naskočí s pružinou */
.step-num {
    transition:
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s ease;
    transition-delay: calc(var(--reveal-delay, 0s) + 0.18s);
}

.js .step:not(.is-visible) .step-num {
    transform: scale(0.3);
    opacity: 0;
}

/* Spojovací linka mezi kroky — jen když jsou všechny 4 vedle sebe */
@media (min-width: 1000px) {
    .step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 19px;
        left: 56px;
        right: 8px;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--purple-soft), rgba(184, 158, 216, 0.12));
        transform-origin: left;
        transition: transform 0.9s ease;
        transition-delay: calc(var(--reveal-delay, 0s) + 0.3s);
    }

    .js .step:not(.is-visible)::after {
        transform: scaleX(0);
    }
}

/* Měkká záře i v kontaktní sekci */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 158, 216, 0.35), transparent 70%);
    top: -170px;
    left: 50%;
    margin-left: -210px;
    pointer-events: none;
    animation: blob-drift 21s ease-in-out infinite alternate;
}

.contact .container {
    position: relative;
}

/* Tablet */
@media (max-width: 860px) {
    .why-content {
        grid-template-columns: 140px 1fr;
        gap: 1.8rem;
    }
    .audit-inner {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    section {
        padding: 3rem 0;
    }
    .hero {
        padding: 3rem 0 2.5rem;
    }
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem 1rem;
    }
    .why-content {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        text-align: center;
    }
    .why-photo {
        max-width: 160px;
        margin: 0 auto;
    }
    .why-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .cta {
        width: 100%;
    }
    .blob {
        filter: blur(44px);
        opacity: 0.4;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none;
    }
    .badge-dot,
    .blob,
    .contact::before {
        animation: none;
    }
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* FAQ */
.faq {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-list {
    max-width: var(--max-prose);
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.3rem;
    font-weight: 600;
    font-size: 1.02rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.faq-item summary::after {
    content: "";
    flex: none;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--purple);
    border-bottom: 2px solid var(--purple);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

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

.faq-item summary:hover {
    color: var(--purple);
}

.faq-item > p {
    padding: 0 1.3rem 1.2rem;
    color: var(--muted);
    margin: 0;
}
