/* enterprise-pricing.css v1.8.0 — Public enterprise pricing/marketing page */

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

:root {
    --ep-bg:       #0c0c0b;
    --ep-surface:  #141413;
    --ep-surface2: #1c1c1a;
    --ep-border:   #242422;
    --ep-border2:  #2e2e2b;
    --ep-text:     #f0f0ee;
    --ep-text2:    #b0b0ae;
    --ep-text3:    #6a6a68;
    --ep-accent:   #D97757;
    --ep-accent2:  #A1452A;
    --ep-orange:   #D97757;
    --ep-success:  #10b981;
    --ep-radius:   14px;
    --ep-font:     'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ── Light theme overrides ─────────────────────────────────────────────────── */
[data-ep-theme="light"] {
    --ep-bg:       #f8f8f6;
    --ep-surface:  #ffffff;
    --ep-surface2: #f1f1ef;
    --ep-border:   #e4e4e2;
    --ep-border2:  #d0d0ce;
    --ep-text:     #111110;
    --ep-text2:    #444442;
    --ep-text3:    #888886;
    --ep-success:  #059669;
}

html { scroll-behavior: smooth; }
body {
    background: var(--ep-bg);
    color: var(--ep-text);
    font-family: var(--ep-font);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.ep-container        { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.ep-container-narrow { max-width: 680px;  margin: 0 auto; padding: 0 24px; }

.ep-section { padding: 80px 0; }
.ep-section-alt { background: var(--ep-surface); }

.ep-section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ep-text);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.ep-section-sub {
    font-size: 15px;
    color: var(--ep-text3);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.ep-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12,12,11,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ep-border);
}
[data-ep-theme="light"] .ep-nav { background: rgba(248,248,246,.95); }
.ep-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ep-nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ep-back-link {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ep-text3);
    padding: 4px 10px 4px 0;
    border-right: 1px solid var(--ep-border2);
    transition: color 0.12s;
}
.ep-back-link:hover { color: var(--ep-accent); }
.ep-logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--ep-text);
    letter-spacing: -0.4px;
}
.ep-logo span { color: var(--ep-orange); }

.ep-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}
.ep-nav-link {
    font-size: 14px;
    color: var(--ep-text3);
    transition: color 0.18s;
    position: relative;
}
.ep-nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1.5px;
    background: var(--ep-accent, #D97757);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.22s;
    opacity: 0;
}
.ep-nav-link:hover::after { transform: scaleX(1); opacity: 0.75; }
.ep-nav-link.ep-nav-active::after { transform: scaleX(1); opacity: 1; }
.ep-nav-link:hover { color: var(--ep-text); }
.ep-nav-cta {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ep-text3);
    padding: 0;
    border: none;
    border-radius: 0;
    transition: color 0.12s;
}
.ep-nav-cta:hover { color: var(--ep-accent); background: none; }

/* ── Theme toggle button ───────────────────────────────────────────────────── */
.ep-theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 4px;
    color: var(--ep-text3);
    cursor: pointer;
    transition: color 0.12s;
}
.ep-theme-btn:hover { color: var(--ep-accent); }
/* Nav-mobile variant: hidden on desktop, shown on mobile */
.ep-theme-btn-navmobile { display: none; }

/* Mobile drawer theme row */
.ep-mnav-theme-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 4px;
    border-top: 1px solid var(--ep-border);
    margin-top: 4px;
}
.ep-mnav-theme-label {
    font-size: 12px;
    color: var(--ep-text3);
    font-weight: 500;
}
.ep-theme-btn-mobile { padding: 4px; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.ep-btn-primary {
    display: inline-block;
    background: var(--ep-accent);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.2s cubic-bezier(0.23,1,0.32,1), box-shadow 0.2s cubic-bezier(0.23,1,0.32,1);
    text-decoration: none;
}
.ep-btn-primary:hover {
    background: var(--ep-accent2);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 4px 16px rgba(217,119,87,0.3);
}
/* Emil Kowalski: tactile press — scale down, snappy recovery */
.ep-btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: none; transition-duration: 100ms; }

.ep-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--ep-text) !important;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid var(--ep-border2);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.2s cubic-bezier(0.23,1,0.32,1);
    text-decoration: none;
}
.ep-btn-secondary:hover { border-color: var(--ep-text3); background: var(--ep-surface2); transform: translateY(-1px); }
.ep-btn-secondary:active { transform: scale(0.97); transition-duration: 100ms; }

.ep-btn-full { width: 100%; text-align: center; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.ep-hero {
    padding: 96px 0 80px;
    text-align: center;
}
.ep-hero-badge {
    display: inline-block;
    background: none;
    color: #D97757;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.ep-hero-h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--ep-text);
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 20px;
}
.ep-hero-sub {
    font-size: 17px;
    color: var(--ep-text2);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.ep-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.ep-hero-proof {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.ep-proof-item {
    font-size: 13px;
    color: var(--ep-text3);
}

/* ── How it works ──────────────────────────────────────────────────────────── */
.ep-steps {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}
.ep-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 260px;
    text-align: left;
}
.ep-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(217,119,87,.15);
    border: 1px solid rgba(217,119,87,.30);
    color: #D97757;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ep-step-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--ep-text);
    display: block;
    margin-bottom: 4px;
}
.ep-step-text p { font-size: 13px; color: var(--ep-text3); margin: 0; }
.ep-step-arrow {
    font-size: 20px;
    color: var(--ep-border2);
    padding-top: 8px;
    align-self: flex-start;
    margin-top: 8px;
}

/* ── Pricing grid ──────────────────────────────────────────────────────────── */
.ep-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
    align-items: stretch;
}
@media (max-width: 860px) {
    .ep-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 12px auto 0; }
    .ep-plan-featured { order: -1; }
}

.ep-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 32px;
    gap: 2px;
}
.ep-billing-btn {
    padding: 7px 22px;
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--ep-text3);
    transition: all 0.18s;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ep-font);
}
.ep-billing-btn.active {
    background: var(--ep-accent);
    color: #fff;
}
.ep-billing-save {
    font-size: 10px;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.2px;
}
.ep-billing-btn:not(.active) .ep-billing-save {
    background: rgba(217,119,87,0.15);
    color: var(--ep-accent);
}

.ep-plan-card {
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    border-radius: 18px;
    padding: 28px 24px 24px;
    position: relative;
    transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.23,1,0.32,1), box-shadow 0.25s cubic-bezier(0.23,1,0.32,1), background 0.2s ease;
    display: flex;
    flex-direction: column;
}
.ep-plan-card:hover {
    border-color: var(--ep-border2);
    transform: translateY(-3px);
}
.ep-plan-featured {
    border-color: rgba(217,119,87,.50);
    background: linear-gradient(135deg, rgba(217,119,87,.08) 0%, var(--ep-surface) 60%);
    transform: scale(1.02);
}
.ep-plan-featured:hover {
    border-color: var(--ep-accent);
    transform: scale(1.02) translateY(-3px);
}

.ep-plan-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ep-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    animation: ep-badge-pulse 3s ease-in-out infinite;
}
@keyframes ep-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217,95,59,0); }
    50% { box-shadow: 0 0 0 5px rgba(217,95,59,0.2); }
}

.ep-plan-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--ep-border);
    border-radius: 14px;
    color: var(--ep-text3);
    margin-bottom: 18px;
}
.ep-plan-icon-featured {
    background: rgba(217,119,87,0.12);
    border-color: rgba(217,119,87,0.28);
    color: #D97757;
}

.ep-plan-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ep-text3);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 12px;
}
.ep-plan-price {
    font-size: 38px;
    font-weight: 900;
    color: var(--ep-text);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}
.ep-plan-price-custom { font-size: 28px; padding-top: 4px; }
.ep-plan-per { font-size: 15px; font-weight: 400; color: var(--ep-text3); }
.ep-plan-seats {
    font-size: 13px;
    color: var(--ep-text3);
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ep-border);
}

.ep-plan-features {
    margin-bottom: 22px;
    flex: 1;
}
.ep-plan-features li {
    font-size: 13px;
    color: var(--ep-text2);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.ep-plan-features li::before {
    content: '✓';
    color: var(--ep-success);
    font-weight: 700;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ep-btn-plan {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    margin-bottom: 10px;
}
.ep-plan-note {
    font-size: 11px;
    color: var(--ep-text3);
    text-align: center;
}

.ep-pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--ep-text3);
    margin-top: 28px;
}
.ep-link { color: var(--ep-accent); }
.ep-link:hover { text-decoration: underline; }

/* ── Feature table ─────────────────────────────────────────────────────────── */
.ep-feature-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--ep-border);
}
.ep-feature-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.ep-feature-table thead { background: var(--ep-surface2); }
.ep-feature-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--ep-text3);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.ep-feature-table th:first-child { width: 40%; }
.ep-feature-table td {
    padding: 12px 20px;
    color: var(--ep-text2);
    border-top: 1px solid var(--ep-border);
}
.ep-feature-table td:first-child { color: var(--ep-text); font-weight: 500; }
.ep-feature-table td:not(:first-child) { text-align: center; }
/* Highlight Business column (Most Popular) */
.ep-feature-table th:nth-child(3) { color: var(--ep-accent); }
.ep-feature-table td:nth-child(3) { color: var(--ep-text); font-weight: 600; background: rgba(217,119,87,0.03); }
.ep-feature-table tr:hover td { background: rgba(255,255,255,.02); }
.ep-feature-table tr:hover td:nth-child(3) { background: rgba(217,119,87,.06); }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.ep-faq { margin-top: 20px; }
.ep-faq-item {
    border-bottom: 1px solid var(--ep-border);
}
.ep-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--ep-text);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--ep-font);
    text-align: left;
    padding: 18px 0;
    cursor: pointer;
    transition: color 0.12s;
    gap: 16px;
}
.ep-faq-chevron {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ep-text3);
    border-bottom: 2px solid var(--ep-text3);
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}
/* Emil Kowalski: spring easing on chevron rotation — snaps open with bounce */
.ep-faq-item.open .ep-faq-chevron { transform: rotate(-135deg); }
.ep-faq-q:hover .ep-faq-chevron { border-color: var(--ep-accent); }
.ep-faq-q:hover { color: var(--ep-accent); }

.ep-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ep-faq-item.open .ep-faq-a {
    grid-template-rows: 1fr;
}
.ep-faq-a-inner {
    min-height: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: opacity 0.25s ease 0.05s, padding-bottom 0.35s ease;
}
.ep-faq-item.open .ep-faq-a-inner {
    padding-bottom: 18px;
    opacity: 1;
}
.ep-faq-a p { font-size: 14px; color: var(--ep-text3); line-height: 1.7; margin-bottom: 8px; }
.ep-faq-a p:last-child { margin-bottom: 0; }
.ep-faq-a em { color: var(--ep-text2); font-style: italic; }

/* ── Inquiry form ──────────────────────────────────────────────────────────── */
.ep-inquiry-form { margin-top: 32px; }
.ep-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 540px) { .ep-form-row { grid-template-columns: 1fr; } }
.ep-form-group { display: flex; flex-direction: column; gap: 6px; }
.ep-form-label { font-size: 12px; font-weight: 600; color: var(--ep-text3); }
.ep-input, .ep-textarea {
    background: var(--ep-surface2);
    border: 1px solid var(--ep-border2);
    border-radius: 9px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--ep-text);
    font-family: var(--ep-font);
    outline: none;
    transition: border-color 0.2s cubic-bezier(0.23,1,0.32,1), box-shadow 0.2s cubic-bezier(0.23,1,0.32,1), transform 0.2s cubic-bezier(0.23,1,0.32,1);
    width: 100%;
}
/* Emil Kowalski: focus glow ring + micro-scale */
.ep-input:focus, .ep-textarea:focus {
    border-color: var(--ep-accent);
    box-shadow: 0 0 0 3px rgba(217,119,87,0.15);
    transform: scale(1.005);
}
.ep-textarea { resize: vertical; min-height: 88px; }
.ep-form-group .ep-input { margin-bottom: 0; }
.ep-inquiry-form .ep-btn-full { margin-top: 20px; padding: 14px; font-size: 15px; }

.ep-form-error  { font-size: 13px; color: #f87171; margin-top: 10px; }
.ep-inquiry-success {
    text-align: center;
    padding: 48px 24px;
    animation: epSuccessIn 0.4s ease;
}
/* Emil Kowalski: success entry with scale pop */
@keyframes epSuccessIn {
    from { opacity: 0; transform: translateY(12px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.ep-success-check {
    margin-bottom: 20px;
}
.ep-success-check svg circle {
    stroke-dasharray: 145;
    stroke-dashoffset: 145;
    animation: epCircleDraw 0.6s ease forwards;
}
.ep-success-check svg path {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: epCheckDraw 0.4s ease 0.4s forwards;
}
@keyframes epCircleDraw { to { stroke-dashoffset: 0; } }
@keyframes epCheckDraw { to { stroke-dashoffset: 0; } }
.ep-success-title {
    font-family: var(--ep-font-display, 'Space Grotesk', sans-serif);
    font-size: 22px; font-weight: 700;
    color: var(--ep-text, #f5f0eb);
    margin-bottom: 10px;
}
.ep-success-desc {
    font-size: 14px; line-height: 1.6;
    color: var(--ep-muted, rgba(245,240,235,0.55));
    max-width: 380px; margin: 0 auto 24px;
}
.ep-inquiry-success .ep-btn-secondary {
    font-size: 13px; padding: 8px 20px;
}

/* ── Steps / how it works inside inquiry ───────────────────────────────────── */

/* ── Footer ────────────────────────────────────────────────────────────────── */
.ep-footer {
    padding: 40px 0;
    border-top: 1px solid var(--ep-border);
}
.ep-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}
.ep-footer-logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--ep-text);
    letter-spacing: -0.4px;
}
.ep-footer-logo span { color: var(--ep-orange); }
.ep-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.ep-footer-links a {
    font-size: 13px;
    color: var(--ep-text3);
    transition: color 0.12s;
}
.ep-footer-links a:hover { color: var(--ep-text); }
.ep-footer-copy { font-size: 12px; color: var(--ep-text3); }

/* ── Checkout modal ─────────────────────────────────────────────────────────── */
.ep-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 20px;
}
.ep-modal {
    background: var(--ep-surface);
    border: 1px solid var(--ep-border2);
    border-radius: 20px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.ep-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: var(--ep-text3);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.ep-modal-close:hover { color: var(--ep-text); }
.ep-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--ep-text);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
    padding-right: 28px;
}
.ep-modal-sub {
    font-size: 13px;
    color: var(--ep-text3);
    margin-bottom: 22px;
}
.ep-modal-body { margin-bottom: 20px; }
.ep-modal-body .ep-input { margin-bottom: 14px; }
.ep-modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.ep-modal-footer .ep-btn-primary  { padding: 11px 22px; font-size: 14px; }
.ep-modal-footer .ep-btn-secondary { padding: 10px 20px; font-size: 14px; }
.ep-modal-secure {
    text-align: center;
    font-size: 12px;
    color: var(--ep-text3);
    margin-top: 14px;
}

/* ── Success bar ────────────────────────────────────────────────────────────── */
.ep-success-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.3);
    border-radius: 14px;
    padding: 16px 22px;
    max-width: 460px;
    width: calc(100% - 40px);
    backdrop-filter: blur(10px);
}
.ep-success-bar-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ep-success-icon {
    font-size: 20px;
    color: var(--ep-success);
    flex-shrink: 0;
    margin-top: 2px;
}
.ep-success-bar strong {
    display: block;
    font-size: 14px;
    color: var(--ep-success);
    margin-bottom: 2px;
}
.ep-success-bar p {
    font-size: 13px;
    color: var(--ep-text3);
    margin: 0;
}

/* ── Corner nav buttons (mobile-only, hidden on desktop) ──────────────────── */
.ep-corner-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ep-text3);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.ep-corner-nav:hover,
.ep-corner-nav:active {
    color: var(--ep-accent);
    background: rgba(217,119,87,0.09);
    border-color: rgba(217,119,87,0.25);
}
.ep-corner-label { line-height: 1; }

/* ── Nav actions (workspace corner + hamburger grouped on right) ───────────── */
.ep-nav-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

/* ── Nav: mobile (≤768px) — corner arrows visible, logo centered ──────────── */
@media (max-width: 768px) {
    .ep-nav-links  { display: none; }
    .ep-back-link  { display: none; }
    .ep-mobile-nav { display: block; }
    .ep-nav-scrim  { display: block; }
    /* Show corner arrows */
    .ep-corner-nav { display: inline-flex; }
    /* Space-between: left-corner ←  [logo centered]  [workspace → + ≡] */
    .ep-nav-inner {
        justify-content: space-between;
        position: relative;
    }
    /* Logo pinned absolutely to center — does not disturb flex flow */
    .ep-nav-left {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .ep-nav-left .ep-logo { pointer-events: auto; }
    /* Show hamburger */
    .ep-hamburger { display: flex; }
    /* Show mobile-nav theme btn, hide desktop one */
    .ep-theme-btn-navmobile { display: inline-flex; }
    #ep-theme-btn-desktop { display: none; }
}

@media (max-width: 640px) {
    .ep-hero { padding: 64px 0 52px; }
    .ep-steps { flex-direction: column; align-items: flex-start; }
    .ep-step-arrow { display: none; }
    .ep-feature-table th:nth-child(2), .ep-feature-table td:nth-child(2) { display: none; }
    .ep-footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Hero enhancements ─────────────────────────────────────────────────────── */
.ep-hero { position: relative; overflow: hidden; }
.ep-hero::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 560px;
    background: radial-gradient(ellipse at center, rgba(217,119,87,.10) 0%, transparent 68%);
    pointer-events: none; z-index: 0;
}
.ep-hero > * { position: relative; z-index: 1; }

.ep-hero-trust {
    display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px;
}
.ep-trust-badge {
    font-size: 12px; font-weight: 600; color: var(--ep-text3);
    background: rgba(255,255,255,.04); border: 1px solid var(--ep-border2);
    border-radius: 100px; padding: 5px 14px;
}

/* Proof items entrance */
@keyframes ep-proof-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ep-proof-item { animation: ep-proof-in 0.4s ease both; }
.ep-proof-item:nth-child(1) { animation-delay: 0.15s; }
.ep-proof-item:nth-child(2) { animation-delay: 0.27s; }
.ep-proof-item:nth-child(3) { animation-delay: 0.39s; }
.ep-proof-item:nth-child(4) { animation-delay: 0.51s; }

/* CTA pulse */
@keyframes ep-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,87,.0); }
    50%       { box-shadow: 0 0 0 12px rgba(217,119,87,.10); }
}
.ep-btn-primary.ep-pulse { animation: ep-pulse 3.5s ease-in-out infinite; }

/* ── How-demo-works strip ──────────────────────────────────────────────────── */
.ep-demo-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
.ep-demo-strip span { font-size: 12.5px; color: var(--ep-text3); }
.ep-demo-dot { color: var(--ep-border2); }

/* ── Metrics strip ─────────────────────────────────────────────────────────── */
.ep-metrics-strip {
    background: var(--ep-surface);
    border-top: 1px solid var(--ep-border);
    border-bottom: 1px solid var(--ep-border);
    padding: 36px 0;
}
.ep-metrics-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.ep-metric {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 44px; text-align: center;
}
.ep-metric-num {
    font-size: 32px; font-weight: 900; color: var(--ep-accent);
    letter-spacing: -1px; line-height: 1; margin-bottom: 6px;
}
.ep-metric-lbl {
    font-size: 11.5px; font-weight: 500; color: var(--ep-text3);
    text-transform: uppercase; letter-spacing: .5px;
}
.ep-metric-div {
    width: 1px; height: 44px; background: var(--ep-border2); flex-shrink: 0;
}

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.ep-testimonials-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px; margin-top: 16px;
}
@media (max-width: 860px) {
    .ep-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 16px auto 0; }
}
.ep-testimonial {
    background: var(--ep-surface2); border: 1px solid var(--ep-border);
    border-left: 3px solid var(--ep-accent); border-radius: 14px;
    padding: 24px 22px; display: flex; flex-direction: column; gap: 20px;
}
.ep-testimonial-quote {
    font-size: 14px; color: var(--ep-text2); line-height: 1.75; font-style: italic;
}
.ep-testimonial-quote::before {
    content: '"'; color: var(--ep-accent); font-size: 22px; font-style: normal;
    display: block; margin-bottom: 8px; line-height: 1;
}
.ep-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ep-testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
    opacity: 0.9;
}
.ep-testimonial-name { font-size: 13px; font-weight: 700; color: var(--ep-text); display: block; }
.ep-testimonial-role { font-size: 11.5px; color: var(--ep-text3); display: block; margin-top: 2px; }
.ep-testimonials-note {
    text-align: center; font-size: 12px; color: var(--ep-text3);
    margin-top: 24px; opacity: 0.7;
}

/* ── Security / trust block ────────────────────────────────────────────────── */
.ep-security-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 16px; margin-top: 40px;
}
@media (max-width: 900px) { .ep-security-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .ep-security-grid { grid-template-columns: 1fr; } }
.ep-security-card {
    background: var(--ep-surface2); border: 1px solid var(--ep-border);
    border-radius: 14px; padding: 22px 20px;
}
.ep-security-icon { display: block; margin-bottom: 14px; color: var(--ep-accent); line-height: 1; }
.ep-security-icon svg { display: block; }
.ep-security-title { font-size: 14px; font-weight: 700; color: var(--ep-text); margin-bottom: 8px; display: block; }
.ep-security-desc { font-size: 12.5px; color: var(--ep-text3); line-height: 1.65; }

/* ── Hamburger nav ─────────────────────────────────────────────────────────── */
.ep-hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 44px; height: 44px; background: none; border: none;
    cursor: pointer; padding: 8px; border-radius: 8px; transition: background 0.12s;
}
.ep-hamburger:hover { background: rgba(255,255,255,.05); }
.ep-hamburger span {
    display: block; width: 22px; height: 2px; background: var(--ep-text2);
    border-radius: 2px; transition: transform 0.2s ease, opacity 0.15s;
    transform-origin: center;
}
.ep-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ep-hamburger.open span:nth-child(2) { opacity: 0; }
.ep-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ep-mobile-nav {
    display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: var(--ep-surface); border-bottom: 1px solid var(--ep-border);
    z-index: 99; padding: 8px 0 24px;
    transform: translateY(-10px); opacity: 0;
    transition: transform 0.2s ease, opacity 0.15s ease;
    pointer-events: none;
}
.ep-mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.ep-mnav-link {
    display: block; padding: 15px 28px; font-size: 16px; font-weight: 500;
    color: var(--ep-text2); border-bottom: 1px solid var(--ep-border); transition: color 0.12s;
}
.ep-mnav-link:hover { color: var(--ep-accent); }
.ep-mnav-cta {
    display: flex; align-items: center; justify-content: center;
    margin: 16px 24px 0; padding: 14px 20px;
    background: var(--ep-accent); color: #fff !important; font-weight: 700;
    font-size: 15px; border-radius: 10px; text-align: center; transition: background 0.12s;
}
.ep-mnav-cta:hover { background: var(--ep-accent2); }
.ep-mnav-email { text-align: center; font-size: 12px; color: var(--ep-text3); margin-top: 14px; }

/* ── Drawer: back link (first item) ──── */
.ep-mnav-back {
    display: block; padding: 14px 28px; font-size: 13px; font-weight: 500;
    color: var(--ep-text3); border-bottom: 1px solid var(--ep-border);
    transition: color 0.12s;
}
.ep-mnav-back:hover { color: var(--ep-accent); }

/* ── Drawer: workspace sign-in (secondary CTA) ──── */
.ep-mnav-workspace {
    display: block; margin: 16px 24px 0; padding: 13px 20px;
    font-size: 14px; font-weight: 600; color: var(--ep-text2);
    border: 1px solid var(--ep-border2); border-radius: 10px;
    text-align: center; transition: border-color 0.15s, color 0.15s;
}
.ep-mnav-workspace:hover { border-color: var(--ep-text3); color: var(--ep-text); }

.ep-nav-scrim {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.55); z-index: 98;
    opacity: 0; transition: opacity 0.2s;
}
.ep-nav-scrim.open { opacity: 1; }

/* ── Sticky mobile CTA ─────────────────────────────────────────────────────── */
.ep-sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(18,18,16,0.97); border-top: 1px solid var(--ep-border2);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    z-index: 150; padding: 12px 16px;
    padding-bottom: max(12px, calc(12px + env(safe-area-inset-bottom)));
    align-items: center; gap: 12px;
    transform: translateY(100%); transition: transform 0.3s ease;
}
.ep-sticky-cta.visible { transform: translateY(0); }
.ep-sticky-link { font-size: 13px; color: var(--ep-text3); white-space: nowrap; flex-shrink: 0; }
.ep-sticky-link:hover { color: var(--ep-text); }
.ep-sticky-btn {
    flex: 1; display: block; background: var(--ep-accent); color: #fff !important;
    font-weight: 700; font-size: 14px; padding: 12px 18px; border-radius: 10px;
    text-align: center; transition: background 0.12s;
}
.ep-sticky-btn:hover { background: var(--ep-accent2); }
.ep-sticky-close {
    background: none; border: none; color: var(--ep-text3);
    font-size: 22px; cursor: pointer; padding: 2px 6px; line-height: 1; flex-shrink: 0;
}

/* ── Accessibility: reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ep-proof-item,
    .ep-btn-primary.ep-pulse,
    .ep-mobile-nav,
    .ep-sticky-cta { animation: none !important; transition: none !important; }
    .ep-mobile-nav.open { transform: none; opacity: 1; }
    .ep-sticky-cta.visible { transform: none; }
    .ep-faq-a, .ep-faq-a-inner { transition: none !important; }
}

/* ── Mobile responsive enhancements ───────────────────────────────────────── */
@media (max-width: 640px) {
    .ep-sticky-cta { display: flex; }
    /* Metrics 2×2 on mobile */
    .ep-metrics-inner { flex-wrap: wrap; }
    .ep-metric { width: 50%; padding: 18px 12px; }
    .ep-metric-div { display: none; }
    .ep-metric-num { font-size: 26px; }
    /* Demo strip stack */
    .ep-demo-dot { display: none; }
    .ep-demo-strip { gap: 6px; flex-direction: column; }
    /* Trust badges wrap */
    .ep-hero-trust { gap: 8px; }
    .ep-trust-badge { font-size: 11.5px; padding: 5px 12px; }
    /* Section titles */
    .ep-section-title { font-size: 22px; }
    .ep-section-sub { font-size: 14px; }
    /* Hero — tighter padding + correct typography */
    .ep-hero { padding: 52px 0 40px; }
    .ep-hero-h1 { font-size: 34px; letter-spacing: -0.8px; line-height: 1.1; }
    .ep-hero-sub { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
    /* Hero CTAs — full-width stacked */
    .ep-hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; padding: 0 2px; }
    .ep-hero-ctas .ep-btn-primary,
    .ep-hero-ctas .ep-btn-secondary { width: 100%; text-align: center; padding: 15px 20px; font-size: 15px; }
    /* Pricing cards — tighter mobile padding */
    .ep-plan-card { padding: 20px 18px 18px; border-radius: 14px; }
    .ep-plan-price { font-size: 32px; }
    .ep-pricing-grid { max-width: 100%; }
    /* FAQ font */
    .ep-faq-q { font-size: 14px; }
    /* Inquiry form */
    .ep-modal { padding: 24px 20px; }
    /* Pricing note */
    .ep-pricing-note { font-size: 12px; }
    /* Footer links wrap tighter */
    .ep-footer-links { gap: 16px; }
    /* Add bottom padding to footer to clear sticky CTA */
    .ep-footer { padding-bottom: 80px; }
}

/* ── Bottom CTA section ─────────────────────────────────────────────────────── */
.ep-bottom-cta {
    background: linear-gradient(135deg, rgba(217,119,87,.07) 0%, var(--ep-surface2) 55%);
    border-top: 1px solid var(--ep-border);
    border-bottom: 1px solid var(--ep-border);
    padding: 80px 0;
}
.ep-bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.ep-bottom-cta-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--ep-accent);
    margin-bottom: 10px;
}
.ep-bottom-cta-h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--ep-text);
    letter-spacing: -0.6px;
    line-height: 1.1;
    margin-bottom: 12px;
}
.ep-bottom-cta-sub {
    font-size: 15px;
    color: var(--ep-text3);
    max-width: 440px;
    line-height: 1.7;
}
.ep-bottom-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.ep-bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 12px;
}
.ep-arrow-ne { flex-shrink: 0; }
.ep-bottom-cta-note {
    font-size: 11.5px;
    color: var(--ep-text3);
    text-align: center;
    letter-spacing: .1px;
}
.ep-sales-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.10);
    width: 100%;
}
.ep-sales-contact p {
    font-size: 12px;
    color: var(--ep-text3);
    margin: 0;
}
.ep-sales-email,
.ep-sales-cal {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ep-text2);
    text-decoration: none;
    transition: color 0.15s;
}
.ep-sales-email:hover,
.ep-sales-cal:hover { color: var(--ep-accent); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 860px) {
    .ep-bottom-cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .ep-bottom-cta-actions { align-items: flex-start; }
    .ep-bottom-cta-btn { white-space: normal; }
}
@media (max-width: 640px) {
    .ep-bottom-cta { padding: 56px 0; }
    .ep-bottom-cta-h2 { font-size: 26px; }
    .ep-bottom-cta-sub { font-size: 14px; }
    .ep-bottom-cta-btn { width: 100%; justify-content: center; padding: 15px 20px; }
    .ep-bottom-cta-note { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════
   ANIMATION SYSTEM v2.0
   ══════════════════════════════════════════════════════════════════════ */

/* ── Keyframes ──────────────────────────────────────────────────────── */
@keyframes ep-reveal-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ep-reveal-scale {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ep-reveal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes ep-glow-breathe {
    0%, 100% { opacity: 0.55; }
    50%       { opacity: 1; }
}
@keyframes ep-metric-pop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.13); }
    100% { transform: scale(1); }
}
@keyframes ep-shimmer-sweep {
    0%   { transform: translateX(-100%); opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateX(250%); opacity: 0; }
}

/* ── Hero entrance — fires on page load ─────────────────────────────── */
.ep-hero-badge {
    animation: ep-reveal-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.06s;
}
.ep-hero-h1 {
    animation: ep-reveal-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.17s;
}
.ep-hero-sub {
    animation: ep-reveal-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.34s;
}
.ep-hero-trust {
    animation: ep-reveal-up 0.55s ease-out both;
    animation-delay: 0.50s;
}
.ep-hero-ctas {
    animation: ep-reveal-scale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.62s;
}
.ep-demo-strip {
    animation: ep-reveal-fade 0.55s ease-out both;
    animation-delay: 1.0s;
}

/* ── Hero glow — breathing pulse ────────────────────────────────────── */
.ep-hero::before {
    animation: ep-glow-breathe 6s ease-in-out infinite;
}

/* ── Scroll-reveal base states ──────────────────────────────────────── */
.ep-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--d, 0ms);
}
.ep-reveal-scale {
    opacity: 0;
    transform: scale(0.93) translateY(18px);
    transition: opacity 0.68s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.68s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--d, 0ms);
}
.ep-reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
    transition-delay: var(--d, 0ms);
}
.ep-reveal.in,
.ep-reveal-scale.in,
.ep-reveal-fade.in {
    opacity: 1;
    transform: none;
}

/* ── Metric number pop ──────────────────────────────────────────────── */
.ep-metric-num.ep-popped {
    animation: ep-metric-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ── Section title shimmer ──────────────────────────────────────────── */
.ep-section-title {
    position: relative;
    overflow: hidden;
}
.ep-section-title::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
    pointer-events: none;
    transform: translateX(-100%);
    opacity: 0;
}
.ep-section-title.ep-shimmer::after {
    animation: ep-shimmer-sweep 0.85s ease-out forwards;
    animation-delay: 0.3s;
}

/* ── Enhanced plan card hover ───────────────────────────────────────── */
.ep-plan-card {
    transition: border-color 0.28s ease,
                transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.32s ease;
}
.ep-plan-card:hover {
    border-color: rgba(217, 119, 87, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.42), 0 0 0 1px rgba(217,119,87,0.15);
}
.ep-plan-featured:hover {
    box-shadow: 0 28px 80px rgba(217,119,87,0.2), 0 0 0 1px rgba(217,119,87,0.38);
}

/* ── Testimonial card hover ─────────────────────────────────────────── */
.ep-testimonial {
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.32s ease;
}
.ep-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 52px rgba(0,0,0,0.32);
}

/* ── Security card hover ─────────────────────────────────────────────── */
.ep-security-card {
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.25s ease,
                box-shadow 0.32s ease;
}
.ep-security-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 87, 0.32);
    box-shadow: 0 14px 44px rgba(0,0,0,0.28);
}

/* ── Step number glow on reveal ─────────────────────────────────────── */
.ep-step.in .ep-step-num {
    background: rgba(217, 119, 87, 0.24);
    box-shadow: 0 0 20px rgba(217, 119, 87, 0.22);
    transition: background 0.5s ease 0.25s, box-shadow 0.5s ease 0.25s;
}

/* ── Nav scroll glass ────────────────────────────────────────────────── */
.ep-nav.ep-scrolled {
    background: rgba(6, 6, 5, 0.97);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 28px rgba(0,0,0,0.38);
}
[data-ep-theme="light"] .ep-nav.ep-scrolled {
    background: rgba(248, 248, 246, 0.98);
    box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 18px rgba(0,0,0,0.1);
}

/* ── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ep-hero-badge, .ep-hero-h1, .ep-hero-sub,
    .ep-hero-trust, .ep-hero-ctas, .ep-demo-strip { animation: none !important; }
    .ep-hero::before { animation: none !important; }
    .ep-reveal, .ep-reveal-scale, .ep-reveal-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .ep-plan-card:hover, .ep-testimonial:hover, .ep-security-card:hover {
        transform: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   INFINISCALE — Full-spectrum responsive overhaul
   Appended — additive only, no existing rules modified
   Covers: 375px tiny mobile · 2560px QHD · 3440px ultrawide · 4K
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Fluid containers — replace fixed 1100px/680px with viewport-aware clamp ── */
.ep-container {
    padding: 0 clamp(16px, 4vw, 48px);
    max-width: clamp(900px, 88vw, 1200px);
}
.ep-container-narrow {
    padding: 0 clamp(16px, 4vw, 48px);
    max-width: clamp(520px, 60vw, 760px);
}
.ep-nav-inner {
    max-width: clamp(900px, 88vw, 1200px);
    padding: 0 clamp(16px, 4vw, 40px);
}

/* ── Hero typography — fluid scaling ─────────────────────────────────────── */
.ep-hero-h1 {
    font-size: clamp(32px, 5vw, 72px);
}
.ep-hero-sub {
    font-size: clamp(15px, 1.4vw, 20px);
}

/* ── Section typography — fluid scaling ──────────────────────────────────── */
.ep-section-title {
    font-size: clamp(22px, 2.5vw, 40px);
}
.ep-section-sub {
    font-size: clamp(14px, 1.2vw, 17px);
    max-width: clamp(420px, 55vw, 640px);
}

/* ── Bottom CTA heading ───────────────────────────────────────────────────── */
.ep-bottom-cta-h2 {
    font-size: clamp(22px, 2.8vw, 44px);
}

/* ── Pricing grid — auto-fit so it gracefully handles any card count ────── */
.ep-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

/* ── Testimonials grid — auto-fit ────────────────────────────────────────── */
.ep-testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

/* ── Security grid — auto-fit ────────────────────────────────────────────── */
.ep-security-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

/* ── Tiny mobile — 375px and below ───────────────────────────────────────── */
@media (max-width: 375px) {
    .ep-container,
    .ep-container-narrow,
    .ep-nav-inner { padding: 0 14px; }

    .ep-hero { padding: 44px 0 32px; }
    .ep-hero-h1 { font-size: 28px; letter-spacing: -0.5px; }
    .ep-hero-sub { font-size: 14px; }
    .ep-btn-primary,
    .ep-btn-secondary { padding: 13px 16px; font-size: 14px; }

    .ep-section { padding: 52px 0; }
    .ep-section-title { font-size: 20px; }
    .ep-plan-card { padding: 18px 14px; }
    .ep-plan-price { font-size: 28px; }
    .ep-metric-num { font-size: 22px; }
    .ep-faq-q { font-size: 13px; padding: 15px 0; }

    /* Prevent iOS input zoom */
    input, textarea, select { font-size: 16px !important; }
}

/* ── QHD — 2560px ────────────────────────────────────────────────────────── */
@media (min-width: 2560px) {
    :root { font-size: 18px; }

    .ep-container,
    .ep-nav-inner {
        max-width: clamp(1200px, 70vw, 1600px);
    }
    .ep-container-narrow {
        max-width: clamp(700px, 50vw, 1000px);
    }

    .ep-hero { padding: 140px 0 110px; }
    .ep-section { padding: 110px 0; }

    .ep-plan-card { padding: 36px 32px 30px; }
    .ep-metric-num { font-size: 44px; }
    .ep-metric { padding: 0 clamp(32px, 4vw, 72px); }
}

/* ── Ultrawide — 3440px ───────────────────────────────────────────────────── */
@media (min-width: 3440px) {
    :root { font-size: 20px; }

    .ep-container,
    .ep-nav-inner {
        max-width: clamp(1400px, 55vw, 1920px);
    }
    .ep-container-narrow {
        max-width: clamp(900px, 40vw, 1200px);
    }

    /* Cap pricing at 3 columns max so cards don't stretch to 500px+ */
    .ep-pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 420px));
        justify-content: center;
    }

    .ep-hero { padding: 180px 0 140px; }
    .ep-section { padding: 140px 0; }
}
