:root {
    --primary: #7c3aed;
    --primary-2: #4f46e5;
    --primary-dark: #5b21b6;
    --primary-soft: rgba(124, 58, 237, 0.14);
    --accent: #22d3ee;
    --accent-2: #38bdf8;
    --accent-soft: rgba(56, 189, 248, 0.3);
    --grad: linear-gradient(135deg, #7c3aed 0%, #6366f1 48%, #3b82f6 100%);
    --grad-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(59, 130, 246, 0.16));
    --bg: #f6f4ff;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --text-dark: #150f2e;
    --text-muted: #5f5a7d;
    --border: rgba(124, 92, 214, 0.18);
    --shadow: 0 30px 80px rgba(76, 29, 149, 0.16);
    --shadow-soft: 0 18px 42px rgba(76, 29, 149, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.28), transparent 26%),
        radial-gradient(circle at 82% 12%, rgba(56, 189, 248, 0.28), transparent 24%),
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.2), transparent 26%),
        linear-gradient(180deg, #faf8ff 0%, #f0edff 100%);
    color: var(--text-dark);
    font-family: "Space Grotesk", sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

body.loading {
    overflow: hidden;
}

a,
button {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

button {
    font: inherit;
}

#loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top, rgba(124, 58, 237, 0.16), transparent 40%),
        linear-gradient(135deg, #f5f9ff 0%, #ffffff 48%, #e9f2ff 100%);
    z-index: 9999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-content {
    position: relative;
    width: min(440px, calc(100vw - 32px));
    padding: 44px 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 34px;
    box-shadow: 0 40px 90px rgba(9, 35, 89, 0.16);
    backdrop-filter: blur(18px);
}

.loader-grid {
    position: absolute;
    inset: 16px;
    border-radius: 24px;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(circle at center, black 38%, transparent 100%);
    pointer-events: none;
}

.loader-lottie {
    width: 180px;
    height: 180px;
    margin: 0 auto 12px;
}

.loader-text {
    font-size: 0.78rem;
    letter-spacing: 0.44em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.loader-subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.orb {
    position: fixed;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.55;
    pointer-events: none;
    z-index: -3;
}

.orb-one {
    top: -6rem;
    left: -5rem;
    background: rgba(56, 189, 248, 0.35);
    animation: drift 12s ease-in-out infinite;
}

.orb-two {
    right: -7rem;
    top: 18rem;
    background: rgba(124, 58, 237, 0.15);
    animation: drift 16s ease-in-out infinite reverse;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(70, 108, 170, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(70, 108, 170, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
    z-index: -4;
}

.particles {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.65), rgba(56, 189, 248, 0.4));
    opacity: 0.22;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    width: min(1180px, calc(100% - 24px));
    margin: 18px auto 0;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 30px rgba(22, 46, 94, 0.08);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.logo span,
.cyan-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 999px;
}

.nav-links a:hover {
    background: rgba(124, 58, 237, 0.08);
}

.download-nav {
    background: var(--grad);
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(124, 58, 237, 0.22);
}

.container {
    width: min(1180px, calc(100% - 24px));
    margin: 0 auto;
    padding: 46px 0 80px;
}

.hero,
.showcase,
.features,
.cta-panel,
.site-footer,
.overview-panel,
.performance-panel {
    text-align: center;
}

.hero {
    padding: 88px 0 40px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(124, 58, 237, 0.12);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.eyebrow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.08);
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 18px;
    font-size: clamp(3rem, 9vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.08rem;
    color: var(--text-muted);
}

.hero-btns,
.store-buttons,
.footer-links,
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-btns {
    margin-top: 34px;
}

.main-download-btn,
.ghost-btn,
.playstore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    border-radius: 20px;
    padding: 16px 24px;
    font-weight: 700;
}

.main-download-btn {
    color: #fff;
    background: var(--grad);
    box-shadow: 0 22px 36px rgba(124, 58, 237, 0.24);
}

.ghost-btn {
    color: var(--text-dark);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.76);
}

.main-download-btn:hover,
.ghost-btn:hover,
.playstore-btn:hover,
.nav-item:hover,
.trust-item:hover,
.overview-card:hover,
.performance-card:hover {
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 42px;
}

.stat-card,
.feature-card,
.cta-panel,
.showcase-copy,
.phone-mockup,
.trust-strip,
.overview-panel,
.performance-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.stat-card {
    min-width: 180px;
    padding: 22px 24px;
    border-radius: 24px;
}

.stat-card strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

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

.trust-strip {
    margin: 26px auto 0;
    padding: 18px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(124, 58, 237, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.trust-item span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 6px;
}

.trust-item strong {
    font-size: 1rem;
}

.showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 32px;
    margin-top: 34px;
}

.showcase-copy,
.cta-panel,
.overview-panel,
.performance-panel {
    padding: 42px;
    border-radius: 32px;
}

.showcase-copy {
    text-align: center;
}

.badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.showcase-copy h2,
.section-heading h2,
.cta-panel h2,
.overview-copy h2 {
    margin: 18px auto 14px;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    max-width: 700px;
}

.showcase-copy p,
.section-heading p,
.cta-panel p,
.overview-copy p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

.benefit-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.benefit-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.benefit-list i {
    color: var(--primary);
}

.phone-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 760px;
}

.phone-halo {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22), rgba(56, 189, 248, 0.04) 58%, transparent 72%);
    filter: blur(16px);
}

.phone-mockup {
    position: relative;
    width: 340px;
    padding: 12px;
    border-radius: 44px;
    background: linear-gradient(180deg, #0f172a 0%, #1f2937 100%);
}

.floating-phone {
    animation: floatPhone 5s ease-in-out infinite;
}

.screen {
    min-height: 680px;
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    color: #6d7a92;
    font-size: 0.8rem;
}

.icons {
    display: flex;
    gap: 10px;
}

.app-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.screen-panel {
    width: 100%;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.performance-graph {
    width: 100%;
    height: 110px;
    margin-bottom: 10px;
}

.fps-display-wrap {
    position: relative;
    display: grid;
    place-items: center;
    margin: 12px 0 20px;
}

.fps-circle {
    width: 190px;
    height: 190px;
    position: relative;
}

svg {
    transform: rotate(-90deg);
}

.bg-circle {
    fill: none;
    stroke: rgba(124, 58, 237, 0.12);
    stroke-width: 8;
}

.progress-circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.15s linear;
}

.fps-text {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
}

#fps-value {
    display: block;
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1;
}

.fps-text small {
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

.status-info {
    text-align: center;
}

#status-text {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

#terminal-log {
    min-height: 90px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(12, 19, 33, 0.96);
    color: #b6d7ff;
    font-family: Consolas, monospace;
    font-size: 0.76rem;
    text-align: left;
    overflow: hidden;
}

.status-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.status-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--text-dark);
    font-size: 0.78rem;
}

#boost-btn,
.play-mock-btn,
.mock-apply-btn {
    width: 100%;
    border: none;
    color: #fff;
    background: var(--grad);
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 32px rgba(124, 58, 237, 0.22);
}

#boost-btn {
    margin-top: 18px;
}

.bottom-nav-mockup {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 18px 18px 20px;
    background: rgba(255, 255, 255, 0.68);
    border-top: 1px solid rgba(124, 58, 237, 0.08);
}

.nav-item {
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    color: #8a96ac;
    padding: 12px 0;
    font-size: 1rem;
    cursor: pointer;
}

.nav-item.active {
    color: #fff;
    background: var(--grad);
    box-shadow: 0 14px 24px rgba(124, 58, 237, 0.24);
}

.mock-screen-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.mock-caption {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.mock-list {
    display: grid;
    gap: 12px;
}

.mock-item,
.mock-settings-item,
.mock-tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(248, 250, 255, 0.95);
    border: 1px solid rgba(124, 58, 237, 0.08);
    text-align: left;
}

.mock-item button,
.mock-settings-item small {
    margin-left: auto;
}

.mock-item button {
    width: auto;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.74rem;
}

.mock-settings-item small {
    color: var(--primary);
    font-weight: 700;
}

.mock-tool-item i:last-child {
    margin-left: auto;
    opacity: 0.4;
}

.floating-overlay {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    background: var(--grad);
    color: #fff;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-overlay.visible {
    opacity: 1;
    transform: translateY(0);
}

.overview-panel,
.performance-panel {
    margin-top: 72px;
}

.overview-grid,
.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.overview-card,
.performance-card {
    padding: 26px 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow: var(--shadow-soft);
}

.overview-card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.overview-card h3,
.performance-card strong {
    display: block;
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.overview-card p,
.performance-card span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section-heading {
    margin: 110px auto 36px;
}

.feature-grid,
.performance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
    display: grid;
    gap: 18px;
}

.feature-card {
    padding: 30px;
    border-radius: 28px;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.26);
}

.icon-box {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(56, 189, 248, 0.22));
    color: var(--primary);
    font-size: 1.45rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
}

.cta-panel {
    margin-top: 110px;
}

.playstore-btn {
    min-width: 220px;
    color: #fff;
    background: #122038;
}

.download-apk {
    background: var(--grad);
}

.secondary-btn {
    background: linear-gradient(135deg, #14233f, #2b456f);
}

.btn-content {
    text-align: left;
}

.btn-content span {
    display: block;
    opacity: 0.75;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

.site-footer {
    width: min(1180px, calc(100% - 24px));
    margin: 0 auto 34px;
    padding: 26px 18px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.reveal,
.reveal-card {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .site-nav {
        justify-content: center;
        flex-direction: column;
    }

    .showcase,
    .feature-grid,
    .performance-grid,
    .overview-grid,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .phone-stage {
        min-height: 680px;
    }
}

@media (max-width: 640px) {
    .container {
        padding-top: 28px;
    }

    .hero {
        padding-top: 52px;
    }

    .showcase-copy,
    .cta-panel,
    .feature-card,
    .overview-panel,
    .performance-panel {
        padding: 28px 22px;
    }

    .phone-mockup {
        width: min(340px, 100%);
    }

    .screen {
        min-height: 640px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.86rem;
        padding: 9px 12px;
    }

    .loader-lottie {
        width: 150px;
        height: 150px;
    }

    .loader-text {
        letter-spacing: 0.28em;
    }

    .compare-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Oncesi / Sonrasi FPS ===== */
.compare-panel {
    margin-top: 110px;
    text-align: center;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.compare-card {
    padding: 32px 28px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.compare-card.after {
    background: var(--grad);
    border: none;
    color: #fff;
    box-shadow: 0 26px 60px rgba(76, 29, 149, 0.32);
}

.compare-tag {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.75;
}

.compare-fps {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 10px 0 18px;
}

.compare-fps b {
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 700;
}

.compare-fps span {
    font-size: 1rem;
    opacity: 0.7;
}

.compare-bar {
    height: 12px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    overflow: hidden;
}

.compare-card.after .compare-bar {
    background: rgba(255, 255, 255, 0.24);
}

.compare-bar i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: var(--grad);
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.compare-card.after .compare-bar i {
    background: #fff;
}

.compare-card ul {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
    font-size: 0.92rem;
}

.compare-card li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-card li i {
    opacity: 0.85;
}

/* ===== Kullanici Yorumlari ===== */
.reviews-panel {
    margin-top: 110px;
    text-align: center;
}

.reviews-score {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--grad-soft);
    border: 1px solid var(--border);
    font-weight: 700;
}

.reviews-score .stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.review-card {
    padding: 26px 24px;
    border-radius: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.review-stars {
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-card p {
    color: var(--text-dark);
    font-size: 0.96rem;
    margin-bottom: 18px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    background: var(--grad);
}

.review-user strong {
    display: block;
    font-size: 0.95rem;
}

.review-user span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ===== SSS ===== */
.faq-panel {
    margin-top: 110px;
    text-align: center;
}

.faq-list {
    max-width: 760px;
    margin: 34px auto 0;
    display: grid;
    gap: 14px;
    text-align: left;
}

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

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
}

.faq-q i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.faq-item.open .faq-a {
    max-height: 240px;
    padding: 0 24px 22px;
}
