:root {
    --gold: #c9a84c;
    --gold-l: #e8c96a;
    --gold-d: #9a7a2e;
    --gold-pale: #fdf8ee;
    --gold-ghost: #f5edd4;
    --gold-bg: #fbf2d8;
    --gold-bd: rgba(201, 168, 76, 0.22);
    --gold-sh: rgba(201, 168, 76, 0.18);
    --ink: #1a1812;
    --ink2: #2c2820;
    --muted: #6b6347;
    --muted2: #9e9074;
    --white: #fff;
    --sh-sm: 0 4px 16px rgba(28, 26, 20, 0.07);
    --sh-md: 0 8px 32px rgba(28, 26, 20, 0.1);
    --sh-lg: 0 20px 60px rgba(28, 26, 20, 0.13);
    --sh-xl: 0 40px 100px rgba(28, 26, 20, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 clamp(20px, 5vw, 72px);
    justify-content: space-between;
    transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
    background: transparent;
    border-bottom: 1px solid transparent;
}

#nav.on {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-color: var(--gold-bd);
    box-shadow: 0 2px 20px rgba(28, 26, 20, 0.06);
}

.n-logo {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

#nav.on .n-logo {
    color: var(--ink);
}

.n-logo span {
    color: var(--gold);
}

.n-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.n-links a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

#nav.on .n-links a {
    color: var(--muted);
}

.n-links a:hover {
    color: var(--gold-l);
}

#nav.on .n-links a:hover {
    color: var(--gold-d);
}

.n-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-n {
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-n-ghost {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
}

.btn-n-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-l);
}

#nav.on .btn-n-ghost {
    color: var(--muted);
    border-color: var(--gold-bd);
}

#nav.on .btn-n-ghost:hover {
    color: var(--gold-d);
    border-color: var(--gold);
}

.btn-n-gold {
    background: var(--gold);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 2px 10px var(--gold-sh);
}

.btn-n-gold:hover {
    background: var(--gold-d);
    color: #fff;
}

.hero {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.06), transparent 0 18%),
        radial-gradient(circle at 82% 20%, rgba(201, 168, 76, 0.11), transparent 0 22%),
        radial-gradient(circle at 50% 82%, rgba(201, 168, 76, 0.09), transparent 0 28%),
        radial-gradient(ellipse 1000px 600px at 50% 110%, rgba(201, 168, 76, 0.13), transparent 65%),
        linear-gradient(165deg, #1a1812 0%, #271e08 55%, #1a1812 100%);
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 130px clamp(20px, 5vw, 72px) 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-pattern-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 82%);
    opacity: 0.45;
}

.hero-pattern-beam {
    background:
        linear-gradient(120deg, transparent 0%, rgba(201, 168, 76, 0.14) 36%, transparent 62%),
        radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 34%);
    mix-blend-mode: screen;
    opacity: 0.7;
}

.hero-pattern-grid::after {
    content: "";
    position: absolute;
    inset: 12% 8% auto 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.28), transparent);
    box-shadow:
        0 78px 0 rgba(201, 168, 76, 0.08),
        0 156px 0 rgba(201, 168, 76, 0.08),
        0 234px 0 rgba(201, 168, 76, 0.08);
    opacity: 0.55;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.05);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero::before {
    width: 700px;
    height: 700px;
}

.hero::after {
    width: 1100px;
    height: 1100px;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 400px;
    background: rgba(201, 168, 76, 0.06);
    top: 10%;
    left: -10%;
}

.hero-blob-2 {
    width: 500px;
    height: 400px;
    background: rgba(201, 168, 76, 0.05);
    bottom: 20%;
    right: -8%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-journal {
    position: absolute;
    z-index: 1;
    width: 240px;
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(233, 221, 186, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 251, 243, 0.12), rgba(255, 248, 232, 0.06)),
        rgba(18, 15, 10, 0.34);
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    color: rgba(255, 249, 236, 0.88);
}

.hero-journal::before {
    content: "";
    position: absolute;
    inset: 18px 18px 18px 18px;
    background-image: linear-gradient(rgba(201, 168, 76, 0.1) 1px, transparent 1px);
    background-size: 100% 28px;
    opacity: 0.35;
    pointer-events: none;
}

.hero-journal-left {
    top: 19%;
    left: clamp(30px, 6vw, 84px);
    transform: rotate(-8deg);
}

.hero-journal-right {
    top: 52%;
    right: clamp(26px, 6vw, 86px);
    transform: rotate(8deg);
}

.hero-journal-head,
.hero-journal-row,
.hero-chart-title,
.hero-chart-line,
.hero-chart-stats {
    position: relative;
    z-index: 1;
}

.hero-journal-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 233, 178, 0.82);
}

.hero-journal-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    font-size: 13px;
    color: rgba(255, 248, 232, 0.76);
}

.hero-journal-row strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    color: #fff4d2;
}

.hero-chart-title {
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 233, 178, 0.82);
}

.hero-chart-line {
    position: relative;
    height: 92px;
    margin-bottom: 18px;
    border-radius: 14px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 24px, 36px 100%;
    overflow: hidden;
}

.hero-chart-line::before {
    content: "";
    position: absolute;
    inset: 26px 12px 18px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, transparent 2%, rgba(201, 168, 76, 0.92) 18%, rgba(201, 168, 76, 0.72) 42%, rgba(255, 255, 255, 0.9) 64%, rgba(110, 231, 160, 0.88) 100%);
    clip-path: polygon(0% 82%, 12% 70%, 24% 74%, 35% 50%, 48% 58%, 61% 34%, 72% 40%, 85% 20%, 100% 6%, 100% 24%, 85% 36%, 72% 56%, 61% 48%, 48% 72%, 35% 66%, 24% 88%, 12% 84%, 0% 94%);
    opacity: 0.9;
}

.hero-chart-peak {
    position: absolute;
    top: 18px;
    right: 34px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.16);
}

.hero-chart-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-chart-stats small {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 248, 232, 0.46);
}

.hero-chart-stats strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-l);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 820px;
    margin: 0 auto 18px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(15px, 1.7vw, 19px);
    color: rgba(255, 255, 255, 0.58);
    max-width: 560px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

.hero-pos {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn-hp {
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    background: var(--gold);
    color: #fff;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hp:hover {
    background: var(--gold-l);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 168, 76, 0.5);
}

.btn-hwa {
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.btn-hwa:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #6ee7a0;
}

.hero-pills {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 52px;
}

.hero-pills span {
    margin: 0 8px;
}

.hero-screen {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 0;
}

.browser {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    box-shadow: 0 -4px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.browser-bar {
    background: rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.b-dot-red,
.d-dot-red {
    background: #ef4444;
}

.b-dot-amber,
.d-dot-amber {
    background: #f59e0b;
}

.b-dot-green,
.d-dot-green {
    background: #10b981;
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin: 0 12px;
    padding: 5px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.bstat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px 16px;
}

.bstat-l {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.32);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.bstat-v {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.bstat-v.gold {
    color: var(--gold);
}

.bstat-v-danger {
    color: #fca5a5;
}

.bstat-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 3px;
}

.bchart {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 16px;
}

.bchart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}

.cb {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(201, 168, 76, 0.25);
    position: relative;
    transition: background 0.2s;
    min-width: 0;
}

.cb.hi {
    background: var(--gold);
}

.cb-label {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.28);
    white-space: nowrap;
}

.text-gold {
    color: var(--gold);
}

.text-gold-dark {
    color: var(--gold-d);
}

.text-right {
    text-align: right;
}

.bar-h-40 {
    height: 40%;
}

.bar-h-45 {
    height: 45%;
}

.bar-h-48 {
    height: 48%;
}

.bar-h-52 {
    height: 52%;
}

.bar-h-55 {
    height: 55%;
}

.bar-h-65 {
    height: 65%;
}

.bar-h-68 {
    height: 68%;
}

.bar-h-72 {
    height: 72%;
}

.bar-h-85 {
    height: 85%;
}

.bar-h-88 {
    height: 88%;
}

.btable-wrap {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.bt-head {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    padding: 8px 14px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.bt-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    align-items: center;
}

.bt-row:last-child {
    border-bottom: none;
}

.bb {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
}

.bb-p {
    background: rgba(52, 211, 153, 0.14);
    color: #6ee7b7;
}

.bb-y {
    background: rgba(201, 168, 76, 0.18);
    color: var(--gold-l);
}

.bb-r {
    background: rgba(239, 68, 68, 0.14);
    color: #fca5a5;
}

.trust-strip {
    background: var(--gold-ghost);
    border-bottom: 1px solid var(--gold-bd);
    padding: 28px clamp(20px, 5vw, 72px);
}

.trust-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 13px;
    color: var(--muted2);
    font-weight: 500;
    white-space: nowrap;
}

.trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-badge {
    background: #fff;
    border: 1px solid var(--gold-bd);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.section {
    padding: 100px clamp(20px, 5vw, 72px);
}

.section--pale {
    background: var(--gold-pale);
}

.section--dark {
    background: #141210;
}

.s-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.s-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 64px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-d);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.s-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.s-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
}

.money-clarity-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: stretch;
}

.money-clarity-copy {
    padding: 10px 0;
}

.money-clarity-copy .s-head {
    text-align: left;
    margin: 0;
    max-width: none;
}

.money-clarity-copy .eyebrow::after {
    display: none;
}

.money-clarity-note {
    margin-top: 24px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.money-clarity-board {
    background: linear-gradient(180deg, #fff 0%, #fcf8ef 100%);
    border: 1px solid var(--gold-bd);
    border-radius: 24px;
    box-shadow: var(--sh-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.money-clarity-board-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.money-clarity-board-head h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 8px;
}

.money-clarity-board-head p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    max-width: 420px;
}

.money-clarity-chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-d);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.money-clarity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.money-clarity-card {
    background: #fff;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: var(--sh-sm);
}

.money-clarity-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.money-clarity-card-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(201, 168, 76, 0.14);
}

.money-clarity-card h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 8px;
}

.money-clarity-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.money-clarity-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding-top: 8px;
}

.money-clarity-footer p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.money-clarity-stamp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.step-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--gold-bd);
    box-shadow: var(--sh-md);
    overflow: hidden;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-xl);
}

.step-visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sv-bg-1 {
    background: linear-gradient(145deg, #1a1812 0%, #271e08 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sv-form-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    max-width: 220px;
}

.svf-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.svf-tab {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.svf-tab.on {
    background: var(--gold);
    color: #fff;
}

.svf-tab.off {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.4);
}

.svf-row {
    display: flex;
    gap: 6px;
    margin-bottom: 7px;
}

.svf-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    padding: 8px 10px;
}

.svf-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.svf-val {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.svf-attach {
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    padding: 7px;
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
}

.svf-save {
    background: var(--gold);
    color: #fff;
    border-radius: 7px;
    padding: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sv-bg-2 {
    background: var(--gold-pale);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.sv-bg-2::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
}

.sv-record-card {
    background: #fff;
    border: 1px solid var(--gold-bd);
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    max-width: 220px;
    box-shadow: var(--sh-md);
    position: relative;
    z-index: 1;
}

.svr-paid {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    background: #ecfdf5;
    color: #065f46;
    margin-bottom: 8px;
}

.svr-amt {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.svr-client {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 12px;
}

.svr-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 6px;
}

.svr-row .k {
    color: var(--muted2);
}

.svr-row .v {
    font-weight: 600;
    color: var(--ink);
}

.svr-files {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.svr-file {
    background: var(--gold-pale);
    border: 1px solid var(--gold-bd);
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 10px;
    color: var(--gold-d);
    font-weight: 600;
}

.sv-bg-3 {
    background: var(--ink);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.svl-toolbar {
    background: rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
}

.svl-filter {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.svl-btns {
    display: flex;
    gap: 5px;
}

.svl-btn {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
}

.svl-csv {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-l);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.svl-pdf {
    background: var(--gold);
    color: #fff;
}

.svl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 11px;
}

.svl-row:last-child {
    border-bottom: none;
}

.svl-name {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.svl-amt {
    font-weight: 700;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.svl-badge {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 600;
}

.svl-badge-paid {
    background: rgba(52, 211, 153, 0.15);
    color: #6ee7b7;
}

.svl-badge-pending {
    background: rgba(201, 168, 76, 0.18);
    color: var(--gold-l);
}

.svl-badge-expense {
    background: rgba(239, 68, 68, 0.14);
    color: #fca5a5;
}

.svl-amt-muted {
    color: rgba(255, 255, 255, 0.4);
}

.step-body {
    padding: 26px 26px 28px;
}

.step-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-d);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold-bg);
    border-radius: 999px;
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 14px;
}

.step-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

.cta-block {
    background: linear-gradient(150deg, #1a1812 0%, #271e08 100%);
    padding: 80px clamp(20px, 5vw, 72px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(201, 168, 76, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-block-inner {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
}

.cta-block h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cm {
    padding: 14px 32px;
    border-radius: 8px;
    background: var(--gold);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cm:hover {
    background: var(--gold-l);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-cwa {
    padding: 14px 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.btn-cwa:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
    color: #6ee7a0;
}

.cta-checks {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-check {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-check::before {
    content: "\2713";
    color: var(--gold);
    font-weight: 700;
}

.showcase {
    padding: 100px clamp(20px, 5vw, 72px);
}

.showcase--pale {
    background: var(--gold-pale);
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.showcase-row.flip {
    direction: rtl;
}

.showcase-row.flip > * {
    direction: ltr;
}

.sh-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-d);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.sh-eyebrow::before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.sh-text h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.sh-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 16px;
}

.sh-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sh-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}

.sh-list li::before {
    content: "\2726";
    color: var(--gold);
    font-size: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.phone-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.phone-wrap {
    position: relative;
    width: 290px;
    margin: 0 auto;
}

.phone-frame {
    background: #1a1812;
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-notch {
    width: 70px;
    height: 18px;
    background: #1a1812;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 4px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: #ece5dd;
    border-radius: 30px;
    overflow: hidden;
    min-height: 340px;
}

.wa-bar {
    background: #128c7e;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}

.wa-nm {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.wa-st {
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
}

.wa-msgs {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-m {
    max-width: 80%;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.5;
}

.wa-m.in {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 2px;
    color: #111;
}

.wa-m.out {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 2px;
    color: #111;
}

.wa-t {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.35);
    text-align: right;
    margin-top: 3px;
}

.phone-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.invoice-scene {
    position: relative;
    padding: 30px 20px 20px;
}

.inv-shadow {
    position: absolute;
    top: 46px;
    left: 36px;
    right: 12px;
    bottom: 8px;
    background: var(--gold-ghost);
    border-radius: 12px;
    transform: rotate(2deg);
}

.inv-back {
    position: absolute;
    top: 38px;
    left: 28px;
    right: 4px;
    bottom: 4px;
    background: #f5f5f5;
    border-radius: 12px;
    transform: rotate(1deg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.inv-doc {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.inv-header {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.inv-logo {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.inv-logo span {
    color: var(--gold);
}

.inv-title-block {
    text-align: right;
}

.inv-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.inv-no {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.inv-body {
    padding: 18px 22px;
}

.inv-parties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.inv-party-lbl {
    font-size: 9px;
    color: var(--muted2);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.inv-party-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.inv-party-det {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

.inv-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}

.inv-table th {
    text-align: left;
    padding: 6px 8px;
    background: var(--gold-pale);
    font-size: 9px;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold-bd);
}

.inv-table td {
    padding: 7px 8px;
    font-size: 11px;
    color: var(--ink);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.inv-table .r {
    text-align: right;
}

.inv-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 0;
    border-top: 2px solid var(--gold);
}

.inv-total-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
}

.inv-total-amt {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-d);
}

.inv-footer {
    background: var(--gold-pale);
    padding: 10px 22px;
    font-size: 10px;
    color: var(--muted);
    border-top: 1px solid var(--gold-bd);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inv-paid-stamp {
    background: #065f46;
    color: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: rotate(-4deg);
    display: inline-block;
}

.dash-scene {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--gold-bd);
    box-shadow: var(--sh-xl);
    overflow: hidden;
}

.dash-topbar {
    background: var(--gold-ghost);
    border-bottom: 1px solid var(--gold-bd);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.d-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dash-title {
    font-size: 11px;
    color: var(--muted);
    margin-left: 6px;
    font-weight: 500;
}

.dash-body {
    padding: 16px;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.dash-stat {
    background: var(--gold-pale);
    border: 1px solid var(--gold-bd);
    border-radius: 10px;
    padding: 12px 14px;
}

.dash-stat-l {
    font-size: 9px;
    color: var(--muted2);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dash-stat-v {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
}

.dash-stat-v.g {
    color: var(--gold-d);
}

.dash-stat-v-danger {
    color: #991b1b;
}

.dash-chart {
    background: var(--gold-pale);
    border: 1px solid var(--gold-bd);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}

.dc-head {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--muted2);
    font-weight: 500;
    margin-bottom: 12px;
}

.dc-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60px;
    padding-bottom: 16px;
    position: relative;
}

.dc-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(201, 168, 76, 0.25);
    position: relative;
    min-width: 0;
    transition: background 0.2s;
}

.dc-bar.hi {
    background: var(--gold);
}

.dc-bar-l {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--muted2);
    white-space: nowrap;
}

.dash-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dash-filter {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.dash-xbtns {
    display: flex;
    gap: 6px;
}

.xbtn {
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.xbtn-csv {
    background: var(--gold-bg);
    color: var(--gold-d);
    border: 1px solid var(--gold-bd);
}

.xbtn-pdf {
    background: var(--ink);
    color: #fff;
}

.dx-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    font-size: 12px;
}

.dx-row:last-child {
    border-bottom: none;
}

.dx-name {
    color: var(--ink);
    font-weight: 500;
}

.dx-date {
    color: var(--muted2);
    font-size: 10px;
}

.dx-amt {
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--ink);
}

.dx-pill {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
}

.dx-amt-muted {
    color: var(--muted);
}

.dx-pill-expense {
    background: #fef2f2;
    color: #991b1b;
}

.dp-g {
    background: #ecfdf5;
    color: #065f46;
}

.dp-y {
    background: var(--gold-bg);
    color: var(--gold-d);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 820px;
    margin: 0 auto 52px;
}

.p-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 34px;
    box-shadow: var(--sh-md);
    border: 1px solid var(--gold-bd);
    position: relative;
    transition: all 0.3s;
}

.p-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-xl);
}

.p-card.featured {
    background: var(--ink);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.25);
}

.p-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    padding: 5px 18px;
    font-size: 12px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    white-space: nowrap;
}

.p-plan {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.p-card.featured .p-plan {
    color: rgba(255, 255, 255, 0.45);
}

.p-price {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 6px;
}

.p-price .amt {
    font-size: 46px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.p-card.featured .p-price .amt {
    color: #fff;
}

.p-price .per {
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
}

.p-card.featured .p-price .per {
    color: rgba(255, 255, 255, 0.4);
}

.p-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.p-card.featured .p-desc {
    color: rgba(255, 255, 255, 0.4);
}

.p-div {
    height: 1px;
    background: var(--gold-bd);
    margin-bottom: 22px;
}

.p-card.featured .p-div {
    background: rgba(255, 255, 255, 0.1);
}

.p-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px;
}

.p-items li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink);
}

.p-card.featured .p-items li {
    color: rgba(255, 255, 255, 0.8);
}

.p-items li::before {
    content: "\2713";
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-p {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-p-out {
    border: 1.5px solid var(--gold-bd);
    color: var(--ink);
    background: transparent;
}

.btn-p-out:hover {
    border-color: var(--gold);
    color: var(--gold-d);
}

.btn-p-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-p-gold:hover {
    background: var(--gold-l);
    color: var(--ink);
}

.storage-explainer {
    max-width: 820px;
    margin: 0 auto 44px;
}

.storage-explainer-head {
    text-align: center;
    margin-bottom: 24px;
}

.storage-explainer-head h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
}

.storage-explainer-head p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.storage-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
}

.st-plan {
    background: #fff;
    border: 1px solid var(--gold-bd);
    border-radius: 16px;
    padding: 28px 26px;
    position: relative;
}

.st-plan.pro {
    background: var(--ink);
    border-color: var(--gold);
}

.st-plan-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.st-plan-tag.free {
    background: var(--gold-bg);
    color: var(--gold-d);
}

.st-plan-tag.pro {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-l);
}

.st-plan h5 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.st-plan.pro h5 {
    color: #fff;
}

.st-plan ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.st-plan ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.st-plan.pro ul li {
    color: rgba(255, 255, 255, 0.6);
}

.st-plan ul li::before {
    content: "\2713";
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.st-plan.pro ul li::before {
    color: var(--gold-l);
}

.st-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 6px;
}

.st-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.st-divider-line {
    width: 2px;
    flex: 1;
    background: var(--gold-bd);
    min-height: 40px;
}

.st-upgrade-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold-d);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(90deg);
    padding: 4px 0;
}

.st-stored-bar {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gold-bd);
}

.st-stored-bar.pro {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.st-bar-label {
    font-size: 11px;
    color: var(--muted2);
    font-weight: 600;
    margin-bottom: 8px;
}

.st-plan.pro .st-bar-label {
    color: rgba(255, 255, 255, 0.35);
}

.st-bar-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.12);
    overflow: hidden;
}

.st-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-d), var(--gold));
}

.st-bar-fill-20 {
    width: 20%;
}

.st-bar-fill-100 {
    width: 100%;
}

.no-surprises {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 28px;
    border-top: 1px solid var(--gold-bd);
}

.ns {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.ns::before {
    content: "\2713";
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
}

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

.eyebrow--light {
    color: var(--gold);
}

.s-title-light {
    color: #fff;
}

.s-sub-light {
    color: rgba(255, 255, 255, 0.42);
}

.sec-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s;
}

.sec-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 168, 76, 0.25);
}

.sec-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.sec-card h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sec-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.72;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}

.test-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: var(--sh-md);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.3s;
}

.test-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-xl);
}

.test-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.test-text {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.78;
    margin-bottom: 20px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gold-bd);
}

.test-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-l), var(--gold-d));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.test-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
}

.test-role {
    font-size: 12px;
    color: var(--muted);
}

.contact-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.contact-wrap h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.contact-wrap p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.c-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    transition: all 0.2s;
}

.c-link.email {
    background: var(--gold-pale);
    color: var(--gold-d);
    border: 1px solid var(--gold-bd);
}

.c-link.email:hover {
    background: var(--gold-bg);
    border-color: var(--gold);
}

.c-link.wa {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.c-link.wa:hover {
    background: #dcfce7;
    border-color: rgba(34, 197, 94, 0.4);
}

.contact-note {
    font-size: 12px;
    color: var(--muted2);
    margin-top: 18px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--gold-bd);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    border: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 22px;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    user-select: none;
    transition: background 0.2s;
}

#faq .s-head {
    text-align: center;
    margin: 0 auto 42px;
}

.faq-q:hover,
.faq-q.open {
    background: var(--gold-pale);
    color: var(--gold-d);
}

.faq-icon {
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-q.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    transition: max-height 0.35s ease, padding 0.2s;
}

.faq-a.open {
    max-height: 300px;
    padding: 0 22px 18px;
}

.final-cta {
    background: linear-gradient(150deg, #1a1812 0%, #271e08 100%);
    padding: 110px clamp(20px, 5vw, 72px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(201, 168, 76, 0.1), transparent 70%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 15px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.footer {
    background: #100e0a;
    padding: 70px clamp(20px, 5vw, 72px) 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.f-brand {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.f-brand span {
    color: var(--gold);
}

.f-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.78;
    max-width: 260px;
}

.footer-col h4 {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold-l);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.26);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.26);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1c1a14;
    color: #f5f0e8;
    padding: 14px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    border-top: 2px solid #c9a84c;
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner a {
    color: #c9a84c;
}

.cookie-banner-accept {
    background: #c9a84c;
    color: #1c1a14;
    border: none;
    padding: 7px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .storage-explainer {
        max-width: 560px;
    }

    .storage-timeline {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .st-divider {
        flex-direction: row;
        padding: 0;
        gap: 12px;
    }

    .st-divider-line {
        width: 100%;
        max-width: 70px;
        min-height: 1px;
        height: 1px;
    }

    .st-upgrade-label {
        transform: none;
        padding: 0;
    }

    .hero-journal-left {
        left: 24px;
        top: 16%;
    }

    .hero-journal-right {
        right: 24px;
        top: 58%;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .showcase-row {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .showcase-row.flip {
        direction: ltr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .storage-explainer {
        margin-bottom: 28px;
    }

    .storage-explainer-head {
        margin-bottom: 18px;
    }

    .storage-explainer-head p {
        font-size: 13px;
        line-height: 1.65;
    }

    .st-plan {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .st-plan h5 {
        font-size: 14px;
    }

    .st-plan ul li {
        font-size: 13px;
        line-height: 1.55;
    }

    .st-divider {
        gap: 10px;
    }

    .st-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .st-upgrade-label {
        font-size: 9px;
        letter-spacing: 0.06em;
    }

    .hero-pattern-grid {
        background-size: 72px 72px;
        opacity: 0.3;
    }

    .hero-journal {
        display: none;
    }

    .money-clarity-board {
        padding: 22px 18px;
    }

    .money-clarity-board-head {
        flex-direction: column;
    }

    .money-clarity-grid {
        grid-template-columns: 1fr;
    }

    .money-clarity-footer {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .browser-body {
        grid-template-columns: 1fr;
    }

    .btable-wrap {
        grid-column: unset;
    }

    .dash-stats {
        grid-template-columns: 1fr 1fr;
    }
}
