/**
 * site.css — the Dalverle public site design system.
 *
 * Replaces the Tailwind Play CDN (cdn.tailwindcss.com), which shipped a
 * ~300KB runtime compiler to every visitor, caused flash-of-unstyled-content
 * and is explicitly not for production. This is plain CSS: no build step,
 * no runtime, cacheable.
 *
 * Design language matches the admin rebuild: Inter, soft canvas, white
 * bordered surfaces, purple/orange brand accents kept from the original.
 */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --brand:        #7c3aed;
    --brand-dark:   #6d28d9;
    --brand-soft:   #f5f3ff;
    --accent:       #ea580c;
    --accent-soft:  #fff7ed;
    --ink:          #0f172a;
    --ink-soft:     #475569;
    --ink-faint:    #94a3b8;
    --line:         #e7e9f0;
    --line-soft:    #f1f3f9;
    --canvas:       #ffffff;
    --canvas-alt:   #f8fafc;
    --green:        #059669;
    --green-soft:   #ecfdf5;
    --red:          #dc2626;
    --red-soft:     #fef2f2;
    --r:            16px;
    --r-sm:         10px;
    --shadow:       0 1px 2px rgba(16,24,40,.04);
    --shadow-md:    0 8px 24px rgba(16,24,40,.08);
    --shadow-lg:    0 20px 48px rgba(16,24,40,.14);
    --container:    1200px;
    --gradient:     linear-gradient(135deg, #7c3aed 0%, #ea580c 100%);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--canvas);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; letter-spacing: -0.025em; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hidden { display: none !important; }
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--brand); color: #fff; padding: 0.75rem 1.25rem;
    border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Visible focus for keyboard users only */
:focus-visible { outline: 3px solid rgba(124,58,237,.45); outline-offset: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--alt { background: var(--canvas-alt); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__eyebrow {
    display: inline-block; background: var(--brand-soft); color: var(--brand);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.35rem 0.85rem;
    border-radius: 999px; margin-bottom: 1rem;
}
.section__lead { color: var(--ink-soft); font-size: 1.05rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.7rem 1.4rem; border-radius: var(--r-sm);
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    border: 1px solid transparent; transition: all .16s ease;
    white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--gradient { background: var(--gradient); color: #fff; }
.btn--gradient:hover { opacity: .92; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--ghost:hover { background: var(--brand-soft); }
.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { background: var(--brand-soft); }
.btn--lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner {
    max-width: var(--container); margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-brand img { height: 38px; width: auto; object-fit: contain; }
.site-nav { display: flex; gap: 1.75rem; }
.site-nav__link {
    font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
    position: relative; padding: 0.25rem 0; transition: color .15s;
}
.site-nav__link::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
    background: var(--brand); transition: right .2s ease;
}
.site-nav__link:hover { color: var(--brand); }
.site-nav__link:hover::after, .site-nav__link.is-active::after { right: 0; }
.site-nav__link.is-active { color: var(--brand); }
.site-header__actions { display: flex; gap: 0.6rem; }
.site-header__burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.site-header__burger span {
    display: block; width: 22px; height: 2px; border-radius: 2px;
    background: var(--brand); transition: transform .2s, opacity .2s;
}
.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ──────────────────────────────────────── */
.mobile-menu {
    position: fixed; inset: 0; z-index: 60;
    background: #fff; padding: 1.25rem;
    display: flex; flex-direction: column; gap: 1.5rem;
    overflow-y: auto;
    animation: menuIn .18s ease-out;
}
.mobile-menu[hidden] { display: none; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__title { font-size: 1.15rem; font-weight: 800; color: var(--brand); }
.mobile-menu__close {
    background: none; border: none; font-size: 2rem; line-height: 1;
    color: var(--ink-faint); cursor: pointer; padding: 0 0.5rem;
}
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a {
    padding: 0.9rem 0.25rem; font-weight: 600; color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
}
.mobile-menu__links a:active { color: var(--brand); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: auto; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative; overflow: hidden;
    padding: clamp(3rem, 8vw, 6rem) 0;
    background:
        radial-gradient(60rem 30rem at 15% -10%, rgba(124,58,237,.10), transparent 60%),
        radial-gradient(50rem 26rem at 90% 0%, rgba(234,88,12,.10), transparent 60%);
}
.hero__grid {
    max-width: var(--container); margin: 0 auto; padding: 0 1.25rem;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
}
.hero__title { margin-bottom: 1rem; }
.hero__title .grad {
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 34rem; }
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.75rem 0 1.25rem; }
.hero__proof { display: flex; gap: 1.75rem; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.85rem; }
.hero__proof strong { display: block; font-size: 1.35rem; color: var(--ink); font-weight: 800; }
.hero__media {
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    background: #fff;
}

/* ── Cards & grids (symmetric) ──────────────────────────── */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 1.6rem; box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
    height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #dcd6f5; }
.card__icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-soft); color: var(--brand);
    font-size: 1.15rem; margin-bottom: 1rem;
}
.card__icon--accent { background: var(--accent-soft); color: var(--accent); }
.card__icon--green  { background: var(--green-soft);  color: var(--green); }
.card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.card p  { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* Channel badges */
.channel-badges { display: flex; gap: 0.4rem; }
.channel-badge {
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem; border-radius: 6px; color: #fff;
}
.channel-badge--so { background: var(--brand); }
.channel-badge--to { background: var(--accent); }
.channel-badge--do { background: var(--green); }

/* ── Pricing ────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.plan {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1rem;
    box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured { border-color: var(--brand); box-shadow: var(--shadow-md); position: relative; }
.plan--featured::before {
    content: 'Most Popular'; position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%); background: var(--gradient); color: #fff;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
    padding: 0.3rem 0.9rem; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.plan__price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; }
.plan__price span { font-size: 0.95rem; font-weight: 600; color: var(--ink-faint); }
.plan__features { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.plan__features li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }
.plan__features li::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ── Forms ──────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="number"], select, textarea {
    width: 100%; padding: 0.75rem 0.9rem;
    border: 1px solid #dfe3ec; border-radius: var(--r-sm);
    font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(124,58,237,.12);
    outline: none;
}
textarea { min-height: 130px; resize: vertical; }

.newsletter { display: flex; gap: 0.5rem; }
.newsletter input { flex: 1; }
.form-status {
    margin-top: 0.6rem; padding: 0.7rem 0.9rem; border-radius: var(--r-sm);
    font-size: 0.88rem; font-weight: 500;
}
.form-status.bg-green-500 { background: var(--green-soft); color: #065f46; }
.form-status.bg-red-500   { background: var(--red-soft);   color: #991b1b; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: #12101c; color: #cbd5e1; padding: 3.5rem 1.25rem 1.5rem; margin-top: 2rem; }
.site-footer__grid {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem;
}
.site-footer img { filter: brightness(0) invert(1); margin-bottom: 1rem; height: 36px; width: auto; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.site-footer p, .site-footer li { font-size: 0.88rem; }
.site-footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer a { color: #cbd5e1; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.site-footer__note { color: var(--ink-faint); }
.site-footer .newsletter input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: #fff; }
.site-footer .newsletter input::placeholder { color: #94a3b8; }
.site-footer__bar {
    max-width: var(--container); margin: 2.5rem auto 0;
    padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1);
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    font-size: 0.82rem; color: #94a3b8;
}

/* ── WhatsApp FAB ───────────────────────────────────────── */
.whatsapp-fab {
    position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 55;
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: #25D366; color: #fff; font-weight: 600; font-size: 0.9rem;
    padding: 0.75rem 1.1rem; border-radius: 999px;
    box-shadow: 0 10px 26px rgba(37,211,102,.35);
    transition: transform .16s, box-shadow .16s;
}
.whatsapp-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.45); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__media { order: -1; }
}
@media (max-width: 900px) {
    .site-nav, .site-header__actions { display: none; }
    .site-header__burger { display: flex; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__bar { flex-direction: column; text-align: center; }
    .newsletter { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .whatsapp-fab span { display: none; }
    .whatsapp-fab { padding: 0.85rem; border-radius: 50%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

@media print {
    .site-header, .mobile-menu, .whatsapp-fab, .site-footer { display: none !important; }
}

/* ══════════════════════════════════════════════════════════
   Landing page components
   ══════════════════════════════════════════════════════════ */

.site-header.is-scrolled { box-shadow: var(--shadow-md); }

[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

.muted-label { color: var(--ink-faint); font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }

.callout {
    margin-top: 1rem; padding: 1rem; border-radius: 12px;
    background: var(--brand-soft); border: 1px solid #e4dcff;
}
.callout strong { display: block; margin-bottom: .35rem; font-size: .9rem; color: var(--brand); }
.callout p { font-size: .86rem; color: var(--ink-soft); margin-bottom: .6rem; }

.ticks, .arrows, .crosses { display: flex; flex-direction: column; gap: .45rem; margin-top: .5rem; }
.ticks li, .arrows li, .crosses li {
    display: flex; gap: .5rem; font-size: .87rem; color: var(--ink-soft); align-items: flex-start;
}
.ticks li::before   { content: '✓'; color: var(--green);  font-weight: 800; flex-shrink: 0; }
.arrows li::before  { content: '→'; color: var(--brand);  font-weight: 800; flex-shrink: 0; }
.crosses li::before { content: '✗'; color: var(--red);    font-weight: 800; flex-shrink: 0; }

/* Industries */
.industry-card { display: flex; flex-direction: column; gap: .7rem; }
.industry-card__head { display: flex; align-items: center; gap: .7rem; }
.industry-card__icon { font-size: 1.7rem; line-height: 1; }
.industry-card h3 { margin: 0; }

/* Comparison table */
.table-wrap {
    margin-top: 2.5rem; overflow-x: auto; background: #fff;
    border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare-table th, .compare-table td { padding: .9rem 1rem; text-align: left; }
.compare-table thead th {
    background: var(--canvas-alt); font-size: .74rem; text-transform: uppercase;
    letter-spacing: .06em; color: var(--ink-soft); border-bottom: 1px solid var(--line);
    text-align: center;
}
.compare-table thead th:first-child, .compare-table thead th:last-child { text-align: left; }
.compare-table thead th span { display: block; font-size: .66rem; font-weight: 500; color: var(--ink-faint); text-transform: none; letter-spacing: 0; }
.compare-table tbody th { font-weight: 600; font-size: .9rem; }
.compare-table tbody td { text-align: center; font-size: .88rem; color: var(--ink-soft); }
.compare-table tbody td:last-child { text-align: left; }
.compare-table tbody tr { border-bottom: 1px solid var(--line-soft); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: #faf9ff; }
.compare-table .no { color: var(--ink-faint); }

/* Pricing */
.plan__tagline  { font-size: .95rem; font-weight: 600; margin: .4rem 0 .2rem; }
.plan__audience { font-size: .82rem; color: var(--ink-faint); margin: 0; }
.plan__local    { font-size: .82rem; color: var(--ink-faint); margin: .1rem 0 0; }
.plan__lead     { font-weight: 700; font-size: .9rem; color: var(--brand); margin: 0; }
.plan__features li { align-items: flex-start; }
.plan__features strong { display: block; font-weight: 600; color: var(--ink); font-size: .9rem; }
.plan__features em { display: block; font-style: normal; font-size: .8rem; color: var(--ink-faint); }
.plan__note { text-align: center; font-size: .8rem; color: var(--ink-faint); margin: 0; }

.vs-grid { margin-top: 2.5rem; }
.vs-card h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.vs-card--against { background: var(--red-soft); border-color: #fecaca; }
.vs-card--for     { background: var(--green-soft); border-color: #a7f3d0; }

.compare-note {
    text-align: center; margin: 1.75rem auto 0; max-width: 680px;
    font-size: .92rem; color: var(--ink-soft);
}

.trial-banner {
    margin-top: 2.5rem; padding: 2.25rem 1.5rem; text-align: center;
    border-radius: var(--r); background: var(--gradient); color: #fff;
    box-shadow: var(--shadow-md);
}
.trial-banner h3 { color: #fff; margin-bottom: .35rem; }
.trial-banner p { opacity: .92; margin-bottom: 1.25rem; }

.roi { margin-top: 2.5rem; background: #fff; border: 1px solid var(--line);
    border-radius: var(--r); padding: 1.75rem; box-shadow: var(--shadow); }
.roi h3 { font-size: 1.05rem; text-align: center; }
.roi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.25rem; }
.roi__item { text-align: center; padding: 1.1rem; background: var(--canvas-alt);
    border-radius: 12px; border: 1px solid var(--line); }
.roi__item strong { display: block; font-size: 2rem; font-weight: 800; color: var(--brand);
    letter-spacing: -.03em; margin-bottom: .3rem; }
.roi__item span { font-size: .83rem; color: var(--ink-soft); }
.roi__source { text-align: center; font-size: .8rem; color: var(--ink-faint); margin: 1rem 0 0; }

/* Payments */
.payments { margin-top: 2.5rem; text-align: center; }
.payments__label { font-size: .74rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--ink-faint); }
.payments__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 2.25rem; margin: 1.25rem 0; }
.payments__logos img { height: 28px; width: auto; opacity: .75; transition: opacity .16s; }
.payments__logos img:hover { opacity: 1; }
.payments__note { font-size: .84rem; color: var(--ink-faint); margin: 0; }

/* FAQ */
.faq { margin-top: 2.5rem; max-width: 780px; margin-inline: auto; }
.faq h3 { text-align: center; margin-bottom: 1.25rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 1rem 1.25rem; margin-bottom: .6rem; }
.faq__item summary { font-weight: 600; cursor: pointer; font-size: .95rem; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.35rem; color: var(--brand); font-weight: 400; flex-shrink: 0; }
.faq__item[open] summary::after { content: '−'; }
.faq__item p { margin: .75rem 0 0; font-size: .9rem; color: var(--ink-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info .card { padding: 1.25rem; }
.contact-info h3 { font-size: 1rem; }
.contact-info p { font-size: .9rem; }
.contact-info a { color: var(--brand); }
.contact-info a:hover { text-decoration: underline; }
.contact-form-card h3 { margin-bottom: 1.25rem; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .roi__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .payments__logos { gap: 1.5rem; }
    .hero__proof { gap: 1.25rem; }
}


/* ══════════════════════════════════════════════════════════
   Tailwind compatibility layer
   The converted pages (blog, shops, terms, guide, login, signup) still use
   Tailwind utility classes in their markup. The Play CDN compiler is gone,
   so these are the utilities those pages actually use, written as plain CSS.
   ══════════════════════════════════════════════════════════ */

.gradient-bg { background: var(--gradient) !important; color: #fff; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Layout */
.block { display: block; } .inline-block { display: inline-block; }
.flex { display: flex; } .inline-flex { display: inline-flex; } .grid { display: grid; }
.flex-col { flex-direction: column; } .flex-wrap { flex-wrap: wrap; } .flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; } .items-start { align-items: flex-start; } .items-end { align-items: flex-end; }
.justify-center { justify-content: center; } .justify-between { justify-content: space-between; }
.text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; }
.relative { position: relative; } .absolute { position: absolute; } .fixed { position: fixed; }
.sticky { position: sticky; } .top-0 { top: 0; } .inset-0 { inset: 0; }
.z-50 { z-index: 50; } .overflow-hidden { overflow: hidden; } .overflow-y-auto { overflow-y: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; } .h-full { height: 100%; } .max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; } .max-w-3xl { max-width: 48rem; } .max-w-2xl { max-width: 42rem; }

/* Grids */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0,1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
.space-y-2 > * + * { margin-top: .5rem; } .space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; } .space-y-6 > * + * { margin-top: 1.5rem; }
.space-x-3 > * + * { margin-left: .75rem; } .space-x-6 > * + * { margin-left: 1.5rem; }

/* Spacing */
.p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-1 { margin-bottom: .25rem; } .mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; } .mt-8 { margin-top: 2rem; }
.pt-4 { padding-top: 1rem; }

/* Type */
.text-xs { font-size: .75rem; } .text-sm { font-size: .875rem; } .text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; } .text-4xl { font-size: 2.25rem; } .text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; } .font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; } .font-extrabold { font-weight: 800; }
.leading-relaxed { line-height: 1.625; } .uppercase { text-transform: uppercase; }

/* Color */
.text-white { color: #fff; } .text-gray-300 { color: #d1d5db; } .text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; } .text-gray-700 { color: #374151; } .text-gray-900 { color: #111827; }
.text-purple-600 { color: var(--brand); } .text-orange-500 { color: var(--accent); }
.text-green-600 { color: var(--green); } .text-red-500 { color: var(--red); }
.bg-white { background: #fff; } .bg-gray-50 { background: #f9fafb; } .bg-gray-100 { background: #f3f4f6; }
.bg-purple-50 { background: var(--brand-soft); } .bg-purple-500, .bg-purple-600 { background: var(--brand); }
.bg-orange-500 { background: var(--accent); } .bg-green-500 { background: var(--green); }
.bg-red-500 { background: var(--red); }

/* Borders */
.rounded { border-radius: .25rem; } .rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; } .rounded-2xl { border-radius: 1rem; } .rounded-full { border-radius: 9999px; }
.border { border: 1px solid var(--line); } .border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom: 1px solid var(--line); } .border-t { border-top: 1px solid var(--line); }
.border-gray-100 { border-color: #f3f4f6; } .border-gray-200 { border-color: #e5e7eb; }
.border-purple-600 { border-color: var(--brand); }
.shadow-sm { box-shadow: var(--shadow); } .shadow-lg { box-shadow: var(--shadow-md); }
.shadow-xl { box-shadow: var(--shadow-lg); }

/* States */
.transition { transition: all .16s ease; }
.hover\:text-white:hover { color: #fff; }
.hover\:text-purple-600:hover { color: var(--brand); }
.hover\:bg-purple-50:hover { background: var(--brand-soft); }
.hover\:opacity-90:hover { opacity: .9; }
.hover\:text-red-500:hover { color: var(--red); }
.brightness-0 { filter: brightness(0); } .invert { filter: invert(1); }
.brightness-0.invert { filter: brightness(0) invert(1); }
.backdrop-blur-sm { backdrop-filter: blur(6px); }
.object-contain { object-fit: contain; } .object-cover { object-fit: cover; }
.h-10 { height: 2.5rem; } .h-12 { height: 3rem; } .w-auto { width: auto; }
.h-6 { height: 1.5rem; } .w-6 { width: 1.5rem; }

/* Responsive utilities the pages rely on */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-4xl { font-size: 2.25rem; }
}
@media (max-width: 767px) {
    .hidden.md\:flex { display: none; }
    .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
}
