﻿/* =====================================================================
   OmniTrax Shipping & Logistics â€” compiled stylesheet (hand-authored).
   This is a standalone build of the design system so the UI renders before
   Node/Tailwind is installed. Once the toolchain is available, run
   `npm run build:css` to regenerate this file from src/tailwind/input.css.
   ===================================================================== */

:root {
  /* Brand palette â€” OmniTrax: #890886 (purple), #D08BFF (light purple),
     #191919 (near-black), #FFFFFF (white). */
  --brand-50:#fbeffb; --brand-100:#f4d9f3; --brand-200:#e8b4e6;
  --brand-500:#a80aa4; --brand-600:#890886; --brand-700:#6d066a;
  --brand-800:#480346; --brand-900:#191919;
  --accent-400:#d08bff; --accent-500:#b45cf0;
  --gold-400:#e8b4e6; --gold-500:#c77fd0;
  --ink-900:#191919; --ink-700:#333333; --ink-600:#4b4b4b; --ink-500:#6b6b6b;
  --ink-400:#9a9a9a; --ink-300:#cccccc; --ink-200:#e4e4e7; --ink-100:#f3f2f5; --ink-50:#faf9fb;
  --white:#ffffff;
  --danger:#dc2626; --danger-bg:#fef2f2; --danger-bd:#fecaca; --danger-tx:#991b1b;
  --success:#16a34a; --success-bg:#f0fdf4; --success-bd:#bbf7d0; --success-tx:#166534;
  --info-bg:#fbeffb; --info-bd:#e8b4e6; --info-tx:#6d066a;
  --radius:12px; --radius-lg:16px; --radius-full:999px;
  --shadow-card:0 1px 3px rgba(25,25,25,.08),0 1px 2px rgba(25,25,25,.06);
  --shadow-lift:0 10px 30px rgba(74,3,70,.14);
  --font:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing:border-box; }
* { margin:0; }
html { -webkit-text-size-adjust:100%; }
body { font-family:var(--font); line-height:1.55; -webkit-font-smoothing:antialiased; }
img,svg { display:block; max-width:100%; }
a { color:var(--brand-600); text-decoration:none; }
a:hover { text-decoration:underline; }
ul { list-style:none; padding:0; }
button { font:inherit; cursor:pointer; }
h1,h2,h3,h4 { color:var(--brand-900); line-height:1.2; font-weight:700; }
table { border-collapse:collapse; width:100%; }

/* ---- Layout primitives ---- */
.site { background:var(--ink-50); color:var(--ink-900); min-height:100vh; display:flex; flex-direction:column; }
.container { width:100%; max-width:1152px; margin:0 auto; padding:0 20px; }
.narrow { max-width:768px; margin-left:auto; margin-right:auto; }
.site-main { flex:1; padding-top:8px; }

/* ---- Header ---- */
.site-header { position:sticky; top:0; z-index:40; background:var(--white); border-bottom:1px solid var(--ink-200); box-shadow:var(--shadow-card); }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; height:120px; }
.brand { display:inline-flex; align-items:center; gap:9px; font-weight:800; font-size:20px; color:var(--brand-900); }
.brand:hover { text-decoration:none; }
.brand-mark { color:var(--brand-600); display:inline-flex; }
.brand-accent { color:var(--accent-500); }
.brand-logo { height:56px; width:auto; display:block; }
/* Public header: keep the logo's visual size, but crop its built-in top/bottom
   whitespace so the header bar can be shorter. Logo stays centred. */
.site-header .brand { height:120px; overflow:hidden; align-items:center; }
.site-header .brand-logo { height:200px; }
.portal-brand .brand-logo { height:52px; background:#fff; border-radius:10px; padding:4px; box-sizing:border-box; box-shadow:0 1px 2px rgba(25,25,25,.12); }
/* Footer logo: crop the mark's built-in whitespace so it reads larger without
   an oversized white plate (same trick as the header). The framing lives on the
   .brand wrapper — a border on the <img> would be clipped by the crop. */
.site-footer .brand { display:inline-flex; align-items:center; justify-content:center; width:fit-content; height:96px; padding:0 16px; overflow:hidden; background:#fff; border-radius:18px; border:1px solid rgba(208,139,255,.45); box-shadow:0 0 0 5px rgba(208,139,255,.14), 0 0 0 10px rgba(208,139,255,.06), 0 12px 28px rgba(0,0,0,.28); transition:border-color .3s ease, box-shadow .3s ease; }
.site-footer .brand:hover { border-color:rgba(208,139,255,.8); box-shadow:0 0 0 5px rgba(208,139,255,.22), 0 0 0 12px rgba(208,139,255,.10), 0 14px 32px rgba(0,0,0,.34); }
.site-footer .brand-logo { height:160px; background:none; border-radius:0; padding:0; }
.site-nav { display:flex; align-items:center; gap:6px; }
.nav-link { color:var(--ink-600); font-weight:500; padding:8px 12px; border-radius:8px; }
.nav-link:hover { color:var(--brand-700); background:var(--ink-100); text-decoration:none; }
.header-actions { display:flex; align-items:center; gap:10px; }

/* Hamburger */
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:0; padding:8px; }
.nav-toggle span { width:22px; height:2px; background:var(--ink-700); border-radius:2px; }

/* ---- Buttons ---- */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:var(--radius); padding:10px 18px; font-weight:600; font-size:14px; border:1px solid transparent; transition:background-color .15s,border-color .15s,color .15s; text-decoration:none; }
.btn:hover { text-decoration:none; }
.btn-primary { background:var(--brand-600); color:#fff; }
.btn-primary:hover { background:var(--brand-700); color:#fff; }
.btn-outline { border-color:var(--brand-600); color:var(--brand-600); background:transparent; }
.btn-outline:hover { background:var(--brand-50); }
.btn-ghost { color:var(--ink-700); background:transparent; }
.btn-ghost:hover { background:var(--ink-100); }
.btn-danger { background:var(--danger); color:#fff; }
.btn-danger:hover { background:#b91c1c; color:#fff; }
.btn-sm { padding:7px 13px; font-size:12px; }
.btn-lg { padding:13px 26px; font-size:16px; }
.btn-block { width:100%; }

/* ---- Cards ---- */
.card { background:var(--white); border:1px solid var(--ink-200); border-radius:var(--radius-lg); box-shadow:var(--shadow-card); padding:24px; }
.card-title { font-size:18px; margin-bottom:8px; }
.card-text { color:var(--ink-600); }

/* ---- Badges ---- */
.badge { display:inline-flex; align-items:center; padding:3px 10px; border-radius:var(--radius-full); font-size:12px; font-weight:600; }
.badge-brand { background:var(--brand-100); color:var(--brand-700); }
.badge-gold { background:#fef3c7; color:#b45309; }
.badge-success { background:var(--success-bg); color:var(--success-tx); }
.badge-error { background:var(--danger-bg); color:var(--danger-tx); }

/* ---- Alerts ---- */
.alert { border-radius:var(--radius); border:1px solid; padding:12px 16px; margin-bottom:16px; font-size:14px; }
.alert-success { background:var(--success-bg); border-color:var(--success-bd); color:var(--success-tx); }
.alert-error { background:var(--danger-bg); border-color:var(--danger-bd); color:var(--danger-tx); }
.alert-info { background:var(--info-bg); border-color:var(--info-bd); color:var(--info-tx); }
.alert-list { list-style:disc; margin:6px 0 0 20px; }

/* ---- Forms ---- */
.form-group { margin-bottom:16px; }
.form-label { display:block; font-size:14px; font-weight:600; color:var(--ink-700); margin-bottom:6px; }
.form-input,.form-select,.form-textarea { width:100%; border:1px solid var(--ink-300); border-radius:var(--radius); padding:10px 14px; font-size:14px; color:var(--ink-900); background:var(--white); transition:border-color .15s,box-shadow .15s; }
.form-input:focus,.form-select:focus,.form-textarea:focus { outline:none; border-color:var(--brand-500); box-shadow:0 0 0 3px var(--brand-100); }
.form-textarea { min-height:120px; resize:vertical; }
.form-error { color:var(--danger); font-size:12px; margin-top:4px; }
.form-hint { color:var(--ink-500); font-size:12px; margin-top:4px; }

/* ---- Tables ---- */
.table { font-size:14px; }
.table thead th { background:var(--ink-50); color:var(--ink-600); font-weight:600; text-align:left; padding:12px 16px; border-bottom:1px solid var(--ink-200); }
.table tbody td { padding:12px 16px; border-bottom:1px solid var(--ink-100); }
.table tbody tr:last-child td { border-bottom:0; }

/* ---- Hero ---- */
.hero { background:linear-gradient(135deg,var(--brand-900),var(--brand-700)); color:#f3e9f5; padding:64px 0 72px; }
.hero-inner { display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
.hero-eyebrow { display:inline-block; text-transform:uppercase; letter-spacing:.06em; font-size:12px; font-weight:700; color:var(--gold-400); margin-bottom:14px; }
.hero-title { color:#fff; font-size:46px; line-height:1.08; font-weight:800; letter-spacing:-.02em; }
.text-accent { color:var(--gold-400); }
.hero-lead { margin-top:18px; font-size:18px; color:#cddcf5; max-width:520px; }
.hero-actions { margin-top:28px; display:flex; gap:12px; flex-wrap:wrap; }
.hero .btn-outline { border-color:rgba(255,255,255,.5); color:#fff; }
.hero .btn-outline:hover { background:rgba(255,255,255,.12); }
.hero-points { margin-top:28px; display:flex; flex-wrap:wrap; gap:10px 22px; }
.hero-points li { position:relative; padding-left:24px; color:#cddcf5; font-size:14px; }
.hero-points li::before { content:""; position:absolute; left:0; top:6px; width:12px; height:12px; border-radius:50%; background:var(--accent-400); box-shadow:0 0 0 3px rgba(16,185,129,.25); }
.hero-card .card { box-shadow:var(--shadow-lift); }
.stat-row { display:flex; gap:18px; margin-top:18px; }
.stat { display:flex; flex-direction:column; }
.stat-num { font-size:22px; font-weight:800; color:var(--brand-700); }
.stat-label { font-size:12px; color:var(--ink-500); }

/* ---- Sections ---- */
.section { padding:64px 0; }
.section-title { font-size:32px; text-align:center; letter-spacing:-.01em; }
.section-title.text-left { text-align:left; }
.section-subtitle { text-align:center; color:var(--ink-500); margin-top:10px; font-size:17px; }
.section-subtitle.text-left { text-align:left; }
.section-cta { text-align:center; margin-top:36px; }

/* ---- Steps ---- */
.steps-grid { margin-top:36px; display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
.step-card { background:var(--white); border:1px solid var(--ink-200); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-card); }
.step-num { width:38px; height:38px; border-radius:50%; background:var(--brand-600); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:14px; }
.step-title { font-size:17px; margin-bottom:6px; }
.step-text { color:var(--ink-600); font-size:14px; }

/* ---- Footer ---- */
.site-footer { position:relative; overflow:hidden; margin-top:48px; padding:62px 0 24px; color:#cdbfd4; background:linear-gradient(160deg,#2b0128 0%,#4a0346 55%,#67055f 100%); }
.site-footer::before { content:""; position:absolute; inset:0; background:radial-gradient(760px 320px at 12% -30%, rgba(208,139,255,.22), transparent 62%); pointer-events:none; }
.site-footer > .container { position:relative; z-index:1; }
.site-footer .brand,.site-footer .brand-text { color:#fff; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:40px 32px; }
.footer-tagline { margin-top:14px; color:#e9b6ff; font-weight:600; }
.footer-muted { margin-top:8px; color:#b7a4be; font-size:14px; line-height:1.65; max-width:340px; }

.footer-contact { display:flex; flex-direction:column; gap:8px; margin-top:18px; }
.footer-contact a { display:inline-flex; align-items:center; gap:9px; font-size:14px; color:#e2d6e8; text-decoration:none; transition:color .2s; }
.footer-contact a svg { color:#d08bff; }
.footer-contact a:hover { color:#fff; text-decoration:none; }

.footer-heading { color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.07em; margin-bottom:14px; }
.footer-link { display:block; width:fit-content; color:#c0aec7; padding:5px 0; font-size:14px; transition:color .2s, transform .2s; }
.footer-link:hover { color:#fff; transform:translateX(3px); text-decoration:none; }
.footer-btn { margin-top:16px; width:100%; justify-content:center; }
.footer-link-inline { margin-top:10px; font-size:13px; text-decoration:underline; }

.footer-bottom { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:14px; margin-top:44px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); font-size:13px; color:#a894b0; }
.footer-badges { display:flex; flex-wrap:wrap; gap:8px 20px; }
.footer-badges span { display:inline-flex; align-items:center; gap:7px; }
.footer-badges svg { color:#d08bff; }

/* ---- Detail list ---- */
.detail-list { display:grid; gap:2px; }
.detail-row { display:flex; justify-content:space-between; gap:16px; padding:8px 0; border-bottom:1px solid var(--ink-100); }
.detail-row dt { color:var(--ink-500); font-size:14px; }
.detail-row dd { color:var(--ink-900); font-weight:600; font-size:14px; }

/* ---- Error pages ---- */
.error-page { min-height:70vh; display:flex; align-items:center; justify-content:center; padding:48px 20px; }
.error-card { text-align:center; max-width:460px; }
.error-code { font-size:72px; font-weight:800; color:var(--brand-600); line-height:1; }
.error-title { font-size:26px; margin:12px 0 8px; }
.error-text { color:var(--ink-600); margin-bottom:24px; }

/* ---- Portal (customer/admin) ---- */
.portal { background:var(--ink-100); color:var(--ink-900); }
.portal-shell { display:flex; min-height:100vh; }
.portal-sidebar { width:256px; flex-shrink:0; background:var(--brand-900); color:#d7d2dc; display:flex; flex-direction:column; padding:20px 16px; position:sticky; top:0; height:100vh; }
.portal-brand { display:flex; align-items:center; gap:8px; padding:4px 4px 20px; }
.portal-brand .brand,.portal-brand .brand-text { color:#fff; }
.portal-badge,.portal-brand .portal-badge { background:var(--gold-500); color:#3b2600; font-size:11px; font-weight:700; padding:2px 8px; border-radius:var(--radius-full); text-transform:uppercase; }
.portal-nav { display:flex; flex-direction:column; gap:2px; flex:1; overflow-y:auto; }
.portal-nav-link { display:block; border-radius:9px; padding:9px 12px; font-size:14px; font-weight:500; color:#c4bcca; }
.portal-nav-link:hover { background:rgba(255,255,255,.08); color:#fff; text-decoration:none; }
.portal-nav-link.is-active { background:rgba(255,255,255,.15); color:#fff; }
.portal-logout { margin-top:12px; padding-top:12px; border-top:1px solid rgba(255,255,255,.1); }
.portal-logout .btn-ghost { color:#d7d2dc; }
.portal-logout .btn-ghost:hover { background:rgba(255,255,255,.1); }
.portal-main { flex:1; min-width:0; display:flex; flex-direction:column; }
.portal-topbar { display:flex; align-items:center; gap:16px; background:var(--white); border-bottom:1px solid var(--ink-200); padding:0 24px; height:64px; position:sticky; top:0; z-index:20; }
.portal-title { font-size:18px; flex:1; }
.portal-user { display:flex; align-items:center; gap:10px; }
.portal-user-name { font-size:14px; font-weight:600; color:var(--ink-700); }
.portal-content { padding:24px; }

/* ---- Utilities ---- */
.text-center { text-align:center; }
.text-left { text-align:left; }
.text-muted { color:var(--ink-500); }
.mt-2 { margin-top:8px; } .mt-4 { margin-top:16px; } .mt-6 { margin-top:24px; }
.mb-2 { margin-bottom:8px; } .mb-4 { margin-bottom:16px; } .mb-6 { margin-bottom:24px; }
.hidden { display:none; }

/* ---- Responsive ---- */
@media (max-width:860px) {
  .site-nav,.header-actions { display:none; }
  .nav-toggle { display:flex; }
  .site-header.nav-open .site-nav { display:flex; position:absolute; top:120px; left:0; right:0; flex-direction:column; align-items:stretch; background:#fff; border-bottom:1px solid var(--ink-200); padding:8px; gap:2px; box-shadow:var(--shadow-card); }
  .site-header.nav-open .header-actions { display:flex; position:absolute; top:calc(120px + var(--nav-h,0)); left:0; right:0; padding:8px; background:#fff; gap:8px; border-bottom:1px solid var(--ink-200); }
  .hero-inner { grid-template-columns:1fr; gap:32px; }
  .hero-title { font-size:36px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:640px) {
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .site-footer { padding:44px 0 22px; }
  .site-footer .brand { height:78px; }
  .site-footer .brand-logo { height:130px; }
  .footer-muted { max-width:none; }
  .footer-bottom { flex-direction:column; align-items:flex-start; margin-top:32px; }
  .section-title { font-size:26px; }
  .stat-row { flex-wrap:wrap; }
}

/* Portal responsive: sidebar becomes an off-canvas drawer */
@media (max-width:900px) {
  .portal-sidebar { position:fixed; z-index:60; left:0; top:0; transform:translateX(-100%); transition:transform .2s ease; box-shadow:var(--shadow-lift); }
  .portal-sidebar.is-open { transform:translateX(0); }
  .portal-topbar .nav-toggle { display:flex; }
}
@media (min-width:901px) {
  .portal-topbar .nav-toggle { display:none; }
}

/* =====================================================================
   Phase 1 â€” Auth & Customer Accounts
   ===================================================================== */

/* Utilities added this phase */
.text-danger { color:var(--danger); }
.text-right { text-align:right; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

/* Form helpers */
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-check { display:flex; align-items:flex-start; gap:9px; margin:0 0 14px; font-size:14px; color:var(--ink-700); }
.form-check input { margin-top:3px; }
.form-label-row { display:flex; justify-content:space-between; align-items:baseline; }
.form-label-link { font-size:12px; }
.form-actions { display:flex; gap:10px; align-items:center; margin-top:8px; }
.form-card { max-width:720px; }

/* Auth pages */
.auth-wrap { display:flex; justify-content:center; padding:48px 20px; }
.auth-card { width:100%; max-width:460px; }
.auth-head { text-align:center; margin-bottom:22px; }
.auth-title { font-size:24px; margin:6px 0 4px; }
.auth-sub { color:var(--ink-500); font-size:15px; }
.auth-alt { text-align:center; margin-top:18px; font-size:14px; color:var(--ink-600); }
.auth-resend { margin-top:12px; }

/* Page header (portal) */
.page-head { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:20px; flex-wrap:wrap; }
.page-title { font-size:24px; margin:0; }
.page-sub { color:var(--ink-500); margin-top:4px; }

/* Dashboard: U.S. address card */
.us-address-card { border-left:4px solid var(--brand-600); }
.us-address-head { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.cust-number { font-size:14px; }
.us-address { background:var(--ink-50); border:1px dashed var(--ink-300); border-radius:10px; padding:16px; margin:14px 0 12px; font-family:ui-monospace,"Cascadia Code",Consolas,monospace; font-size:14px; line-height:1.7; color:var(--ink-900); white-space:pre-wrap; }
.us-address-actions { display:flex; align-items:center; gap:12px; }
.copy-feedback { color:var(--success); font-size:13px; font-weight:600; }
.us-address-note { margin-top:12px; font-size:13px; color:var(--ink-600); }
.notice-card { border-left:4px solid var(--gold-500); }

.dash-tiles { margin-top:20px; }
.tile { display:flex; flex-direction:column; gap:4px; text-decoration:none; transition:box-shadow .15s,transform .05s; }
.tile:hover { box-shadow:var(--shadow-lift); text-decoration:none; }
.tile-num { font-size:30px; font-weight:800; color:var(--brand-700); }
.tile-label { font-weight:600; color:var(--ink-900); }
.tile-cta { color:var(--brand-600); }
.tile-sub { font-size:13px; color:var(--ink-500); }

/* Address cards */
.address-list { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:16px; }
.address-card { display:flex; flex-direction:column; justify-content:space-between; gap:14px; }
.address-title { font-size:16px; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.address-body { font-style:normal; font-size:14px; color:var(--ink-700); line-height:1.6; margin-top:6px; }
.table-actions { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.table-actions form { display:inline; }
.empty-state { text-align:center; padding:40px 24px; }

/* Admin stat grid */
.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.stat-card { display:flex; flex-direction:column; gap:4px; text-decoration:none; border-top:3px solid var(--ink-200); }
.stat-card:hover { box-shadow:var(--shadow-lift); text-decoration:none; }
.stat-card-num { font-size:30px; font-weight:800; color:var(--brand-800); }
.stat-card-label { font-size:13px; color:var(--ink-500); }
.stat-warn { border-top-color:var(--gold-500); }
.stat-ok { border-top-color:var(--accent-500); }
.stat-bad { border-top-color:var(--danger); }

/* Admin tables & filters */
.card-head-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.table-wrap { overflow-x:auto; }
.filters { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.filters .form-input { flex:1; min-width:220px; }
.filters .form-select { width:auto; min-width:150px; }

/* Admin customer detail */
.subhead { font-size:14px; text-transform:uppercase; letter-spacing:.04em; color:var(--ink-500); margin:20px 0 10px; }
.action-card { align-self:flex-start; }
.action-form { margin-bottom:12px; }
.action-divider { border:0; border-top:1px solid var(--ink-200); margin:16px 0; }

@media (max-width:820px) {
  .grid-2, .grid-3 { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .stat-grid { grid-template-columns:1fr 1fr; }
}

/* =====================================================================
   Phase 2 â€” Public marketing site & content
   ===================================================================== */

/* Page hero band */
.page-hero { background:linear-gradient(135deg,var(--brand-900),var(--brand-700)); color:#f3e9f5; padding:44px 0; }
.page-hero-title { color:#fff; font-size:34px; letter-spacing:-.01em; }
.page-hero-sub { color:#cddcf5; margin-top:8px; font-size:17px; max-width:640px; }

/* Long-form CMS content */
.prose { color:var(--ink-700); font-size:16px; line-height:1.75; }
.prose .lead { font-size:19px; color:var(--ink-900); margin-bottom:18px; }
.prose h3 { color:var(--brand-900); font-size:20px; margin:28px 0 10px; }
.prose p { margin:0 0 14px; }
.prose ul { list-style:disc; margin:0 0 16px; padding-left:22px; }
.prose li { margin:4px 0; }
.prose a { color:var(--brand-600); text-decoration:underline; }
.prose strong { color:var(--ink-900); }

/* Callout */
.callout { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  background:var(--brand-50); border:1px solid var(--brand-100); border-radius:var(--radius-lg); padding:24px 28px; }
.callout-warn { background:#fffbeb; border-color:#fde68a; }
.callout-title { font-size:18px; margin-bottom:4px; }
.callout-text { color:var(--ink-600); max-width:640px; }

/* Fee grid */
.fee-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; margin-top:20px; }
.fee-card { display:flex; flex-direction:column; gap:4px; }
.fee-value { font-size:22px; font-weight:800; color:var(--brand-700); }
.fee-label { font-weight:600; color:var(--ink-900); }
.fee-note { font-size:13px; color:var(--ink-500); }

/* Rates layout */
.rates-columns { display:grid; grid-template-columns:2fr 1fr; gap:28px; align-items:start; }
.rate-list { column-count:3; column-gap:28px; }
.rate-row { display:flex; justify-content:space-between; gap:12px; padding:7px 0; border-bottom:1px dashed var(--ink-200); break-inside:avoid; }
.rate-weight { color:var(--ink-600); font-size:14px; }
.rate-price { font-weight:600; color:var(--ink-900); font-size:14px; white-space:nowrap; }
.rates-aside .subhead { margin-top:26px; }
.note-list { list-style:disc; padding-left:20px; color:var(--ink-600); font-size:14px; }
.note-list li { margin:8px 0; }

/* FAQ */
/* FAQ — searchable two-column accordion */
.faq-hero,.page-hero-soft { background:linear-gradient(180deg,#faf6fd 0%,#f6eef9 100%); border-bottom:1px solid rgba(137,8,134,.08); padding:66px 0 56px; text-align:center; }
.faq-hero h1,.page-hero-soft h1 { font-size:44px; font-weight:800; letter-spacing:-.025em; color:#191919; }
.faq-hero p,.page-hero-soft p { margin-top:12px; font-size:17px; color:#5a5a66; max-width:640px; margin-left:auto; margin-right:auto; }
.faq-search { position:relative; max-width:520px; margin:30px auto 0; }
.faq-search .lp-ic { position:absolute; left:18px; top:50%; transform:translateY(-50%); color:#9a8aa3; pointer-events:none; }
.faq-search input { width:100%; padding:15px 20px 15px 48px; font-size:15px; color:#191919; background:#fff; border:1px solid rgba(137,8,134,.14); border-radius:999px; box-shadow:0 4px 16px rgba(74,3,70,.07); transition:border-color .2s, box-shadow .2s; }
.faq-search input::placeholder { color:#9a94a3; }
.faq-search input:focus { outline:none; border-color:rgba(208,139,255,.7); box-shadow:0 0 0 4px rgba(208,139,255,.18); }

.faq-section { padding:56px 0 74px; }
.faq-columns { columns:2; column-gap:34px; }
.faq-group { break-inside:avoid; -webkit-column-break-inside:avoid; page-break-inside:avoid; margin-bottom:34px; }
.faq-cat { display:flex; align-items:center; gap:11px; margin-bottom:14px; }
.faq-cat-ic { width:34px; height:34px; flex-shrink:0; border-radius:10px; display:grid; place-items:center; color:#9a2f97; background:rgba(208,139,255,.18); }
.faq-cat-ic svg { stroke-width:1.8; }
.faq-cat h2 { font-size:17px; font-weight:700; color:#2b1a4d; margin:0; }

.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item { background:#fff; border:1px solid rgba(137,8,134,.10); border-radius:12px; box-shadow:0 2px 10px rgba(74,3,70,.05); overflow:hidden; transition:border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color:rgba(208,139,255,.5); box-shadow:0 8px 20px rgba(137,8,134,.10); }
.faq-item[open] { border-color:rgba(208,139,255,.55); }
.faq-question { display:flex; align-items:center; justify-content:space-between; gap:14px; cursor:pointer; padding:16px 18px; font-weight:600; font-size:15px; color:#2b1a4d; list-style:none; }
.faq-question::-webkit-details-marker { display:none; }
.faq-chev { flex-shrink:0; width:26px; height:26px; border-radius:50%; display:grid; place-items:center; color:#9a2f97; background:rgba(208,139,255,.16); transition:transform .25s ease, background-color .2s; }
.faq-item[open] .faq-chev { transform:rotate(180deg); background:rgba(208,139,255,.3); }
.faq-answer { padding:0 18px 16px; color:#5a5a66; font-size:14.5px; line-height:1.7; }
.faq-empty { text-align:center; color:#5a5a66; font-size:15px; padding:28px 0; }

@media (max-width:860px) { .faq-columns { columns:1; } .faq-hero,.page-hero-soft { padding:48px 0 42px; } .faq-hero h1,.page-hero-soft h1 { font-size:32px; } .faq-hero p,.page-hero-soft p { font-size:15.5px; } }

/* Prohibited items */
.prohibited-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:16px; }
.prohibited-card { display:flex; gap:14px; align-items:flex-start; }
.prohibited-icon { font-size:22px; line-height:1.2; }
.prohibited-title { font-size:16px; margin-bottom:4px; }
.prohibited-text { color:var(--ink-600); font-size:14px; }

/* Contact */
/* Contact — method tiles + form/side split */
.contact-methods { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:28px; }
.contact-method { display:flex; align-items:center; gap:13px; padding:18px; border-radius:14px; background:#fff; border:1px solid rgba(137,8,134,.10); box-shadow:0 2px 10px rgba(74,3,70,.05); text-decoration:none; transition:transform .25s ease, border-color .25s, box-shadow .25s; }
a.contact-method:hover { transform:translateY(-3px); border-color:rgba(208,139,255,.55); box-shadow:0 12px 26px rgba(137,8,134,.13); text-decoration:none; }
.cm-ic { flex-shrink:0; width:42px; height:42px; border-radius:12px; display:grid; place-items:center; color:#9a2f97; background:rgba(208,139,255,.18); }
.cm-ic svg { stroke-width:1.75; }
.cm-body { display:flex; flex-direction:column; gap:2px; min-width:0; }
.cm-key { font-size:11.5px; text-transform:uppercase; letter-spacing:.05em; font-weight:700; color:#9a8aa3; }
.cm-val { font-size:14px; font-weight:600; color:#2b1a4d; line-height:1.35; overflow-wrap:anywhere; }

.contact-grid { display:grid; grid-template-columns:1.6fr 1fr; gap:24px; align-items:start; }
.contact-info { display:flex; flex-direction:column; gap:16px; }
.contact-form-card { padding:30px; }

.contact-side-panel { padding:28px 26px; border-radius:16px; color:#fff; background:linear-gradient(150deg,#4a0346 0%,#890886 60%,#a94de0 100%); box-shadow:0 16px 36px rgba(74,3,70,.26); }
.contact-side-panel h3 { font-size:18px; font-weight:700; color:#fff; }
.contact-side-panel p { margin-top:8px; font-size:14px; line-height:1.65; color:rgba(255,255,255,.84); }
.contact-side-link { display:flex; align-items:center; gap:10px; margin-top:10px; padding:12px 14px; border-radius:11px; font-size:14px; font-weight:600; color:#fff; background:rgba(255,255,255,.13); border:1px solid rgba(255,255,255,.18); text-decoration:none; transition:background-color .2s, transform .2s, border-color .2s; }
.contact-side-link:first-of-type { margin-top:18px; }
.contact-side-link:hover { background:rgba(255,255,255,.24); border-color:rgba(255,255,255,.36); transform:translateX(3px); color:#fff; text-decoration:none; }

@media (max-width:1000px) { .contact-methods { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px)  { .contact-methods { grid-template-columns:1fr; gap:12px; } .contact-form-card { padding:22px 18px; } .contact-side-panel { padding:22px 18px; } }

/* Announcement bar */
.announcement-bar { background:var(--brand-800); color:#eaf1ff; font-size:14px; }
.announcement-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:9px 0; }
.announcement-text a { color:#fff; text-decoration:underline; }
.announcement-close { background:none; border:0; color:#c7d5ec; font-size:22px; line-height:1; padding:0 4px; }
.announcement-close:hover { color:#fff; }

/* Cookie consent */
.cookie-consent { position:fixed; left:0; right:0; bottom:0; z-index:70; background:#fff; border-top:1px solid var(--ink-200); box-shadow:0 -4px 20px rgba(25,25,25,.1); }
.cookie-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 20px; flex-wrap:wrap; }
.cookie-text { font-size:14px; color:var(--ink-600); margin:0; }

@media (max-width:820px) {
  .rates-columns { grid-template-columns:1fr; }
  .rate-list { column-count:2; }
  .contact-grid { grid-template-columns:1fr; }
}
@media (max-width:560px) {
  .rate-list { column-count:1; }
  .page-hero-title { font-size:27px; }
}

/* =====================================================================
   Phase 3 â€” Customer dashboard, packages, pre-alerts, notifications
   ===================================================================== */

.dash-stats { margin:4px 0 4px; }
.dash-lower { margin-top:20px; align-items:start; }
.dash-side { display:flex; flex-direction:column; gap:20px; }

.balance-card { display:flex; flex-direction:column; gap:4px; }
.balance-label { font-size:13px; color:var(--ink-500); }
.balance-value { font-size:28px; font-weight:800; color:var(--brand-800); }

.notif-mini { display:flex; flex-direction:column; }
.notif-mini li { display:flex; justify-content:space-between; gap:12px; padding:8px 0; border-bottom:1px solid var(--ink-100); font-size:14px; }
.notif-mini li:last-child { border-bottom:0; }
.notif-mini li.is-unread .notif-mini-title { font-weight:700; color:var(--brand-800); }
.notif-mini-time { color:var(--ink-400); font-size:12px; white-space:nowrap; }

/* Notification bell */
.topbar-bell { position:relative; font-size:18px; text-decoration:none; padding:6px; border-radius:8px; line-height:1; }
.topbar-bell:hover { background:var(--ink-100); text-decoration:none; }
.bell-count { position:absolute; top:-2px; right:-4px; background:var(--danger); color:#fff; font-size:10px; font-weight:700; min-width:16px; height:16px; padding:0 4px; border-radius:8px; display:flex; align-items:center; justify-content:center; }

/* =====================================================================
   Wallet — sidebar balance pill, top-up, PowerTranz checkout
   ===================================================================== */

/* Balance shown beside the "My Wallet" sidebar link */
.nav-amount { margin-left:auto; font-size:12px; font-weight:700; color:#fff; background:rgba(255,255,255,.16); padding:2px 8px; border-radius:999px; white-space:nowrap; }

.wallet-grid { align-items:start; }
.wallet-balance-card { border-top:3px solid var(--brand-600); }
.wallet-topup-card { margin-top:20px; }

/* Gateway option (PowerTranz) */
.gateway-option { display:flex; align-items:center; gap:12px; padding:12px 14px; border:1.5px solid var(--ink-200); border-radius:var(--radius); cursor:pointer; }
.gateway-option.is-selected { border-color:var(--brand-500); background:var(--brand-50); }
.gateway-option input { accent-color:var(--brand-600); }
.gateway-option-body { display:flex; flex-direction:column; flex:1; }
.gateway-option-name { font-weight:700; color:var(--ink-900); }
.gateway-option-desc { font-size:13px; color:var(--ink-500); }
.gateway-option-check { color:var(--brand-600); font-weight:800; }

/* Amount field with currency prefix */
.amount-field { display:flex; align-items:stretch; }
.amount-field .amount-prefix { display:flex; align-items:center; padding:0 12px; background:var(--ink-100); border:1px solid var(--ink-200); border-right:0; border-radius:var(--radius) 0 0 var(--radius); font-weight:700; color:var(--ink-600); }
.amount-field .form-input { border-radius:0 var(--radius) var(--radius) 0; }

/* Live fee preview */
.fee-preview { margin:16px 0 4px; border:1px solid var(--ink-200); border-radius:var(--radius); overflow:hidden; }
.fee-preview > div { display:flex; justify-content:space-between; padding:9px 14px; font-size:14px; border-bottom:1px solid var(--ink-100); }
.fee-preview > div:last-child { border-bottom:0; }
.fee-preview dt { color:var(--ink-500); margin:0; }
.fee-preview dd { margin:0; font-weight:600; color:var(--ink-800, var(--ink-900)); }
.fee-preview-total { background:var(--brand-50); }
.fee-preview-total dt { color:var(--brand-800); font-weight:700; }
.fee-preview-total dd { color:var(--brand-800); font-weight:800; font-size:16px; }

/* Wallet history amount colours */
.amount-credit { color:var(--success); font-weight:700; }
.amount-debit  { color:var(--danger); font-weight:700; }

@media (max-width:720px) {
    .nav-amount { margin-left:8px; }
}

/* Filter tabs */
.filter-tabs { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:16px; }
.filter-tab { padding:8px 14px; border-radius:999px; font-size:14px; font-weight:600; color:var(--ink-600); background:#fff; border:1px solid var(--ink-200); text-decoration:none; }
.filter-tab:hover { background:var(--ink-100); text-decoration:none; }
.filter-tab.is-active { background:var(--brand-600); color:#fff; border-color:var(--brand-600); }
.filter-count { opacity:.8; font-weight:700; }

/* Status timeline */
.timeline { position:relative; padding-left:8px; }
.timeline-item { position:relative; padding:0 0 18px 24px; border-left:2px solid var(--ink-200); }
.timeline-item:last-child { border-left-color:transparent; padding-bottom:0; }
.timeline-dot { position:absolute; left:-7px; top:2px; width:12px; height:12px; border-radius:50%; background:var(--ink-300); border:2px solid #fff; }
.timeline-item.is-current .timeline-dot { background:var(--accent-500); box-shadow:0 0 0 3px rgba(5,150,105,.2); }
.timeline-body { display:flex; flex-direction:column; gap:2px; }
.timeline-status { font-weight:600; color:var(--ink-900); }
.timeline-item.is-current .timeline-status { color:var(--brand-800); }
.timeline-note { font-size:13px; color:var(--ink-600); }
.timeline-time { font-size:12px; color:var(--ink-400); }

/* Photos & documents */
.photo-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(90px,1fr)); gap:10px; }
.photo-thumb { display:block; aspect-ratio:1; border-radius:8px; overflow:hidden; border:1px solid var(--ink-200); }
.photo-thumb img { width:100%; height:100%; object-fit:cover; }
.doc-list { display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.doc-list li { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:8px 12px; background:var(--ink-50); border-radius:8px; font-size:14px; }
.doc-upload { border-top:1px solid var(--ink-100); padding-top:16px; margin-top:4px; }

/* Charges table */
.charges-table td { padding:8px 0; border-bottom:1px solid var(--ink-100); }
.charges-total td { border-top:2px solid var(--ink-200); border-bottom:0; padding-top:10px; }

/* Notifications center */
.notif-card { padding:0; overflow:hidden; }
.notif-list { display:flex; flex-direction:column; }
.notif-item { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; padding:16px 20px; border-bottom:1px solid var(--ink-100); }
.notif-item:last-child { border-bottom:0; }
.notif-item.is-unread { background:var(--brand-50); }
.notif-head { display:flex; align-items:baseline; justify-content:space-between; gap:12px; }
.notif-title { font-weight:600; color:var(--ink-900); }
.notif-item.is-unread .notif-title { color:var(--brand-800); }
.notif-time { font-size:12px; color:var(--ink-400); white-space:nowrap; }
.notif-body { color:var(--ink-600); font-size:14px; margin-top:4px; }
.notif-main { flex:1; min-width:0; }

/* =====================================================================
   Phase 5 / 6 â€” Printable documents (manifest, invoice) + shipments
   ===================================================================== */
.doc-head { display:flex; justify-content:space-between; align-items:flex-start; border-bottom:3px solid var(--brand-900); padding-bottom:16px; margin-bottom:20px; }
.doc-brand { font-size:26px; font-weight:800; color:var(--brand-900); }
.doc-sub { color:var(--ink-500); font-size:13px; margin-top:2px; }
.doc-meta { text-align:right; font-size:13px; color:var(--ink-600); }
.doc-number { font-size:18px; font-weight:800; color:var(--brand-700); }
.doc-info { display:grid; grid-template-columns:1fr 1fr; gap:6px 24px; font-size:14px; color:var(--ink-700); margin-bottom:20px; }
.doc-table { font-size:13px; }
.doc-table th { background:var(--ink-50); }
.doc-total td { border-top:2px solid var(--ink-300); background:var(--ink-50); }
.doc-foot { margin-top:24px; font-size:12px; color:var(--ink-400); text-align:center; }
.doc-bill { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:20px; font-size:14px; }
.doc-bill h4 { font-size:12px; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-400); margin-bottom:6px; }
.doc-summary { margin-top:8px; margin-left:auto; max-width:340px; }
.doc-summary .detail-row dt { color:var(--ink-600); }
.doc-summary .doc-grand dt, .doc-summary .doc-grand dd { font-weight:800; color:var(--brand-900); font-size:16px; }
.add-pkg-list { max-height:340px; overflow-y:auto; }
.rate-edit { max-height:520px; overflow-y:auto; }
.rate-input { max-width:160px; padding:6px 10px; }
.settings-grid { display:grid; grid-template-columns:1fr 1fr; gap:0 20px; }
@media (max-width:820px){ .settings-grid { grid-template-columns:1fr; } }
.settings-grid .set-span { grid-column:1 / -1; }

/* Settings hub cards */
.settings-hub { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:16px; }
.set-card { display:flex; align-items:flex-start; gap:14px; padding:18px; text-decoration:none; transition:box-shadow .15s, transform .15s, border-color .15s; border:1px solid var(--ink-200); }
.set-card:hover { box-shadow:var(--shadow-lift); text-decoration:none; transform:translateY(-2px); border-color:var(--brand-200); }
.set-card-ico { flex:0 0 auto; width:40px; height:40px; border-radius:10px; background:var(--brand-50); color:var(--brand-600); display:flex; align-items:center; justify-content:center; }
.set-card-ico svg { width:22px; height:22px; }
.set-card-body { display:flex; flex-direction:column; gap:3px; min-width:0; }
.set-card-title { font-weight:700; color:var(--ink-900); display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.set-card-desc { font-size:13px; color:var(--ink-500); line-height:1.45; }
.set-card-hint { font-size:11px; font-weight:700; color:var(--brand-700); background:var(--brand-50); padding:1px 7px; border-radius:999px; }
.set-card-ext { font-size:11px; font-weight:600; color:var(--ink-400); }

/* Inline single-row forms (test SMS, create API key) */
.test-sms-row { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.test-sms-row .form-input { max-width:280px; }

/* API key reveal */
.new-key-card { border-left:3px solid var(--success); }
.new-key-row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:8px; }
.new-key-value { font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:14px; background:var(--ink-100); padding:8px 12px; border-radius:8px; word-break:break-all; }
.is-muted-row { opacity:.55; }

/* =====================================================================
   Phase 4 â€” Warehouse intake (autocomplete, flags, dimensions)
   ===================================================================== */
.autocomplete { position:relative; }
.autocomplete-results { position:absolute; z-index:30; left:0; right:0; top:calc(100% + 4px); background:#fff; border:1px solid var(--ink-200); border-radius:10px; box-shadow:var(--shadow-lift); max-height:280px; overflow-y:auto; }
.ac-item { padding:10px 14px; cursor:pointer; font-size:14px; border-bottom:1px solid var(--ink-100); }
.ac-item:last-child { border-bottom:0; }
.ac-item:hover { background:var(--brand-50); }
.ac-email { display:block; color:var(--ink-400); font-size:12px; }
.ac-empty { padding:12px 14px; color:var(--ink-400); font-size:14px; }
.ac-chip { display:inline-flex; align-items:center; gap:8px; background:var(--brand-50); border:1px solid var(--brand-100); color:var(--brand-800); border-radius:999px; padding:6px 12px; font-size:14px; }
.ac-clear { background:none; border:0; color:var(--brand-600); font-size:18px; line-height:1; cursor:pointer; padding:0 2px; }
.ac-clear:hover { color:var(--danger); }

.dims-row { display:flex; align-items:center; gap:10px; }
.dims-row .form-input { text-align:center; }
.dims-row span { color:var(--ink-400); }

.flags-cell { display:flex; flex-wrap:wrap; gap:4px; align-items:center; }

/* Phase 2 â€” admin CMS */
.cms-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px; }
.cms-tile { display:flex; flex-direction:column; gap:4px; text-decoration:none; border-top:3px solid var(--brand-500); }
.cms-tile:hover { box-shadow:var(--shadow-lift); text-decoration:none; }
.cms-tile-count { font-size:28px; font-weight:800; color:var(--brand-800); }
.cms-tile-title { font-weight:600; color:var(--ink-900); }
.cms-tile-sub { font-size:13px; color:var(--ink-500); }
.form-card-wide { max-width:920px; }
.code-area { font-family:ui-monospace,"Cascadia Code",Consolas,monospace; font-size:13px; line-height:1.6; }
.message-body { white-space:pre-wrap; color:var(--ink-700); font-size:15px; line-height:1.7; }
.table code { background:var(--ink-100); padding:1px 6px; border-radius:5px; font-size:12px; }

/* =====================================================================
   Landing page — premium glassmorphism (scoped under .landing)
   ===================================================================== */
.landing { position:relative; isolation:isolate; overflow:hidden;
  background:
    radial-gradient(1100px 560px at 8% -8%, rgba(208,139,255,.38), transparent 60%),
    radial-gradient(820px 520px at 104% 6%, rgba(137,8,134,.20), transparent 58%),
    radial-gradient(760px 760px at 50% 120%, rgba(208,139,255,.26), transparent 62%),
    linear-gradient(180deg,#faf6fd 0%,#f4eaf8 55%,#efe3f6 100%);
}
.landing::before,.landing::after { content:""; position:absolute; z-index:-1; border-radius:50%; filter:blur(70px); pointer-events:none; }
.landing::before { width:400px; height:400px; top:-70px; left:-90px; background:radial-gradient(circle,#d08bff,transparent 70%); opacity:.5; }
.landing::after { width:440px; height:440px; top:38%; right:-140px; background:radial-gradient(circle,#890886,transparent 70%); opacity:.26; }

.glass { background:rgba(255,255,255,.55); -webkit-backdrop-filter:blur(16px) saturate(150%); backdrop-filter:blur(16px) saturate(150%); border:1px solid rgba(255,255,255,.55); border-radius:20px; box-shadow:0 10px 30px rgba(74,3,70,.10), inset 0 1px 0 rgba(255,255,255,.6); }

/* Sections span full width (via the landing background); content stays centred. */
.landing .container { max-width:1200px; margin-left:auto; margin-right:auto; padding-left:24px; padding-right:24px; }
.lp-section { padding:74px 0; position:relative; }
.lp-head { text-align:center; max-width:720px; margin:0 auto 46px; }
.lp-eyebrow { display:inline-block; text-transform:uppercase; letter-spacing:.09em; font-size:12px; font-weight:700; color:#890886; background:rgba(208,139,255,.20); padding:6px 14px; border-radius:999px; margin-bottom:16px; }
.lp-h2 { font-size:34px; line-height:1.15; font-weight:800; letter-spacing:-.02em; color:#191919; }
.lp-lead { margin-top:14px; font-size:17px; line-height:1.7; color:#4b4b4b; }

/* Hover motion */
.lp-feature,.lp-service,.lp-step,.lp-testimonial,.lp-trust-item,.lp-faq-item { transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease; }
.lp-feature:hover,.lp-service:hover,.lp-step:hover,.lp-testimonial:hover,.lp-faq-item:hover { transform:translateY(-5px); box-shadow:0 18px 42px rgba(74,3,70,.16); background:rgba(255,255,255,.68); }

/* Hero */
.lp-hero { padding:80px 0 68px; }
.lp-hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.lp-eyebrow-out { background:rgba(255,255,255,.55); border:1px solid rgba(137,8,134,.30); }
.lp-hero-title { font-size:56px; line-height:1.05; font-weight:800; letter-spacing:-.03em; color:#101828; }
.lp-hero-title .ln { display:block; }
.lp-hero-title .grad { background:linear-gradient(120deg,#890886,#d08bff); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.lp-hero-sub { margin-top:20px; font-size:17px; line-height:1.75; color:#4b4b4b; max-width:560px; }
.lp-cta { display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.lp-cta .btn-lg { border-radius:10px; padding:15px 28px; }
.lp-cta .btn-outline { background:rgba(255,255,255,.7); }

/* Trust row (icon + label, no pills) */
.lp-trustrow { display:flex; flex-wrap:wrap; gap:14px 30px; margin-top:30px; list-style:none; padding:0; }
.lp-trustrow li { display:inline-flex; align-items:center; gap:9px; font-size:14.5px; font-weight:600; color:#2f2f36; }
.lp-trustrow svg { color:#890886; }

/* Hero visual — soft stage with tracking cards */
.lp-hero-visual { position:relative; }
.lp-vstage { position:relative; border-radius:26px; padding:34px 30px 118px; background:linear-gradient(160deg,rgba(255,255,255,.78),rgba(244,234,248,.62)); border:1px solid rgba(255,255,255,.7); box-shadow:0 22px 60px rgba(74,3,70,.14), inset 0 1px 0 rgba(255,255,255,.75); }
.lp-track { background:#fff; border:1px solid rgba(137,8,134,.10); border-radius:18px; padding:20px; box-shadow:0 12px 32px rgba(74,3,70,.12); }
.lp-track h4 { font-size:16px; font-weight:700; color:#101828; margin:0 0 12px; }
.lp-track-field { font-family:ui-monospace,"Cascadia Code",Consolas,monospace; font-size:13px; color:#4b4b4b; background:#f7f4fa; border:1px solid rgba(137,8,134,.14); border-radius:9px; padding:10px 12px; margin-bottom:16px; }
.lp-track-steps { list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.lp-track-steps li { position:relative; padding-left:28px; }
.lp-track-steps li b { display:block; font-size:13.5px; font-weight:650; color:#101828; }
.lp-track-steps li i { display:block; font-style:normal; font-size:11.5px; color:#7a7a85; margin-top:2px; }
.lp-track-steps .dot { position:absolute; left:0; top:1px; width:17px; height:17px; border-radius:50%; border:2px solid rgba(137,8,134,.28); display:inline-flex; align-items:center; justify-content:center; background:#fff; }
.lp-track-steps .done .dot { background:#890886; border-color:#890886; color:#fff; }
.lp-track-steps li:not(:last-child)::after { content:""; position:absolute; left:8px; top:19px; bottom:-13px; width:2px; background:rgba(137,8,134,.16); }
.lp-track-dark { position:absolute; right:24px; bottom:-30px; width:75%; max-width:290px; background:#231226; border-color:rgba(255,255,255,.10); box-shadow:0 22px 46px rgba(35,18,38,.42); }
.lp-track-dark h4 { color:#fff; margin-bottom:4px; }
.lp-track-code { display:block; font-family:ui-monospace,Consolas,monospace; font-size:11.5px; color:rgba(255,255,255,.5); margin-bottom:14px; }
.lp-track-dark .lp-track-steps li b { color:#fff; }
.lp-track-dark .lp-track-steps li i { color:rgba(255,255,255,.5); }
.lp-track-dark .lp-track-steps .dot { width:11px; height:11px; top:4px; left:3px; border:0; background:#d08bff; }
.lp-track-dark .lp-track-steps li:not(:last-child)::after { left:8px; top:16px; bottom:-11px; background:rgba(208,139,255,.28); }
.lp-track-btn { display:block; text-align:center; margin-top:18px; background:#890886; color:#fff; font-size:13px; font-weight:650; padding:10px; border-radius:9px; text-decoration:none; transition:background-color .15s; }
.lp-track-btn:hover { background:#a10a9d; color:#fff; text-decoration:none; }

.lp-statrow { display:flex; gap:12px; margin-top:52px; }
.lp-stat { flex:1; text-align:center; background:rgba(208,139,255,.14); border:1px solid rgba(255,255,255,.5); border-radius:14px; padding:16px 8px; }
.lp-stat-num { display:block; font-size:22px; font-weight:800; color:#890886; }
.lp-stat-lbl { display:block; font-size:12px; color:#4b4b4b; margin-top:4px; }

/* Feature grid */
.lp-features { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:18px; }
.lp-feature { padding:22px; display:flex; gap:14px; align-items:flex-start; }
.lp-feature .ico { font-size:26px; line-height:1; flex-shrink:0; }
.lp-feature h3 { font-size:15px; color:#191919; margin-bottom:3px; }
.lp-feature p { font-size:13px; color:#4b4b4b; line-height:1.55; }

/* About */
.lp-about { padding:44px; }
.lp-about h2 { font-size:30px; font-weight:800; color:#191919; }
.lp-about .lp-lead { font-size:19px; color:#6d066a; font-weight:600; margin:10px 0 18px; }
.lp-about p { color:#4b4b4b; line-height:1.75; margin-bottom:14px; font-size:15px; }

/* Steps */
.lp-steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:18px; }
.lp-step { padding:24px; }
.lp-step-num { width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center; border-radius:12px; font-weight:800; color:#fff; background:linear-gradient(135deg,#890886,#b45cf0); margin-bottom:14px; box-shadow:0 6px 16px rgba(137,8,134,.30); }
.lp-step h3 { font-size:16px; color:#191919; margin-bottom:6px; }
.lp-step p { font-size:14px; color:#4b4b4b; line-height:1.6; }

/* Services */
.lp-services { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; }
.lp-service { padding:26px; }
.lp-service .ico { font-size:30px; }
.lp-service h3 { font-size:17px; color:#191919; margin:12px 0 6px; }
.lp-service p { font-size:14px; color:#4b4b4b; line-height:1.6; }

/* Schedule banner */
.lp-schedule { padding:48px 40px; text-align:center; }
.lp-schedule .big { font-size:38px; font-weight:800; letter-spacing:-.02em; background:linear-gradient(120deg,#890886,#d08bff); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.lp-schedule p { max-width:640px; margin:16px auto 0; color:#4b4b4b; line-height:1.7; font-size:16px; }

/* Trust */
.lp-trust { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; }
.lp-trust-item { padding:20px 22px; display:flex; align-items:center; gap:12px; }
.lp-trust-item .tick { width:30px; height:30px; flex-shrink:0; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:linear-gradient(135deg,#890886,#b45cf0); color:#fff; font-size:15px; font-weight:700; }
.lp-trust-item span.lbl { font-weight:600; color:#191919; font-size:15px; }

/* Testimonials */
.lp-testimonials { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:18px; }
.lp-testimonial { padding:26px; }
.lp-stars { color:#f5b301; letter-spacing:2px; font-size:15px; margin-bottom:12px; }
.lp-testimonial p { font-size:15px; color:#333; line-height:1.7; font-style:italic; }
.lp-testimonial .who { margin-top:14px; font-size:13px; font-weight:600; color:#890886; font-style:normal; }

/* FAQ */
.lp-faq-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:18px; }
.lp-faq-item { padding:24px; }
.lp-faq-item h3 { font-size:16px; color:#191919; margin-bottom:8px; display:flex; gap:8px; align-items:baseline; }
.lp-faq-item h3 .q { color:#b45cf0; font-weight:800; }
.lp-faq-item p { color:#4b4b4b; font-size:14px; line-height:1.65; }

/* Coloured CTA panels */
/* Full-bleed CTA band — same gradient as .lp-cta-panel, edge to edge */
.lp-cta-band { position:relative; overflow:hidden; padding:78px 0; text-align:center; color:#fff; background:linear-gradient(135deg,#4a0346 0%,#890886 52%,#b45cf0 100%); background-size:180% 180%; animation:lpShimmer 9s ease-in-out infinite alternate; }
.lp-cta-band::after { content:""; position:absolute; inset:0; background:radial-gradient(900px 340px at 20% -20%, rgba(255,255,255,.22), transparent 60%); pointer-events:none; }
.lp-cta-band > .container { position:relative; z-index:1; }
.lp-cta-band h2 { color:#fff; font-size:34px; font-weight:800; letter-spacing:-.02em; }
.lp-cta-band p { color:rgba(255,255,255,.9); max-width:720px; margin:16px auto 0; line-height:1.7; font-size:16px; }
.lp-cta-band .lp-cta { justify-content:center; margin-top:28px; }
@media (max-width:640px) { .lp-cta-band { padding:52px 0; } .lp-cta-band h2 { font-size:26px; } }
@media (prefers-reduced-motion: reduce) { .lp-cta-band { animation:none !important; } }

.lp-cta-panel { padding:58px 44px; text-align:center; border-radius:26px; position:relative; overflow:hidden; color:#fff; background:linear-gradient(135deg,#4a0346 0%,#890886 52%,#b45cf0 100%); box-shadow:0 24px 55px rgba(74,3,70,.38); }
.lp-cta-panel::after { content:""; position:absolute; inset:0; background:radial-gradient(600px 260px at 20% -20%, rgba(255,255,255,.22), transparent 60%); pointer-events:none; }
.lp-cta-panel h2 { color:#fff; font-size:32px; font-weight:800; letter-spacing:-.02em; position:relative; }
.lp-cta-panel p { color:rgba(255,255,255,.9); max-width:640px; margin:16px auto 0; line-height:1.7; font-size:16px; position:relative; }
.lp-cta-panel .lp-cta { justify-content:center; margin-top:28px; position:relative; }
.btn-white { background:#fff; color:#890886; }
.btn-white:hover { background:#f4eaf8; color:#6d066a; }
.btn-outline-white { border-color:rgba(255,255,255,.75); color:#fff; background:transparent; }
.btn-outline-white:hover { background:rgba(255,255,255,.16); color:#fff; }

@media (max-width:900px) {
  .lp-hero-inner { grid-template-columns:1fr; gap:34px; }
  .lp-hero-title { font-size:40px; }
  .lp-hero-title .ln { display:inline; }
  .lp-h2,.lp-about h2 { font-size:28px; }
  .lp-section,.lp-hero { padding:52px 0; }
  .lp-about,.lp-schedule { padding:32px 24px; }
  .lp-cta-panel { padding:42px 22px; }
  .lp-cta-panel h2 { font-size:27px; }
}
@media (max-width:560px) {
  .lp-hero-title { font-size:33px; }
  .lp-hero-sub { font-size:16px; }
  .lp-vstage { padding:22px 18px; }
  .lp-track-dark { position:static; width:100%; max-width:none; margin-top:18px; }
  .lp-statrow { flex-direction:column; margin-top:22px; }
  .lp-trustrow { gap:12px 20px; }
  .lp-cta .btn { width:100%; }
}

/* =====================================================================
   Landing — animations & hover polish
   ===================================================================== */
@keyframes lpFadeUp { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:none; } }
@keyframes lpFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-14px); } }
@keyframes lpFloatSlow { 0%,100% { transform:translate(0,0); } 50% { transform:translate(0,-26px); } }
@keyframes lpShimmer { 0% { background-position:0% 50%; } 100% { background-position:200% 50%; } }
@keyframes lpPulse { 0%,100% { box-shadow:0 6px 16px rgba(137,8,134,.30); } 50% { box-shadow:0 8px 26px rgba(208,139,255,.6); } }

/* Scroll reveal (toggled by JS; visible by default if JS/animation is off) */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); will-change:opacity,transform; }
.reveal.is-visible { opacity:1; transform:none; }

/* Floating hero card + ambient orbs */
.lp-track-dark { animation:lpFloat 6s ease-in-out infinite; }
.landing::before { animation:lpFloatSlow 15s ease-in-out infinite; }
.landing::after { animation:lpFloatSlow 19s ease-in-out infinite reverse; }

/* Animated gradient text */
.lp-hero-title .grad, .lp-schedule .big { background-size:220% auto; animation:lpShimmer 5s linear infinite alternate; }

/* Glass card hover — glow border + deeper lift */
.landing .glass { transition:transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease, background-color .3s ease; }
.lp-feature:hover,.lp-service:hover,.lp-step:hover,.lp-testimonial:hover,.lp-faq-item:hover,.lp-trust-item:hover { border-color:rgba(208,139,255,.6); box-shadow:0 22px 48px rgba(137,8,134,.20); }

/* Icon / badge micro-interactions */
.lp-feature .ico,.lp-service .ico { display:inline-block; transition:transform .35s cubic-bezier(.34,1.56,.64,1); }
.lp-feature:hover .ico { transform:scale(1.25) rotate(-8deg); }
.lp-service:hover .ico { transform:translateY(-6px) scale(1.15); }
.lp-step .lp-step-num,.lp-trust-item .tick { transition:transform .35s cubic-bezier(.34,1.56,.64,1); }
.lp-step:hover .lp-step-num { transform:scale(1.12) rotate(4deg); animation:lpPulse 1.4s ease-in-out infinite; }
.lp-trust-item:hover .tick { transform:scale(1.2) rotate(-6deg); }
.lp-testimonial:hover .lp-stars { transform:scale(1.08); transition:transform .3s ease; }

/* Buttons — lift + sheen sweep (landing only) */
.landing .btn { transition:transform .2s ease, box-shadow .2s ease, background-color .15s, border-color .15s, color .15s; }
.landing .btn-lg { position:relative; overflow:hidden; }
.landing .btn-primary:hover,.landing .btn-white:hover { transform:translateY(-3px); box-shadow:0 12px 26px rgba(137,8,134,.35); }
.landing .btn-outline:hover,.landing .btn-outline-white:hover { transform:translateY(-3px); }
.landing .btn-lg::after { content:""; position:absolute; top:0; left:-130%; width:60%; height:100%; background:linear-gradient(120deg,transparent,rgba(255,255,255,.5),transparent); transform:skewX(-20deg); transition:left .6s ease; pointer-events:none; }
.landing .btn-lg:hover::after { left:150%; }

/* Trust row */
.lp-trustrow li { transition:color .2s ease; }
.lp-trustrow li:hover { color:#890886; }

/* CTA panels — slow shifting gradient */
.lp-cta-panel { background-size:180% 180%; animation:lpShimmer 9s ease-in-out infinite alternate; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  .lp-track-dark,.landing::before,.landing::after,.lp-hero-title .grad,.lp-schedule .big,.lp-cta-panel,.lp-step:hover .lp-step-num { animation:none !important; }
}

/* =====================================================================
   Landing redesign — real icons + varied section layouts
   ===================================================================== */
.lp-ic svg { display:block; }

/* Features — icon rows (glass on hover, not solid cards) */
/* Why Choose — soft icon cards (4-up) */
.lp-featgrid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.lp-frow { padding:28px 24px 26px; border-radius:20px; background:rgba(255,255,255,.62); border:1px solid rgba(255,255,255,.75); box-shadow:0 4px 18px rgba(74,3,70,.06); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); transition:transform .3s cubic-bezier(.16,1,.3,1), background-color .3s, border-color .3s, box-shadow .3s; }
.lp-frow:hover { background:rgba(255,255,255,.9); border-color:rgba(208,139,255,.45); box-shadow:0 18px 38px rgba(137,8,134,.13); transform:translateY(-4px); }

/* Soft icon tile — tinted wash, no gradient or hard shadow */
.lp-ficon { width:50px; height:50px; border-radius:16px; display:grid; place-items:center; color:#9a2f97; background:rgba(208,139,255,.18); margin-bottom:18px; transition:background-color .3s, color .3s, transform .35s cubic-bezier(.34,1.56,.64,1); }
.lp-ficon svg { stroke-width:1.65; }
.lp-frow:hover .lp-ficon { background:rgba(208,139,255,.3); color:#890886; transform:translateY(-2px); }
.lp-frow h3 { font-size:16px; font-weight:700; line-height:1.35; color:#2b1a4d; margin-bottom:7px; }
.lp-frow p { font-size:14px; color:#5a5a66; line-height:1.6; }

@media (max-width:1080px) { .lp-featgrid { grid-template-columns:repeat(3,1fr); } }
@media (max-width:820px)  { .lp-featgrid { grid-template-columns:repeat(2,1fr); gap:16px; } .lp-frow { padding:22px 18px; } }

/* Services — cards with animated top bar + icon fill on hover */
/* Services — photo cards with overlapping icon badge */
.lp-services { display:grid; grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr)); gap:26px; align-items:stretch; }
.lp-service { display:flex; flex-direction:column; padding:0; overflow:hidden; background:#fff; border:1px solid rgba(137,8,134,.08); border-radius:16px; box-shadow:0 8px 26px rgba(74,3,70,.09); }
.lp-service:hover { transform:translateY(-6px); background:#fff; border-color:rgba(137,8,134,.20); box-shadow:0 22px 48px rgba(74,3,70,.18); }
.lp-svc-media { position:relative; aspect-ratio:16/9; min-height:170px; max-height:230px; background-color:#2b1230; background-size:cover; background-position:center; }
.lp-svc-media::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(16,8,18,0) 45%,rgba(16,8,18,.32)); }
.lp-svc-badge { position:absolute; left:22px; bottom:-24px; z-index:2; width:52px; height:52px; border-radius:13px; display:grid; place-items:center; color:#fff; background:#890886; box-shadow:0 10px 22px rgba(137,8,134,.38); transition:transform .35s cubic-bezier(.34,1.56,.64,1), background-color .3s; }
.lp-service:hover .lp-svc-badge { transform:translateY(-4px) scale(1.06); background:#a10a9d; }
.lp-svc-body { flex:1; display:flex; flex-direction:column; padding:44px 22px 24px; }
.lp-service h3 { font-size:19px; font-weight:700; color:#2b1a4d; margin-bottom:8px; }
.lp-service p { font-size:14.5px; color:#5a5a66; line-height:1.65; }
.lp-svc-link { display:inline-flex; align-items:center; gap:8px; margin-top:auto; padding-top:18px; font-size:14.5px; font-weight:650; color:#890886; text-decoration:none; }
.lp-svc-link:hover { color:#6d066a; text-decoration:none; }
.lp-svc-link svg { transition:transform .25s ease; }
.lp-service:hover .lp-svc-link svg { transform:translateX(5px); }

/* How It Works — vertical timeline */
.lp-timeline { position:relative; max-width:860px; margin:0 auto; }
.lp-timeline::before { content:""; position:absolute; left:28px; top:20px; bottom:20px; width:2px; background:linear-gradient(#890886,#d08bff); opacity:.3; }
.lp-tstep { position:relative; display:flex; gap:22px; padding:11px 0; }
.lp-tnode { width:58px; height:58px; flex-shrink:0; border-radius:50%; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,#890886,#b45cf0); box-shadow:0 8px 20px rgba(137,8,134,.32); position:relative; z-index:1; transition:transform .3s cubic-bezier(.34,1.56,.64,1); }
.lp-tstep:hover .lp-tnode { transform:scale(1.1) rotate(4deg); }
.lp-tbody { flex:1; padding:16px 22px; border-radius:16px; display:flex; align-items:center; gap:14px; }
.lp-tbody .stp { font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.05em; color:#b45cf0; flex-shrink:0; }
.lp-tbody p { color:#191919; font-size:15.5px; font-weight:600; }

/* About — split layout with gradient visual */
.lp-about2 { display:grid; grid-template-columns:1.15fr .85fr; gap:40px; align-items:center; }
.lp-about-copy h2 { font-size:32px; font-weight:800; color:#191919; }
.lp-about-copy .lp-lead { font-size:19px; color:#6d066a; font-weight:600; margin:10px 0 16px; }
.lp-about-copy p { color:#4b4b4b; line-height:1.75; margin-bottom:14px; font-size:15px; }
.lp-about-visual { padding:34px; border-radius:24px; color:#fff; background:linear-gradient(150deg,#4a0346,#890886 55%,#b45cf0); box-shadow:0 22px 50px rgba(74,3,70,.32); position:relative; overflow:hidden; }
.lp-about-visual::after { content:""; position:absolute; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,.12); top:-70px; right:-60px; }
.lp-av-icon { width:64px; height:64px; border-radius:18px; background:rgba(255,255,255,.16); display:grid; place-items:center; color:#fff; margin-bottom:16px; position:relative; }
.lp-about-visual h3 { color:#fff; font-size:20px; position:relative; }
.lp-about-visual > p { color:rgba(255,255,255,.85); font-size:14px; margin-top:6px; line-height:1.6; position:relative; }
.lp-av-stats { display:flex; gap:12px; margin-top:22px; position:relative; }
.lp-av-stat { flex:1; background:rgba(255,255,255,.14); border-radius:14px; padding:14px 8px; text-align:center; }
.lp-av-stat b { display:block; font-size:22px; font-weight:800; }
.lp-av-stat span { font-size:11px; color:rgba(255,255,255,.82); }

/* Schedule — icon banner */
.lp-schedbanner { display:flex; align-items:center; gap:28px; padding:40px 44px; flex-wrap:wrap; }
.lp-sched-icon { width:82px; height:82px; border-radius:24px; flex-shrink:0; background:linear-gradient(135deg,#890886,#b45cf0); color:#fff; display:grid; place-items:center; box-shadow:0 14px 30px rgba(137,8,134,.35); transition:transform .35s cubic-bezier(.34,1.56,.64,1); }
.lp-schedbanner:hover .lp-sched-icon { transform:rotate(-6deg) scale(1.05); }
.lp-schedbanner .txt { flex:1; min-width:260px; }
.lp-schedbanner .big { font-size:30px; font-weight:800; letter-spacing:-.02em; background:linear-gradient(120deg,#890886,#d08bff); background-size:220% auto; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; animation:lpShimmer 5s linear infinite alternate; }
.lp-schedbanner p { color:#4b4b4b; line-height:1.7; font-size:15px; margin-top:8px; }

/* Trust — pills */
/* =====================================================================
   What We Offer — gradient panel with translucent cards
   ===================================================================== */
.lp-offer-panel { position:relative; overflow:hidden; padding:78px 0; margin:0 0 74px; color:#fff; background:linear-gradient(135deg,#4a0346 0%,#890886 55%,#b45cf0 100%); }
.lp-offer-panel::after { content:""; position:absolute; inset:0; background:radial-gradient(900px 380px at 18% -25%, rgba(255,255,255,.20), transparent 62%); pointer-events:none; }
.lp-offer-panel > .container { position:relative; z-index:1; }
.lp-offer-head { position:relative; text-align:center; max-width:720px; margin:0 auto 40px; }
.lp-eyebrow-light { color:#fff; background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.28); }
.lp-offer-head h2 { font-size:36px; line-height:1.15; font-weight:800; letter-spacing:-.02em; color:#fff; }
.lp-offer-head p { margin-top:14px; font-size:16px; line-height:1.7; color:rgba(255,255,255,.86); }

.lp-offer-grid { position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.lp-offer-card { text-align:center; padding:30px 22px 28px; border-radius:18px; background:rgba(255,255,255,.13); border:1px solid rgba(255,255,255,.20); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); transition:transform .3s cubic-bezier(.16,1,.3,1), background-color .3s, border-color .3s; }
.lp-offer-card:hover { transform:translateY(-5px); background:rgba(255,255,255,.21); border-color:rgba(255,255,255,.38); }
.lp-offer-icon { display:grid; place-items:center; width:52px; height:52px; margin:0 auto 16px; border-radius:15px; color:#fff; background:rgba(255,255,255,.16); transition:transform .35s cubic-bezier(.34,1.56,.64,1), background-color .3s; }
.lp-offer-icon svg { stroke-width:1.7; }
.lp-offer-card:hover .lp-offer-icon { transform:translateY(-3px); background:rgba(255,255,255,.26); }
.lp-offer-card h3 { font-size:16.5px; font-weight:700; color:#fff; margin-bottom:9px; line-height:1.35; }
.lp-offer-card p { font-size:13.8px; line-height:1.65; color:rgba(255,255,255,.82); }

@media (max-width:980px) { .lp-offer-grid { grid-template-columns:repeat(2,1fr); } .lp-offer-panel { padding:58px 0; margin-bottom:56px; } .lp-offer-head h2 { font-size:30px; } }
@media (max-width:600px) { .lp-offer-grid { grid-template-columns:1fr; gap:14px; } .lp-offer-panel { padding:44px 0; margin-bottom:44px; } .lp-offer-head { margin-bottom:28px; } .lp-offer-head h2 { font-size:26px; } .lp-offer-card { padding:24px 18px; } }

/* Why Choose — quiet bordered rows, icon left (about page) */
.lp-why-list { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin:0; padding:0; list-style:none; }
.lp-why-item { display:flex; align-items:center; gap:13px; padding:17px 20px; border-radius:14px; background:#fff; border:1px solid rgba(137,8,134,.10); box-shadow:0 2px 10px rgba(74,3,70,.05); transition:transform .25s ease, border-color .25s, box-shadow .25s; }
.lp-why-item:hover { transform:translateY(-3px); border-color:rgba(208,139,255,.55); box-shadow:0 12px 26px rgba(137,8,134,.13); }
.lp-why-item .tk { flex-shrink:0; display:grid; place-items:center; color:#9a2f97; }
.lp-why-item .tk svg { stroke-width:1.7; }
.lp-why-item .lbl { font-size:15px; font-weight:600; color:#2b1a4d; line-height:1.35; }

@media (max-width:1080px) { .lp-why-list { grid-template-columns:repeat(3,1fr); } }
@media (max-width:820px)  { .lp-why-list { grid-template-columns:repeat(2,1fr); gap:12px; } .lp-why-item { padding:15px 16px; } .lp-why-item .lbl { font-size:14px; } }
@media (max-width:560px)  { .lp-why-list { grid-template-columns:1fr; } }

/* Trust — quiet bordered tiles, icon + label */
.lp-pills { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.lp-tpill { display:flex; align-items:center; gap:13px; padding:17px 20px; border-radius:14px; background:#fff; border:1px solid rgba(137,8,134,.10); box-shadow:0 2px 10px rgba(74,3,70,.05); transition:transform .25s ease, border-color .25s, box-shadow .25s; }
.lp-tpill:hover { transform:translateY(-3px); border-color:rgba(208,139,255,.55); box-shadow:0 12px 26px rgba(137,8,134,.13); }
.lp-tpill .tk { flex-shrink:0; display:grid; place-items:center; color:#9a2f97; background:none; }
.lp-tpill .tk svg { stroke-width:1.7; }
.lp-tpill .lbl { font-weight:600; font-size:15px; color:#2b1a4d; line-height:1.35; }

@media (max-width:900px) { .lp-pills { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .lp-pills { grid-template-columns:1fr; gap:12px; } }

/* Testimonials — quote cards */
.lp-testimonial { position:relative; padding:32px 26px 26px; overflow:hidden; }
.lp-qmark { position:absolute; top:12px; right:16px; color:rgba(137,8,134,.10); }

/* FAQ — accordion */
.lp-acc { max-width:840px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.lp-acc-item { overflow:hidden; transition:border-color .3s, box-shadow .3s; }
.lp-acc-item.open { border-color:rgba(208,139,255,.5); box-shadow:0 14px 34px rgba(137,8,134,.14); }
.lp-acc-q { width:100%; text-align:left; background:none; border:0; padding:20px 24px; display:flex; justify-content:space-between; align-items:center; gap:16px; font-size:16px; font-weight:700; color:#191919; cursor:pointer; font-family:inherit; }
.lp-acc-q .chev { color:#890886; flex-shrink:0; transition:transform .3s ease; }
.lp-acc-item.open .chev { transform:rotate(180deg); }
.lp-acc-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.lp-acc-a p { padding:0 24px 20px; color:#4b4b4b; font-size:14.5px; line-height:1.65; }
.lp-acc-item.open .lp-acc-a { max-height:260px; }

@media (max-width:820px) {
  .lp-about2 { grid-template-columns:1fr; gap:28px; }
  .lp-schedbanner { justify-content:center; text-align:center; }
}

/* icon alignment in chips / inline contexts */
.lp-ic { display:inline-flex; align-items:center; }
.lp-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.lp-chip { display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:600; color:#6d066a; background:rgba(255,255,255,.6); border:1px solid rgba(137,8,134,.16); padding:8px 14px; border-radius:999px; -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); transition:transform .2s ease, background-color .2s ease, border-color .2s ease; }
.lp-chip:hover { transform:translateY(-2px); background:rgba(255,255,255,.9); border-color:rgba(137,8,134,.35); }
.lp-chip svg { color:#890886; }

/* =====================================================================
   About page — photo frames + varied layout
   ===================================================================== */
.photo-frame { position:relative; border-radius:24px; overflow:hidden; border:1px solid rgba(255,255,255,.55); box-shadow:0 22px 50px rgba(74,3,70,.20); background:linear-gradient(150deg,#4a0346,#890886 60%,#b45cf0); aspect-ratio:4/3; }
.photo-frame img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s cubic-bezier(.16,1,.3,1); }
.photo-frame:hover img { transform:scale(1.06); }
.photo-frame::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 52%,rgba(25,25,25,.42)); pointer-events:none; }
.photo-badge { position:absolute; left:16px; bottom:16px; z-index:2; display:inline-flex; align-items:center; gap:11px; padding:12px 16px; border-radius:16px; background:rgba(255,255,255,.78); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.6); box-shadow:0 8px 22px rgba(74,3,70,.20); }
.photo-badge .pb-ic { width:40px; height:40px; border-radius:12px; background:linear-gradient(135deg,#890886,#b45cf0); color:#fff; display:grid; place-items:center; flex-shrink:0; }
.photo-badge b { display:block; font-size:14px; color:#191919; line-height:1.1; }
.photo-badge span { font-size:12px; color:#4b4b4b; }

/* Our Story — sticky visual + scannable point cards */
.story-split { display:grid; grid-template-columns:.85fr 1.15fr; gap:44px; align-items:start; }
.story-visual { position:sticky; top:24px; }
.story-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px; }
.story-stats div { text-align:center; padding:14px 8px; border-radius:14px; background:rgba(255,255,255,.62); border:1px solid rgba(255,255,255,.75); }
.story-stats b { display:block; font-size:21px; font-weight:800; color:#890886; }
.story-stats span { display:block; font-size:11.5px; color:#5a5a66; margin-top:3px; }

/* Story copy — reads as an article, not a stack of cards */
.story-prose { padding-top:4px; }
.story-prose p { font-size:16.5px; line-height:1.85; color:#4b4b52; margin-bottom:22px; }
.story-prose strong { color:#6d066a; font-weight:650; }
.story-prose .sp-lead { font-size:18px; color:#3a3a44; }
.story-prose .sp-lead::first-letter { float:left; font-size:58px; line-height:.86; font-weight:800; color:#890886; padding:4px 12px 0 0; }
.sp-quote { position:relative; margin-top:30px; padding:22px 26px 22px 30px; border-left:4px solid #b45cf0; border-radius:0 16px 16px 0; background:rgba(208,139,255,.12); font-size:16px; line-height:1.8; color:#3a3a44; font-style:normal; }

.about-prose p { color:#4b4b4b; line-height:1.8; font-size:15.5px; margin-bottom:16px; }
.about-prose p:last-child { margin-bottom:0; }
.about-prose strong { color:#6d066a; }

@media (max-width:900px) {
  .story-split { grid-template-columns:1fr; gap:26px; }
  .story-visual { position:static; }
}

.about-commit { text-align:center; padding:58px 44px; color:#fff; border-radius:26px; background:linear-gradient(135deg,#4a0346 0%,#890886 55%,#b45cf0 100%); background-size:180% 180%; box-shadow:0 24px 55px rgba(74,3,70,.40); position:relative; overflow:hidden; animation:lpShimmer 9s ease-in-out infinite alternate; }
.about-commit::after { content:""; position:absolute; inset:0; background:radial-gradient(620px 260px at 18% -20%, rgba(255,255,255,.22), transparent 60%); pointer-events:none; }
.about-commit .ac-ic { width:68px; height:68px; border-radius:20px; background:rgba(255,255,255,.16); color:#fff; display:grid; place-items:center; margin:0 auto 18px; position:relative; }
.about-commit h2 { color:#fff; font-size:30px; font-weight:800; letter-spacing:-.02em; position:relative; }
.about-commit p { color:rgba(255,255,255,.9); max-width:720px; margin:16px auto 0; line-height:1.8; font-size:16px; position:relative; }
.about-commit .ac-tag { display:block; max-width:760px; margin:26px auto 0; font-size:21px; font-weight:800; letter-spacing:-.01em; line-height:1.4; position:relative; }

@media (max-width:820px) {
  .about-story { grid-template-columns:1fr; gap:26px; }
  .about-commit { padding:42px 22px; }
  .about-commit h2 { font-size:26px; }
  .about-commit .ac-tag { font-size:18px; }
}

/* ===== About — Mission/Vision + Core Values ===== */
/* Mission & Vision — paired statement cards, one dark one light */
.lp-mv { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.lp-mvcard { position:relative; overflow:hidden; padding:40px 36px; border-radius:22px; background:#fff; border:1px solid rgba(137,8,134,.10); box-shadow:0 6px 24px rgba(74,3,70,.07); transition:transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s; }
.lp-mvcard:hover { transform:translateY(-4px); box-shadow:0 20px 44px rgba(137,8,134,.15); }
.lp-mv-ic { width:54px; height:54px; border-radius:16px; background:rgba(208,139,255,.18); color:#9a2f97; display:grid; place-items:center; margin-bottom:20px; transition:transform .35s cubic-bezier(.34,1.56,.64,1), background-color .3s; }
.lp-mv-ic svg { stroke-width:1.7; }
.lp-mvcard:hover .lp-mv-ic { transform:translateY(-3px); }
.lp-mv-kicker { display:block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.09em; color:#9a2f97; margin-bottom:12px; }
.lp-mvcard p { font-size:17px; line-height:1.75; color:#3f3f4a; font-weight:450; }

/* Dark variant — the mission reads as the headline statement */
.lp-mvcard-dark { color:#fff; background:linear-gradient(150deg,#3d0239 0%,#890886 62%,#a94de0 100%); border-color:rgba(255,255,255,.14); box-shadow:0 18px 44px rgba(74,3,70,.30); }
.lp-mvcard-dark::after { content:""; position:absolute; inset:0; background:radial-gradient(420px 200px at 15% -20%, rgba(255,255,255,.22), transparent 62%); pointer-events:none; }
.lp-mvcard-dark > * { position:relative; z-index:1; }
.lp-mvcard-dark .lp-mv-ic { background:rgba(255,255,255,.17); color:#fff; }
.lp-mvcard-dark .lp-mv-kicker { color:#e9b6ff; }
.lp-mvcard-dark p { color:rgba(255,255,255,.92); }

.lp-valgrid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; }
.lp-value { padding:32px 24px; text-align:center; }
.lp-vic { width:66px; height:66px; margin:0 auto 16px; border-radius:50%; background:linear-gradient(135deg,#890886,#b45cf0); color:#fff; display:grid; place-items:center; box-shadow:0 10px 24px rgba(137,8,134,.30); transition:transform .35s cubic-bezier(.34,1.56,.64,1); }
.lp-value:hover .lp-vic { transform:scale(1.12) rotate(6deg); }
.lp-value h3 { font-size:18px; color:#191919; margin-bottom:8px; }
.lp-value p { font-size:14px; color:#4b4b4b; line-height:1.6; }

@media (max-width:760px) { .lp-mv { grid-template-columns:1fr; } }

/* =====================================================================
   How It Works — redesigned (card-free glass timeline + animation)
   ===================================================================== */
.hiw-hero { text-align:center; padding:70px 0 6px; position:relative; }
.hiw-title { font-size:48px; line-height:1.06; font-weight:800; letter-spacing:-.025em; color:#191919; }
.hiw-title .grad { background:linear-gradient(120deg,#890886,#d08bff); background-size:220% auto; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; animation:lpShimmer 5s linear infinite alternate; }
.hiw-sub { max-width:640px; margin:20px auto 0; font-size:18px; line-height:1.7; color:#4b4b4b; }

/* Vertical timeline — no cards; glass surface appears on hover */
.hiw-timeline { position:relative; max-width:820px; margin:0 auto; }
.hiw-timeline::before { content:""; position:absolute; left:31px; top:40px; bottom:40px; width:2px; background:linear-gradient(#890886,#d08bff); opacity:.28; }
.hiw-step { position:relative; display:flex; gap:26px; padding:16px 0; align-items:flex-start; }
.hiw-node { width:64px; height:64px; flex-shrink:0; border-radius:20px; display:grid; place-items:center; font-size:23px; font-weight:800; color:#fff; background:linear-gradient(135deg,#890886,#b45cf0); box-shadow:0 10px 24px rgba(137,8,134,.32); position:relative; z-index:1; transition:transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease; }
.hiw-step:hover .hiw-node { transform:scale(1.08) rotate(-4deg); animation:lpPulse 1.5s ease-in-out infinite; }
.hiw-body { flex:1; padding:20px 26px; border-radius:20px; border:1px solid transparent; transition:transform .35s cubic-bezier(.16,1,.3,1), background-color .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s; }
.hiw-step:hover .hiw-body { transform:translateX(6px); background:rgba(255,255,255,.62); border-color:rgba(208,139,255,.5); box-shadow:0 18px 40px rgba(137,8,134,.14); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px); }
.hiw-ey { font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.07em; color:#b45cf0; }
.hiw-body h3 { font-size:19px; color:#191919; margin:4px 0 6px; }
.hiw-body > p { font-size:15px; color:#4b4b4b; line-height:1.65; }
.hiw-cap { margin-top:12px; font-size:13px; font-weight:700; color:#6d066a; }
.hiw-list { margin-top:8px; display:grid; gap:8px; }
.hiw-list li { position:relative; padding-left:26px; font-size:14px; color:#4b4b4b; }
.hiw-list li::before { content:""; position:absolute; left:0; top:2px; width:17px; height:17px; border-radius:50%; background:rgba(208,139,255,.22); }
.hiw-list li::after { content:""; position:absolute; left:6px; top:5px; width:4px; height:8px; border:solid #890886; border-width:0 2px 2px 0; transform:rotate(43deg); }

/* Why Choose — tick rows (glass on hover) */
.hiw-perks { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:10px 18px; max-width:920px; margin:0 auto; }
.hiw-perk { display:flex; align-items:center; gap:14px; padding:14px 18px; border-radius:16px; border:1px solid transparent; transition:transform .3s cubic-bezier(.16,1,.3,1), background-color .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s; }
.hiw-perk:hover { transform:translateY(-4px); background:rgba(255,255,255,.62); border-color:rgba(208,139,255,.5); box-shadow:0 16px 34px rgba(137,8,134,.14); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px); }
.hiw-perk .tick { width:34px; height:34px; flex-shrink:0; display:grid; place-items:center; border-radius:50%; color:#fff; background:linear-gradient(135deg,#890886,#b45cf0); box-shadow:0 6px 16px rgba(137,8,134,.3); transition:transform .35s cubic-bezier(.34,1.56,.64,1); }
.hiw-perk:hover .tick { transform:scale(1.15) rotate(-8deg); }
.hiw-perk .lbl { font-weight:600; color:#191919; font-size:15px; }

@media (max-width:640px) {
  .hiw-title { font-size:34px; }
  .hiw-step { gap:16px; }
  .hiw-node { width:52px; height:52px; font-size:19px; border-radius:16px; }
  .hiw-timeline::before { left:25px; }
  .hiw-body { padding:16px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .hiw-title .grad, .hiw-step:hover .hiw-node { animation:none !important; }
}

/* =====================================================================
   Responsive hardening — small phones (320-430px)
   Fixed minmax() track floors overflow the viewport once the container is
   narrower than the floor, so collapse every auto-fit grid to one column.
   ===================================================================== */
@media (max-width:430px) {
  .steps-grid,.address-list,.fee-grid,.prohibited-grid,.settings-hub,.cms-grid,
  .lp-features,.lp-featgrid,.lp-steps,.lp-services,.lp-trust,.lp-testimonials,
  .lp-faq-grid,.lp-valgrid,.hiw-perks { grid-template-columns:1fr; }
  .landing .container { padding-left:16px; padding-right:16px; }
  .lp-hero { padding:40px 0 44px; }
  .lp-hero-title { font-size:29px; }
  .lp-svc-body { padding:38px 18px 20px; }
  .lp-service h3 { font-size:17px; }
}

/* Tablets — hero stacks before the columns get too cramped */
@media (max-width:900px) {
  .lp-hero-visual { max-width:520px; margin:0 auto; width:100%; }
  .lp-trustrow { gap:12px 22px; }
}

/* Never let a landing section push the page sideways */
.landing { max-width:100vw; }
