/*
 * ALFA HR SaaS — public landing page stylesheet (2026-08-16 redesign).
 * Self-contained: intentionally does NOT load the 29k-line admin theme CSS.
 * Design base: approved mockup v4 (dark bold + waste calculator) — see
 * docs/product/LANDING_PAGE_ANALYSIS.md for the study behind it.
 * Direction-safe: uses logical properties so the same file serves RTL and LTR.
 */
:root {
  --primary: #005bb5;
  --primary-700: #012a57;
  --navy: #021c3b;
  --gold: #ffc107;
  --gold-2: #ffde59;
  --accent: #f7941d;
  --accent-600: #e07d09;
  --green: #17b26a;
  --bg: #050b18;
  --bg-2: #081326;
  --surface: #0d1f3d;
  --surface-2: #10254a;
  --border: rgba(255, 255, 255, .09);
  --border-strong: rgba(255, 255, 255, .16);
  --ink: #f5f8fc;
  --text: #b9c6dd;
  --muted: #7c8db0;
  --grad-gold: linear-gradient(135deg, var(--gold-2) 0%, var(--accent) 55%, var(--accent-600) 100%);
  --grad-cool: linear-gradient(135deg, #3b86d6 0%, var(--primary) 100%);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 32px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .45);
  --shadow-gold: 0 18px 46px rgba(247, 148, 29, .3);
  --t: .4s cubic-bezier(.16, 1, .3, 1);
  --container: 1180px;
  --font: "Segoe UI", Tahoma, "Inter", system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.alfa-landing {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.alfa-landing img, .alfa-landing svg, .alfa-landing canvas { max-width: 100%; display: block; }
.alfa-landing a { color: inherit; text-decoration: none; }
.alfa-landing h1, .alfa-landing h2, .alfa-landing h3, .alfa-landing h4, .alfa-landing h5 { color: var(--ink); margin: 0; text-wrap: balance; }
.al-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; }
.al-num { font-variant-numeric: tabular-nums; }
.alfa-landing ::selection { background: var(--gold); color: var(--navy); }
.alfa-landing a:focus-visible, .alfa-landing button:focus-visible, .alfa-landing input:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ===== Announcement topbar (admin-configurable, optional) ===== */
.al-topbar { background: var(--navy); color: #fff; text-align: center; font-size: 13.5px; padding: 8px 16px; border-bottom: 1px solid var(--border); }
.al-topbar p { margin: 0; }
.al-topbar a { color: var(--gold-2); font-weight: 700; }

/* ===== Header ===== */
.al-header { position: sticky; top: 0; z-index: 90; background: rgba(5, 11, 24, .72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.al-nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.al-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--ink); }
/* uploaded logos are dark wordmarks on transparent bg — a white chip keeps
   them legible on the dark header (same treatment as the auth pages) */
.al-brand img { height: 40px; width: auto; background: #ffffff; border-radius: 10px; padding: 5px 10px; box-sizing: content-box; }
.al-links { display: flex; gap: 26px; font-size: 15px; font-weight: 600; }
.al-links a { position: relative; color: var(--text); padding: 4px 0; transition: color var(--t); white-space: nowrap; }
.al-links a::after { content: ""; position: absolute; inset-inline: 0; bottom: -2px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--t); }
.al-links a:hover { color: #fff; }
.al-links a:hover::after { transform: scaleX(1); }
.al-cta-group { display: flex; align-items: center; gap: 12px; }
.al-burger { display: none; background: none; border: 1px solid var(--border-strong); border-radius: 10px; color: var(--ink); font-size: 20px; padding: 6px 12px; cursor: pointer; }

/* ===== Buttons ===== */
.al-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 999px; font-weight: 800; font-size: 14.5px; border: 1px solid transparent; cursor: pointer; transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t); white-space: nowrap; font-family: var(--font); }
.al-btn:hover { transform: translateY(-2px); }
/* color declarations are namespace-prefixed on purpose: the generic
   `.alfa-landing a { color: inherit }` reset outweighs a bare `.al-btn-gold`
   (0,1,1 vs 0,1,0), which made <a>-based gold buttons render light-on-gold
   (real user report, 2026-08-16) — the prefix restores the win. */
.al-btn-ghost { border-color: var(--border-strong); background: rgba(255, 255, 255, .03); }
.alfa-landing .al-btn-ghost { color: var(--ink); }
.al-btn-ghost:hover { background: rgba(255, 255, 255, .08); }
.al-btn-gold { background: var(--grad-gold); box-shadow: var(--shadow-gold); }
.alfa-landing .al-btn-gold { color: var(--navy); }
.al-btn-gold:hover { box-shadow: 0 22px 54px rgba(247, 148, 29, .45); }
.al-btn-navy { background: var(--grad-cool); }
.alfa-landing .al-btn-navy { color: #fff; }
.al-btn-lg { padding: 17px 32px; font-size: 16px; }
.al-btn-wa { background: var(--green); }
.alfa-landing .al-btn-wa { color: #fff; }
.al-btn-wa:hover { box-shadow: 0 14px 34px rgba(23, 178, 106, .35); }
.al-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== Hero ===== */
.al-hero { position: relative; overflow: hidden; padding: 72px 0 64px; }
.al-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 20% 10%, rgba(59, 134, 214, .16) 0%, transparent 60%); pointer-events: none; }
#alNetCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; pointer-events: none; }
.al-hero-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; pointer-events: none; filter: blur(60px); opacity: .35; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); top: -120px; inset-inline-end: -80px; transition: transform .2s ease-out; }
.al-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.al-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 999px; background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .2); color: #fff; font-size: 13.5px; font-weight: 700; margin-bottom: 26px; }
.al-badge .al-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); position: relative; flex-shrink: 0; }
.al-badge .al-pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--green); opacity: 0; animation: al-ping 2s ease-out infinite; }
@keyframes al-ping { 0% { transform: scale(.6); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.al-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 58px); font-weight: 900; line-height: 1.18; letter-spacing: -.02em; margin-bottom: 22px; }
.al-hero h1 .al-swap-wrap { display: inline-grid; text-align: start; vertical-align: bottom; }
.al-hero h1 .al-swap-wrap span { grid-area: 1 / 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; white-space: nowrap; }
.al-hero h1 .al-swap-wrap span.on { opacity: 1; transform: none; }
.al-hero p.al-lead { color: rgba(255, 255, 255, .83); font-size: 18px; line-height: 1.85; max-width: 540px; margin: 0 0 36px; }
.al-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }
.al-stat-row { display: flex; gap: 40px; flex-wrap: wrap; }
.al-stat-row .al-stat b { display: block; font-size: 28px; font-weight: 900; color: #fff; }
.al-stat-row .al-stat span { font-size: 13px; color: rgba(255, 255, 255, .65); }

/* real product screenshot card (browser-chrome frame).
   Composition note (2026-08-16 fix): the live-feed card overlaps via
   negative margins in normal flow — NOT absolute positioning — so the
   column's height always includes it and the animated card can never
   fall below the fold or get clipped, whatever the screenshot's aspect
   ratio is. */
.al-shot-wrap { position: relative; }
.al-shot-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0, 0, 0, .45), 0 0 90px rgba(59, 134, 214, .18); padding: 14px; overflow: hidden; }
.al-shot-card .chrome { display: flex; gap: 6px; margin: 2px 6px 12px; }
.al-shot-card .chrome span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.al-shot-card .chrome span:first-child { background: var(--accent); }
.al-shot-card img { width: 100%; height: auto; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.al-live-float { position: relative; z-index: 2; margin-top: -64px; margin-inline-start: -22px; width: min(350px, 90%); padding: 16px; }
.al-live-float .al-feed { min-height: 0; gap: 8px; }
.al-live-float .al-feed-item { padding: 9px 11px; }
.al-live-float .al-feed-item .al-fi { width: 32px; height: 32px; font-size: 14px; }
.al-live-float .al-live-head { margin-bottom: 12px; }
.al-live-float .al-live-foot { margin-top: 10px; padding-top: 8px; font-size: 10px; }

/* live activity feed card */
.al-live-card { position: relative; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 24px; }
.al-live-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.al-live-head h4 { font-size: 15px; }
.al-live-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 800; color: var(--green); background: rgba(23, 178, 106, .12); padding: 4px 10px; border-radius: 999px; }
.al-live-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.al-feed { display: flex; flex-direction: column; gap: 10px; min-height: 336px; }
.al-feed-item { display: flex; align-items: center; gap: 12px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; opacity: 0; transform: translateY(-8px); transition: opacity .5s ease, transform .5s ease; }
.al-feed-item.show { opacity: 1; transform: none; }
.al-feed-item .al-fi { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; font-size: 16px; }
.al-feed-item .al-fi.att { background: rgba(0, 91, 181, .22); }
.al-feed-item .al-fi.pay { background: rgba(247, 148, 29, .2); }
.al-feed-item .al-fi.lea { background: rgba(23, 178, 106, .18); }
.al-feed-item .al-fi.doc { background: rgba(59, 134, 214, .2); }
.al-feed-item b { display: block; font-size: 13.5px; color: var(--ink); font-weight: 700; }
.al-feed-item small { font-size: 11.5px; color: var(--muted); }
.al-feed-item .al-tago { margin-inline-start: auto; font-size: 10.5px; color: var(--muted); white-space: nowrap; }
.al-live-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); text-align: center; }

/* ===== Sections shell ===== */
.al-section { padding: 96px 0; position: relative; }
.al-section-alt { background: var(--bg-2); }
.al-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 900; letter-spacing: .08em; color: var(--gold-2); margin-bottom: 16px; }
.al-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); }
.al-eyebrow.center { justify-content: center; }
.al-section-head { max-width: 660px; margin-bottom: 56px; }
.al-section-head.center { margin-inline: auto; text-align: center; }
.al-section-head h2 { font-size: clamp(27px, 3.3vw, 40px); font-weight: 900; letter-spacing: -.015em; margin-bottom: 14px; }
.al-section-head p { font-size: 16.5px; color: var(--text); margin: 0; }
.al-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.al-reveal.in { opacity: 1; transform: translateY(0); }
/* prefers-reduced-motion is intentionally NOT honored on this page —
   owner decision 2026-08-16 (see the matching note in alfa-landing.js):
   the animations are part of the product identity and must run for every
   visitor. Do not reintroduce a reduce-motion media block here without
   the owner's sign-off. */

/* ===== Module marquee ===== */
.al-marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); overflow: hidden; padding: 20px 0; }
.al-marquee { display: flex; gap: 48px; width: max-content; animation: al-scroll 28s linear infinite; }
.al-marquee span { font-size: 15px; font-weight: 800; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.al-marquee span::before { content: "\25C6"; color: var(--gold); font-size: 9px; }
@keyframes al-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .al-marquee { animation-name: al-scroll-rtl; }
@keyframes al-scroll-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }

/* ===== Before / After ===== */
.al-ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.al-ba-card { border-radius: var(--radius-lg); padding: 38px 32px; border: 1px solid var(--border); }
.al-ba-before { background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent); }
.al-ba-after { background: linear-gradient(160deg, rgba(255, 193, 7, .09) 0%, rgba(247, 148, 29, .03) 100%); border-color: rgba(255, 193, 7, .25); box-shadow: var(--shadow); }
.al-ba-tag { display: inline-block; font-size: 12.5px; font-weight: 900; padding: 5px 14px; border-radius: 999px; margin-bottom: 18px; }
.al-ba-before .al-ba-tag { background: rgba(255, 255, 255, .06); color: var(--muted); }
.al-ba-after .al-ba-tag { background: var(--grad-gold); color: var(--navy); }
.al-ba-card h3 { font-size: 21px; margin-bottom: 20px; }
.al-ba-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.al-ba-list li { display: flex; gap: 12px; font-size: 15px; color: var(--text); }
.al-ba-before .al-ba-list li .m { color: #ef6b6b; flex-shrink: 0; font-weight: 900; }
.al-ba-after .al-ba-list li .m { color: var(--gold); flex-shrink: 0; font-weight: 900; }

/* ===== ROI calculators (tabbed) ===== */
.al-roi-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.al-roi-tab { padding: 12px 24px; border-radius: 999px; font-weight: 800; font-size: 14.5px; cursor: pointer; border: 1px solid var(--border-strong); background: transparent; color: var(--text); font-family: var(--font); transition: background var(--t), color var(--t), border-color var(--t); }
.al-roi-tab:hover { background: rgba(255, 255, 255, .05); }
.al-roi-tab.active { background: var(--grad-gold); color: var(--navy); border-color: transparent; box-shadow: var(--shadow-gold); }
.al-roi-pane { display: none; }
.al-roi-pane.active { display: block; animation: al-fade-in .35s ease; }
@keyframes al-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.al-roi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.al-roi-in { padding: 44px 40px; }
.al-roi-in h3 { font-size: 21px; margin-bottom: 8px; }
.al-roi-in > p { font-size: 14px; color: var(--muted); margin: 0 0 32px; }
.al-roi-field { margin-bottom: 28px; }
.al-roi-field label { display: flex; justify-content: space-between; font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 13px; gap: 12px; }
.al-roi-field label output { color: var(--gold); font-weight: 900; white-space: nowrap; }
.alfa-landing input[type="range"] { width: 100%; appearance: none; -webkit-appearance: none; height: 8px; border-radius: 6px; background: var(--border-strong); outline-offset: 6px; }
.alfa-landing input[type="range"]::-webkit-slider-thumb { appearance: none; -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-gold); border: 3px solid var(--surface); box-shadow: var(--shadow); cursor: grab; }
.alfa-landing input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-gold); border: 3px solid var(--surface); box-shadow: var(--shadow); cursor: grab; }
.al-roi-out { background: linear-gradient(160deg, var(--navy) 0%, #003b7a 100%); color: #fff; padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; gap: 24px; position: relative; overflow: hidden; }
.al-roi-out::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: .25; top: -120px; inset-inline-end: -80px; }
.al-roi-out > * { position: relative; z-index: 1; }
.al-roi-out .al-ro b { display: block; font-size: 34px; font-weight: 900; color: var(--gold); letter-spacing: -.01em; line-height: 1.15; }
.al-roi-out .al-ro .al-eq { font-size: 14px; color: var(--gold-2); font-weight: 700; }
.al-roi-out .al-ro span { font-size: 13.5px; color: rgba(255, 255, 255, .75); }
.al-roi-note { font-size: 11.5px; color: rgba(255, 255, 255, .5); border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 14px; }

/* ===== Feature spotlight (tabs) ===== */
.al-spot-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.al-spot-tabs { display: flex; flex-direction: column; gap: 6px; }
.al-spot-tab { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--radius-sm); cursor: pointer; border: 1px solid transparent; transition: background var(--t), border-color var(--t); background: none; text-align: start; font-family: var(--font); width: 100%; }
.al-spot-tab:hover { background: rgba(255, 255, 255, .03); }
.al-spot-tab.active { background: var(--surface); border-color: var(--border-strong); }
.al-spot-tab .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; flex-shrink: 0; transition: background var(--t); }
.al-spot-tab.active .ic { background: var(--grad-gold); }
.al-spot-tab .ic svg { width: 19px; height: 19px; stroke: var(--muted); transition: stroke var(--t); }
.al-spot-tab.active .ic svg { stroke: var(--navy); }
.al-spot-tab h5 { font-size: 15.5px; color: var(--text); font-weight: 700; transition: color var(--t); margin: 0; }
.al-spot-tab.active h5 { color: var(--ink); }
.al-spot-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; min-height: 340px; }
.al-spot-view { display: none; }
.al-spot-view.active { display: block; animation: al-fade-in .35s ease; }
.al-spot-view h4 { font-size: 22px; margin-bottom: 12px; }
.al-spot-view p { font-size: 15.5px; color: var(--text); margin: 0 0 26px; max-width: 520px; }
.al-spot-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.al-spot-chips span { font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); }

/* ===== Journey ===== */
.al-journey { position: relative; }
.al-journey-track { position: absolute; top: 27px; inset-inline: 4%; height: 2px; background: var(--border); }
.al-journey-fill { position: absolute; top: 0; inset-inline-start: 0; height: 100%; width: 0; background: var(--grad-gold); transition: width 1.6s cubic-bezier(.16, 1, .3, 1); }
.al-journey-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; position: relative; }
.al-journey-step { text-align: center; padding: 0 8px; }
.al-journey-step .n { width: 54px; height: 54px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border-strong); color: var(--muted); display: grid; place-items: center; font-weight: 900; font-size: 17px; margin: 0 auto 18px; position: relative; z-index: 1; transition: border-color .5s, color .5s, background .5s; }
.al-journey-step.on .n { background: var(--grad-gold); border-color: transparent; color: var(--navy); }
.al-journey-step h5 { font-size: 14.5px; margin-bottom: 4px; color: var(--ink); }
.al-journey-step p { font-size: 12.5px; color: var(--muted); margin: 0; }

/* ===== Pricing ===== */
.al-plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: stretch; }
.al-plan-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; display: flex; flex-direction: column; position: relative; transition: transform var(--t), box-shadow var(--t); }
.al-plan-card:hover { transform: translateY(-6px); }
.al-plan-card.pop { border: 1px solid transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--grad-gold) border-box; box-shadow: var(--shadow-gold); }
.al-plan-badge { position: absolute; top: -15px; inset-inline-start: 50%; transform: translateX(50%); background: var(--grad-gold); color: var(--navy); font-size: 12.5px; font-weight: 900; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
html[dir="ltr"] .al-plan-badge { transform: translateX(-50%); }
.al-plan-card h4 { font-size: 19px; margin-bottom: 6px; }
.al-plan-card .al-desc { font-size: 13.5px; color: var(--muted); margin: 0 0 22px; min-height: 42px; }
.al-plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.al-plan-price b { font-size: 38px; font-weight: 900; color: var(--ink); }
.al-plan-price span { font-size: 14px; color: var(--muted); }
.al-trial-chip { display: inline-block; font-size: 12px; font-weight: 800; color: var(--green); background: rgba(23, 178, 106, .12); padding: 4px 12px; border-radius: 999px; margin-bottom: 20px; width: fit-content; }
.al-plan-feats { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.al-plan-feats li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text); }
.al-plan-feats li .chk { width: 20px; height: 20px; border-radius: 50%; background: var(--surface-2); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; font-size: 11px; font-weight: 900; }
.al-plan-card.pop .al-plan-feats li .chk { background: var(--grad-gold); color: var(--navy); }

/* ===== Demo request / contact ===== */
.al-contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.al-contact-form { padding: 44px 40px; }
.al-contact-form h3 { font-size: 21px; margin-bottom: 8px; }
.al-contact-form > p { font-size: 14px; color: var(--muted); margin: 0 0 28px; }
.al-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.al-field { margin-bottom: 14px; }
.al-field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.al-field input, .al-field textarea { width: 100%; background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 12px; color: var(--ink); font-family: var(--font); font-size: 14.5px; padding: 12px 14px; transition: border-color var(--t); }
.al-field input:focus, .al-field textarea:focus { border-color: var(--gold); outline: none; }
.al-field textarea { resize: vertical; min-height: 96px; }
.al-contact-side { background: linear-gradient(160deg, var(--navy) 0%, #003b7a 100%); color: #fff; padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.al-contact-side h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.al-contact-side .row { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255, 255, 255, .85); }
.al-contact-side .row svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .85; }
.al-alert { border-radius: 12px; padding: 12px 16px; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.al-alert.success { background: rgba(23, 178, 106, .14); color: #4bd598; border: 1px solid rgba(23, 178, 106, .3); }
.al-alert.error { background: rgba(239, 107, 107, .12); color: #ef8f8f; border: 1px solid rgba(239, 107, 107, .3); }

/* ===== CTA band ===== */
.al-cta-band { background: linear-gradient(135deg, var(--navy) 0%, #003b7a 100%); border-radius: var(--radius-lg); padding: 64px 56px; text-align: center; position: relative; overflow: hidden; }
.al-cta-band::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: .35; top: -160px; inset-inline-start: -80px; }
.al-cta-band > * { position: relative; z-index: 1; }
.al-cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.al-cta-band p { color: rgba(255, 255, 255, .78); margin: 0 0 30px; font-size: 16px; }
.al-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== Footer ===== */
.al-footer { background: var(--bg-2); border-top: 1px solid var(--border); color: var(--muted); padding: 72px 0 28px; margin-top: 40px; }
.al-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.al-footer .al-brand { color: #fff; margin-bottom: 14px; }
.al-footer-grid p.al-desc { font-size: 14px; line-height: 1.8; max-width: 300px; }
.al-footer-grid h5 { color: var(--ink); font-size: 14.5px; margin-bottom: 18px; }
.al-footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.al-footer-grid ul a:hover { color: var(--gold-2); }
.al-contact-block { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.al-contact-block .row { display: flex; align-items: center; gap: 10px; }
.al-contact-block .row svg { width: 17px; height: 17px; flex-shrink: 0; opacity: .8; }
.al-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ===== Custom pages (About / Terms / Privacy) ===== */
.al-page-hero { background: linear-gradient(155deg, var(--navy) 0%, #00306a 60%, #004a9a 100%); padding: 70px 0 60px; text-align: center; }
.al-page-hero h1 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); font-weight: 900; }
.al-page-body { padding: 60px 0 80px; }
/* Admin-authored page HTML (Summernote / pasted Word docs — see
   Modules/LandingPage/Resources/views/landingpage/menubar/edit.blade.php) ships
   its own inline colors/fonts built for a plain white document, e.g. a flat mid-grey
   heading color and light-grey <hr> rules meant to sit on #fff, not this site's dark
   navy/gold identity — a plain white card reproduced that mismatch verbatim (found
   2026-08-17, reported directly against /pages/about_us). Rather than fight arbitrary
   pasted markup per-page, the block tags below are force-styled with `!important`
   (author !important legitimately outranks a plain inline style — see MDN cascade
   order) onto the site's own navy/ink palette and font, so any custom page reads as
   part of the ALFA brand regardless of what was pasted in. Inline `<span>` accents
   (e.g. About Us's existing orange highlight spans, which already echo --gold) are
   deliberately left untouched since only block-level tags are targeted. */
.al-page-content {
  position: relative;
  background: #f7f9fc;
  color: #37414f;
  border: 1px solid rgba(2, 28, 59, .08);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow), 0 0 90px rgba(59, 134, 214, .14);
  overflow-wrap: break-word;
  font-family: var(--font) !important;
  line-height: 1.85;
}
.al-page-content::before { content: ""; position: absolute; inset-inline: 0; top: 0; height: 4px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: var(--grad-gold); }
.al-page-content :where(h1, h2, h3, h4, h5, h6) { color: var(--navy) !important; font-family: var(--font) !important; font-weight: 800 !important; line-height: 1.35 !important; margin: 30px 0 14px !important; }
.al-page-content :where(h1, h2, h3, h4, h5, h6):first-child { margin-top: 0 !important; }
.al-page-content :where(p, li, td, th, div) { color: #37414f !important; font-family: var(--font) !important; }
.al-page-content hr { border: none !important; border-top: 1px solid rgba(2, 28, 59, .12) !important; margin: 28px 0 !important; }
.al-page-content a { color: var(--accent-600); text-decoration: underline; }
.al-page-content ul, .al-page-content ol { padding-inline-start: 22px; }
.al-page-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.al-page-content table { border-collapse: collapse; width: 100%; }
.al-page-content td, .al-page-content th { border: 1px solid rgba(2, 28, 59, .12) !important; padding: 8px 12px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .al-links { display: none; }
  .al-burger { display: block; }
  .al-header.menu-open .al-links { display: flex; position: absolute; top: 100%; inset-inline: 0; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 18px 24px; gap: 16px; }
}
@media (max-width: 980px) {
  .al-hero-grid, .al-spot-grid, .al-ba-grid, .al-contact-grid { grid-template-columns: 1fr; }
  .al-roi-wrap { grid-template-columns: 1fr; }
  .al-hero { text-align: center; }
  .al-live-float { width: 100%; margin-top: 16px; margin-inline-start: 0; }
  .al-hero p.al-lead { margin-inline: auto; }
  .al-hero-actions, .al-stat-row { justify-content: center; }
  .al-journey-steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .al-journey-track { display: none; }
  .al-footer-grid { grid-template-columns: 1fr 1fr; }
  .al-cta-band { padding: 48px 28px; }
  .al-form-row { grid-template-columns: 1fr; }
  .al-page-content { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .al-journey-steps { grid-template-columns: 1fr 1fr; }
  .al-footer-grid { grid-template-columns: 1fr; }
  .al-cta-group .al-btn-ghost { display: none; }
}
