/* Practivo landing — inspired by divRIOTS (divriots.com) */

:root {
    color-scheme: light;
    --primary: #111827;
    --primary-hover: #000000;
    --primary-soft: rgba(17, 24, 39, 0.06);
    --primary-ring: rgba(17, 24, 39, 0.12);
    --accent: #6366f1;
    --accent-soft: rgba(99, 102, 241, 0.1);
    --ink: #0a0a0a;
    --ink-muted: #6b7280;
    --bg: #ffffff;
    --bg-elevated: #ffffff;
    --surface: #f9fafb;
    --border: #e5e7eb;
    --border-strong: #d1d5db;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-lg: 16px;
    --header-bg: rgba(255, 255, 255, 0.92);
    --danger: #ef4444;
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

[data-theme="dark"] {
    color-scheme: dark;
    --primary: #f9fafb;
    --primary-hover: #ffffff;
    --primary-soft: rgba(249, 250, 251, 0.06);
    --primary-ring: rgba(249, 250, 251, 0.12);
    --accent: #818cf8;
    --accent-soft: rgba(129, 140, 248, 0.12);
    --ink: #f9fafb;
    --ink-muted: #9ca3af;
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --surface: #171717;
    --border: #262626;
    --border-strong: #404040;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --header-bg: rgba(10, 10, 10, 0.92);
    --danger: #f87171;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.dr-page { position: relative; }

/* Ambient hero background */
.dr-hero-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.dr-hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 20%, transparent 75%);
    opacity: 0.35;
}

[data-theme="dark"] .dr-hero-grid-bg { opacity: 0.12; }

.dr-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    will-change: transform;
}

.dr-hero-glow--1 {
    width: 480px;
    height: 480px;
    top: -120px;
    left: 50%;
    transform: translateX(-60%);
    background: var(--accent);
    opacity: 0.22;
}

.dr-hero-glow--2 {
    width: 360px;
    height: 360px;
    top: 40px;
    right: -80px;
    background: #a78bfa;
    opacity: 0.14;
}

[data-theme="dark"] .dr-hero-glow--1 { opacity: 0.18; }
[data-theme="dark"] .dr-hero-glow--2 { opacity: 0.12; }

.dr-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ===== Header ===== */
.dr-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.dr-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.dr-logo {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.dr-logo-bracket {
    color: var(--ink-muted);
    font-weight: 500;
}

/* Logo image (replaces the text wordmark); swaps navy/white by theme */
.dr-logo-img { height: 30px; width: auto; display: block; }
.dr-footer-brand .dr-logo-img { height: 34px; }
.dr-logo-img--dark { display: none; }
[data-theme="dark"] .dr-logo-img--light { display: none; }
[data-theme="dark"] .dr-logo-img--dark { display: block; }

.dr-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.dr-nav a {
    text-decoration: none;
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.dr-nav a:hover,
.dr-nav a.is-active { color: var(--ink); }

/* "Features" dropdown */
.dr-nav-group { position: relative; display: flex; align-items: center; }

.dr-nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-muted);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.dr-nav-group:hover .dr-nav-trigger,
.dr-nav-group:focus-within .dr-nav-trigger { color: var(--ink); }

.dr-nav-chev { transition: transform 0.2s; }
.dr-nav-group:hover .dr-nav-chev,
.dr-nav-group:focus-within .dr-nav-chev { transform: rotate(180deg); }

.dr-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 14px;
    min-width: 210px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.96);
    transform-origin: top center;
    transition: opacity 0.18s ease, transform 0.18s cubic-bezier(.2,.7,.2,1), visibility 0.18s;
    z-index: 60;
}

/* invisible bridge so moving the cursor into the menu keeps it open */
.dr-nav-dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }

.dr-nav-group:hover .dr-nav-dropdown,
.dr-nav-group:focus-within .dr-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dr-nav-dropdown a {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink-muted);
    white-space: nowrap;
}

.dr-nav-dropdown a:hover { background: var(--primary-soft); color: var(--ink); }

/* Features mega-menu (shadcn NavigationMenu style: featured card + item list) */
.dr-nav-mega { padding: 12px; min-width: 0; }

.dr-mega-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 12px;
    width: min(540px, calc(100vw - 40px));
}

.dr-nav-mega .dr-mega-feature {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(160deg, #4f46e5, #7c6cf6);
    color: #fff;
    text-decoration: none;
    white-space: normal;
    transition: filter 0.18s ease, transform 0.18s ease;
}

/* keep the gradient on hover (don't let the generic a:hover tint override it) */
.dr-nav-mega .dr-mega-feature:hover {
    background: linear-gradient(160deg, #4f46e5, #7c6cf6);
    color: #fff;
    filter: brightness(1.07);
    transform: translateY(-1px);
}

.dr-mega-feature-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.18);
    display: grid; place-items: center;
    margin-bottom: auto;
}
.dr-mega-feature-icon svg { width: 18px; height: 18px; }
.dr-mega-feature-title { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin-top: 16px; }
.dr-mega-feature-desc { display: block; font-size: 12.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.85); margin-top: 6px; }
.dr-mega-feature-cta { display: block; font-size: 12px; font-weight: 600; margin-top: 12px; }

.dr-mega-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }

.dr-nav-mega .dr-mega-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    white-space: normal;
}
.dr-nav-mega .dr-mega-list a:hover { background: var(--primary-soft); }

.dr-mega-item-title { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.dr-mega-item-desc { display: block; font-size: 12px; line-height: 1.45; color: var(--ink-muted); margin-top: 2px; }

/* Button leading icons only appear in the mobile icon-only treatment */
.dr-btn-icon { display: none; }

.dr-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dr-theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--ink-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.dr-theme-toggle:hover {
    color: var(--ink);
    border-color: var(--border-strong);
}

.dr-theme-toggle svg { width: 17px; height: 17px; }

[data-theme="light"] .icon-moon,
[data-theme="dark"] .icon-sun { display: none; }

.dr-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    cursor: pointer;
}

.dr-nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* Buttons */
.dr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-family: var(--font-body);
}

.dr-btn--lg { padding: 13px 24px; font-size: 15px; }

.dr-btn--primary {
    background: var(--ink);
    color: var(--bg);
}

.dr-btn--primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

[data-theme="dark"] .dr-btn--primary {
    background: #fff;
    color: #0a0a0a;
}

.dr-btn--ghost {
    color: var(--ink-muted);
    background: transparent;
}

.dr-btn--ghost:hover { color: var(--ink); }

.dr-btn--outline {
    color: var(--ink);
    background: transparent;
    border: 1.5px solid var(--border-strong);
}

.dr-btn--outline:hover {
    border-color: var(--ink);
}

/* "Book a demo" call-to-action — fixed accent colour so it stays distinct from
   the nav links AND keeps readable white text in both light and dark themes
   (the theme's --primary flips to near-white in dark mode, which hid the label). */
.dr-btn--accent {
    background: #4f46e5;
    color: #fff;
    box-shadow: 0 6px 16px -8px rgba(79, 70, 229, 0.6);
}

.dr-btn--accent:hover {
    background: #4338ca;
    color: #fff;
    transform: translateY(-1px);
}

.dr-btn--dark {
    background: var(--ink);
    color: var(--bg);
}

[data-theme="dark"] .dr-btn--dark {
    background: #fff;
    color: #0a0a0a;
}

.dr-btn--white {
    background: #fff;
    color: #0a0a0a;
}

.dr-btn--white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.dr-btn--ghost-light {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: transparent;
}

.dr-btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Hero (animated-hero style) ===== */
.dr-hero {
    padding: 80px 0 56px;
    text-align: center;
    position: relative;
}

.dr-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 0 56px;
}

.dr-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
}

.dr-hero-badge-wrap {
    display: flex;
    justify-content: center;
}

.dr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.dr-hero-badge:hover {
    border-color: var(--border-strong);
    background: var(--bg-elevated);
    transform: translateY(-1px);
}

.dr-hero-badge svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.dr-hero-badge:hover svg {
    transform: translateX(3px);
}

.dr-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.dr-hero-title-static {
    display: block;
    font-weight: 400;
    color: var(--ink);
}

.dr-hero-word-rotator {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    min-height: 1.2em;
    padding: 4px 0 8px;
}

.dr-hero-word {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    opacity: 0;
    will-change: transform, opacity;
}

.dr-hero-word--active {
    opacity: 1;
}

.dr-hero-lead {
    font-size: clamp(17px, 2.2vw, 20px);
    color: var(--ink-muted);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.dr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.dr-hero-actions .dr-btn {
    gap: 10px;
    opacity: 1;
    visibility: visible;
}

/* ===== Trust ===== */
.dr-trust {
    padding: 32px 0 64px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.dr-trust-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.dr-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.dr-trust-pills span {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
    background: var(--surface);
}

/* ===== Spotlight ===== */
.dr-spotlight {
    padding: 80px 0;
}

.dr-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.dr-spotlight-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.dr-spotlight-sub {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.dr-spotlight-list {
    list-style: none;
    margin-bottom: 32px;
}

.dr-spotlight-list li {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
}

.dr-spotlight-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.dr-spotlight-visual {
    position: relative;
    perspective: 1000px;
}

.dr-float-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.dr-float-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

.dr-float-badge--1 {
    top: -12px;
    right: -8px;
}

.dr-float-badge--2 {
    bottom: 24px;
    left: -16px;
}

/* Upload mock */
.dr-upload-mock {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-elevated);
}

.dr-upload-mock-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.dr-upload-mock-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-strong);
}

.dr-upload-mock-bar span:nth-child(1) { background: #ef4444; }
.dr-upload-mock-bar span:nth-child(2) { background: #f59e0b; }
.dr-upload-mock-bar span:nth-child(3) { background: #10b981; }

.dr-upload-mock-bar em {
    margin-left: auto;
    font-size: 11px;
    font-style: normal;
    color: var(--ink-muted);
    font-family: ui-monospace, monospace;
}

.dr-upload-mock-body { padding: 24px; }

.dr-upload-mock-firm {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 8px;
}

.dr-upload-mock-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.dr-upload-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: var(--surface);
}

.dr-upload-item--done {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

.dr-upload-check,
.dr-upload-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.dr-upload-check {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.dr-upload-num {
    background: var(--accent-soft);
    color: var(--accent);
}

.dr-upload-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.dr-upload-item small {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}

.dr-upload-drop {
    margin-top: 8px;
    padding: 12px;
    border: 1.5px dashed var(--border-strong);
    border-radius: 8px;
    font-size: 11px;
    color: var(--ink-muted);
    text-align: center;
}

.dr-upload-submit {
    width: 100%;
    margin-top: 8px;
    padding: 11px;
    border: none;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
}

/* ===== Split heading (divRIOTS style) ===== */
.dr-split-heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 48px;
}

.dr-split-heading span {
    display: block;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.dr-split-heading span:last-child {
    color: var(--ink-muted);
}

/* ===== Products ===== */
.dr-products {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.dr-category { margin-bottom: 64px; }

.dr-category:last-child { margin-bottom: 0; }

.dr-category-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.dr-category-desc {
    font-size: 15px;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.dr-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.dr-card-grid--wide {
    grid-template-columns: repeat(4, 1fr);
}

.dr-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    transition: border-color 0.2s, box-shadow 0.2s;
    transform-style: preserve-3d;
    will-change: transform;
}

.dr-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.dr-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.dr-card-icon svg { width: 22px; height: 22px; }

.dr-card-icon--blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.dr-card-icon--violet { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.dr-card-icon--teal { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }
.dr-card-icon--amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.dr-card-icon--green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.dr-card-icon--rose { background: rgba(244, 63, 94, 0.1); color: #f43f5e; }
.dr-card-icon--indigo { background: rgba(79, 70, 229, 0.1); color: #4f46e5; }
.dr-card-icon--slate { background: var(--surface); color: var(--ink-muted); }

.dr-card-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.dr-card-name span {
    color: var(--accent);
}

.dr-card p {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.55;
}

.dr-card code {
    font-size: 11px;
    background: var(--surface);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: ui-monospace, monospace;
}

/* ===== API panels ===== */
.dr-paths {
    padding: 80px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.dr-paths-lead {
    font-size: 16px;
    color: var(--ink-muted);
    margin-top: -32px;
    margin-bottom: 40px;
}

.dr-api-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dr-api-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dr-api-frame {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dr-api-frame:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}

.dr-api-frame--accent {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.dr-api-frame-inner {
    padding: 28px;
}

.dr-api-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.dr-api-frame h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.dr-api-frame p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.dr-api-frame ul {
    list-style: none;
}

.dr-api-frame li {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0 5px 16px;
    position: relative;
    color: var(--ink);
}

.dr-api-frame li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.dr-api-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.dr-api-link:hover { opacity: 0.75; }

/* ===== Steps ===== */
.dr-steps {
    padding: 80px 0;
}

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

.dr-step {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
}

.dr-step-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--border-strong);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.dr-step h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.dr-step p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.55;
}

/* ===== Security ===== */
.dr-security {
    padding: 64px 0;
    border-top: 1px solid var(--border);
}

.dr-security-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.dr-security h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.dr-security p {
    font-size: 15px;
    color: var(--ink-muted);
    max-width: 480px;
    line-height: 1.6;
}

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

.dr-security-badges span {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
    background: var(--surface);
}

/* ===== CTA ===== */
.dr-cta {
    padding: 80px 0;
    background: var(--ink);
    color: #fff;
}

[data-theme="dark"] .dr-cta {
    background: #171717;
    border-top: 1px solid var(--border);
}

.dr-cta-inner {
    text-align: center;
}

.dr-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.dr-cta p {
    font-size: 16px;
    opacity: 0.75;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.dr-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ===== Footer ===== */
.dr-footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.dr-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, minmax(0, 1fr));
    gap: 40px 28px;
    align-items: start;
    margin-bottom: 44px;
}

.dr-footer-brand p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-top: 14px;
    max-width: 280px;
}

.dr-footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 12px;
}

.dr-footer-col a {
    display: block;
    font-size: 13.5px;
    color: var(--ink-muted);
    text-decoration: none;
    padding: 5px 0;
    font-weight: 500;
    transition: color 0.18s;
}

.dr-footer-col a:hover { color: var(--accent); }

.dr-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--ink-muted);
}

.dr-footer-bottom a {
    color: inherit;
    text-decoration: none;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .dr-spotlight-grid,
    .dr-api-grid { grid-template-columns: 1fr; }

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

    .dr-footer-grid { grid-template-columns: repeat(3, 1fr); }
    .dr-footer-brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
    .dr-hero-glow,
    .dr-float-badge {
        animation: none !important;
    }

    .dr-card {
        will-change: auto;
        transform: none !important;
    }
}

@keyframes drNavIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .dr-float-badge--1 { right: 0; top: -20px; font-size: 11px; padding: 8px 12px; }
    .dr-float-badge--2 { left: 0; bottom: 8px; font-size: 11px; }

    /* Mobile menu: floating rounded card just below the header bar */
    .dr-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 12px;
        right: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--bg-elevated);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow-lg, 0 18px 48px -16px rgba(0,0,0,.28));
        padding: 10px;
    }

    .dr-nav.is-open { display: flex; animation: drNavIn 0.22s ease; }

    /* Top-level rows: comfortable tap targets with a rounded hover/active pill */
    .dr-nav > a {
        padding: 13px 14px;
        border-radius: 10px;
        border-bottom: none;
        font-size: 13px;
    }
    .dr-nav > a:hover { background: var(--primary-soft); color: var(--ink); }
    .dr-nav > a.is-active { background: var(--primary-soft); color: var(--primary); }

    .dr-nav-group { flex-direction: column; align-items: stretch; }

    .dr-nav-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 13px 14px;
        border-radius: 10px;
        border-bottom: none;
    }
    .dr-nav-trigger:hover { background: var(--primary-soft); }

    /* Chevron stays visible on mobile and rotates when the group is open */
    .dr-nav-chev { display: block; width: 14px; height: 14px; }
    .dr-nav-group.is-open .dr-nav-trigger { color: var(--ink); }
    .dr-nav-group.is-open .dr-nav-chev { transform: rotate(180deg); }

    /* Submenu collapsed by default, expands on tap (accordion) */
    .dr-nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        min-width: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        transition: max-height 0.28s ease;
    }

    .dr-nav-group.is-open .dr-nav-dropdown { max-height: 360px; }

    .dr-nav-dropdown::before { display: none; }

    /* Mega-menu becomes an indented sub-list with a left accent rail */
    .dr-nav-mega { padding: 0; }
    .dr-mega-grid { grid-template-columns: 1fr; width: auto; max-width: none; gap: 0; }
    .dr-nav-mega .dr-mega-feature { display: none; }

    .dr-mega-list {
        margin: 2px 0 4px 18px;
        padding-left: 12px;
        border-left: 2px solid var(--border);
    }
    .dr-nav-mega .dr-mega-list a {
        padding: 10px 12px;
        border-radius: 8px;
        border-bottom: none;
    }
    .dr-nav-mega .dr-mega-list a:hover { background: var(--primary-soft); }
    .dr-mega-item-title {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: none;
        color: var(--ink-muted);
    }
    .dr-mega-item-desc { display: none; }

    .dr-nav-toggle { display: flex; }

    /* Header buttons become compact icon-only squares on mobile */
    .dr-header-actions { gap: 6px; }

    .dr-header-actions .dr-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 9px;
    }
    .dr-header-actions .dr-btn .dr-btn-label { display: none; }
    .dr-header-actions .dr-btn .dr-btn-icon { display: block; }
    .dr-header-actions .dr-cta-demo svg { width: 17px; height: 17px; }

    /* Give the ghost (Sign in) icon button a visible outline to match the others */
    .dr-header-actions .dr-btn--ghost {
        border: 1px solid var(--border);
        background: var(--bg-elevated);
        color: var(--ink-muted);
    }
    .dr-header-actions .dr-btn--ghost:hover { color: var(--ink); border-color: var(--border-strong); }

    .dr-hero { padding: 72px 0 40px; }

    .dr-card-grid,
    .dr-card-grid--wide,
    .dr-steps-grid { grid-template-columns: 1fr; }

    .dr-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }

    .dr-security-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Legacy styles — pricing page, static pages (page.blade.php)
   ============================================================ */

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.ambient-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
}

.ambient-shape {
    position: absolute;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    opacity: 0.25;
}

.ambient-shape--1 { top: 8%; right: 6%; width: 100px; height: 100px; background: var(--primary-soft); }
.ambient-shape--2 { bottom: 18%; left: 4%; width: 70px; height: 70px; border-radius: 50%; background: var(--accent-soft); }
.ambient-shape--3 { top: 42%; left: 48%; width: 160px; height: 160px; border-radius: 50%; border-style: dashed; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
}

.logo-box {
    width: 34px;
    height: 34px;
    background: var(--ink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
}

[data-theme="dark"] .logo-box {
    background: #fff;
    color: #0a0a0a;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    text-decoration: none;
    color: var(--ink-muted);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--ink); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--ink-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle svg { width: 17px; height: 17px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary { background: var(--ink); color: var(--bg); }
[data-theme="dark"] .btn-primary { background: #fff; color: #0a0a0a; }
.btn-ghost { color: var(--ink-muted); background: transparent; }
.btn-ghost:hover { color: var(--ink); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.headline-accent { color: var(--accent); }

.page-content { padding: 48px 0 80px; }
.page-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.page-content .lead { color: var(--ink-muted); margin-bottom: 32px; }
.page-content h2 { font-size: 1.25rem; font-weight: 700; margin: 28px 0 12px; color: var(--ink); }
.page-content p, .page-content li { line-height: 1.7; color: var(--ink); }
.page-content ul { padding-left: 1.25rem; margin-bottom: 16px; }
.legal-updated { font-size: 13px; color: var(--ink-muted); margin-bottom: 24px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    background: var(--bg-elevated);
    color: var(--ink);
}
.alert-success {
    padding: 12px 16px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid var(--border);
}
.field-error { color: var(--danger); font-size: 13px; }

.site-footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--ink-muted);
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

/* Pricing page */
.page-pricing .pricing-hero { padding: 100px 0 40px; text-align: center; }
.page-pricing .pricing-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 16px;
}
.page-pricing .pricing-hero-inner > p {
    font-size: 17px;
    color: var(--ink-muted);
    max-width: 520px;
    margin: 0 auto 28px;
}

.billing-toggle {
    display: inline-flex;
    padding: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 16px;
}

.billing-toggle-btn {
    padding: 8px 18px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-muted);
    cursor: pointer;
}

.billing-toggle-btn.is-active {
    background: var(--bg-elevated);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.billing-save {
    display: inline-block;
    padding: 2px 8px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
}

.pricing-gst-note { font-size: 13px; color: var(--ink-muted); }

.pricing-plans { padding: 24px 0 80px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.pricing-popular {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 100px;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-tagline { font-size: 14px; color: var(--ink-muted); margin-bottom: 20px; }

.pricing-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.pricing-currency { font-size: 20px; font-weight: 700; }
.pricing-price {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}
.pricing-period { font-size: 14px; color: var(--ink-muted); margin-left: 4px; }
.pricing-billed-note { font-size: 13px; color: var(--ink-muted); margin-bottom: 20px; }

.pricing-features { list-style: none; flex: 1; margin-bottom: 24px; }
.pricing-features li {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pricing-cta { width: 100%; margin-top: auto; }

.pricing-enterprise {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 36px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
}

[data-theme="dark"] .pricing-enterprise {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink);
}

.pricing-enterprise h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0 10px;
}

.pricing-enterprise-copy p { font-size: 15px; opacity: 0.8; max-width: 520px; }
.pricing-enterprise-actions { display: flex; flex-direction: column; gap: 10px; }
.pricing-enterprise-note { font-size: 12px; opacity: 0.65; }

.pricing-compare {
    padding: 80px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.compare-table th,
.compare-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.compare-table th:first-child,
.compare-table td:first-child { text-align: left; font-weight: 600; }

.compare-table thead th {
    font-weight: 700;
    background: var(--surface);
}

.compare-col-featured {
    background: var(--accent-soft);
    color: var(--accent) !important;
    font-weight: 600 !important;
}

.compare-yes {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.pricing-addons { padding: 80px 0; }

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.addon-card {
    padding: 22px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, transform 0.2s;
}

.addon-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.addon-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 10px;
    margin-bottom: 14px;
}

.addon-icon svg { width: 20px; height: 20px; color: var(--accent); }

.addon-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.addon-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.addon-price span { font-size: 13px; font-weight: 600; color: var(--ink-muted); }
.addon-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

.pricing-faq { padding: 80px 0; }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item[open] { border-color: var(--accent); }

.faq-item summary {
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

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

.faq-item summary::after {
    content: '+';
    color: var(--ink-muted);
}

.faq-item[open] summary::after { content: '−'; color: var(--accent); }

.faq-item p {
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
}

.btn-white { background: #fff; color: #0a0a0a; }
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-strong);
    color: var(--ink);
}
.btn-lg { padding: 13px 24px; font-size: 15px; }

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card--featured { order: -1; }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-enterprise { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px;
    }

    .site-nav.is-open { display: flex; }
    .nav-toggle { display: flex; }
    .page-pricing .pricing-hero { padding-top: 80px; }
    .faq-grid, .addons-grid { grid-template-columns: 1fr; }
}


/* ===== moved from resources/views/demo.blade.php ===== */
        .bd-section { padding: 56px 0 72px; }
        .bd-grid {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 48px;
            align-items: start;
        }
        .bd-intro-eyebrow {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
        }
        .bd-intro h1 {
            font-size: clamp(2rem, 4vw, 2.6rem);
            line-height: 1.1;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--ink);
            margin: 0 0 16px;
        }
        .bd-intro p.bd-lead {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--ink-muted);
            margin: 0 0 28px;
            max-width: 46ch;
        }
        .bd-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
        .bd-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); line-height: 1.5; }
        .bd-points .bd-check {
            flex-shrink: 0;
            width: 26px; height: 26px;
            border-radius: 8px;
            display: grid; place-items: center;
            background: var(--accent-soft);
            color: var(--accent);
        }
        .bd-points li strong { display: block; font-weight: 600; font-size: 14.5px; }
        .bd-points li span { font-size: 13.5px; color: var(--ink-muted); }

        .bd-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 24px 60px -28px rgba(15, 23, 42, .3);
        }
        .bd-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
        .bd-card .bd-card-sub { font-size: 13.5px; color: var(--ink-muted); margin: 0 0 22px; }

        .bd-form { display: flex; flex-direction: column; gap: 16px; }
        .bd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .bd-field { display: flex; flex-direction: column; gap: 6px; }
        .bd-field label { font-size: 13px; font-weight: 600; color: var(--ink); }
        .bd-field label .bd-opt { font-weight: 400; color: var(--ink-muted); }
        .bd-field input,
        .bd-field select,
        .bd-field textarea {
            width: 100%;
            padding: 11px 14px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
            background: var(--bg-surface, var(--bg-elevated));
            color: var(--ink);
            transition: border-color .15s ease, box-shadow .15s ease;
        }
        .bd-field input:focus,
        .bd-field select:focus,
        .bd-field textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-ring);
        }
        .bd-field textarea { min-height: 110px; resize: vertical; }
        .bd-field .bd-error { color: var(--danger, #ef4444); font-size: 12.5px; }

        .bd-submit { margin-top: 6px; width: 100%; justify-content: center; }
        .bd-fineprint { font-size: 12px; color: var(--ink-muted); text-align: center; margin: 4px 0 0; }

        .bd-alert {
            display: flex; gap: 10px; align-items: flex-start;
            padding: 14px 16px;
            border-radius: 12px;
            background: var(--accent-soft);
            color: var(--accent);
            border: 1px solid var(--border);
            font-size: 14px;
            margin-bottom: 22px;
        }
        .bd-alert svg { flex-shrink: 0; margin-top: 2px; }

        @media (max-width: 880px) {
            .bd-grid { grid-template-columns: 1fr; gap: 36px; }
            .bd-card { padding: 24px; }
        }
        @media (max-width: 560px) {
            .bd-row { grid-template-columns: 1fr; }
        }


/* ===== moved from resources/views/layouts/page.blade.php ===== */
        .page-content { padding: 56px 0 72px; }
        .page-content > .dr-container { max-width: 760px; }
        .page-content h1 { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--ink); }
        .page-content .lead { color: var(--ink-muted); margin-bottom: 32px; font-size: 1.08rem; line-height: 1.7; }
        .page-content h2 { font-size: 1.35rem; font-weight: 700; margin: 32px 0 12px; color: var(--ink); letter-spacing: -0.01em; }
        .page-content p, .page-content li { line-height: 1.75; color: var(--ink); }
        .page-content ul { padding-left: 1.25rem; margin-bottom: 16px; }
        .legal-updated { font-size: 13px; color: var(--ink-muted); margin-bottom: 24px; }
        .contact-form .form-group { margin-bottom: 16px; }
        .contact-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--ink); }
        .contact-form input, .contact-form textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; background: var(--bg-elevated); color: var(--ink); }
        .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-ring); }
        .contact-form textarea { min-height: 140px; resize: vertical; }
        .alert-success { padding: 12px 16px; background: var(--accent-soft); color: var(--accent); border-radius: 10px; margin-bottom: 20px; font-size: 14px; border: 1px solid var(--border); }
        .field-error { color: var(--danger, #ef4444); font-size: 13px; }
        [data-theme="dark"] .alert-success { background: rgba(45, 212, 191, 0.12); color: #5eead4; }


/* ===== moved from resources/views/layouts/seo.blade.php ===== */
        .seo-wrap { max-width: 860px; margin: 0 auto; padding: 56px 0 72px; }
        .seo-eyebrow { display:inline-block; font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--primary); margin-bottom:14px; }
        .seo-wrap h1 { font-size: clamp(2rem, 4.4vw, 2.8rem); line-height:1.12; font-weight:700; letter-spacing:-.02em; color:var(--ink); margin:0 0 18px; }
        .seo-lead { font-size:1.12rem; line-height:1.7; color:var(--ink-muted); margin:0 0 22px; }
        .seo-wrap h2 { font-size:1.5rem; font-weight:700; color:var(--ink); margin:40px 0 14px; letter-spacing:-.01em; }
        .seo-wrap h3 { font-size:1.12rem; font-weight:600; color:var(--ink); margin:26px 0 8px; }
        .seo-wrap p { font-size:1.02rem; line-height:1.75; color:var(--ink); margin:0 0 16px; }
        .seo-wrap ul, .seo-wrap ol { margin:0 0 18px; padding-left:1.3rem; }
        .seo-wrap li { font-size:1.02rem; line-height:1.7; color:var(--ink); margin-bottom:8px; }
        .seo-wrap a:not(.dr-btn) { color:var(--primary); }
        .seo-crumbs { font-size:13px; color:var(--ink-muted); margin-bottom:20px; }
        .seo-crumbs a { color:var(--ink-muted); text-decoration:none; }
        .seo-crumbs a:hover { color:var(--ink); }

        .seo-callout {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-left: 4px solid #4f46e5;
            border-radius: 12px;
            padding: 20px 22px;
            margin: 28px 0;
        }
        .seo-callout p:last-child { margin-bottom: 0; }

        .seo-table { width:100%; border-collapse:collapse; margin:18px 0 26px; font-size:.98rem; }
        .seo-table th, .seo-table td { text-align:left; padding:12px 14px; border-bottom:1px solid var(--border); vertical-align:top; }
        .seo-table th { font-weight:700; color:var(--ink); background:var(--bg-elevated); }
        .seo-table td { color:var(--ink); }

        .seo-checklist { list-style:none; padding:0; }
        .seo-checklist li { position:relative; padding-left:30px; }
        .seo-checklist li::before {
            content:""; position:absolute; left:0; top:4px; width:18px; height:18px; border-radius:5px;
            background:var(--accent-soft); border:1px solid var(--accent);
        }

        .seo-cta {
            margin-top: 44px; padding: 30px; border-radius: 16px;
            background: var(--bg-elevated); border: 1px solid var(--border);
            text-align: center;
        }
        .seo-cta h2 { margin-top:0; }
        .seo-cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:18px; }

        .seo-faq { margin-top: 12px; }
        .seo-faq details { border:1px solid var(--border); border-radius:12px; padding:4px 18px; margin-bottom:12px; background:var(--bg-elevated); }
        .seo-faq summary { cursor:pointer; font-weight:600; color:var(--ink); padding:14px 0; list-style:none; }
        .seo-faq summary::-webkit-details-marker { display:none; }
        .seo-faq p { padding-bottom:14px; margin:0; color:var(--ink-muted); }


/* ===== moved from resources/views/errors/maintenance.blade.php ===== */
        .mnt-wrap {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .mnt-card {
            max-width: 460px;
            width: 100%;
            text-align: center;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 44px 36px;
            box-shadow: var(--shadow-md);
        }
        .mnt-icon {
            width: 64px; height: 64px;
            margin: 0 auto 22px;
            border-radius: 16px;
            display: grid; place-items: center;
            background: linear-gradient(160deg, #4f46e5, #7c6cf6);
            color: #fff;
        }
        .mnt-icon svg { width: 30px; height: 30px; }
        .mnt-brand {
            display: inline-flex; align-items: center;
            font-family: 'Space Grotesk', Inter, sans-serif;
            font-weight: 700; font-size: 18px; color: var(--ink);
            margin-bottom: 8px;
        }
        .mnt-brand .br { color: var(--ink-muted); }
        .mnt-card h1 {
            font-family: 'Space Grotesk', Inter, sans-serif;
            font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em;
            color: var(--ink); margin: 6px 0 12px;
        }
        .mnt-card p { color: var(--ink-muted); line-height: 1.65; font-size: 15px; margin: 0; }
