/* ============================================================
   Borda — Asset Tracking Pilot — campaign page styles
   Brand: Borda Brand Book (Orange #f0552c / Dark Teal #2b444a),
   Helvetica Neue, minimal / flat, rounded "friendly rectangles".
   ============================================================ */

:root{
  --orange:      #f0552c;
  --orange-dark: #d8431d;
  --teal:        #2b444a;
  --teal-700:    #22363b;
  --teal-900:    #16252a;
  --crystal:     #9fd2d3;
  --crystal-lt:  #e3f1f1;
  --lightblue:   #55959f;
  --yellowgreen: #d9d946;

  --ink:    #2b444a;
  --body:   #2b444a;
  --muted:  #7c8a8e;
  --line:   #e6eaeb;
  --bg:     #ffffff;
  --bg-alt: #f5f8f8;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow:    0 14px 40px rgba(43,68,74,.10);
  --shadow-sm: 0 6px 18px rgba(43,68,74,.08);
  --maxw:      1600px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*{box-sizing:border-box;letter-spacing:0}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font);color:var(--body);background:radial-gradient(820px 440px at 50% 0,rgba(159,210,211,.32),transparent 60%) no-repeat,var(--bg);line-height:1.6;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
img{max-width:100%;display:block}
a{color:var(--orange);text-decoration:none}
h1,h2,h3{color:var(--ink);line-height:1.14;margin:0 0 .4em;font-weight:700}
h1{font-size:clamp(2rem,4.4vw,3.3rem)}
h2{font-size:clamp(1.7rem,3.2vw,2.5rem)}
h3{font-size:1.18rem}
p{margin:0 0 1rem}
.container{width:82%;max-width:var(--maxw);margin:0 auto;padding:0}
.text-orange{color:var(--orange)}

.section{padding:84px 0}
.alt-bg{background:var(--bg-alt)}
.section-head{max-width:1040px;margin:0 auto 48px;text-align:center}
.section-head h2{margin:0 0 14px}
.section-sub{font-size:1.08rem;color:var(--muted);margin:0}
/* package intro — bring it forward: brand orange, +3pt */
.package{background:#d4ebebab}
.package .section-sub{color:var(--orange);font-size:1.33rem;font-weight:600}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5em;font-family:var(--font);font-weight:700;font-size:1rem;padding:13px 28px;border-radius:999px;border:2px solid transparent;cursor:pointer;transition:transform .15s ease,box-shadow .2s ease,background .2s ease;white-space:nowrap}
/* CTA gradient — matches bordatech.com demo section (animated purple→orange) */
.btn-cta{color:#fff;background-size:400% 400%;background-image:linear-gradient(90deg,rgb(136,69,184) 0%,rgb(250,106,62) 100%);animation:Gradient92 8s ease infinite}
.btn-cta:hover{transform:translateY(-2px)}
@keyframes Gradient92{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
.btn-lg{padding:16px 38px;font-size:1.08rem}
/* hero button — slide-fill style like the "Get a Demo" button on bordatech.com (#55959f) */
.btn-hero{display:inline-flex;align-items:center;justify-content:center;font-family:var(--font);font-weight:700;font-size:.98rem;padding:11px 28px;border-radius:30px;color:#fff;border:2px solid var(--lightblue);background:linear-gradient(to right,#fff 50%,var(--lightblue) 50%);background-size:200% 100%;background-position:right bottom;transition:all .3s ease-out;cursor:pointer;white-space:nowrap;text-decoration:none}
.btn-hero:hover{background-position:left bottom;color:var(--lightblue)}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:50;background:transparent;transition:background .25s ease,box-shadow .25s ease}
.site-header.scrolled{background:rgba(255,255,255,.94);backdrop-filter:saturate(160%) blur(8px);box-shadow:0 2px 12px rgba(43,68,74,.08)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding-top:14px;padding-bottom:14px}
/* full-bleed header (logo at far left, CTA at far right) — like bordatech.com */
.site-header .header-inner{max-width:none;width:100%;margin:0;padding-left:40px;padding-right:40px}
.brand-logo{height:58px;width:auto}
.header-inner .btn-cta{padding:13px 30px;font-size:1rem}

/* ---------- Header CTA popover — gradient panel "expands" from the button ---------- */
.cta-pop-wrap{position:relative}
.cta-pop-wrap.is-open .btn-cta{visibility:hidden}
.cta-pop{position:absolute;top:0;right:0;width:408px;max-width:calc(100vw - 24px);
  background:linear-gradient(100deg,rgb(136,69,184) 0%,rgb(250,106,62) 100%);
  border-radius:24px;box-shadow:0 18px 50px rgba(43,68,74,.30);padding:20px 22px 22px;z-index:70;text-align:left;color:#fff}
.cta-pop[hidden]{display:none}
.cta-pop-close{position:absolute;top:12px;right:14px;border:none;background:none;font-size:1.5rem;line-height:1;color:rgba(255,255,255,.9);cursor:pointer;padding:2px 6px}
.cta-pop-close:hover{color:#fff}
.pop-head{font-size:1.18rem;font-weight:700;color:#fff;margin:2px 20px 16px 2px;line-height:1.2}
.pop-form input[type=email]{width:100%;border:none;border-radius:999px;padding:15px 18px;font-size:1rem;font-style:italic;color:var(--ink);background:#fff;outline:none;margin-bottom:14px;font-family:var(--font)}
.pop-form input[type=email]::placeholder{color:rgba(43,68,74,.55);font-style:italic}
.pop-turnstile{display:flex;justify-content:center}
.pop-btn{width:100%;border:none;border-radius:999px;padding:15px;font-family:var(--font);font-weight:700;font-size:1.05rem;text-transform:uppercase;letter-spacing:.02em;color:var(--orange);background:#fff;cursor:pointer;transition:transform .15s ease,opacity .2s ease}
.pop-btn:hover{transform:translateY(-2px)}
.pop-btn[disabled]{opacity:.55;cursor:not-allowed;transform:none}
.pop-micro{font-size:.7rem;color:rgba(255,255,255,.85);margin:12px 0 0;line-height:1.5}
.pop-micro a{color:#fff;text-decoration:underline}
.pop-status{max-height:0;overflow:hidden;transition:max-height .3s ease,margin .3s ease;font-weight:600;font-size:.9rem;color:#fff}
.pop-status.show{max-height:120px;margin-top:12px}
.pop-status.error{color:#ffe2da}
.pop-status i,.hf-status i,.ff-status i{margin-right:.45em}
/* success state — form is replaced by the thank-you message */
.hf-status.sent,.ff-status.sent{max-height:none;overflow:visible;display:flex;align-items:center;gap:.5em;font-size:1.1rem;line-height:1.4;margin:0}

/* ---------- Hero (glide-style, light) ---------- */
.hero{background:radial-gradient(900px 460px at 50% 100%,rgba(159,210,211,.32),transparent 60%) no-repeat;padding:24px 0 36px;text-align:left;min-height:calc(100svh - 88px);display:flex;flex-direction:column;justify-content:center}
.hero-grid{display:grid;grid-template-columns:1.22fr 0.95fr;gap:48px;align-items:center;margin-bottom:clamp(48px,7vh,96px)}
.hero-grid>*{min-width:0}
.eyebrow{display:inline-flex;align-items:center;gap:.5em;font-size:.85rem;font-weight:600;color:var(--lightblue);background:rgba(85,149,159,.12);padding:7px 14px;border-radius:999px;margin-bottom:20px}
.eyebrow i{color:var(--lightblue)}
@media(min-width:769px){.hero-copy .eyebrow:not(.eyebrow-live){margin-right:10px}}
.eyebrow-live{color:#C75A74;background:#FFF2F5;gap:0!important}
.eyebrow-live .live-dot{margin-right:8px}
.eyebrow-live .dot-sep{display:inline-block;padding:0 .15em;font-weight:700}
.live-dot{position:relative;display:inline-block;width:8px;height:8px;border-radius:50%;background:#c75a74;box-shadow:0 0 3px rgb(235,187,198)}
.live-dot::after{content:'';position:absolute;top:50%;left:50%;width:8px;height:8px;transform:translate(-50%,-50%);border-radius:50%;border:1.5px solid #c75a74;animation:live-ping 2.2s ease-out infinite}
@keyframes live-ping{
  0%{width:8px;height:8px;opacity:.7}
  100%{width:22px;height:22px;opacity:0}
}
.hero h1{font-size:clamp(1.9rem,2.8vw,3.2rem);line-height:1.12;margin:0 0 .35em;text-transform:uppercase}
.hero h1 .nw{white-space:nowrap}
.hero-sub{font-size:clamp(1.2rem,2vw,1.5rem);font-weight:600;color:var(--ink);margin:0 0 .4em}
/* desktop: keep the subtitle on a single line, grow it toward the H1 width */
@media(min-width:1200px){.hero-sub{font-size:clamp(1.1rem,1.66vw,1.55rem);white-space:nowrap}}
.hero-line{font-size:1.2rem;color:var(--muted);margin:0 0 30px}
.hero-media{position:relative}
/* highlighted subtitle — soft marker-underline (lighter) */
.hl{background:linear-gradient(transparent 62%,rgba(159,210,211,.45) 62%);padding:0 .12em;-webkit-box-decoration-break:clone;box-decoration-break:clone}
/* "Ready within a week" — inline orange emphasis with a clean hand-drawn straight underline */
.ready-em{color:var(--orange);font-weight:700;white-space:nowrap;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M2,7 C90,4 210,4 298,6' fill='none' stroke='%23f0552c' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:0 100%;background-size:100% 9px;padding-bottom:7px}
/* thin underline variant — for the hero "Ready within a week." */
.ready-em.is-thin{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M2,7 C90,4 210,4 298,6' fill='none' stroke='%23f0552c' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");background-size:100% 7px;padding-bottom:5px}
/* hero email-capture form (HubSpot) */
.hero-form{max-width:600px;margin:0}
/* form pill = animated gradient RING (outer line) · translucent glass interior · solid yellow-green button */
.hf-row{display:flex;align-items:center;gap:7px;padding:6px;border:3px solid transparent;border-radius:999px;
  background:linear-gradient(90deg,rgba(136,69,184,.10),rgba(250,106,62,.10)) padding-box,
             linear-gradient(#fff,#fff) padding-box,
             linear-gradient(90deg,rgba(136,69,184,.5),rgba(250,106,62,.5)) border-box;
  background-size:400% 400%,auto,400% 400%;animation:Gradient92 8s ease infinite}
.hf-row input{flex:1;min-width:0;border:none;border-radius:999px;padding:15px 20px;font-size:1.03rem;font-style:italic;color:var(--ink);outline:none;background:transparent}
.hf-row input::placeholder{color:rgba(43,68,74,.55);font-style:italic}
.hf-btn{flex:none;border:none;border-radius:999px;padding:14px 26px;font-family:var(--font);font-weight:700;font-size:.98rem;color:#fff;cursor:pointer;white-space:nowrap;background-size:400% 400%;background-image:linear-gradient(90deg,rgb(136,69,184) 0%,rgb(250,106,62) 100%);animation:Gradient92 8s ease infinite}
.hf-btn[disabled]{opacity:.7;cursor:default}
.hf-micro{font-size:.62rem;color:var(--muted);margin:7px 0 0;max-width:600px;line-height:1.45}
.hf-micro a{color:var(--muted);text-decoration:underline}
.hf-note{display:inline-flex;align-items:center;gap:.5em;font-size:.95rem;font-weight:600;color:var(--muted);margin:8px 0 0}
/* round badge: circle in the text colour, white "x" inside */
.x-badge{display:inline-flex;align-items:center;justify-content:center;width:1.25em;height:1.25em;border-radius:50%;background:var(--muted);color:#fff;font-size:.82em;line-height:1;flex:none}
.x-badge i{line-height:0}
.x-badge i{color:#fff}
.hf-status{max-height:0;overflow:hidden;transition:max-height .3s ease,margin .3s ease;font-weight:600;font-size:.92rem}
.hf-status.show{max-height:80px;margin-top:12px}
.hf-status.success{color:var(--lightblue)}
.hf-status.error{color:#d23b2e}
.video-embed{position:relative;aspect-ratio:16/9;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);background:#000}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.video-play{position:absolute;inset:0;width:100%;height:100%;border:0;background:none;cursor:pointer;padding:0}
.video-poster{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.85)}
.play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:80px;height:80px;border-radius:50%;background:var(--orange);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.6rem;box-shadow:0 10px 30px rgba(240,85,44,.5);transition:transform .2s ease}
.video-play:hover .play-btn{transform:translate(-50%,-50%) scale(1.08)}
/* Vimeo responsive embed (hero) — 16:9 to match the video frame */
.vimeo-embed{position:relative;padding:56.25% 0 0 0;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);background:#000}
.vimeo-embed iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}

/* ---------- Content + stats band (light teal) ---------- */
.band{background:linear-gradient(135deg,rgba(255,177,35,.25),rgba(255,114,84,.25),rgba(255,83,154,.25));padding:48px 0 68px}
.band-copy{max-width:none;margin:0 auto 60px;text-align:center}
.band-copy p{font-size:1.45rem;font-weight:400;line-height:1.5;color:var(--teal);margin-bottom:18px}
.band-copy p:last-child{margin-bottom:0}

/* stats — single white card with dividers (v1 style), scaled up for the full-width hero */
.stats{list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin:0 auto 20px;max-width:1320px;padding:26px 24px;background:#fff;border-radius:18px;box-shadow:0 6px 22px rgba(43,68,74,.06)}
.stats li{text-align:center;border-right:1px solid rgba(43,68,74,.10)}
.stats li:last-child{border-right:0}
.stat-num{display:block;font-size:clamp(2rem,2.7vw,2.6rem);font-weight:600;color:var(--teal);line-height:1;letter-spacing:-.01em}
.stat-num .cur{font-size:.56em;font-weight:700;vertical-align:.42em;margin-right:1px}
.stat-label{display:block;margin-top:8px;color:var(--muted);font-size:.9rem;font-weight:500}

/* icon stepper — brand SVG icons + dashed arrow connectors (assets/SVG) */
.flow-head{text-align:center;margin:0 0 44px}
.flow-steps{list-style:none;display:flex;justify-content:center;align-items:flex-start;gap:0;margin:0 auto;padding:0;max-width:1280px}
.flow-steps li{flex:1;display:flex;flex-direction:column;align-items:center;gap:18px;position:relative;text-align:center}
.fs-svg{width:94px;height:94px;display:block;position:relative;z-index:1}
.fs-label{font-weight:700;color:var(--teal);font-size:1.3rem}
/* dashed orange arrow between steps, centered on the icon — spans the wider gap */
.flow-steps li:not(:last-child)::after{content:"";position:absolute;top:47px;transform:translateY(-50%);left:calc(50% + 52px);width:calc(100% - 104px);height:26px;background:url("../assets/SVG/arrow.svg") no-repeat center center;background-size:contain;z-index:0}

/* ---------- Live map (full-width, visual only) ---------- */
.livemap-full{position:relative;width:100%;background:#fff;padding:84px 0}
.lm-grid{display:grid;grid-template-columns:40% 60%;gap:48px;align-items:center}
.kicker{display:inline-block;font-size:.8rem;font-weight:700;color:var(--orange);text-transform:uppercase;letter-spacing:3px;margin-bottom:12px}
.lm-text h2{margin:0 0 18px}
.lm-text p{font-size:1.05rem;color:var(--body);margin-bottom:16px}
.lm-text p:last-child{margin-bottom:0}
.lm-wrap{position:relative;border-radius:14px;overflow:hidden}
.lm-wrap img{width:100%;display:block}
.lm-video{width:100%;display:block;border-radius:14px}
.lm-overlay{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}

@keyframes iso-fill{0%{rx:6;ry:3;opacity:0}6%{opacity:.22}100%{rx:520;ry:234;opacity:0}}
.rp{fill:#22c55e;stroke:none;animation:iso-fill 5s ease-out infinite}
@keyframes asset-glow{0%,100%{fill-opacity:.12;stroke-opacity:.4;stroke-width:1.5}50%{fill-opacity:.32;stroke-opacity:.9;stroke-width:2.5}}
.asset-poly{fill:#ef4444;stroke:#ef4444;stroke-linejoin:round;animation:asset-glow 2s ease-in-out infinite;filter:drop-shadow(0 0 5px rgba(239,68,68,.6))}

.lm-tip{position:fixed;background:rgba(5,5,5,.96);border:1px solid #555;color:#e5e7eb;padding:10px 15px;border-radius:10px;font-size:12px;line-height:1.7;pointer-events:none;opacity:0;transition:opacity .15s;white-space:nowrap;z-index:60}
.lm-tip.on{opacity:1}
.lm-tip.ap{border-color:#22c55e;box-shadow:0 4px 16px rgba(34,197,94,.25)}
.lm-tip.ast{border-color:#ef4444;box-shadow:0 4px 16px rgba(239,68,68,.25)}
.lm-tip .tip-id{font-weight:700;font-size:13px;margin-bottom:2px}
.lm-tip.ap .tip-id{color:#4ade80}
.lm-tip.ast .tip-id{color:#f87171}
.lm-tip .tip-row{font-size:11px;color:#9ca3af}

.lm-legend{display:flex;gap:24px;justify-content:center;margin-top:18px;font-size:13px;color:#9ca3af}
.ld{width:10px;height:10px;border-radius:50%;display:inline-block;margin-right:6px;vertical-align:middle}
.ld-ap{background:#22c55e}
.ld-asset{background:#ef4444;border-radius:2px}

/* ---------- Pilot package cards ---------- */
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:30px;box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.card h3{margin:15px 0 6px}
.card-lead{color:var(--ink);font-weight:600;margin-bottom:14px}
.card-ico{width:56px;height:56px;border-radius:16px;background:rgba(159,210,211,.40);color:var(--lightblue);display:flex;align-items:center;justify-content:center;font-size:1.4rem;margin-bottom:8px}
.card-note{display:block;margin-top:12px;font-size:.78rem;color:var(--muted)}
.ticks{list-style:none;padding:0;margin:0}
.ticks li{position:relative;padding-left:26px;margin-bottom:8px;color:var(--body)}
.ticks li::before{content:"\f00c";font-family:"Font Awesome 6 Free";font-weight:900;position:absolute;left:0;top:1px;color:var(--lightblue);font-size:.82rem}

/* ---------- Timeline (horizontal track) ---------- */
.phase-bar{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:0 0 56px}
.phase{border-radius:var(--radius-sm);padding:16px 20px;color:#fff;font-size:1.12rem;text-align:center}
.phase strong{display:block;font-size:1.22rem;margin-bottom:2px}
.phase-a{background:var(--teal)}
.phase-b{background:var(--lightblue)}
.track{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(6,1fr);gap:14px;position:relative}
.track::before{content:"";position:absolute;top:32px;left:8%;right:8%;height:2px;border-top:2px dashed #c8d6d6;z-index:0}
.node{position:relative;z-index:1;text-align:center;padding-top:0}
.circle{width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.1rem;margin:0 auto 16px;box-shadow:0 8px 18px rgba(43,68,74,.18)}
.node-a .circle{background:var(--teal)}
.node-b .circle{background:var(--lightblue)}
.node h3{font-size:1.05rem;margin:0 0 10px}
.pill{display:inline-block;font-size:.78rem;font-weight:700;color:var(--teal);background:rgba(43,68,74,.08);border:1px solid rgba(43,68,74,.18);padding:4px 12px;border-radius:999px;margin-bottom:8px}
.pill-b{color:var(--lightblue);background:rgba(85,149,159,.1);border-color:rgba(85,149,159,.3)}
.node p{font-size:.9rem;color:var(--muted);margin:0}
.center-cta{text-align:center;margin-top:56px}
.timeline{background:#f0f8f8;padding-bottom:15px !important}
section#timeline a:hover {
    color: #fff;
}
/* ---------- Beyond — 1:1 replica of bordatech "DISCOVER OUR PRODUCTS" ---------- */
.beyond{background:transparent;padding-top:78px;padding-bottom:0}
.beyond h2{color:var(--ink)}
/* white 4px dividers via grid gap — works the same in 4-col, 2-col and 1-col layouts */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:4px;background:#fff;max-width:1280px;margin:0 auto;border:4px solid #fff;border-radius:20px;overflow:hidden}
.product-col{background:#9fd2d366;padding:34px 26px;transition:background .3s ease-in-out}
/* hover — slightly deeper teal tint */
.product-col:hover{background:rgba(159,210,211,.78)}
.product-col h3{font-weight:600;margin:0 0 22px;font-size:clamp(1.7rem,2.6vw,2.4rem);color:#4c8a94}
.product-links{list-style:none;margin:0;padding:0}
.product-links li{margin-bottom:18px}
.product-links a{color:#02332e;font-weight:500;font-size:1.05rem;line-height:1.15;transition:color .2s ease}
.product-links a:hover{color:var(--orange)}

/* ---------- Final CTA ---------- */
/* Final CTA — replica of bordatech homepage demo banner (animated gradient + white button) */
.final-cta{position:relative;color:#fff;padding:104px 0;background-size:400% 400%;background-image:linear-gradient(90deg,rgb(136,69,184) 0%,rgb(250,106,62) 100%);animation:Gradient92 8s ease infinite}
.final-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;max-width:1280px;margin-left:auto;margin-right:auto}
.final-grid>*{min-width:0}
.final-copy h2{color:#fff;margin:0 0 28px;line-height:1.15;font-size:clamp(2rem,3vw,3rem)}
.final-copy p{color:rgba(255,255,255,.92);font-size:1.1rem;margin:0 0 22px;max-width:44ch}
.final-points{list-style:none;padding:0;margin:0}
.final-points li{display:flex;align-items:center;gap:.6em;color:#fff;font-weight:600;margin-bottom:12px}
.final-points i{color:#fff}
/* email form panel — translucent card · light email field · solid white button (orange text) */
.final-form-wrap{background:rgba(255,255,255,.12);border-radius:24px;padding:34px 32px;max-width:460px;margin-left:auto;width:100%}
.final-form input{width:100%;border:none;border-radius:999px;padding:16px 20px;font-size:1rem;font-style:italic;color:#fff;background:rgba(255,255,255,.18);outline:none;margin-bottom:14px}
.final-form input::placeholder{color:rgba(255,255,255,.85);font-style:italic}
.ff-btn{width:100%;border:none;border-radius:999px;padding:16px;font-family:var(--font);font-weight:700;font-size:1.05rem;text-transform:uppercase;letter-spacing:.02em;color:var(--orange);cursor:pointer;background:#fff;transition:transform .15s ease}
.ff-btn:hover{transform:translateY(-2px)}
.ff-btn[disabled]{opacity:.7;cursor:default;transform:none}
.ff-micro{font-size:.72rem;color:rgba(255,255,255,.85);margin:14px 0 0;line-height:1.5}
.ff-micro a{color:rgba(255,255,255,.85);text-decoration:underline}
.ff-status{max-height:0;overflow:hidden;transition:max-height .3s ease,margin .3s ease;font-weight:600;font-size:.92rem;color:#fff}
.ff-status.show{max-height:80px;margin-top:12px}

/* ---------- Footer ---------- */
.site-footer{background:radial-gradient(1200px 620px at 50% 120%,rgba(159,210,211,.5),transparent 66%) no-repeat,var(--bg);color:rgba(2,51,46,.7);padding:48px 0 28px}
.footer-inner{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;flex-wrap:wrap;padding-bottom:26px;border-bottom:1px solid rgba(2,51,46,.12)}
.footer-logo{height:48px;width:auto}
.footer-tag{margin:8px 0 0;font-size:.85rem;color:rgba(2,51,46,.55)}
.footer-awards{display:flex;align-items:center;margin:0 0 -16px;padding:0;flex:none}
.footer-awards img{height:126px;width:auto;flex:none;max-width:100%}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;padding-top:22px;font-size:.85rem}
.footer-links{display:flex;gap:20px;flex-wrap:wrap}
.footer-links a{color:rgba(2,51,46,.6);font-weight:500;transition:color .15s ease}
.footer-links a:hover{color:var(--orange)}
.footer-links .cookie-prefs{color:rgba(2,51,46,.6);font-weight:500}
.footer-links .footer-site{color:var(--orange);font-weight:600}

/* ---------- Scroll reveal ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}

/* ---------- Responsive ---------- */

/* ========== Desktop üstü (≥1921px) — only ultra-wide monitors (e.g. 2560) ==========
   NOT triggered on 1920 or MacBook (1512–1728) — those stay on the default desktop design. */
@media (min-width:1921px){
  .hero .container{width:90%;max-width:2100px}
  .stats{max-width:1320px;padding:34px 40px}
  .hero h1{font-size:clamp(2.8rem,3.2vw,4rem)}
  .hero-sub{font-size:clamp(1.4rem,1.6vw,2rem)}
  .hero-line{font-size:clamp(1.2rem,1.3vw,1.6rem)}
  .hero-grid{gap:clamp(48px,5vw,96px)}
  .stat-num{font-size:clamp(2.5rem,3vw,3.4rem)}
  .hf-btn{padding:16px 32px;font-size:1.05rem}
}

/* ========== Tablet (≤1024px) — stack multi-column layouts ========== */
@media (max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:32px}
  .lm-grid{grid-template-columns:1fr;gap:28px}
  .final-grid{grid-template-columns:1fr;gap:32px}
  .final-form-wrap{margin-left:0;max-width:100%}
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .phase-bar{grid-template-columns:1fr}
  .track{grid-template-columns:repeat(3,1fr);gap:40px 14px}
  .track::before{display:none}
  /* per-row dashed connectors (3-col layout): connect 1→2, 4→5; skip 3rd & last in each row */
  .node:not(:nth-child(3n)):not(:last-child)::after{content:"";position:absolute;top:32px;left:calc(50% + 38px);width:calc(100% - 76px);border-top:2px dashed #c8d6d6;z-index:0}
}

/* ========== Mobile (≤600px) ========== */
@media (max-width:600px){
  .container{width:91%}
  .section{padding:58px 0}
  .band{padding:64px 0 48px}

  /* stats — 4 separate cards (2×2), each its own box */
  .stats{grid-template-columns:repeat(2,1fr);background:transparent;box-shadow:none;padding:0;gap:14px}
  .stats li{background:#fff;border-right:0;border-radius:16px;box-shadow:0 6px 22px rgba(43,68,74,.06);padding:22px 10px}
  .stats li:nth-child(2n){border-right:0}
  .stat-label{font-size:1rem}

  /* cards — single column */
  .card-grid{grid-template-columns:1fr}
  .track{grid-template-columns:repeat(2,1fr)}

  /* How It Works — vertical stack with short down-arrows between steps */
  .flow-steps{flex-direction:column;align-items:center;flex-wrap:nowrap;max-width:none;gap:0}
  .flow-steps li{flex:none;width:auto;margin-bottom:0;padding-bottom:50px}
  .flow-steps li:last-child{padding-bottom:0}
  .flow-steps li:not(:last-child)::after{content:"";display:block;position:absolute;top:auto;bottom:12px;left:50%;transform:translateX(-50%);width:0;height:28px;background:none;border-left:3px dashed rgba(255, 70, 7, 0.65)}
  .flow-steps li:not(:last-child)::before{content:"";position:absolute;bottom:4px;left:50%;transform:translateX(-50%) rotate(45deg);width:8px;height:8px;border-right:3px solid rgba(255, 70, 7, 0.65);border-bottom:3px solid rgba(255, 70, 7, 0.65);z-index:2}
  .fs-svg{width:66px;height:66px}
  .fs-label{font-size:1rem}

  /* Beyond — 2×2 grid, smaller boxes (patient+asset / staff+facility) */
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .product-col{padding:20px 14px}
  .product-col h3{font-size:1.35rem;margin-bottom:14px}
  .product-links li{margin-bottom:11px}
  .product-links a{font-size:.92rem}

  /* Final CTA — extra side breathing room so text isn't edge-stuck */
  .final-cta .container{width:86%}

  /* Mobile sticky bottom CTA wrapper */
  .asset-tracking-pilot-template .cta-pop-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(43, 68, 74, 0.15);
    padding: 12px 16px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    width: 100%;
    /* Hidden by default, smooth animated slide-up */
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  }
  .asset-tracking-pilot-template .cta-pop-wrap.mobile-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .asset-tracking-pilot-template .cta-pop-wrap .btn-cta {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1.05rem;
    border-radius: 999px;
  }
  .asset-tracking-pilot-template .cta-pop-wrap.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .asset-tracking-pilot-template .cta-pop-wrap.is-open .btn-cta {
    visibility: hidden;
  }
  /* popover is fixed at the bottom on mobile */
  .cta-pop {
    position: fixed;
    top: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    z-index: 1001;
  }
  .cta-pop::before {
    display: none;
  }
  .hf-row{flex-direction:column;border-radius:18px;padding:10px}
  .hf-row input{width:100%;text-align:center}
  .hf-btn{width:100%}
  .hf-micro{white-space:normal}
  
  /* Center hero content on mobile */
  .asset-tracking-pilot-template .hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .asset-tracking-pilot-template .hero-copy .eyebrow,
  .asset-tracking-pilot-template .hero-copy .eyebrow-live {
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
  }
  .asset-tracking-pilot-template .hero-copy h1 {
    text-align: center;
    margin: 0.5em !important;
  }
  .asset-tracking-pilot-template .hero-copy .hero-sub,
  .asset-tracking-pilot-template .hero-copy .hero-line {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .asset-tracking-pilot-template .hero-form {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .brand-logo{height:44px}
  .asset-tracking-pilot-template .header-inner {
    justify-content: center;
  }
  body.asset-tracking-pilot-template {
    padding-bottom: 80px !important;
  }
  /* Fix sticky header containing block on mobile by disabling backdrop-filter */
  .asset-tracking-pilot-template .site-header.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .video-embed{transform:none}
  .hero h1 .nw{white-space:normal}

  /* timeline — no horizontal connectors in the 2-col mobile layout */
  .node::after{display:none}

  /* footer — awards sit above the Borda logo, with breathing room between them */
  .footer-inner{flex-direction:column;align-items:flex-start;gap:34px}
  .footer-awards{order:-1;margin:0}
  .footer-awards img{height:80px}

  /* Final CTA button on mobile — allow multi-line centered text */
  .ff-btn {
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.35 !important;
    padding: 12px 18px !important;
    display: block !important;
    height: auto !important;
    width: 100% !important;
  }
  .ff-mob-br {
    display: block !important;
  }
}

.ff-mob-br {
  display: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none;transition:none}
}

/* Hide global Google reCAPTCHA badge specifically on this landing page template */
.asset-tracking-pilot-template .grecaptcha-badge {
  display: none !important;
}

/* Reset padding for the custom pilot header to override global theme styles */
.asset-tracking-pilot-template header#top {
  padding: 0 !important;
}

/* Custom additions for asset tracking pilot template */
.asset-tracking-pilot-template #BRDCo-trigger-btn {
  display: flex !important;
}

.asset-tracking-pilot-template .icon2402 {
  width: 15px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}

.asset-tracking-pilot-template .hf-note {
  color: #55959f;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

/* Heading letter-spacing override */
.asset-tracking-pilot-template h1,
.asset-tracking-pilot-template h2,
.asset-tracking-pilot-template h3,
.asset-tracking-pilot-template h4,
.asset-tracking-pilot-template h5,
.asset-tracking-pilot-template h6 {
  letter-spacing: normal !important;
}

/* Sizing for Live in 7 Days card spans */
.asset-tracking-pilot-template .stat-num.stat-16rem {
  font-size: 1.6rem !important;
}
.asset-tracking-pilot-template .stat-num.stat-16rem:last-child {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .asset-tracking-pilot-template .stat-num.stat-16rem {
    font-size: 1.2rem !important;
  }
}

/* info tooltip — icon + hover/focus bubble */
.info-tip{position:relative;display:inline-flex;align-items:flex-start;vertical-align:top;margin-left:.04em}
.hero-sub .info-tip{margin-left:-.06em}
.stat-num .info-tip{margin-left:.12em}

/* icon: solid muted-teal disc + white serif "i" + soft outer ring */
.info-btn{-webkit-appearance:none;appearance:none;cursor:pointer;padding:0;border:0;width:17px;height:17px;background:rgba(43,68,74,.36);color:#fff;border-radius:50%;box-shadow:0 0 0 2.5px rgba(43,68,74,.16);font-family:Georgia,"Times New Roman",serif;font-size:12px;font-weight:600;font-style:normal;line-height:1;display:inline-flex;align-items:center;justify-content:center;transition:background .15s,box-shadow .15s}
.info-btn:hover,.info-btn:focus-visible{background:var(--orange);box-shadow:0 0 0 2.5px rgba(240,85,44,.2);outline:none}

.hero-sub .info-btn {
  width: 14.5px;
  height: 14.5px;
  font-size: 10.5px;
  box-shadow: 0 0 0 2px rgba(43,68,74,.16);
}
.hero-sub .info-btn:hover, .hero-sub .info-btn:focus-visible {
  box-shadow: 0 0 0 2px rgba(240,85,44,.2);
}

/* bubble: white bg, gray text, soft shadow, side arrow — default opens to the RIGHT */
.info-bubble{position:absolute;left:calc(100% + 12px);top:50%;transform:translateY(-50%) translateX(6px);width:280px;max-width:78vw;background:#fff;color:var(--muted);font-size:11px;font-weight:400;line-height:1.5;letter-spacing:0;text-align:left;padding:11px 13px;border-radius:12px;box-shadow:0 6px 22px rgba(43,68,74,.16);opacity:0;visibility:hidden;transition:opacity .18s ease,transform .18s ease;z-index:60;white-space:normal;pointer-events:none}
.info-bubble::after{content:"";position:absolute;right:100%;top:50%;transform:translateY(-50%);border:7px solid transparent;border-right-color:#fff}
.info-tip:hover .info-bubble,.info-tip:focus-within .info-bubble{opacity:1;visibility:visible;transform:translateY(-50%) translateX(0)}

/* stat variant: opens ABOVE, centered on icon, downward triangle */
.info-bubble--stat{top:auto;bottom:calc(100% + 11px);left:50%;right:auto;transform:translateX(-50%) translateY(-6px)}
.info-bubble--stat::after{top:100%;bottom:auto;left:50%;right:auto;transform:translateX(-50%);border-right-color:transparent;border-top-color:#fff}
.info-tip:hover .info-bubble--stat,.info-tip:focus-within .info-bubble--stat{transform:translateX(-50%) translateY(0)}

/* responsive: shrink bubble on narrow screens and right-align on mobile */
@media(max-width:1200px){.info-bubble{width:220px}}
@media(max-width:900px){.info-bubble{width:200px;font-size:11px}}
@media(max-width:768px){
  .info-bubble{left:auto!important;right:0!important;top:calc(100% + 8px)!important;transform:translateY(6px)!important;width:240px!important;max-width:85vw!important}
  .info-bubble::after{right:14px!important;top:auto!important;bottom:100%!important;left:auto!important;transform:none!important;border-color:transparent!important;border-bottom-color:#fff!important}
  .info-tip:hover .info-bubble,.info-tip:focus-within .info-bubble{transform:translateY(0)!important}
}

/* prevents a horizontal scrollbar from off-screen (hidden) bubbles */
html,body{overflow-x:clip}

/* Prevent vertical page height stretching for hero section containing the map */
.hero { min-height: auto; }

/* ── Floor Plan Section ── */
.fp-band {
  padding: 20px 0 20px 0;
  background: transparent !important;
  overflow: hidden;
}
.fp-subtitle {
  text-align: center;
  color: #5a7a82;
  font-size: 16px;
  margin-bottom: 40px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.fp-wrap {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  aspect-ratio: 1672 / 941;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.fp-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.fp-map-img  { mix-blend-mode: multiply; }
.fp-waves    { z-index: 2; pointer-events: none; }
.fp-hotspots { z-index: 3; }
.fp-ap-layer { z-index: 4; pointer-events: none; object-fit: cover; }

/* ── Mobile (vertical) floor plan — hidden by default, swapped in at <=768px ── */
.fp-band-mobile { display: none; }
.fp-wrap-mobile { aspect-ratio: 979 / 1740; max-width: 480px; }
@media (max-width: 768px) {
  #fp-band-desktop { display: none; }
  .fp-band-mobile  { display: block; overflow: visible; }
  .fp-card.visible { display: none !important; }
}

/* Wi-Fi ripples (vertical map): true circles, no perspective skew */
@keyframes fp-iso-fill-v {
  0%   { transform: scale(1);  opacity: 0; }
  6%   { opacity: 0.22; }
  100% { transform: scale(55); opacity: 0; }
}
.fp-rp-v {
  fill: #22c55e;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: fp-iso-fill-v 5s ease-out infinite;
}

/* Wi-Fi dalgaları */
@keyframes fp-iso-fill {
  0%   { transform: scale(1);             opacity: 0; }
  6%   { opacity: 0.22; }
  100% { transform: scale(76.6667, 80.5); opacity: 0; }
}
.fp-rp {
  fill: #22c55e;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: fp-iso-fill 5s ease-out infinite;
}
@keyframes fp-iso-fill-far {
  0%   { transform: scale(1);         opacity: 0; }
  6%   { opacity: 0.13; }
  100% { transform: scale(65, 68.25); opacity: 0; }
}
.fp-rp-far {
  fill: #22c55e;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: fp-iso-fill-far 5s ease-out infinite;
}

/* Hotspot */
/* Asset polygons */
@keyframes fp-asset-glow {
  0%,100% { fill-opacity:0.12; stroke-opacity:0.4; stroke-width:1.5; }
  50%      { fill-opacity:0.35; stroke-opacity:0.9; stroke-width:2.5; }
}
.fp-apoly {
  fill: #ef4444;
  stroke: #ef4444;
  stroke-linejoin: round;
  animation: fp-asset-glow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(239,68,68,0.6));
}
/* asset cards match the AP cards (same header colour) */
.fp-asset-card .fp-card-top { background: #f2f2f2; }
/* uniform icon box so all assets render at the same size (like the APs) */
.fp-asset-icon { width: 72px !important; }
.fp-asset-icon img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain;
  max-width: none;
  max-height: none;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
/* wheelchair is wide, so bump it up a bit to match the others visually */
#fp-card-asset-1 .fp-asset-icon { width: 92px !important; }
#fp-card-asset-1 .fp-asset-icon img { width: 92px !important; height: 92px !important; }

.fp-hotspot {
  fill: #fff;
  fill-opacity: 0;
  stroke: none;
  cursor: pointer;
  pointer-events: all;
}

/* ── AP Kart ── */
.fp-card {
  position: fixed;
  display: none;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 9999;
  pointer-events: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.fp-card.visible { display: block; }

.fp-card-top {
  background: #f2f2f2;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fp-card-left { flex: 1; }
.fp-label {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  margin: 0 0 2px;
}
.fp-value {
  font-size: 13px;
  font-weight: 400;
  color: #2b444a;
  margin: 0 0 11px;
}
.fp-name { font-weight: 700; }
.fp-value:last-child { margin-bottom: 0; }

.fp-card-icon {
  flex-shrink: 0;
  width: 60px;
}
.fp-card-icon img {
  width: 54px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.fp-card-bottom {
  background: #2b444a;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.fp-hosp {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 3px;
}
.fp-service {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.fp-addr {
  font-size: 10px;
  font-weight: 300;
  color: #9fd2d3;
  text-align: right;
  line-height: 1.7;
}
.fp-addr p { margin: 0; }

/* Mobile bottom sheet and drag indicator overrides */
.fp-card-handle {
  display: none;
  width: 40px;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  margin: 8px auto 0 auto;
}

@media (max-width: 768px) {
  .fp-card {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 20px 20px 0 0 !important;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3) !important;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: auto !important;
  }
  .fp-card.visible {
    display: block !important;
    transform: translateY(0) !important;
  }
  .fp-card-handle {
    display: block;
  }
}

/* Footnote for timeline section */
.timeline-note {
  color: #7c8a8e;
  font-style: italic;
  font-size: .75rem;
  margin-top: 48px;
  margin-bottom: 0 !important;
  text-align: left;
}
