/* ==========================================================================
   ESE Courier ERP - Public Homepage
   Self-contained design system: no Bootstrap, no shared style.css.
   The tracking pages still use homepage/assets/css/style.css; this file is
   loaded ONLY by homepage.blade.php, so nothing here can regress them.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */
:root {
    --ink:        #06201f;
    --deep:       #00302f;
    --deep-2:     #004d4d;
    --teal:       #006666;
    --teal-2:     #0d9488;
    --mint:       #00d4a8;
    --mint-soft:  #7ff0d6;
    --amber:      #fdf503;
    --amber-2:    #e1c804;

    --bg:         #f5f9f9;
    --bg-2:       #ffffff;
    --card:       #ffffff;
    --line:       #e2ecec;
    --line-2:     #d3e2e2;

    --text:       #0f2e2c;
    --text-2:     #40605e;
    --muted:      #6b8785;

    --on-dark:    #ffffff;
    --on-dark-2:  rgba(255, 255, 255, 0.72);
    --on-dark-3:  rgba(255, 255, 255, 0.52);
    --glass:      rgba(255, 255, 255, 0.07);
    --glass-2:    rgba(255, 255, 255, 0.12);
    --glass-line: rgba(255, 255, 255, 0.16);

    --grad-brand: linear-gradient(135deg, #006666 0%, #0d9488 55%, #fdf503 100%);
    --grad-mint:  linear-gradient(135deg, #00d4a8 0%, #0d9488 100%);
    --grad-deep:  linear-gradient(150deg, #00302f 0%, #004d4d 55%, #00605c 100%);
    --grad-amber: linear-gradient(135deg, #fdf503 0%, #e1c804 100%);

    --r-sm: 10px;
    --r:    16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-pill: 999px;

    --sh-sm: 0 2px 8px rgba(6, 32, 31, 0.05);
    --sh:    0 12px 34px rgba(6, 32, 31, 0.08);
    --sh-lg: 0 24px 60px rgba(6, 32, 31, 0.14);
    --sh-glow: 0 18px 50px rgba(0, 102, 102, 0.28);

    --shell: 1240px;
    --nav-h: 74px;
}

/* ------------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
button { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
    margin: 0 0 .5em;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.022em;
    color: var(--text);
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: rgba(0, 212, 168, .28); }

/* --------------------------------------------------------------- helpers */
.hp-shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 22px;
}

.hp-section { padding: clamp(56px, 7vw, 96px) 0; position: relative; }
.hp-section--tight { padding: clamp(40px, 5vw, 68px) 0; }

.hp-dark {
    background: var(--grad-deep);
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
}
.hp-dark h1, .hp-dark h2, .hp-dark h3, .hp-dark h4, .hp-dark h5 { color: var(--on-dark); }
.hp-dark p { color: var(--on-dark-2); }

.hp-light { background: var(--bg); }
.hp-white { background: var(--bg-2); }

/* decorative glow blobs used inside dark sections */
.hp-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
    z-index: 0;
}
.hp-blob--mint { background: radial-gradient(circle, rgba(0, 212, 168, .20), transparent 68%); }
.hp-blob--amber { background: radial-gradient(circle, rgba(240, 165, 0, .16), transparent 68%); }

.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}
.hp-eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
}
.hp-dark .hp-eyebrow { color: var(--mint); }
.hp-dark .hp-eyebrow::before { background: var(--grad-mint); }

.hp-h2 {
    font-size: clamp(1.65rem, 3.4vw, 2.6rem);
    margin-bottom: 14px;
}
.hp-lede {
    font-size: clamp(.95rem, 1.4vw, 1.06rem);
    color: var(--text-2);
    max-width: 620px;
    margin: 0;
}
.hp-dark .hp-lede { color: var(--on-dark-2); }

.hp-head-center { text-align: center; margin-bottom: clamp(32px, 4vw, 52px); }
.hp-head-center .hp-lede { margin-inline: auto; }

.hp-grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hp-dark .hp-grad-text {
    background: linear-gradient(120deg, #00d4a8 0%, #7ff0d6 45%, #f0a500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------- buttons */
.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    font-size: .93rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.hp-btn i { font-size: .92em; }
.hp-btn:hover { transform: translateY(-2px); }

.hp-btn--amber { background: var(--grad-amber); color: #1b1200; box-shadow: 0 10px 26px rgba(240, 165, 0, .32); }
.hp-btn--amber:hover { box-shadow: 0 16px 36px rgba(240, 165, 0, .42); color: #1b1200; }

.hp-btn--brand { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-glow); }
.hp-btn--brand:hover { color: #fff; box-shadow: 0 20px 46px rgba(0, 102, 102, .34); }

.hp-btn--mint { background: var(--grad-mint); color: #012b26; box-shadow: 0 10px 26px rgba(0, 212, 168, .3); }
.hp-btn--mint:hover { color: #012b26; }

.hp-btn--ghost { background: transparent; border-color: var(--glass-line); color: #fff; }
.hp-btn--ghost:hover { background: var(--glass-2); border-color: rgba(255, 255, 255, .42); color: #fff; }

.hp-btn--line { background: #fff; border-color: var(--line-2); color: var(--teal); box-shadow: var(--sh-sm); }
.hp-btn--line:hover { border-color: var(--teal); color: var(--teal); box-shadow: var(--sh); }

.hp-btn--sm { padding: 10px 20px; font-size: .86rem; }
.hp-btn--block { width: 100%; }

.hp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--teal);
}
.hp-link i { transition: transform .25s ease; }
.hp-link:hover i { transform: translateX(4px); }
.hp-dark .hp-link { color: var(--mint); }

/* --------------------------------------------------------------- topbar */
.hp-topbar {
    background: #00292a;
    color: var(--on-dark-2);
    font-size: .8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.hp-topbar .hp-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.hp-topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hp-topbar a { color: var(--on-dark-2); }
.hp-topbar a:hover { color: var(--mint); }
.hp-topbar i { color: var(--mint); margin-right: 6px; }
.hp-topbar-social { display: flex; align-items: center; gap: 14px; }
.hp-hide-sm { display: inline; }
.hp-topbar-social a i { margin: 0; color: var(--on-dark-3); }
.hp-topbar-social a:hover i { color: var(--mint); }

/* --------------------------------------------------------------- navbar */
.hp-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 900;
}
.hp-nav {
    position: relative; /* containing block for the mobile menu panel below */
    background: #006666;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.hp-nav.is-stuck {
    background: rgba(0, 40, 40, .96);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .28);
}
.hp-nav .hp-shell {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 18px;
}
.hp-brand { display: flex; align-items: center; flex-shrink: 0; }
.hp-brand img { height: 40px; width: auto; }

.hp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.hp-nav-links a.hp-nav-link {
    padding: 9px 14px;
    border-radius: var(--r-sm);
    font-size: .89rem;
    font-weight: 600;
    color: var(--on-dark-2);
}
.hp-nav-links a.hp-nav-link:hover,
.hp-nav-links a.hp-nav-link.is-active {
    color: #fff;
    background: var(--glass);
}
.hp-nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 10px; }

.hp-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--glass-line);
    background: var(--glass);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-left: auto;
    cursor: pointer;
}

/* ----------------------------------------------------------------- hero */
.hp-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--deep);
    color: #fff;
    overflow: hidden;
}
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(0, 33, 33, .95) 0%, rgba(0, 48, 47, .88) 42%, rgba(0, 61, 58, .62) 72%, rgba(0, 70, 66, .45) 100%);
}
.hp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 10%, transparent 72%);
    mask-image: radial-gradient(ellipse at 30% 40%, #000 10%, transparent 72%);
    opacity: .7;
}
.hp-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
    padding: clamp(52px, 7vw, 96px) 0 clamp(48px, 6vw, 84px);
}

.hp-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px 7px 12px;
    border: 1px solid var(--glass-line);
    background: var(--glass);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: var(--r-pill);
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 20px;
}
.hp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(0, 212, 168, .18);
    animation: hp-pulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes hp-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 4px rgba(0, 212, 168, .18); }
    50%      { opacity: .55; box-shadow: 0 0 0 8px rgba(0, 212, 168, .06); }
}

.hp-hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 18px;
}
.hp-hero-desc {
    font-size: clamp(.95rem, 1.5vw, 1.08rem);
    color: var(--on-dark-2);
    max-width: 560px;
    margin-bottom: 26px;
}
.hp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

/* inline AWB tracking form */
.hp-track-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid var(--glass-line);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: var(--r-pill);
    padding: 7px 7px 7px 18px;
    max-width: 520px;
    margin-bottom: 30px;
}
.hp-track-form i.hp-track-ico { color: var(--mint); font-size: .95rem; flex-shrink: 0; }
.hp-track-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    padding: 10px 4px;
    letter-spacing: .02em;
}
.hp-track-form input::placeholder { color: rgba(255, 255, 255, .5); font-weight: 500; letter-spacing: 0; }
.hp-track-form button { flex-shrink: 0; }

.hp-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.hp-hero-stat { display: flex; align-items: center; gap: 12px; }
.hp-hero-stat-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    color: var(--mint-soft);
    font-size: .98rem;
    flex-shrink: 0;
}
.hp-hero-stat b {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--mint);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.hp-hero-stat span { font-size: .74rem; color: var(--on-dark-3); }

/* hero console mock */
.hp-console {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
    border: 1px solid var(--glass-line);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: var(--r-xl);
    padding: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
    animation: hp-float 7s ease-in-out infinite;
}
@keyframes hp-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
.hp-console-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: 14px;
}
.hp-console-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .25); }
.hp-console-dot:nth-child(1) { background: #ff5f57; }
.hp-console-dot:nth-child(2) { background: #febc2e; }
.hp-console-dot:nth-child(3) { background: #28c840; }
.hp-console-title {
    margin-left: 8px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--on-dark-3);
    text-transform: uppercase;
}
.hp-console-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}
.hp-tile {
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--r);
    padding: 13px 14px;
}
.hp-tile span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--on-dark-3);
    margin-bottom: 6px;
}
.hp-tile b { font-size: 1.32rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.hp-tile small { display: block; font-size: .7rem; color: var(--mint); font-weight: 700; margin-top: 2px; }
.hp-tile small.is-down { color: #ffb4a4; }

.hp-console-rows {
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--r);
    padding: 6px 4px;
}
.hp-crow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    font-size: .78rem;
}
.hp-crow + .hp-crow { border-top: 1px solid rgba(255, 255, 255, .07); }
.hp-crow-awb { font-weight: 700; color: #fff; letter-spacing: .02em; }
.hp-crow-city { color: var(--on-dark-3); margin-left: auto; font-size: .72rem; }
.hp-pill {
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.hp-pill--ok    { background: rgba(0, 212, 168, .16); color: #6ff0cd; }
.hp-pill--move  { background: rgba(240, 165, 0, .16); color: #ffd27a; }
.hp-pill--new   { background: rgba(120, 180, 255, .16); color: #a9cdff; }

/* --------------------------------------------------------------- marquee */
.hp-marquee {
    background: #00292a;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
    overflow: hidden;
}
.hp-marquee-inner { display: flex; align-items: center; gap: 22px; }
.hp-marquee-label {
    flex-shrink: 0;
    padding-left: 22px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--on-dark-3);
}
.hp-marquee-track {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hp-marquee-run {
    display: flex;
    align-items: center;
    width: max-content;
    animation: hp-marquee 42s linear infinite;
}
.hp-marquee-run img {
    height: 46px;
    width: auto;
    margin: 0 12px;
    border-radius: 8px;
    opacity: .82;
    transition: opacity .3s ease, transform .3s ease;
}
.hp-marquee-run img:hover { opacity: 1; transform: translateY(-3px); }
.hp-marquee:hover .hp-marquee-run { animation-play-state: paused; }
@keyframes hp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ------------------------------------------------------------- value/USP */
.hp-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hp-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hp-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.hp-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px 24px;
    height: 100%;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hp-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--grad-brand);
    opacity: 0;
    transition: opacity .3s ease;
}
.hp-card:hover { transform: translateY(-6px); border-color: rgba(0, 102, 102, .22); box-shadow: var(--sh); }
.hp-card:hover::after { opacity: 1; }
.hp-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.hp-card p { font-size: .88rem; color: var(--text-2); margin: 0; }

.hp-ico {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: #fff;
    background: var(--grad-brand);
    box-shadow: 0 8px 20px rgba(0, 102, 102, .22);
}
.hp-ico--teal  { background: linear-gradient(135deg, #006666, #0d9488); }
.hp-ico--mint  { background: linear-gradient(135deg, #0d9488, #00d4a8); box-shadow: 0 8px 20px rgba(0, 212, 168, .24); }
.hp-ico--amber { background: var(--grad-amber); box-shadow: 0 8px 20px rgba(240, 165, 0, .26); }
.hp-ico--deep  { background: linear-gradient(135deg, #00302f, #006666); }
.hp-ico--soft  { background: rgba(0, 102, 102, .09); color: var(--teal); box-shadow: none; }

/* -------------------------------------------------------------- modules */
.hp-mod {
    position: relative;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--glass-line);
    border-radius: var(--r-lg);
    padding: 24px 22px;
    height: 100%;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.hp-mod::before {
    content: '';
    position: absolute;
    inset: -40% 55% 40% -40%;
    background: radial-gradient(circle, rgba(0, 212, 168, .16), transparent 68%);
    opacity: 0;
    transition: opacity .4s ease;
}
.hp-mod:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(0, 212, 168, .35);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .3);
}
.hp-mod:hover::before { opacity: 1; }
.hp-mod-head { position: relative; display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.hp-mod-head h4 { font-size: 1.02rem; color: #fff; margin: 0 0 8px; }
.hp-mod p { position: relative; font-size: .85rem; color: var(--on-dark-2); margin: 0; }
.hp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hp-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 7px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .02em;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .8);
}

/* --------------------------------------------------------------- workflow */
.hp-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    counter-reset: hp-step;
    position: relative;
}
.hp-step {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px 20px 22px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hp-step:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: rgba(0, 102, 102, .2); }
.hp-step-num {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    background: var(--grad-brand);
    box-shadow: 0 8px 18px rgba(0, 102, 102, .25);
}
.hp-step h4 { font-size: .98rem; margin-bottom: 6px; }
.hp-step p { font-size: .83rem; color: var(--text-2); margin: 0; }
.hp-step::after {
    content: '';
    position: absolute;
    top: 46px;
    right: -13px;
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, var(--line-2), transparent);
}
.hp-step:last-child::after { display: none; }

/* ------------------------------------------------------------ bento grid */
.hp-bento {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}
.hp-bento > * { grid-column: span 2; }
.hp-bento > .is-wide { grid-column: span 3; }
.hp-bento > .is-full { grid-column: span 6; }

.hp-bento-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px 24px;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hp-bento-card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: rgba(0, 102, 102, .2); }
.hp-bento-card h4 { font-size: 1.04rem; margin-bottom: 8px; }
.hp-bento-card p { font-size: .88rem; color: var(--text-2); }

.hp-checklist { display: grid; gap: 9px; margin-top: 14px; }
.hp-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .86rem;
    color: var(--text-2);
}
.hp-check i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: .62rem;
    background: rgba(0, 212, 168, .14);
    color: var(--teal-2);
}
.hp-dark .hp-check { color: var(--on-dark-2); }
.hp-dark .hp-check i { background: rgba(0, 212, 168, .18); color: var(--mint); }

/* ----------------------------------------------------------------- tools */
.hp-tool {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hp-tool:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: rgba(0, 102, 102, .2); }
.hp-tool h4 { font-size: 1.06rem; margin-bottom: 8px; }
.hp-tool p { font-size: .88rem; color: var(--text-2); }
.hp-tool-foot { margin-top: auto; padding-top: 18px; }

.hp-code {
    position: relative;
    background: #04231f;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r);
    padding: 14px 46px 14px 16px;
    margin-top: 14px;
    overflow-x: auto;
}
.hp-code code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: .74rem;
    line-height: 1.7;
    color: #9ff0d8;
    white-space: pre;
}
.hp-copy {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #cdeee4;
    font-size: .76rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease, color .2s ease;
}
.hp-copy:hover { background: var(--mint); color: #05302a; }

/* ----------------------------------------------------------------- roles */
.hp-role {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--glass-line);
    border-radius: var(--r-lg);
    padding: 24px 22px;
    height: 100%;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.hp-role:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .09); border-color: rgba(0, 212, 168, .32); }
.hp-role-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px;
    border-radius: var(--r-pill);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
}
.hp-role-chip--admin   { background: linear-gradient(135deg, #006666, #0d9488); }
.hp-role-chip--manager { background: linear-gradient(135deg, #10b981, #059669); }
.hp-role-chip--agent   { background: linear-gradient(135deg, #f59e0b, #d97706); }
.hp-role-chip--rider   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.hp-role h4 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.hp-role p { font-size: .85rem; color: var(--on-dark-2); margin: 0; }

/* --------------------------------------------------------------- pricing */
.hp-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    align-items: stretch;
}
.hp-plan {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hp-plan:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.hp-plan--featured {
    border-color: transparent;
    background:
        linear-gradient(var(--card), var(--card)) padding-box,
        var(--grad-brand) border-box;
    border: 2px solid transparent;
    box-shadow: var(--sh-lg);
}
.hp-plan-flag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: var(--r-pill);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--grad-brand);
    box-shadow: 0 8px 20px rgba(0, 102, 102, .28);
    white-space: nowrap;
}
.hp-plan-name { font-size: 1.12rem; font-weight: 800; margin-bottom: 4px; }
.hp-plan-desc { font-size: .84rem; color: var(--muted); min-height: 38px; margin-bottom: 16px; }
.hp-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed var(--line-2);
}
.hp-plan-price b { font-size: 2.15rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.hp-plan-price span { font-size: .82rem; color: var(--muted); padding-bottom: 4px; }
.hp-plan ul { display: grid; gap: 10px; margin-bottom: 22px; }
.hp-plan li { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--text-2); }
.hp-plan li i {
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin-top: 2px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: .6rem;
    background: rgba(0, 102, 102, .1);
    color: var(--teal);
}
.hp-plan .hp-plan-cta { margin-top: auto; }

.hp-addons {
    margin-top: 26px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px 26px;
}
.hp-addons-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.hp-addons-head h4 { font-size: 1rem; margin: 0; }
.hp-addons-head p { font-size: .84rem; color: var(--muted); margin: 0; }
.hp-addon-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}
.hp-addon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg);
}
.hp-addon i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: .82rem;
    background: rgba(0, 102, 102, .1);
    color: var(--teal);
    flex-shrink: 0;
}
.hp-addon b { display: block; font-size: .86rem; font-weight: 700; }
.hp-addon span { font-size: .76rem; color: var(--muted); }
.hp-addon-price { margin-left: auto; font-size: .88rem; font-weight: 800; color: var(--teal); white-space: nowrap; }

/* -------------------------------------------------------------- security */
/* Explicit column counts, not auto-fit: this grid holds 8 cards, and auto-fit
   lands on 3 columns at some widths, which leaves a ragged 3+3+2 half-row.
   4 / 2 / 1 all divide evenly, so every row is full at every breakpoint. */
.hp-sec-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.hp-sec {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--glass-line);
    border-radius: var(--r);
    background: rgba(255, 255, 255, .05);
}
.hp-sec i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(0, 212, 168, .14);
    color: var(--mint);
    font-size: .95rem;
    flex-shrink: 0;
}
.hp-sec b { display: block; font-size: .93rem; color: #fff; margin-bottom: 3px; }
.hp-sec span { font-size: .82rem; color: var(--on-dark-2); }

/* ------------------------------------------------------------------- faq */
.hp-faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.hp-faq-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.hp-faq-item.is-open { border-color: rgba(0, 102, 102, .28); box-shadow: var(--sh-sm); }
.hp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 20px;
    background: none;
    border: 0;
    text-align: left;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
}
.hp-faq-q i {
    margin-left: auto;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: .68rem;
    background: rgba(0, 102, 102, .09);
    color: var(--teal);
    transition: transform .3s ease, background .3s ease, color .3s ease;
}
.hp-faq-item.is-open .hp-faq-q i { transform: rotate(45deg); background: var(--teal); color: #fff; }
.hp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.hp-faq-a p {
    padding: 0 20px 18px;
    margin: 0;
    font-size: .88rem;
    color: var(--text-2);
}

/* ------------------------------------------------------------------- cta */
.hp-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    padding: clamp(32px, 5vw, 58px);
    text-align: center;
    background: linear-gradient(135deg, #00302f 0%, #006462 52%, #b87a06 140%);
    box-shadow: var(--sh-lg);
}
.hp-cta-box::before,
.hp-cta-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}
.hp-cta-box::before { width: 320px; height: 320px; top: -140px; right: -90px; }
.hp-cta-box::after  { width: 240px; height: 240px; bottom: -120px; left: -70px; }
.hp-cta-box > * { position: relative; z-index: 1; }
.hp-cta-box h2 { color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.3rem); margin-bottom: 12px; }
.hp-cta-box p { color: rgba(255, 255, 255, .8); max-width: 560px; margin: 0 auto 26px; }
.hp-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hp-cta-note { margin-top: 18px; font-size: .78rem; color: rgba(255, 255, 255, .62); }

/* ---------------------------------------------------------------- footer */
.hp-footer {
    background: #00262a;
    color: var(--on-dark-2);
    padding: clamp(46px, 6vw, 70px) 0 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.hp-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 34px;
    padding-bottom: 38px;
}
.hp-footer h6 {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px;
}
.hp-footer p { font-size: .87rem; line-height: 1.75; }
.hp-footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.hp-footer li { margin-bottom: 10px; }
.hp-footer li a { font-size: .87rem; }
.hp-footer li a:hover { color: var(--mint); }
.hp-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .87rem;
    line-height: 1.7;
}
.hp-footer-contact li i { color: var(--mint); margin-top: 5px; flex-shrink: 0; width: 14px; text-align: center; }
.hp-social { display: flex; gap: 10px; margin-top: 18px; }
.hp-social a {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-line);
    color: var(--on-dark-2);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.hp-social a:hover { background: var(--grad-mint); color: #012b26; transform: translateY(-3px); }
.hp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 16px 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .8rem;
    color: var(--on-dark-3);
}
.hp-footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* ------------------------------------------------------------ float dock */
.hp-dock {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 940;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hp-dock a, .hp-dock button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.28rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
    transition: transform .25s ease;
}
.hp-dock a:hover, .hp-dock button:hover { transform: scale(1.08); }
.hp-dock .is-wa { background: #25d366; }
.hp-dock .is-call { background: #2196f3; }
.hp-dock .is-top {
    background: var(--deep-2);
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, transform .25s ease;
}
.hp-dock .is-top.is-on { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------------- modal */
.hp-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 26, 25, .68);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}
.hp-modal.is-open { display: flex; }
.hp-modal-box {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    animation: hp-rise .28s ease;
    margin: auto;
}
@keyframes hp-rise {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to   { opacity: 1; transform: none; }
}
.hp-modal-head {
    background: var(--grad-deep);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.hp-modal-head h4 { color: #fff; font-size: 1.06rem; margin: 0 0 3px; display: flex; align-items: center; gap: 10px; }
.hp-modal-head h4 i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
    display: grid;
    place-items: center;
    font-size: .92rem;
}
.hp-modal-head p { color: rgba(255, 255, 255, .68); font-size: .8rem; margin: 0 0 0 44px; }
.hp-modal-close {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}
.hp-modal-body { padding: 24px; background: #f8fbfb; }

.vc-label {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
/* align-items:end keeps the inputs on one line when a label wraps (the
   "Actual Weight" label wraps at phone widths, "Divisor" does not). */
.vc-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: end; }
.vc-row--2 { grid-template-columns: 1.3fr 1fr; }
.vc-field { position: relative; }
.vc-field input {
    width: 100%;
    border: 1.5px solid var(--line-2);
    border-radius: 10px;
    padding: 11px 42px 11px 14px;
    font-size: .93rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.vc-field input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 102, 102, .1); }
.vc-unit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .74rem;
    font-weight: 700;
    color: var(--muted);
    pointer-events: none;
}
.vc-sep {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 14px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}
.vc-sep::before, .vc-sep::after { content: ''; flex: 1; height: 1px; background: var(--line-2); }
.vc-result {
    display: none;
    margin-top: 20px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r);
    padding: 16px 18px;
}
.vc-result.is-on { display: block; }
.vc-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-size: .89rem;
}
.vc-line + .vc-line { border-top: 1px solid #f0f5f5; }
.vc-line span { color: var(--text-2); }
.vc-line b { font-weight: 800; }
.vc-line.is-final span { color: var(--teal); font-weight: 800; }
.vc-line.is-final b {
    color: var(--teal);
    font-size: 1.05rem;
    background: rgba(0, 102, 102, .1);
    padding: 3px 12px;
    border-radius: var(--r-pill);
}
.vc-note {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px dashed var(--line-2);
    text-align: center;
    font-size: .74rem;
    color: var(--muted);
}

/* -------------------------------------------------------------- reveal fx */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ============================== responsive ============================== */

/* large laptops */
@media (max-width: 1200px) {
    .hp-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hp-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hp-step::after { display: none; }
}

/* tablets / small laptops */
@media (max-width: 991px) {
    :root { --nav-h: 66px; }

    /* Anchored to .hp-nav (position:relative) rather than the viewport: a fixed
       panel would be laid out against whichever ancestor happens to create a
       containing block, and .hp-nav's backdrop-filter does exactly that in
       some browsers but not others. Opaque background, not translucent - hero
       text showing through the open menu made it unreadable. */
    .hp-nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: calc(100vh - var(--nav-h) - 40px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
        padding: 14px 20px 22px;
        background: #002a2a;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }
    .hp-nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
    .hp-nav-links a.hp-nav-link { padding: 12px 14px; font-size: .95rem; }
    .hp-nav-cta { margin: 10px 0 0; flex-direction: column; align-items: stretch; }
    .hp-nav-cta .hp-btn { width: 100%; }
    .hp-nav-toggle { display: inline-grid; place-items: center; }

    .hp-hero-inner { grid-template-columns: minmax(0, 1fr); }
    .hp-hero-desc { max-width: 100%; }
    .hp-console { max-width: 520px; margin: 6px auto 0; animation: none; }

    .hp-cards, .hp-cards--3, .hp-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hp-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hp-sec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .hp-bento { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hp-bento > *, .hp-bento > .is-wide { grid-column: span 2; }
    .hp-bento > .is-full { grid-column: span 4; }

    .hp-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}

/* phones */
@media (max-width: 767px) {
    body { font-size: 15px; }
    .hp-shell { padding: 0 18px; }

    .hp-topbar { font-size: .74rem; }
    .hp-topbar-left { gap: 14px; }
    .hp-hide-sm { display: none; }

    .hp-hero-inner { padding: 40px 0 44px; }
    .hp-hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
    .hp-hero-actions { gap: 10px; }
    .hp-hero-actions .hp-btn { flex: 1 1 100%; }
    .hp-track-form {
        flex-wrap: wrap;
        border-radius: var(--r-lg);
        padding: 12px;
        gap: 10px;
    }
    .hp-track-form i.hp-track-ico { display: none; }
    .hp-track-form input {
        flex: 1 1 100%;
        background: rgba(0, 0, 0, .22);
        border-radius: var(--r-pill);
        padding: 11px 16px;
    }
    .hp-track-form button { width: 100%; }
    .hp-hero-stats { gap: 14px 18px; }
    .hp-hero-stat { flex: 1 1 calc(50% - 18px); }
    .hp-hero-stat-ico { width: 38px; height: 38px; border-radius: 12px; font-size: .86rem; }
    .hp-hero-stat b { font-size: 1.05rem; }

    .hp-console { padding: 14px; }
    .hp-console-tiles { gap: 8px; }
    .hp-tile { padding: 11px 12px; }
    .hp-tile b { font-size: 1.15rem; }
    .hp-crow { flex-wrap: wrap; gap: 6px 10px; font-size: .74rem; }
    .hp-crow-city { margin-left: 0; }

    .hp-marquee-run img { height: 36px; margin: 0 9px; }
    .hp-marquee-label { padding-left: 18px; font-size: .64rem; }

    .hp-cards, .hp-cards--3, .hp-cards--2, .hp-flow, .hp-sec-grid { grid-template-columns: minmax(0, 1fr); }
    .hp-bento { grid-template-columns: minmax(0, 1fr); }
    .hp-bento > *, .hp-bento > .is-wide, .hp-bento > .is-full { grid-column: span 1; }

    .hp-card, .hp-bento-card, .hp-mod, .hp-tool, .hp-role { padding: 22px 20px; }
    .hp-plan { padding: 26px 22px; }
    .hp-addons { padding: 20px; }
    .hp-addon-list { grid-template-columns: minmax(0, 1fr); }

    .hp-footer-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
    .hp-footer-bottom { justify-content: center; text-align: center; }
    .hp-footer-bottom nav { justify-content: center; gap: 14px; }

    .hp-dock { right: 14px; bottom: 16px; }
    .hp-dock a, .hp-dock button { width: 46px; height: 46px; font-size: 1.16rem; }

    .vc-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .vc-field input { padding: 10px 34px 10px 11px; font-size: .86rem; }
    .vc-unit { right: 8px; font-size: .68rem; }
}

/* small phones */
@media (max-width: 400px) {
    .hp-brand img { height: 32px; }
    .hp-hero h1 { font-size: 1.72rem; }
    .hp-console-tiles { grid-template-columns: minmax(0, 1fr); }
    .hp-hero-stat { flex: 1 1 100%; }
    .hp-plan-price b { font-size: 1.85rem; }
}
