/* Theme variables */
:root {
    --brand: #7267f0;
    --brand-2: #5a52d6;
    --success: #1faa7a;
    --success-2: #168a63;
    --bg: #f6f7fb;
    --bg-2: #eef1f7;
    --text: #101319;
    --muted: #5e667a;
    --card: #ffffff;
    --stroke: #dfe3ee;
    --shadow: 0 18px 45px rgba(28, 32, 53, 0.12);
    --glass: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] {
    --bg: #0f1220;
    --bg-2: #14182b;
    --text: #eef1ff;
    --muted: #b2b8d2;
    --card: #151a30;
    --stroke: #222845;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    --glass: rgba(21, 26, 48, 0.75);
}

[data-theme="dark"] .menu-toggle {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}

/* Base */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Satoshi", "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 15%, rgba(114, 103, 240, 0.18), transparent 42%),
        radial-gradient(circle at 80% 10%, rgba(114, 103, 240, 0.12), transparent 40%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
    min-height: 100vh;
}

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

.container {
    width: min(1150px, 90vw);
    margin: 0 auto;
}

/* Header and navigation */

.nav {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    background: color-mix(in srgb, var(--glass) 90%, transparent);
    border-bottom: 1px solid var(--stroke);
    z-index: 10;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.brand .logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    box-shadow: var(--shadow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: var(--card);
    border-radius: 999px;
    border: 1px solid var(--stroke);
}

.nav-links a {
    color: var(--muted);
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover {
    color: var(--text);
    background: rgba(114, 103, 240, 0.12);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 28px;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-dropdown-toggle::after {
    content: "⌄";
    font-size: 0.75rem;
    line-height: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 150px;
    padding: 8px;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: all 0.2s ease;
    z-index: 2;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    display: block;
    border-radius: 10px;
    white-space: nowrap;
}

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

.desktop-only {
    display: inline-flex;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--stroke);
    background: var(--card);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--card);
    border-bottom: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    transition: transform 0.55s ease;
    z-index: 9;
    padding: calc(env(safe-area-inset-top, 0px) + 116px) 20px calc(env(safe-area-inset-bottom, 0px) + 24px);
    display: grid;
    gap: 14px;
    align-content: start;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu.open {
    transform: translateY(0);
}

.menu-close {
    border: 1px solid var(--stroke);
    background: var(--card);
    color: var(--muted);
    font-size: 1.3rem;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: calc(env(safe-area-inset-top, 0px) + 116px);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
}

.menu-close:hover {
    color: var(--text);
    border-color: var(--brand);
}

.menu-list {
    display: grid;
    gap: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid var(--stroke);
}

.menu-item svg {
    width: 16px;
    height: 16px;
    color: var(--brand);
}

.mobile-submenu {
    border-bottom: 1px solid var(--stroke);
}

.mobile-submenu-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-submenu-toggle::after {
    content: "⌄";
    margin-left: auto;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.mobile-submenu.open .mobile-submenu-toggle::after {
    transform: rotate(180deg);
}

.mobile-submenu .menu-item {
    border-bottom: 0;
}

.mobile-submenu-links {
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding-left: 26px;
    transition: max-height 0.25s ease;
}

.mobile-submenu.open .mobile-submenu-links {
    max-height: none;
    overflow: visible;
}

.mobile-submenu-links a {
    padding: 10px 0;
    color: var(--muted);
    font-weight: 600;
    border-top: 1px solid var(--stroke);
}

.menu-cta {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-right: 52px;
}

.menu-cta .btn {
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    margin: 0;
    white-space: nowrap;
}

.backdrop {
    display: none;
}

.icon-btn {
    border: 1px solid var(--stroke);
    background: var(--card);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s ease;
}

.icon-btn:hover {
    color: var(--text);
    box-shadow: var(--shadow);
}

.btn {
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--brand);
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.btn:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
}

a.btn {
    font: 600 13.3333px Arial;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--brand);
    color: var(--brand);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(114, 103, 240, 0.08);
    color: var(--brand-2);
    border-color: var(--brand-2);
}

/* Hero */

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 32px;
    padding: 80px 0 60px;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 14px 0 12px;
    letter-spacing: -1px;
    line-height: 1.2;

}

.hero h1 span {
    color: var(--brand);
}

.hero p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
    align-items: center;
}

.ghost-btn {
    border: 1px solid var(--stroke);
    background: var(--card);
    color: var(--text);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.ghost-btn1 {
    font: 600 13.3333px Arial;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(114, 103, 240, 0.12);
    color: var(--brand);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-card {
    background: var(--card);
    border-radius: 26px;
    padding: 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--stroke);
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 103, 240, 0.3), transparent 70%);
    top: -60px;
    right: -60px;
}

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

.stat {
    background: var(--bg);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid var(--stroke);
}

.stat h3 {
    margin: 0;
    font-size: 1.2rem;
}

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

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.hero-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: color-mix(in srgb, var(--card) 82%, var(--bg) 18%);
    box-shadow: 0 10px 24px rgba(18, 24, 44, 0.08);
}

.hero-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    color: #ffffff;
}

.hero-mini-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.hero-mini-card.kasa .hero-mini-icon {
    background: #25c96d;
}

.hero-mini-card.banka .hero-mini-icon {
    background: #2bafe9;
}

.hero-mini-card.cek .hero-mini-icon {
    background: #ffa043;
}

.hero-mini-card.acik .hero-mini-icon {
    background: #ef5a5a;
}

.hero-mini-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-mini-value {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.84rem;
}

/* Generic section layout */

section {
    padding: 70px 0;
    scroll-margin-top: 110px;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin: 0 0 10px;
}

.section-lead {
    color: var(--muted);
    margin: 0 0 28px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.pricing-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.billing-option {
    border: none;
    background: transparent;
    color: var(--muted);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-option.active {
    background: var(--brand);
    color: #ffffff;
}

/* Pricing */

.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(114, 103, 240, 0.15), transparent 34%),
        linear-gradient(180deg, color-mix(in srgb, var(--card) 96%, white 4%), var(--card));
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(114, 103, 240, 0.1);
    pointer-events: none;
}

.pricing-card.featured {
    border: 2px solid var(--brand);
    background:
        radial-gradient(circle at top center, rgba(114, 103, 240, 0.22), transparent 38%),
        linear-gradient(180deg, color-mix(in srgb, var(--card) 92%, white 8%), var(--card));
}

.pricing-card .chip {
    align-self: center;
    margin-bottom: 14px;
    padding: 8px 16px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.pricing-card[data-plan="lite"] .chip {
    background: rgba(31, 170, 122, 0.12);
    color: var(--success);
}

.pricing-card[data-plan="lite"] .btn {
    background: var(--success);
}

.pricing-card[data-plan="lite"] .btn:hover {
    background: var(--success-2);
}

.pricing-top {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    align-content: start;
    border-bottom: 1px solid var(--stroke);
}

.pricing-subtitle {
    margin: 0 0 10px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.96rem;
}

.pricing-description {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.6;
    min-height: 3.2em;
}

.pricing-cta {
    display: grid;
    gap: 10px;
    margin: 18px 0 6px;
}

.pricing-disclaimer {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
}

.pricing-features {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid color-mix(in srgb, var(--stroke) 80%, transparent);
    flex: 1;
}

.pricing-feature-intro {
    margin: 0 0 10px;
    color: var(--text);
    font-weight: 600;
}

/* Feature and content cards */

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(114, 103, 240, 0.12), transparent 38%),
        linear-gradient(180deg, color-mix(in srgb, var(--card) 96%, white 4%), var(--card));
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(114, 103, 240, 0.24);
}

.feature-card::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 0;
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), rgba(114, 103, 240, 0.15));
}

.feature-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 18px;
    color: var(--brand);
    background: rgba(114, 103, 240, 0.12);
    box-shadow: inset 0 0 0 1px rgba(114, 103, 240, 0.08);
}

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

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

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

.card {
    background: var(--card);
    border-radius: 20px;
    border: 1px solid var(--stroke);
    padding: 20px;
    box-shadow: var(--shadow);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.price-suffix {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
    margin-left: 6px;
    white-space: nowrap;
}

.price-note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.spec-list {
    color: var(--muted);
    font-size: 0.92rem;
}

.card ul {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.pricing-features ul {
    margin-top: 0;
}

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

.card li img {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 16px;
}

.chip {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(114, 103, 240, 0.12);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 600;
}

.kontor-grid .card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background:
        radial-gradient(circle at top, rgba(114, 103, 240, 0.14), transparent 40%),
        var(--card);
}

.kontor-intro {
    margin: 0 0 30px;
    padding: 22px 24px;
    border: 1px solid var(--stroke);
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(114, 103, 240, 0.12), transparent 38%),
        var(--card);
    box-shadow: var(--shadow);
}

.kontor-intro .section-lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    text-wrap: pretty;
    text-align: justify;
}

.kontor-paragraph {
    display: block;
    text-indent: 1.5rem;
}

.kontor-paragraph+.kontor-paragraph {
    margin-top: 0;
}

.kontor-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(114, 103, 240, 0.1);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.kontor-amount {
    margin: 14px 0 8px;
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.kontor-title {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.kontor-price {
    margin: 18px 0 8px;
    font-size: 1.35rem;
    font-weight: 700;
}

.kontor-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* FAQ */

.faq {
    display: grid;
    gap: 12px;
}

.faq details {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--stroke);
    padding: 14px 16px;
    overflow: hidden;
}

.faq summary {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    color: var(--brand);
    cursor: pointer;
    list-style: none;
    padding-right: 38px;
}

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

.faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--stroke);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq details[open] summary::after {
    content: "-";
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff;
}

.faq p {
    color: var(--muted);
    margin: 12px 0 0;
    overflow: hidden;
}

/* Slider */

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--stroke);
    background: var(--card);
    box-shadow: var(--shadow);
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.slide {
    min-width: 100%;
    padding: 30px 26px;
    display: grid;
    gap: 8px;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.avatar {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--card) 86%, var(--bg) 14%);
    border: 1px solid color-mix(in srgb, var(--stroke) 80%, white 20%);
    box-shadow: 0 10px 24px rgba(18, 24, 44, 0.12);
}

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

.slide-title {
    font-weight: 700;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.slide-role {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.slide-text {
    color: var(--muted);
    line-height: 1.72;
    font-size: 0.98rem;
    max-width: 600px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Contact and footer */

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: center;
}

.contact .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact .card form {
    flex: 1;
}

.contact .card iframe {
    height: 100%;
    min-height: 320px;
}

.contact-meta {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.contact-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--stroke);
    border-radius: 18px;
    background:
        radial-gradient(circle at left top, rgba(114, 103, 240, 0.1), transparent 45%),
        var(--card);
    box-shadow: var(--shadow);
}

.contact-meta-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--brand);
    background: rgba(114, 103, 240, 0.12);
}

.contact-meta-icon svg {
    width: 18px;
    height: 18px;
}

.contact-meta-label {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-meta-value {
    margin: 0;
    color: var(--text);
    line-height: 1.55;
    font-weight: 500;
}

.contact-meta-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-meta-value a:hover {
    color: var(--brand);
}

.footer {
    padding: 30px 0 50px;
    color: var(--muted);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: var(--card);
    color: var(--text);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 12;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

/* Global responsive */

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .desktop-only {
        display: none;
    }

    .pricing-head {
        align-items: flex-start;
    }
}

/* Blog page (blogs.html) */


.blog-hero {
    padding: 72px 0 56px;
    text-align: center;
}

.blog-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(114, 103, 240, 0.10);
    color: var(--brand);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(114, 103, 240, 0.2);
    margin-bottom: 20px;
}

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 16px;
    letter-spacing: -0.8px;
}

.blog-hero h1 span {
    color: var(--brand);
}

.blog-hero p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.blog-search {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    box-shadow: var(--shadow);
}

.blog-search input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.blog-search input::placeholder {
    color: var(--muted);
}

.blog-search button {
    border: none;
    background: var(--brand);
    color: white;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

.blog-search button:hover {
    background: var(--brand-2);
}

.blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 48px 0 36px;
}

.blog-cat {
    padding: 7px 18px;
    border-radius: 999px;
    background: var(--card);
    border: 1px solid var(--stroke);
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.blog-cat:hover,
.blog-cat.active {
    background: var(--brand);
    border-color: var(--brand);
    color: white;
}

/* Öne çıkan */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card);
    border-radius: 24px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 48px;
}

.blog-featured-img {
    background: #eef1ff;
    min-height: 300px;
    overflow: hidden;
}

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

.blog-featured-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-body .chip {
    margin-bottom: 16px;
    width: fit-content;
}

.blog-featured-body h2 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    margin: 0 0 14px;
}

.blog-featured-body p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--muted);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 20px;
}

/* BLOG GRID - RESİM ÜSTTE İÇERİK ALTTA */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(28, 32, 53, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(28, 32, 53, 0.13);
}

.blog-card-img {
    width: 100%;
    height: 227px;
    overflow: hidden;
}

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

.blog-card-body {
    padding: 22px 24px 26px;
    display: block;
}

.blog-card-body .chip {
    margin-bottom: 12px;
    width: fit-content;
}

.blog-card-body h3 {
    font-size: 1.05rem;
    margin: 0 0 10px;
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0 0 16px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--stroke);
    font-size: 0.82rem;
    color: var(--muted);
}

.blog-card-read-more {
    color: var(--brand);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-card:hover .blog-card-read-more {
    gap: 8px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 70px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: var(--card);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.page-btn:hover,
.page-btn.active {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

/* Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, var(--brand) 0%, #5a52d6 60%, #8ee1ff 130%);
    border-radius: 24px;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 70px;
    position: relative;
    overflow: hidden;
}

.blog-newsletter-text h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 8px;
}

.blog-newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.blog-newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.blog-newsletter-form input {
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 999px;
    outline: none;
    width: 240px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.blog-newsletter-form button {
    border: none;
    background: white;
    color: var(--brand);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
}

/* Blog responsive */

@media (max-width: 900px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-img {
        min-height: 220px;
    }

    .blog-featured-body {
        padding: 28px 28px 32px;
    }

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

    .blog-newsletter {
        flex-direction: column;
        padding: 36px 28px;
    }

    .blog-newsletter-form {
        width: 100%;
    }

    .blog-newsletter-form input {
        flex: 1;
        width: auto;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero {
        padding: 48px 0 36px;
    }

    .blog-newsletter {
        padding: 28px 20px;
    }

    .blog-newsletter-form {
        flex-direction: column;
    }

    .blog-newsletter-form input {
        width: 100%;
    }
}

/* ============================================================
           BLOG DETAY'A ÖZGÜ STİLLER — blog-detail.html
        ============================================================ */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    padding: 24px 0 0;
}

.breadcrumb a {
    color: var(--brand);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    opacity: 0.4;
}

/* Article hero */
.article-hero {
    padding: 36px 0 0;
}

.article-hero-inner {
    background: linear-gradient(135deg, #7267f0 0%, #5a52d6 50%, #6db3f2 100%);
    border-radius: 28px;
    padding: 64px 72px;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.article-hero-inner::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -160px;
    right: -100px;
}

.article-hero-inner::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    bottom: -80px;
    left: 80px;
}

.article-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: white;
    font-weight: 600;
    font-size: 0.82rem;
    width: fit-content;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

.article-hero h1 {
    color: white;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    line-height: 1.25;
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.article-author-info span {
    display: block;
    font-size: 0.88rem;
}

.article-author-info .author-name {
    color: white;
    font-weight: 700;
}

.article-author-info .author-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.article-hero-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.article-stat svg {
    width: 15px;
    height: 15px;
}

/* Content layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 52px 0 80px;
    align-items: start;
}

/* --- Article body --- */
.article-body {
    min-width: 0;
}

.article-body h2 {
    font-size: 1.45rem;
    margin: 42px 0 14px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.15rem;
    margin: 28px 0 10px;
    letter-spacing: -0.2px;
}

.article-body p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 18px;
    font-size: 1rem;
}

.article-body ul,
.article-body ol {
    color: var(--muted);
    line-height: 1.8;
    padding-left: 20px;
    margin: 0 0 20px;
}

.article-body li {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Callout box */
.article-callout {
    background: rgba(114, 103, 240, 0.08);
    border-left: 4px solid var(--brand);
    border-radius: 0 14px 14px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.article-callout p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
    line-height: 1.6;
}

/* Info table */
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 0.95rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--stroke);
}

.article-table th {
    background: var(--bg-2);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--stroke);
}

.article-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--stroke);
    color: var(--muted);
    vertical-align: top;
}

.article-table tr:last-child td {
    border-bottom: none;
}

.article-table tr:hover td {
    background: var(--bg);
}

.check-icon {
    color: var(--success);
    font-size: 1rem;
}

.x-icon {
    color: #ef5a5a;
    font-size: 1rem;
}

/* Steps */
.article-steps {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.article-step {
    display: flex;
    gap: 18px;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 20px 22px;
}

.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    font-weight: 700;
    font-size: 0.92rem;
    display: grid;
    place-items: center;
}

.step-content h4 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.step-content p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
}

/* CTA banner inside article */
.article-cta {
    background: linear-gradient(135deg, var(--brand), #5a52d6);
    border-radius: 20px;
    padding: 36px 40px;
    text-align: center;
    margin: 40px 0;
}

.article-cta h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0 0 10px;
    letter-spacing: -0.2px;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 22px;
    font-size: 0.95rem;
}

.article-cta .btn {
    background: white;
    color: var(--brand);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.article-cta .btn:hover {
    background: #f0f0ff;
    transform: translateY(-1px);
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0 0;
    padding-top: 28px;
    border-top: 1px solid var(--stroke);
}

.article-tag {
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--bg-2);
    border: 1px solid var(--stroke);
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.article-tag:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

/* Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.article-share span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--stroke);
    background: var(--card);
    color: var(--muted);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

/* --- Sidebar --- */
.article-sidebar {
    position: sticky;
    top: 100px;
}

/* TOC */
.sidebar-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(28, 32, 53, 0.07);
}

.sidebar-card h4 {
    font-size: 0.92rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2px;
}

.toc-list a {
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
    border-left: 2px solid transparent;
}

.toc-list a:hover,
.toc-list a.active {
    background: rgba(114, 103, 240, 0.08);
    color: var(--brand);
    border-left-color: var(--brand);
}

/* Progress bar */
.read-progress {
    height: 3px;
    background: var(--stroke);
    border-radius: 999px;
    margin: 0 0 20px;
    overflow: hidden;
}

.read-progress-bar {
    height: 100%;
    background: var(--brand);
    border-radius: 999px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Sidebar author card */
.author-card-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #8ee1ff);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.author-card-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.author-card-bio {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--brand), #5a52d6);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.sidebar-cta h4 {
    color: white;
    font-size: 1rem;
    margin: 0 0 8px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    margin: 0 0 16px;
    line-height: 1.5;
}

.sidebar-cta .btn {
    background: white;
    color: var(--brand);
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    box-shadow: none;
}

.sidebar-cta .btn:hover {
    background: #f0f0ff;
}

/* Related posts */
.related-section {
    padding: 0 0 80px;
}

.related-section h3 {
    font-size: 1.35rem;
    margin: 0 0 24px;
    letter-spacing: -0.2px;
}

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

.related-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(28, 32, 53, 0.12);
}

.related-card-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-card:nth-child(1) .related-card-img {
    background: linear-gradient(135deg, #1faa7a, #2bafe9);
}

.related-card:nth-child(2) .related-card-img {
    background: linear-gradient(135deg, #ffa043, #f06270);
}

.related-card:nth-child(3) .related-card-img {
    background: linear-gradient(135deg, #2bafe9, #7267f0);
}

.related-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

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

.related-card-body {
    padding: 18px 20px 20px;
}

.related-card-body .chip {
    margin-bottom: 8px;
    font-size: 0.76rem;
}

.related-card-body h4 {
    font-size: 0.96rem;
    margin: 0 0 8px;
    line-height: 1.4;
}

.related-card-body span {
    color: var(--muted);
    font-size: 0.82rem;
}

.grnt-30 {
    text-indent: 30px;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .toc-list {
        display: none;
    }

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

    .article-hero-inner {
        padding: 40px 36px;
    }

    .landing-layout {
        grid-template-columns: 1fr;
    }

    .landing-sidebar {
        position: static;
    }

    .landing-hero-inner {
        padding: 40px 36px;
    }
}

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

    .desktop-only {
        display: none !important;
    }

    .menu-toggle {
        display: grid;
    }

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

    .article-hero-inner {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .article-cta {
        padding: 28px 24px;
    }

    .landing-hero-inner {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .landing-cta {
        padding: 28px 24px;
    }
}

/* ============================================================
           özellikler'e ÖZGÜ STİLLER — blog-detail.html
        ============================================================ */

/* Landing hero */
.landing-hero {
    padding: 36px 0 0;
}

.landing-hero-inner {
    background: linear-gradient(135deg, #7267f0 0%, #5a52d6 50%, #6db3f2 100%);
    border-radius: 28px;
    padding: 64px 72px;
    position: relative;
    overflow: hidden;
    /* min-height: 340px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.landing-hero-inner::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -160px;
    right: -100px;
}

.landing-hero-inner::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    bottom: -80px;
    left: 80px;
}

.landing-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: white;
    font-weight: 600;
    font-size: 0.82rem;
    width: fit-content;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

.landing-hero h1 {
    color: white;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    line-height: 1.25;
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.landing-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.landing-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.landing-author-info span {
    display: block;
    font-size: 0.88rem;
}

.landing-author-info .author-name {
    color: white;
    font-weight: 700;
}

.landing-author-info .author-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.landing-hero-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.landing-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.landing-stat svg {
    width: 15px;
    height: 15px;
}

/* Content layout */
.landing-layout {
    display: grid;
    /* grid-template-columns: 1fr 300px; */
    gap: 48px;
    padding: 52px 0 80px;
    align-items: start;
}

/* --- Landing body --- */
.landing-body {
    min-width: 0;
}

.landing-body h2 {
    font-size: 1.45rem;
    margin: 42px 0 14px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.landing-body h3 {
    font-size: 1.15rem;
    margin: 28px 0 10px;
    letter-spacing: -0.2px;
}

.landing-body p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 18px;
    font-size: 1rem;
}

.landing-body ul,
.landing-body ol {
    color: var(--muted);
    line-height: 1.8;
    padding-left: 20px;
    margin: 0 0 20px;
}

.landing-body li {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Callout box */
.landing-callout {
    background: rgba(114, 103, 240, 0.08);
    border-left: 4px solid var(--brand);
    border-radius: 0 14px 14px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.landing-callout p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
    line-height: 1.6;
}

/* Info table */
.landing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 0.95rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--stroke);
}

.landing-table th {
    background: var(--bg-2);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--stroke);
}

.landing-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--stroke);
    color: var(--muted);
    vertical-align: top;
}

.landing-table tr:last-child td {
    border-bottom: none;
}

.landing-table tr:hover td {
    background: var(--bg);
}

/* Steps */
.landing-steps {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.landing-step {
    display: flex;
    gap: 18px;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 20px 22px;
}

/* CTA banner inside landing */
.landing-cta {
    background: linear-gradient(135deg, var(--brand), #5a52d6);
    border-radius: 20px;
    padding: 36px 60px;
    text-align: center;
    margin: 40px 0;
}

.landing-cta h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0 0 10px;
    letter-spacing: -0.2px;
}

.landing-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 22px;
    font-size: 0.95rem;
}

.landing-cta .btn {
    background: white;
    color: var(--brand);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.landing-cta .btn:hover {
    background: #f0f0ff;
    transform: translateY(-1px);
}

/* Tags */
.landing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0 0;
    padding-top: 28px;
    border-top: 1px solid var(--stroke);
}

.landing-tag {
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--bg-2);
    border: 1px solid var(--stroke);
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.landing-tag:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

/* Share */
.landing-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.landing-share span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

/* --- Sidebar --- */
.landing-sidebar {
    position: sticky;
    top: 100px;
}