/* ── CUSTOM PROPERTIES ── */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-hero: #f0f4ff;
    --text-primary: #1a1f36;
    --text-secondary: #4a5568;
    --text-muted: #8492a6;
    --brand-blue: #6ea8fe;
    --brand-blue-hover: #5a94ea;
    --brand-blue-light: rgba(110, 168, 254, 0.08);
    --brand-blue-border: rgba(110, 168, 254, 0.2);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
}

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

/* ── BASE ── */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 48px;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: none;
    padding-bottom: 0;
}

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: var(--bg-primary);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

/* ── LOGO ── */
.logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    gap: 0;
}

.logo:hover {
    text-decoration: none;
}

/* PNG wordmark in the navbar (from cdn.monteflow.cloud) */
.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.logo-main {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-tld {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--brand-blue);
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--brand-blue-hover);
    background: transparent;
    border: 1.5px solid var(--brand-blue-border);
    border-radius: 20px;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-globe {
    flex-shrink: 0;
    opacity: 0.8;
}

.lang-toggle:hover {
    background: var(--brand-blue-light);
    border-color: var(--brand-blue);
}

/* ── LANGUAGE SWITCHER DROPDOWN ── */
.lang-switcher {
    position: relative;
}

.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid rgba(110,168,254,0.25);
    border-radius: 10px;
    list-style: none;
    margin: 0;
    padding: 4px;
    min-width: 110px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    z-index: 200;
}

.lang-menu.open {
    display: block;
}

.lang-menu li button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 14px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #4a5568;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-menu li button:hover {
    background: var(--brand-blue-light);
    color: var(--brand-blue);
}

.lang-menu li button.active {
    color: var(--brand-blue);
    font-weight: 600;
}

/* ── NAV RIGHT GROUP (lang + CTA buttons) ── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-nav {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    padding: 7px 18px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-nav--primary {
    color: #ffffff;
    background: var(--brand-blue-hover);
    border: 1.5px solid var(--brand-blue-hover);
}

.btn-nav--primary:hover {
    background: #4a84d6;
    border-color: #4a84d6;
    text-decoration: none;
}

.btn-nav--secondary {
    color: var(--brand-blue-hover);
    background: transparent;
    border: 1.5px solid var(--brand-blue-border);
}

.btn-nav--secondary:hover {
    background: var(--brand-blue-light);
    border-color: var(--brand-blue);
    text-decoration: none;
}

/* ── HERO SECTION ── */
.hero {
    background-color: var(--bg-hero);
    background-image:
        linear-gradient(to right, var(--bg-hero) 34%, transparent 62%),
        url('images/hero.jpg');
    background-repeat: no-repeat;
    background-position: center, right bottom;
    background-size: 100%, auto 100%;
    padding: 100px 24px 90px;
    overflow: hidden;
}

.hero-text {
    max-width: 46%;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-blue-hover);
    background: var(--brand-blue-light);
    border: 1px solid var(--brand-blue-border);
    border-radius: 20px;
    padding: 6px 18px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 0 36px;
    line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    background: var(--brand-blue-hover);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 36px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #4a84d6;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

/* ── FEATURES SECTION ── */
.features {
    background: var(--bg-secondary);
    padding: 96px 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}

.feature-img {
    margin: -36px -32px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    background: var(--bg-secondary);
}

.feature-img img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: 0;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-card li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--brand-blue);
    border-radius: 50%;
    opacity: 0.5;
}

/* ── HOW IT WORKS SECTION ── */
.how-it-works {
    background: var(--bg-primary);
    padding: 96px 24px;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 12px;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--brand-blue-hover);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.step h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
}

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

.step-connector {
    flex: 0 0 auto;
    width: 48px;
    height: 2px;
    background: var(--border-color);
    margin-top: 22px;
    border-radius: 1px;
}

/* ── NEWSLETTER SIGNUP SECTION ── */
.signup {
    background: var(--bg-hero);
    padding: 96px 24px;
    text-align: center;
}

.signup .container {
    max-width: 600px;
}

.signup-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.newsletter-form {
    margin-bottom: 16px;
}

.ml-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
}

.ml-form input[type="email"] {
    flex: 1;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease;
}

.ml-form input[type="email"]:focus {
    border-color: var(--brand-blue);
}

.ml-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.ml-form button[type="submit"] {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background: var(--brand-blue-hover);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.ml-form button[type="submit"]:hover {
    background: #4a84d6;
}

.ml-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d8a4e;
    background: #edfaf3;
    border: 1px solid #a8e6bf;
    border-radius: var(--radius-sm);
    padding: 16px 28px;
    max-width: 460px;
    margin: 0 auto;
}

.ml-success-icon {
    font-size: 1.3rem;
}

.ml-error {
    font-size: 0.9rem;
    color: #c0392b;
    margin-top: 10px;
}

.signup-privacy {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ── FOOTER ── */
footer {
    width: 100%;
    background: #f1f3f8;
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
}

.footer-logo .logo-main {
    font-size: 1.2rem;
}

.footer-logo .logo-tld {
    font-size: 1rem;
}

.footer-logo .logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--brand-blue-hover);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #4a84d6;
    text-decoration: underline;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.footer-company-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.footer-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 20px;
}

.footer-detail {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.footer-detail span {
    color: #b0b8c8;
    margin-right: 4px;
}

.footer-copy {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    color: #b0b8c8;
    letter-spacing: 0.03em;
}

/* ── LEGAL PAGES (shared by privacy + tos) ── */
header {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 32px;
}

header a {
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}

header a:hover {
    text-decoration: none;
}

main {
    flex: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 32px 72px;
}

.page-title {
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.page-meta {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 52px;
}

.section {
    margin-bottom: 52px;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--brand-blue-hover);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--brand-blue-border);
}

h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 12px;
}

p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

ol, ul {
    padding-left: 1.4em;
    margin-bottom: 12px;
}

li {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

li strong, p strong {
    color: var(--text-primary);
    font-weight: 600;
}

a {
    color: var(--brand-blue-hover);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.address-block {
    border-left: 2px solid var(--brand-blue-border);
    padding: 12px 20px;
    margin: 16px 0;
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.info-box {
    background: var(--brand-blue-light);
    border: 1px solid var(--brand-blue-border);
    border-radius: 4px;
    padding: 16px 20px;
    margin: 12px 0;
}

.info-box ul {
    margin-bottom: 0;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 52px 0;
}

/* ══════════════════════════════════════════════════════════════════
   MARKETING SUBPAGES (features, pricing) — navbar links, module cards,
   pricing table, callouts. Scoped to not disturb the legal pages which
   share this stylesheet.
   ══════════════════════════════════════════════════════════════════ */

/* ── NAVBAR LINKS ── */
.nav-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links li {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
    color: var(--brand-blue-hover);
    text-decoration: none;
}

.nav-link--active {
    color: var(--brand-blue-hover);
    font-weight: 700;
    border-bottom-color: var(--brand-blue);
}

/* ── FEATURES TEASER CTA (landing) ── */
.features-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── PAGE HEADER (features, pricing) ── */
.page-header {
    background: var(--bg-primary);
    padding: 72px 24px 40px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 auto 20px;
    max-width: 720px;
    text-transform: none;
    border-bottom: none;
    padding-bottom: 0;
}

.page-header .page-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ── MODULE CARDS (features page) ── */
.module-section {
    background: var(--bg-secondary);
    padding: 72px 24px 96px;
}

.module-section .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.module-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.module-card:hover {
    box-shadow: var(--shadow-md);
}

.module-card--reverse .module-card__media {
    order: 2;
}

.module-card__media {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-hero);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.module-card__media--placeholder {
    position: relative;
}

.module-card__media--placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--brand-blue-light) 0%, rgba(110, 168, 254, 0.02) 100%),
        repeating-linear-gradient(
            45deg,
            transparent 0 18px,
            rgba(110, 168, 254, 0.08) 18px 19px
        );
}

.module-card__media--placeholder::after {
    content: '📷';
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    opacity: 0.35;
}

.module-card__body h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.3px;
    text-transform: none;
    margin: 0 0 16px;
    padding: 0;
    border-bottom: none;
}

.module-card__body p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.module-card__caption {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: 14px !important;
}

/* ── PERSONA TABS (features page) ── */
.persona-section {
    background: var(--bg-secondary);
    padding: 56px 24px 88px;
}

.persona-section .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.persona-locale-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: -8px auto 0;
    max-width: 640px;
}

.persona-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 6px;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
    box-shadow: var(--shadow-sm);
}

.persona-tab {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.persona-tab:hover {
    color: var(--text-primary);
}

.persona-tab[aria-selected="true"] {
    background: var(--brand-blue);
    color: #ffffff;
}

.persona-tab:focus-visible {
    outline: 2px solid var(--brand-blue-hover);
    outline-offset: 2px;
}

.persona-panel {
    display: none;
}

.persona-panel.is-active {
    display: block;
}

.persona-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.persona-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.persona-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.persona-card__media {
    aspect-ratio: 16 / 10;
    background: var(--bg-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.persona-card__media--placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--brand-blue-light) 0%, rgba(110, 168, 254, 0.02) 100%),
        repeating-linear-gradient(
            45deg,
            transparent 0 18px,
            rgba(110, 168, 254, 0.08) 18px 19px
        );
}

.persona-card__media--placeholder::after {
    content: '📷';
    position: relative;
    z-index: 1;
    font-size: 2rem;
    opacity: 0.35;
}

.persona-card__body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.persona-card__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.35;
    letter-spacing: -0.2px;
    margin: 0;
}

.persona-card__body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── PL-ONLY CALLOUT ── */
.pl-callout-section {
    background: var(--bg-primary);
    padding: 72px 24px;
}

.pl-callout {
    background: var(--brand-blue-light);
    border: 1px solid var(--brand-blue-border);
    border-radius: var(--radius);
    padding: 36px 40px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.pl-only-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-blue-hover);
    background: var(--bg-primary);
    border: 1px solid var(--brand-blue-border);
    border-radius: 999px;
    padding: 4px 12px;
    vertical-align: middle;
    margin-left: 8px;
}

.pl-callout .pl-only-tag {
    background: transparent;
    margin-left: 0;
    margin-bottom: 12px;
}

.pl-callout__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    text-transform: none;
    margin: 12px 0 14px;
    padding: 0;
    border-bottom: none;
}

.pl-callout p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* ── HIGHLIGHT STRIP ── */
.highlight-section {
    background: var(--bg-secondary);
    padding: 72px 24px;
}

.highlight-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-tile {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    text-align: center;
}

.highlight-tile__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-blue-hover);
    margin-bottom: 8px;
}

.highlight-tile__body {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── CTA STRIP ── */
.cta-section {
    background: var(--bg-primary);
    padding: 72px 24px 96px;
}

.cta-strip {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary--ghost {
    background: transparent;
    color: var(--brand-blue-hover);
    border: 1.5px solid var(--brand-blue);
}

.btn-primary--ghost:hover {
    background: var(--brand-blue-light);
    color: var(--brand-blue-hover);
    box-shadow: none;
}

/* ══════════════════════════════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════════════════════════════ */

/* ── PAY-AS-YOU-GO NARRATIVE ── */
.payg-section {
    background: var(--bg-primary);
    padding: 24px 24px 72px;
}

.payg-section .container {
    max-width: 760px;
    text-align: center;
}

.payg-body {
    font-size: 1.05rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.75 !important;
    margin-bottom: 20px !important;
}

.payg-body:last-child {
    margin-bottom: 0 !important;
}

/* ── PRICING TABLE ── */
.pricing-section {
    background: var(--bg-secondary);
    padding: 72px 24px;
}

.pricing-unit {
    text-align: center;
    font-size: 0.88rem !important;
    color: var(--text-muted) !important;
    margin-top: -28px !important;
    margin-bottom: 36px !important;
}

.pricing-section .table-wrap {
    overflow-x: auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
    min-width: 620px;
}

.pricing-table thead {
    background: var(--brand-blue-light);
}

.pricing-table th {
    text-align: left;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-blue-hover);
    border-bottom: 1px solid var(--brand-blue-border);
    white-space: nowrap;
}

.pricing-table .th-price {
    text-align: right;
}

.pricing-table td {
    padding: 18px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    line-height: 1.6;
    font-size: 0.92rem;
    margin: 0;
}

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

.pricing-table tbody tr:hover td {
    background: var(--bg-secondary);
}

.pricing-table .td-name {
    font-weight: 700;
    color: var(--text-primary);
    white-space: normal;
}

.pricing-table .td-name .pl-only-tag {
    display: inline-block;
    margin-left: 8px;
    margin-top: 4px;
}

.pricing-table .td-price {
    text-align: right;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.pricing-table .row-max {
    background: rgba(110, 168, 254, 0.05);
}

.pricing-table .row-max:hover td {
    background: var(--brand-blue-light);
}

/* ── EXAMPLE SCENARIOS ── */
.examples-section {
    background: var(--bg-primary);
    padding: 72px 24px;
}

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

.example-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example-card__label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.example-card__math {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.example-card__total {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--brand-blue-hover);
    margin-top: auto;
}

/* ── DISCOUNT CALLOUT ── */
.discount-section {
    background: var(--bg-secondary);
    padding: 24px 24px 72px;
}

.discount-callout {
    background: linear-gradient(135deg, var(--brand-blue-light), rgba(110, 168, 254, 0.02));
    border: 1.5px solid var(--brand-blue);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.discount-callout__headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--brand-blue-hover);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.discount-callout p {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

.discount-callout strong {
    color: var(--brand-blue-hover);
    font-weight: 700;
}

/* ── CONDITIONS LIST ── */
.conditions-section {
    background: var(--bg-primary);
    padding: 72px 24px;
}

.conditions-section .container {
    max-width: 720px;
}

.conditions-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.conditions-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.conditions-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--brand-blue);
    border-radius: 50%;
    opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }

    .hero {
        padding: 64px 20px 64px;
        background-image: none;
    }

    .hero-text {
        max-width: 100%;
    }

    .features {
        padding: 72px 20px;
    }

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

    .how-it-works {
        padding: 72px 20px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step {
        max-width: 320px;
    }

    .step-connector {
        width: 2px;
        height: 24px;
        margin-top: 0;
    }

    .signup {
        padding: 72px 20px;
    }

    .ml-form {
        flex-direction: column;
    }

    .ml-form button[type="submit"] {
        width: 100%;
    }

    header {
        padding: 20px;
    }

    main {
        padding: 40px 20px 56px;
    }

    .footer-inner {
        padding: 28px 20px;
    }

    /* ── marketing subpages: navbar + features + pricing ── */
    .navbar {
        flex-wrap: wrap;
        gap: 8px 12px;
        row-gap: 8px;
    }

    .nav-links {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        gap: 20px;
        padding-top: 4px;
    }

    .page-header {
        padding: 56px 20px 32px;
    }

    .module-section {
        padding: 56px 20px 72px;
    }

    .module-section .container {
        gap: 28px;
    }

    .module-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .module-card--reverse .module-card__media {
        order: 0;
    }

    .module-card__media {
        aspect-ratio: 16 / 10;
    }

    .persona-section {
        padding: 40px 20px 64px;
    }

    .persona-section .container {
        gap: 24px;
    }

    .persona-tabs {
        width: 100%;
        justify-content: stretch;
    }

    .persona-tab {
        flex: 1;
        padding: 10px 14px;
        font-size: 0.9rem;
    }

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

    .persona-card__body {
        padding: 20px 22px 24px;
    }

    .pl-callout-section,
    .highlight-section {
        padding: 56px 20px;
    }

    .pl-callout {
        padding: 28px 24px;
    }

    .highlight-strip {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cta-section {
        padding: 56px 20px 72px;
    }

    .payg-section {
        padding: 20px 20px 56px;
    }

    .pricing-section,
    .examples-section,
    .conditions-section {
        padding: 56px 20px;
    }

    .pricing-unit {
        margin-top: -20px !important;
        margin-bottom: 28px !important;
    }

    .pricing-examples {
        grid-template-columns: 1fr;
    }

    .discount-section {
        padding: 20px 20px 56px;
    }

    .discount-callout {
        padding: 28px 24px;
    }
}

@media (max-width: 560px) {
    .highlight-strip {
        grid-template-columns: 1fr;
    }
}
