/* ═══════════════════════════════════════════════════════════════
   Razuna Ghost Theme — screen.css
   Design: Dark brutalist, gold/navy/teal palette
   Typography: Space Grotesk (display), Inter (body), JetBrains Mono (mono)
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    /* Palette */
    --black: #15232d;
    --gold: #c9b248;
    --gold-hover: #d4c05a;
    --oil: #1c2e3a;
    --offwhite: #f0ede5;
    --ember: #d4752e;
    --tile: #c0ede7;
    --gold-dim: rgba(201, 178, 72, 0.15);
    --gold-border: rgba(201, 178, 72, 0.1);
    --gold-border-md: rgba(201, 178, 72, 0.15);
    --gold-border-lg: rgba(201, 178, 72, 0.2);
    --text-muted: rgba(240, 237, 229, 0.7);
    --text-faint: rgba(240, 237, 229, 0.5);
    --text-ghost: rgba(240, 237, 229, 0.35);
    --text-dim: rgba(240, 237, 229, 0.25);

    /* Typography */
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-mono: "JetBrains Mono", monospace;

    /* Spacing */
    --section-pad: 8rem 6rem;
    --section-pad-mobile: 5rem 1.5rem;

    /* Borders */
    --radius-card: 16px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-pill: 50px;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--offwhite);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
button {
    font: inherit;
    cursor: pointer;
}
ul,
ol {
    list-style: none;
}

.bg-oil {
    background: var(--oil) !important;
}

.bg-dark {
    background: var(--black) !important;
}

/* ─── UTILITY ─── */
.section-oil {
    background: var(--oil);
}
.section-black {
    background: var(--black);
}
.section-offwhite {
    background: var(--offwhite);
    color: var(--black);
}

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

section {
    padding: var(--section-pad);
}

/* First section on standalone pages needs extra top padding for fixed nav */
main > section:first-child:not(.hero) {
    padding-top: 12rem;
}

/* ─── NAV ─── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(21, 35, 45, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-border);
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--offwhite);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.6rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: var(--radius-pill);
    transition: background 0.2s;
}
.nav-cta:hover {
    background: var(--gold-hover);
}

.nav-cta-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    transition: background 0.2s;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta-outline:hover {
    background: rgba(201, 178, 72, 0.1);
    border-color: var(--gold-hover);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    padding: 0.25rem;
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(21, 35, 45, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}
.nav-overlay.open {
    display: flex;
}
.nav-overlay a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--offwhite);
    transition: color 0.2s;
}
.nav-overlay a:hover {
    color: var(--gold);
}
.nav-overlay-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding-top: 6rem; */
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--gold);
    max-width: 900px;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    background: var(--gold);
    color: var(--black);
    padding: 0.65rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-pill);
    transition:
        background 0.2s,
        border-color 0.2s;
    text-align: center;
}
.hero-cta:hover {
    background: var(--gold-hover);
}

.hero-cta-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.7;
}

.hero-cta-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.hero-cta-outline:hover {
    background: rgba(201, 178, 72, 0.1);
    border-color: var(--gold-hover);
}

.hero-meta {
    margin-top: 4rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(201, 178, 72, 0.5);
}
.hero-image {
    margin-top: 4rem;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--gold-border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

/* ─── PAGE HERO (dedicated pages) ─── */
.page-hero {
    padding: 10rem 6rem 5rem;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--offwhite);
    margin: 0 auto 1.5rem;
    max-width: 800px;
}
.page-hero h1 span {
    color: var(--gold);
}
.page-hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ─── LOGOS ─── */
.logos {
    padding: 4rem 6rem;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    text-align: center;
}

.logos-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(240, 237, 229, 0.4);
    margin-bottom: 2rem;
}

.logos-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s;
}
.logo-img:hover {
    opacity: 0.8;
}

/* ─── PROBLEM CARDS ─── */
.problems-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.problems-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.problem-card {
    border: 1px solid #e0ddd6;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.problem-quote {
    background: #f29f05;
    color: #000 !important;
    font-weight: 700;
    padding: 0.15em 0.5em;
    border-radius: 0.25em;
    display: inline-block;
    line-height: 1.4;
    transform: rotate(-1.5deg);
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.problem-text {
    color: var(--black);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

.solution-badge {
    background: #ffdf00;
    color: #000 !important;
    font-weight: 700;
    padding: 0.15em 0.5em;
    border-radius: 0.25em;
    display: inline-block;
    line-height: 1.4;
    transform: rotate(-1.5deg);
}

.highlight-tile {
    background-color: var(--tile);
    color: #000 !important;
    font-weight: 700;
    padding: 0.15em 0.5em;
    border-radius: 0.25em;
    display: inline-block;
    line-height: 1.4;
    transform: rotate(-1.5deg);
}

.problem-btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    transition:
        background 0.2s,
        border-color 0.2s;
}

.problem-btn-filled {
    background: var(--gold);
    color: var(--black);
}
.problem-btn-filled:hover {
    background: var(--gold-hover);
}

.problem-btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}
.problem-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.problems-cta {
    margin-bottom: 5rem;
    padding: 3rem;
    background: #d1e3ed;
}
.problems-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.problems-cta p {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.problems-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── PRODUCT TOUR ─── */
.tour h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.tour > p {
    color: var(--text-faint);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 500px;
}

.tour-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 6rem;
}
.tour-item:nth-child(even) {
    direction: rtl;
}
.tour-item:nth-child(even) > * {
    direction: ltr;
}

.tour-screenshot {
    width: 55vw;
    background: var(--oil);
    border: 1px solid var(--gold-border-md);
    border-radius: var(--radius-card);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(201, 178, 72, 0.3);
    overflow: hidden;
}
.tour-screenshot img,
.tour-screenshot video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.tour-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.tour-text p {
    color: rgba(240, 237, 229, 0.65);
    font-size: 1rem;
    line-height: 1.7;
}

/* ─── TESTIMONIAL ─── */
.testimonial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
    padding: 0;
}
.testimonial-left {
    background: var(--gold);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* border-radius: 0 24px 24px 0; */
}
.testimonial-left blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.testimonial-left cite {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-style: normal;
    color: rgba(21, 35, 45, 0.6);
}
.testimonial-right {
    background: var(--oil);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(201, 178, 72, 0.25);
    /* border-radius: 24px 0 0 24px; */
    overflow: hidden;
}
.testimonial-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── STATEMENT ─── */
.statement {
    text-align: center;
    padding: 10rem 6rem;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}
.statement h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.statement p {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--text-ghost);
}

/* ─── WALKTHROUGH / FEATURES ─── */
.wt-intro {
    /* text-align: center; */
    padding: 6rem;
}
.wt-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.wt-section {
    padding: 8rem 6rem;
    border-top: 1px solid var(--gold-border);
}

.wt-header {
    max-width: 720px;
    margin-bottom: 4rem;
}
.wt-header h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.wt-header p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 640px;
}

.wt-showcase {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.wt-showcase video {
    border: 1px solid var(--gold-border-md);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.wt-showcase-main {
    margin-bottom: 3rem;
}
.wt-showcase-main img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--gold-border);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
}

.wt-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.wt-showcase-grid a {
    color: var(--gold);
}
.wt-showcase-grid a:hover {
    color: var(--gold-hover);
    font-weight: 500;
}

.wt-detail {
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    background: rgba(21, 35, 45, 0.4);
    transition: border-color 0.2s;
}
.wt-detail:hover {
    border-color: rgba(201, 178, 72, 0.35);
}
.wt-detail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}
.wt-detail-label {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.wt-detail p {
    font-size: 0.9rem;
    color: rgba(240, 237, 229, 0.55);
    line-height: 1.6;
}

/* ─── COMPARISON TABLE ─── */
.comparison {
    margin-top: 5rem;
}
.comparison h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.comparison table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.comparison th,
.comparison td {
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(201, 178, 72, 0.12);
}
.comparison th {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}
.comparison td:first-child {
    color: var(--offwhite);
    font-weight: 500;
}
.comparison .check {
    color: var(--gold);
    font-weight: 700;
}
.comparison .cross {
    color: rgba(240, 237, 229, 0.2);
}

/* ─── AI SECTION ─── */
.ai-hero h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--offwhite);
    margin-bottom: 1rem;
}
.ai-hero h2 span {
    color: var(--gold);
}
.ai-hero > p {
    font-size: 1.2rem;
    color: rgba(240, 237, 229, 0.6);
    max-width: 600px;
    margin-bottom: 4rem;
}

.ai-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}
.ai-flow-step {
    background: var(--oil);
    border: 1px solid var(--gold-border-lg);
    padding: 1.5rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
    font-size: 1.1rem;
    border-radius: 14px;
}
.ai-flow-arrow {
    font-size: 1.5rem;
    color: rgba(201, 178, 72, 0.3);
}

.ai-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ai-cap {
    border: 1px solid var(--gold-border-md);
    padding: 2rem;
    background: rgba(28, 46, 58, 0.4);
    border-radius: var(--radius-card);
}
.ai-cap h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.ai-cap p {
    font-size: 0.85rem;
    color: rgba(240, 237, 229, 0.55);
}

.ai-trust {
    margin-top: 4rem;
    background: var(--oil);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-faint);
    line-height: 1.8;
}
.ai-trust .prompt {
    color: var(--gold);
}

/* ─── PRICING ─── */
.pricing h1,
.pricing h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}
.pricing > p {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(201, 178, 72, 0.5);
    margin-bottom: 4rem;
}

.price-card-free {
    display: flex;
    align-items: center;
    gap: 3rem;
    border: 1px solid var(--gold-border-lg);
    padding: 1.5rem 3rem !important;
    background: rgba(21, 35, 45, 0.6);
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}
.price-card-free .price-card-free-info {
    flex-shrink: 0;
}
.price-card-free .price-card-free-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 0.25rem;
}
.price-card-free .price-card-free-info .price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.15rem;
}
.price-card-free .price-card-free-info .price-desc {
    font-size: 0.85rem;
    color: rgba(240, 237, 229, 0.4);
    margin-bottom: 0rem !important;
}
.price-card.price-card-free ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 0.5rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    text-align: center;
}
.price-card.price-card-free ul li {
    font-size: 0.9rem;
    color: rgba(240, 237, 229, 0.65);
    border-bottom: none;
    padding: 0;
}
.price-card-free ul li::before {
    content: "→ ";
    color: var(--gold);
    font-weight: 600;
}
.price-card-free .price-cta {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.85rem 2.5rem;
}
.price-card-free-small {
    font-size: 0.65rem;
    color: rgba(240, 237, 229, 0.65);
    margin-top: -0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.price-card {
    border: 1px solid var(--gold-border-lg);
    padding: 3rem 2rem;
    position: relative;
    background: rgba(21, 35, 45, 0.6);
    border-radius: var(--radius-lg);
}
.price-card.featured {
    border-color: var(--gold);
    background: rgba(201, 178, 72, 0.05);
}
.price-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -0.75rem;
    left: 2rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    letter-spacing: 0.1em;
    border-radius: var(--radius-pill);
}

.price-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 0.5rem;
}
.price-card .price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.price-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(240, 237, 229, 0.4);
}
.price-card .price-desc {
    font-size: 0.85rem;
    color: rgba(240, 237, 229, 0.4);
    margin-bottom: 2rem;
}
.price-card ul {
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}
.price-card ul li {
    font-size: 0.9rem;
    color: rgba(240, 237, 229, 0.65);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 178, 72, 0.06);
}
.price-card ul li::before {
    content: "→ ";
    color: var(--gold);
    font-weight: 600;
}

.price-cta {
    display: block;
    text-align: center;
    padding: 0.85rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--gold);
    border-radius: var(--radius-pill);
    color: var(--gold);
    transition: all 0.2s;
}
.price-cta:hover,
.price-card.featured .price-cta {
    background: var(--gold);
    color: var(--black);
}

/* ─── PLANS COMPARISON TABLE ─── */
.plans-compare {
    margin-top: 5rem;
    padding: 0 6rem 8rem;
}
.plans-compare h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 2rem;
}
.plans-compare table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.plans-compare th {
    text-align: left;
    padding: 0.85rem 1rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--gold);
    color: var(--gold);
}
.plans-compare th:first-child {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(240, 237, 229, 0.4);
    font-weight: 500;
}
.plans-compare td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--gold-border);
    color: rgba(240, 237, 229, 0.6);
}
.plans-compare td:first-child {
    font-weight: 500;
    color: var(--offwhite);
}
.plans-compare .group-row td {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    padding-top: 3rem;
    border-bottom: 1px solid var(--gold-border-lg);
    font-weight: 900;
}
.plans-compare .cmark {
    font-weight: 700;
    color: var(--gold);
}
.plans-compare .xmark {
    color: rgba(240, 237, 229, 0.2);
}

/* ─── FAQ ─── */
.faq h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.faq > p {
    color: var(--text-faint);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--gold-border-md);
}

.faq-heading {
    margin: 0;
    font: inherit;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--offwhite);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
}
.faq-q::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.open .faq-q::after {
    content: "−";
}

.faq-a {
    display: none;
    padding-bottom: 1.5rem;
    font-size: 1rem;
    color: rgba(240, 237, 229, 0.6);
    line-height: 1.7;
    max-width: 620px;
}
.faq-item.open .faq-a {
    display: block;
}

/* ─── BLOG CARDS ─── */
.blog h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

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

.blog-card {
    border: 1px solid rgba(201, 178, 72, 0.12);
    background: rgba(28, 46, 58, 0.3);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.3s;
}
.blog-card:hover {
    border-color: var(--gold);
}

.blog-card-img {
    background: var(--oil);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(201, 178, 72, 0.2);
    border-bottom: 1px solid var(--gold-border);
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--text-faint);
    line-height: 1.6;
}

/* ─── FINAL CTA ─── */
.final-cta {
    text-align: center;
    padding: 6rem 6rem 0;
    background: var(--oil);
    border-radius: var(--radius-xl);
    margin: 5rem 3rem 4rem;
    overflow: hidden;
}
.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}
.final-cta h2 span {
    color: var(--gold);
}
.final-cta p {
    font-size: 1.1rem;
    color: var(--text-faint);
    margin-bottom: 3rem;
}
/* .final-cta a {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 1.1rem 3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.final-cta a:hover { background: var(--gold-hover); } */

.final-cta-image {
    margin-top: 4rem;
    margin-left: -6rem;
    margin-right: -6rem;
}
.final-cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── FOOTER ─── */
.site-footer {
    padding: 4rem 6rem;
    border-top: 1px solid var(--gold-border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 3rem;
}

.site-footer h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.site-footer ul li {
    margin-bottom: 0.6rem;
}
.site-footer ul a {
    color: var(--text-faint);
    font-size: 0.85rem;
    transition: color 0.2s;
}
.site-footer ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 178, 72, 0.08);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.8;
}
.footer-bottom a {
    color: var(--gold);
}
.footer-bottom a:hover {
    text-decoration: underline;
}

/* ─── GHOST POST / PAGE CONTENT ─── */
.gh-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}
.gh-content h1,
.gh-content h2,
.gh-content h3,
.gh-content h4,
.gh-content h5,
.gh-content h6 {
    font-family: var(--font-display);
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin: 2.5rem 0 1rem;
}
.gh-content h2 {
    font-size: 2rem;
}
.gh-content h3 {
    font-size: 1.5rem;
}
.gh-content p {
    margin-bottom: 1.5rem;
}
.gh-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.gh-content a:hover {
    color: var(--gold-hover);
}
.gh-content img {
    border-radius: var(--radius-card);
    margin: 2rem 0;
}
.gh-content blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-faint);
}
.gh-content code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background: rgba(201, 178, 72, 0.1);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}
.gh-content pre {
    background: var(--oil);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}
.gh-content pre code {
    background: none;
    padding: 0;
}
.gh-content ul,
.gh-content ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.gh-content ol {
    list-style: decimal;
}
.gh-content li {
    margin-bottom: 0.5rem;
}

.gh-content table {
    border-spacing: 0;
}

.gh-content table tr,
.gh-content table th,
.gh-content table td {
    border: 1px solid var(--gold-border);
    border-collapse: collapse;
    font-size: 0.95rem;
    padding: 0.65rem;
    line-height: initial;
    text-align: left;
}

/* Ghost card width classes */
.kg-width-wide {
    max-width: min(1040px, 96vw);
    margin-left: auto;
    margin-right: auto;
}
.kg-width-full {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.kg-width-wide img,
.kg-width-full img {
    width: 100%;
}

/* ─── BLOG INDEX ─── */
.blog-listing {
    padding-top: 10rem;
}
.blog-listing-header {
    padding: 0 6rem 4rem;
}
.blog-listing-sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.blog-listing-header h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}
.blog-listing-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0;
}

.post-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 6rem 6rem;
}

.post-card {
    border: 1px solid rgba(201, 178, 72, 0.12);
    background: rgba(28, 46, 58, 0.3);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.3s;
}
.post-card:hover {
    border-color: var(--gold);
}

.post-card-image {
    height: 200px;
    background: var(--oil);
    overflow: hidden;
}
.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-content {
    padding: 1.5rem;
}
.post-card-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}
.post-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.post-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-faint);
    line-height: 1.6;
}
.post-card-meta {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-ghost);
}
.post-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 6rem 6rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}
.blog-pagination-link {
    color: var(--gold);
    transition: color 0.2s;
}
.blog-pagination-link:hover {
    color: var(--gold-hover);
}
.blog-pagination-info {
    color: var(--text-ghost);
}
.blog-empty {
    padding: 4rem 6rem;
    text-align: center;
    color: var(--text-ghost);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* ─── SINGLE POST ─── */
.post-full {
    padding-bottom: 6rem;
}
.post-full .gh-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}
.post-header {
    padding: 10rem 6rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}
.post-header .post-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}
.post-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.post-meta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-ghost);
}
.post-feature-image {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 6rem;
}
.post-feature-image img {
    border-radius: var(--radius-lg);
    width: 100%;
}
.post-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 6rem 6rem;
}

/* ─── POST FOOTER / AUTHOR ─── */
.post-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    /* border-top: 1px solid rgba(201, 178, 72, 0.1); */
    padding-top: 3rem;
}
.author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.author-card h4 {
    font-family: var(--font-display);
    color: var(--offwhite);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.author-card p {
    font-size: 0.85rem;
    color: var(--text-faint);
    line-height: 1.5;
}

/* ─── RELATED POSTS ─── */
.related-posts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    border-top: 1px solid rgba(201, 178, 72, 0.1);
}
.related-posts-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--offwhite);
    margin-bottom: 2rem;
    text-align: center;
}

/* ─── BLOG TAG NAV ─── */
.blog-tag-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 6rem 2rem;
}
.blog-tag-nav a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    border: 1px solid rgba(201, 178, 72, 0.15);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    transition: all 0.2s;
    text-decoration: none;
}
.blog-tag-nav a:hover,
.blog-tag-nav a.active {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 178, 72, 0.08);
}
.blog-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 178, 72, 0.08);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.blog-search-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}
.blog-search-btn:hover {
    background: rgba(201, 178, 72, 0.18);
    box-shadow: 0 0 12px rgba(201, 178, 72, 0.15);
}

/* ─── SCROLL REVEAL ─── */

/* ─── APPS & BROWSER GRID ─── */
.apps-section {
    padding: var(--section-pad);
    text-align: center;
}
.apps-section:nth-child(even) {
    background: var(--oil);
}
.apps-section-inner {
    max-width: 900px;
    margin: 0 auto;
}
.apps-section-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.apps-section-inner > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.apps-version {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-faint);
}
.apps-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.apps-note {
    font-size: 0.75rem;
    color: var(--text-faint);
}
.apps-hero-img {
    margin-top: 3rem;
}
.apps-hero-img img {
    width: 100%;
    max-width: 900px;
}
.browser-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.browser-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 120px;
}
.browser-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
}
.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 1rem;
}
.text-link:hover {
    color: var(--offwhite);
}

/* ─── PAGE HERO IMAGE ─── */
.page-hero-image {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}
.page-hero-image img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

/* ─── TEXT SECTION ─── */
.text-section-inner {
    max-width: 800px;
    margin: 0 auto;
}
.text-section-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.text-section-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}
.text-section-body p {
    margin-bottom: 1.5rem;
}
.text-section-body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.text-section-body a:hover {
    color: var(--offwhite);
}
.text-section-body strong {
    color: var(--offwhite);
}

/* ─── FEATURE ROW (image + text side-by-side) ─── */
.feature-row {
    padding: var(--section-pad);
}
.feature-row.bg-oil {
    background: var(--oil);
}
.feature-row.bg-dark {
    background: var(--black);
}
.feature-row-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-row-inner.img-left .feature-row-media {
    order: -1;
}
.feature-row-inner.img-right .feature-row-media {
    order: 1;
}
.feature-row-media img {
    width: 100%;
    border-radius: var(--radius-card);
}
.feature-row-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.feature-row-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}
.feature-row-text p {
    margin-bottom: 1rem;
}
.feature-row-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.feature-row-text a:hover {
    color: var(--offwhite);
}
.feature-badge {
    display: inline-block;
    background: var(--ember);
    color: var(--offwhite);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    vertical-align: middle;
    margin-left: 0.5rem;
}
.btn-sm {
    font-size: 0.9rem !important;
    padding: 0.5rem 1.5rem !important;
    margin-top: 1rem !important;
}

/* ─── FEATURE GRID (2-col cards) ─── */
.feature-grid-section {
    padding: var(--section-pad);
}
.feature-grid-section.bg-oil {
    background: var(--oil);
}
.feature-grid-section.bg-dark {
    background: var(--black);
}
.feature-grid-inner {
    max-width: 1500px;
    margin: 0 auto;
}
.feature-grid-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.feature-grid-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.feature-card {
    background: rgba(28, 46, 58, 0.4);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-card);
    padding: 2rem;
    transition: border-color 0.3s;
}
.feature-card:hover {
    border-color: var(--gold);
}
.feature-card picture {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-card);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gold-border);
    background: rgba(28, 46, 58, 0.55);
}
.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── SIGNUP CTA ─── */
.signup-cta {
    padding: var(--section-pad);
    text-align: center;
}
.signup-cta.bg-oil {
    background: var(--oil);
}
.signup-cta.bg-dark {
    background: var(--black);
}
.signup-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.signup-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.signup-cta-inner p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.signup-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-gold {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.9rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
    background: transparent;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

/* ─── CHECKLIST SECTION ─── */
.checklist-section {
    padding: var(--section-pad);
    background: var(--oil);
}
.checklist-inner {
    max-width: 900px;
    margin: 0 auto;
}
.checklist-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.checklist-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--offwhite);
}
.checklist-item::before {
    content: "✓";
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}
.checklist-danger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--offwhite);
}
.checklist-danger::before {
    content: "⚠";
    color: var(--ember);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── COMPARE TABLE ─── */
.compare-table-section {
    padding: var(--section-pad);
    background: var(--black);
}
.compare-table-inner {
    max-width: 900px;
    margin: 0 auto;
}
.compare-table-inner > h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.compare-table-inner > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.compare-table-wrap {
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.compare-table th {
    text-align: center;
    padding: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    border-bottom: 2px solid var(--gold-border);
}
.compare-table th:first-child {
    text-align: left;
}
.compare-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gold-border);
    color: var(--text-muted);
    text-align: center;
}
.compare-table td:first-child {
    text-align: left;
    color: var(--offwhite);
    font-weight: 500;
}
.compare-table tr:hover td {
    background: rgba(28, 46, 58, 0.4);
}
.compare-table .compare-cat td {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    padding-top: 2rem;
    border-bottom: 2px solid var(--gold-border-lg);
    font-weight: 600;
    text-align: left;
}
.compare-table .cmark {
    color: var(--gold);
    font-weight: 700;
}
.compare-table .xmark {
    color: rgba(240, 237, 229, 0.2);
}

/* ─── HIPAA DETAILS ─── */
.hipaa-details {
    padding: var(--section-pad);
    background: var(--oil);
}
.hipaa-details-inner {
    max-width: 900px;
    margin: 0 auto;
}
.hipaa-details-inner > h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.hipaa-cat {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* ─── SCENARIO CARDS ─── */
.scenario-section {
    padding: var(--section-pad);
    background: var(--black);
}
.scenario-section-inner {
    max-width: 1500px;
    margin: 0 auto;
}
.scenario-section-inner > h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.scenario-card {
    background: var(--oil);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.scenario-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.scenario-card .scenario-role {
    font-size: 0.85rem;
    color: var(--text-faint);
    margin-bottom: 1rem;
}
.scenario-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.scenario-card strong {
    color: var(--offwhite);
}

/* ─── INDUSTRY CARDS ─── */
.industry-section {
    padding: var(--section-pad);
    background: var(--oil);
}
.industry-section-inner {
    max-width: 1500px;
    margin: 0 auto;
}
.industry-section-inner > h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.industry-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.industry-card {
    background: var(--oil);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    transition:
        transform 0.2s,
        background 0.2s;
    border: var(--gold-border) solid 1px;
}
.industry-card:hover {
    border-color: var(--gold-hover) !important;
}
.industry-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--offwhite);
    margin-bottom: 0.75rem;
}
.industry-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ─── TESTIMONIAL CARDS ─── */
.testimonial-section {
    padding: var(--section-pad);
    background: var(--black);
}
.testimonial-section-inner {
    max-width: 1500px;
    margin: 0 auto;
}
.testimonial-section-inner > h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.testimonial-card {
    background: var(--oil);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.testimonial-header img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.testimonial-name {
    font-weight: 700;
    color: var(--offwhite);
    font-size: 0.95rem;
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-faint);
}
.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ─── COMPARE COLUMNS (Bynder page) ─── */
.compare-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
.compare-col h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.compare-col .checklist-item {
    margin-bottom: 0.5rem;
}
.text-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ─── DEMO EMBED ─── */
.demo-embed {
    padding: var(--section-pad);
}
.demo-embed-inner {
    max-width: 900px;
    margin: 0 auto;
    min-height: 600px;
}

/* ─── SCROLL REVEAL ─── */
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background 0.2s;
    /* margin-top: 2rem; */
}
.btn-gold:hover {
    background: var(--gold-hover);
}

/* ─── PAGE HERO INNER (centered with CTA) ─── */
.page-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.page-hero-inner .btn-gold {
    margin-top: 2rem;
}

/* ─── COMPARISON PAGE ─── */
.compare-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 6rem 6rem;
}
.compare-hero-img {
    margin-bottom: 4rem;
}
.compare-hero-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.compare-page .gh-content {
    font-size: 1.1rem;
    line-height: 1.7;
}
.compare-page .gh-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--offwhite);
    margin: 4rem 0 1.5rem;
}
.compare-page .gh-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    margin: 3rem 0 1rem;
}
.compare-page .gh-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.compare-page .gh-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.compare-page .gh-content a:hover {
    color: var(--offwhite);
}
.compare-page .gh-content strong {
    color: var(--offwhite);
}
.compare-page .gh-content img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
    margin: 2rem 0;
}
.compare-page .gh-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--oil);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    font-style: italic;
    color: var(--text-muted);
}
.compare-page .gh-content ul,
.compare-page .gh-content ol {
    padding-left: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.compare-page .gh-content li {
    margin-bottom: 0.5rem;
}
.compare-page .gh-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}
.compare-page .gh-content th {
    text-align: left;
    padding: 1rem;
    background: var(--oil);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    border-bottom: 2px solid var(--gold-border);
}
.compare-page .gh-content td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--gold-border);
    color: var(--text-muted);
}
.compare-page .gh-content tr:hover td {
    background: rgba(28, 46, 58, 0.5);
}

/* ─── ALTERNATIVE LINKS ─── */
.alt-links {
    padding: var(--section-pad);
    background: var(--oil);
    text-align: center;
}
.alt-links h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 2rem;
}
.alt-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.alt-links-grid a {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: rgba(201, 178, 72, 0.1);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
}
.alt-links-grid a:hover {
    background: var(--gold);
    color: var(--black);
}

/* ─── GUIDE / USE CASE PAGE ─── */
.guide-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}
.guide-hero-img {
    margin-bottom: 4rem;
}
.guide-hero-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.guide-page .gh-content {
    font-size: 1.1rem;
    line-height: 1.7;
}
.guide-page .gh-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--offwhite);
    margin: 4rem 0 1.5rem;
}
.guide-page .gh-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    margin: 3rem 0 1rem;
}
.guide-page .gh-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.guide-page .gh-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.guide-page .gh-content a:hover {
    color: var(--offwhite);
}
.guide-page .gh-content strong {
    color: var(--offwhite);
}
.guide-page .gh-content img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
    margin: 2rem 0;
}
.guide-page .gh-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--oil);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    font-style: italic;
    color: var(--text-muted);
}
.guide-page .gh-content ul,
.guide-page .gh-content ol {
    padding-left: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.guide-page .gh-content li {
    margin-bottom: 0.5rem;
}

/* Guide TOC */
.guide-toc {
    background: var(--oil);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-card);
    padding: 2rem;
    margin: 3rem 0;
}
.guide-toc h3 {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.guide-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}
.guide-toc li {
    margin-bottom: 0;
}
.guide-toc a {
    color: var(--offwhite) !important;
    text-decoration: none;
    font-size: 0.95rem;
}
.guide-toc a:hover {
    color: var(--gold) !important;
}

/* Guide quick-take sidebar */
.guide-quick-take {
    background: var(--oil);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-card);
    padding: 2rem;
    margin: 3rem 0;
}
.guide-quick-take h3 {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.guide-quick-take ul {
    list-style: none;
    padding: 0;
}
.guide-quick-take li {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}
.guide-quick-take li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Guide tables */
.guide-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
}
.guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.guide-table th {
    background: var(--oil);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gold-border);
    white-space: nowrap;
}
.guide-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(201, 178, 72, 0.1);
    vertical-align: top;
    color: var(--text-muted);
}
.guide-table tr:last-child td {
    border-bottom: none;
}
.guide-table .highlight-col {
    background: rgba(201, 178, 72, 0.08);
    color: var(--offwhite);
}

/* Guide callout */
.guide-callout {
    background: var(--oil);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-card);
    padding: 2rem;
    margin: 2rem 0;
}
.guide-callout h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ─── PRODUCT PAGE ─── */
.product-page {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 6rem 6rem;
}
.product-hero-img {
    margin-bottom: 4rem;
}
.product-hero-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.product-page .gh-content {
    font-size: 1.1rem;
    line-height: 1.7;
}
.product-page .gh-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--offwhite);
    margin: 5rem 0 1.5rem;
    text-align: center;
}
.product-page .gh-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin: 3rem 0 1rem;
}
.product-page .gh-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 720px;
}
.product-page .gh-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.product-page .gh-content a:hover {
    color: var(--offwhite);
}
.product-page .gh-content strong {
    color: var(--offwhite);
}
.product-page .gh-content img {
    width: 100%;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
    margin: 2rem 0;
}

/* ─── LEGAL PAGE ─── */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 6rem 6rem;
}
.legal-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gold-border);
}
.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--offwhite);
    margin-bottom: 0.5rem;
}
.legal-updated {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-faint);
}
.legal-page .gh-content {
    font-size: 1rem;
    line-height: 1.8;
}
.legal-page .gh-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--offwhite);
    margin: 3rem 0 1rem;
}
.legal-page .gh-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--offwhite);
    margin: 2rem 0 0.8rem;
}
.legal-page .gh-content p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}
.legal-page .gh-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-page .gh-content a:hover {
    color: var(--offwhite);
}
.legal-page .gh-content ul,
.legal-page .gh-content ol {
    padding-left: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}
.legal-page .gh-content li {
    margin-bottom: 0.4rem;
}

/* ─── ABOUT PAGE ─── */
.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 6rem 6rem;
}
.about-hero-img {
    margin-bottom: 4rem;
}
.about-hero-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    border: 1px solid var(--gold-border);
}
.about-page .gh-content {
    font-size: 1.15rem;
    line-height: 1.8;
}
.about-page .gh-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--offwhite);
    margin: 4rem 0 1.5rem;
}
.about-page .gh-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.about-page .gh-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.about-page .gh-content a:hover {
    color: var(--offwhite);
}
.about-page .gh-content strong {
    color: var(--offwhite);
}

/* ─── SCROLL REVEAL ─── */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-card-free {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        text-align: center;
    }
    .price-card-free ul {
        justify-content: center;
    }
    .wt-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-nav {
        padding: 1rem 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: block;
    }

    section {
        padding: var(--section-pad-mobile);
    }
    .logos {
        padding: 3rem 1.5rem;
    }
    .logos-row {
        gap: 2rem;
    }

    .tour-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tour-item:nth-child(even) {
        direction: ltr;
    }

    .testimonial {
        grid-template-columns: 1fr;
    }
    .testimonial-left {
        border-radius: 0 0 16px 16px;
    }
    .testimonial-right {
        min-height: 200px;
        border-radius: 16px 16px 0 0;
        order: -1;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }
    .problems-cta {
        padding: 2rem 1.5rem;
    }
    .problems-cta-buttons {
        flex-direction: column;
    }

    .wt-showcase-grid,
    .pricing-grid,
    .blog-grid,
    .post-feed {
        grid-template-columns: 1fr;
    }

    .wt-intro {
        padding: 6rem 1.5rem 4rem;
    }
    .wt-section {
        padding: 5rem 1.5rem;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .final-cta {
        margin: 2rem 1rem 1rem;
        padding: 6rem 1.5rem 0;
        border-radius: var(--radius-lg);
    }
    .final-cta-image {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
    .statement {
        padding: 6rem 1.5rem;
    }

    .plans-compare {
        overflow-x: auto;
        padding: 0 1.5rem 5rem;
    }
    .plans-compare table {
        min-width: 650px;
    }

    .post-header {
        padding: 8rem 1.5rem 3rem;
    }
    .post-feature-image {
        padding: 0 1.5rem;
    }
    .post-full .gh-content {
        padding: 0 1.5rem 4rem;
    }
    .post-body {
        padding: 0 1.5rem 4rem;
    }
    .post-footer {
        padding: 0 1.5rem 2rem;
    }
    .post-feed {
        padding: 0 1.5rem 4rem;
    }
    .blog-listing {
        padding-top: 7rem;
    }
    .blog-listing-header {
        padding: 0 1.5rem 3rem;
    }
    .blog-listing-sub-row {
        gap: 1rem;
    }
    .blog-tag-nav {
        padding: 0 1.5rem 2rem;
    }
    .blog-pagination {
        padding: 0 1.5rem 4rem;
    }

    .compare-page,
    .guide-page,
    .about-page {
        padding: 0 1.5rem 4rem;
    }
    .guide-toc ul {
        grid-template-columns: 1fr;
    }
    .guide-table {
        font-size: 0.8rem;
    }
    .product-page {
        padding: 0 1.5rem 4rem;
    }
    .legal-page {
        padding: 10rem 1.5rem 4rem;
    }
    .alt-links {
        padding: var(--section-pad-mobile);
    }
    .alt-links-grid {
        gap: 0.5rem;
    }
    .alt-links-grid a {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    .page-hero {
        padding: 8rem 1.5rem 4rem;
    }
    .page-hero-image {
        padding: 0 1.5rem;
    }
    .feature-row {
        padding: var(--section-pad-mobile);
    }
    .feature-row-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-row-inner.img-left .feature-row-media,
    .feature-row-inner.img-right .feature-row-media {
        order: -1;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid-section {
        padding: var(--section-pad-mobile);
    }
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    .checklist-section {
        padding: var(--section-pad-mobile);
    }
    .compare-table-section {
        padding: var(--section-pad-mobile);
    }
    .compare-table {
        min-width: 600px;
    }
    .signup-cta {
        padding: var(--section-pad-mobile);
    }
    .signup-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .apps-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .browser-grid {
        gap: 1.5rem;
    }
    .scenario-grid {
        grid-template-columns: 1fr;
    }
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .hipaa-details {
        padding: var(--section-pad-mobile);
    }
    .apps-section {
        padding: var(--section-pad-mobile);
    }
    .compare-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
