:root {
  --navy: #16266b;        /* headline + primary button + logo */
  --navy-hover: #0f1c52;
  --ink: #1b2433;
  --gray: #6e7480;        /* subhead + nav links */
  --gray-hover: #2b3340;
  --border: #d9dde6;
  --white: #ffffff;

  --maxw: 1280px;
  --pad: 64px;            /* horizontal page padding on desktop */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;               /* above the full-bleed hero image + page content */
  transition: background 0.3s ease, box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease, backdrop-filter 0.3s ease;
}
/* frosted glass appears once the page is scrolled */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
          backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(1, 33, 105, 0.05), 0 10px 30px rgba(1, 33, 105, 0.06);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--pad);
  display: flex;
  align-items: center;
  gap: 64px;                 /* breathing room between logo · nav · CTA */
  transition: padding 0.3s ease;
}
.site-header.scrolled .header-inner {  /* subtly condenses on scroll */
  padding-top: 16px;
  padding-bottom: 16px;
}

/* ---- mobile nav: hamburger + slide-in drawer ----
   On desktop the panel is display:contents, so nav + CTA flow inline exactly
   as before; the toggle and backdrop are hidden. The mobile drawer is in the
   @media (max-width: 900px) block further down. */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-panel { display: contents; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(4, 12, 38, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-backdrop.show { opacity: 1; }

body.nav-open { overflow: hidden; }   /* lock scroll while drawer is open */

.logo {
  color: var(--navy);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  gap: 52px;
  margin: 0 auto;            /* center the links between logo and CTA */
}

.nav a {
  color: var(--gray);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--gray-hover); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 13px 28px;
  font-size: 17px;
}
.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 20px 36px;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(22, 38, 107, 0.18);
}
.btn-primary:hover {
  background: var(--navy-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(22, 38, 107, 0.24);
}
.btn-primary .arrow { font-size: 22px; line-height: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;          /* clip the full-bleed image to the hero */
}

.hero-text {
  position: relative;
  z-index: 2;                /* text sits above the image */
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 72px var(--pad) 96px;
}

.hero-text h1 {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.14;          /* roomier lines so the headline breathes */
  letter-spacing: 0;
  word-spacing: 0.04em;
  margin: 0 0 36px;
}

.subhead {
  color: var(--gray);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 48px;
}

/* ---------- Hero image: full-bleed panel anchored to the right ---------- */
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;                /* right portion of the hero */
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fill the panel; flush to top/right/bottom edges */
  object-position: center;
  display: block;
  /* Only the inner (left) edge dissolves into the white page — no hard seam.
     Top, right and bottom stay flush with the screen corners. */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 16%);
          mask-image: linear-gradient(to right, transparent 0%, #000 16%);
}

/* ---------- Solutions (bento grid) ---------- */
.solutions {
  background: #ebeefb;        /* light indigo tint of the brand navy */
  padding: 104px 0;
}

.solutions-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-title {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.01em;
  margin: 0 0 36px;
}

.bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(4, 150px);
  gap: 16px;
}

/* tile placement (mirrors the reference's asymmetric bento, tuned for 5) */
.tile-homes        { grid-column: 1;     grid-row: 1 / 5; }  /* big left, 3:4   */
.tile-hospitals    { grid-column: 2 / 4; grid-row: 1 / 3; }  /* wide top,  2:1  */
.tile-pharmacy     { grid-column: 2;     grid-row: 3 / 4; }  /* landscape, ~2:1 */
.tile-supermarkets { grid-column: 2;     grid-row: 4 / 5; }  /* landscape, ~2:1 */
.tile-apartments   { grid-column: 3;     grid-row: 3 / 5; }  /* square,    1:1  */

/* The wide tiles crop top/bottom; their (ceiling-mounted) cameras live near the
   top of each photo, so anchor the crop to the top to keep them in frame.
   Scoped under .bento so it beats the generic `.tile` centering below. */
.bento .tile-hospitals,
.bento .tile-pharmacy,
.bento .tile-supermarkets {
  background-position: center top;
}

.tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #c8d0ea;   /* fallback shown until the image is added */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* gradient scrim so the white label is always legible */
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 40, 0.62), rgba(11, 18, 40, 0) 48%);
}

.tile-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  padding: 22px 24px;
}

.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(22, 38, 107, 0.18);
}

/* ---------- Our Products ---------- */
.products {
  background: #f7f9fd;             /* soft section so the white cards separate */
  padding: 104px 0;
}
.products-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.product-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;                /* white card — the near-white photo bg blends in */
  border: 1px solid #e9ecf4;
  border-radius: 20px;
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(22, 38, 107, 0.10);
  border-color: #dfe3ef;
}

.pc-media {
  width: 100%;
  height: 210px;                   /* fixed height keeps every card aligned */
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;        /* show the whole camera, no cropping */
}
.pc-name { color: var(--navy); font-weight: 700; font-size: 19px; margin: 0 0 6px; }
.pc-detail { color: var(--gray); font-size: 14px; margin: 0; }


/* ---------- Section heads (Products / Solutions) ---------- */
.section-head { max-width: 620px; margin: 0 0 48px; }
.section-sub {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.55;
  margin: 14px 0 0;
}

/* ---------- About ---------- */
.about {
  background: var(--navy);
  color: #fff;
  padding: 112px 0;
}

.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;   /* single column since the stats block was removed */
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: #aab6ec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-text h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}

.about-text p {
  color: #c5cdf0;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 34px;
  max-width: 30em;
}

/* white CTA for use on the navy band */
.btn-light {
  background: #fff;
  color: var(--navy);
  padding: 18px 32px;
  font-size: 18px;
}
.btn-light:hover { background: #eef0fb; transform: translateY(-1px); }
.btn-light .arrow { font-size: 20px; line-height: 1; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 44px;
}

.stat {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}
.stat-num {
  display: block;
  font-size: clamp(36px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  display: block;
  color: #aab6ec;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 10px;
}

/* ---------- Contact ---------- */
.contact {
  background: #fff;
  padding: 104px 0;
}

.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-text .eyebrow { color: var(--navy); }

.contact-text h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 18px;
}
.contact-text p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 34em;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li { display: flex; gap: 16px; align-items: center; }

.ci-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #eef1fc;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg { width: 21px; height: 21px; }

.ci-label {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 3px;
}
.ci-value {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
}
a.ci-value:hover { color: var(--navy); }

/* form */
.contact-form {
  background: #f5f7fd;
  border: 1px solid #e6e9f2;
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field .opt { color: var(--gray); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 16px;
  padding: 13px 15px;
  border: 1.5px solid #dfe3ef;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 112px; }
.field input::placeholder,
.field textarea::placeholder { color: #9aa1b2; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(22, 38, 107, 0.12);
}

.contact-submit { width: 100%; justify-content: center; margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #fff; }

.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 76px var(--pad) 52px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .logo { color: #fff; font-size: 24px; }
.footer-tagline {
  color: #c5cdf0;
  font-size: 15px;
  line-height: 1.65;
  margin: 18px 0 26px;
  max-width: 34ch;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #c5cdf0;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col li { color: #aab6ec; font-size: 15px; }
.footer-col a {
  color: #aab6ec;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--pad) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.copyright { color: #8e9bd4; font-size: 14px; }
.footer-legal { display: flex; gap: 26px; }
.footer-legal a {
  color: #aab6ec;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-legal a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .product-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 150px;
  }
  .tile-homes        { grid-column: 1 / 3; grid-row: span 2; }
  .tile-hospitals    { grid-column: 1 / 3; grid-row: span 1; }
  .tile-pharmacy     { grid-column: auto;  grid-row: span 1; }
  .tile-supermarkets { grid-column: auto;  grid-row: span 1; }
  .tile-apartments   { grid-column: auto;  grid-row: span 1; }

  /* smaller labels so the longer names stay fully visible on small tiles */
  .tile-label { font-size: 14px; line-height: 1.25; padding: 12px 14px; }
}

@media (max-width: 900px) {
  :root { --pad: 28px; }

  /* compact sticky header: logo + hamburger */
  .nav-toggle { display: block; margin-left: auto; }

  .nav-panel {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 340px);
    padding: 100px 26px 40px;
    background: linear-gradient(160deg, #0b1f54 0%, #16266b 60%, #012169 100%);
    box-shadow: -22px 0 60px rgba(1, 33, 105, 0.35);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 55;
    overflow-y: auto;
  }
  .nav-panel.open { transform: translateX(0); }

  .nav {
    flex-direction: column;
    gap: 2px;
    margin: 0;
  }
  .nav a {
    color: #e7ecf8;
    font-size: 19px;
    font-weight: 600;
    padding: 15px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav a::after { display: none; }   /* underline animation off inside the drawer */

  .nav-cta {
    margin-top: 24px;
    justify-content: center;
    padding: 15px 0;
    background: #169BD7;
    border-color: #169BD7;
    color: #ffffff;
  }
  .nav-cta:hover { background: #1aa8e8; border-color: #1aa8e8; color: #ffffff; }

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    display: block;
    min-height: 0;
    overflow: visible;
  }
  .hero-text { padding: 40px var(--pad) 24px; }
  .hero-image {
    position: static;
    width: 100%;
    height: auto;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* =====================================================================
   PRICING SECTION
   Self-contained block. Design tokens are scoped to .pricing (not :root)
   so they don't override the site-wide --navy etc., and .eyebrow is
   scoped to .pricing so it doesn't affect the About/Contact eyebrows.
   ===================================================================== */
.pricing {
  --navy:  #012169;
  --cyan:  #169BD7;
  --cyan-soft: #E8F4FB;
  --ink:   #0A1733;
  --muted: #5E6B82;
  --line:  rgba(1, 33, 105, 0.08);
  --line-mid: rgba(1, 33, 105, 0.15);
  --card-bg: #FFFFFF;
  --section-bg: #FAFBFD;

  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--section-bg);
  padding: 120px 56px;
}
.pricing-inner {
  max-width: 1440px;
  margin: 0 auto;
}

/* ---- header ---- */
.pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.pricing .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.pricing-header h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 22px;
}
.pricing-header .lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- alternating package rows (info card one side, photo the other) ---- */
.pkg-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}
.pkg-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: stretch;   /* both halves share the row height */
}
/* card always on the left, photo always on the right (DOM order — no flip) */

/* The photo is framed as a panel that mirrors the info card: white fill,
   the same border + radius. The image is absolutely positioned so it fills
   the panel without dictating its height — the card drives the row height.
   `contain` keeps the whole camera visible; the inset gives it breathing room. */
.pkg-photo {
  position: relative;
  margin: 0;
  min-height: 300px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(1, 33, 105, 0.08);
}
.pkg-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 24px;         /* breathing room from the panel edge */
  object-fit: contain;   /* whole camera always visible, centred — never cropped */
}

/* the card is now a full half-row, so give it more breathing room */
.pkg-row .card { padding: 36px 34px 34px; }
.pkg-row .card-name { min-height: 0; }
/* in a row the featured card shouldn't sit offset — keep the highlight, drop the lift */
.pkg-row .card.featured { transform: none; }
.pkg-row .card.featured:hover,
.pkg-row .card:hover { transform: translateY(-3px); }

/* ---- card ---- */
.pricing .card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pricing .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(1, 33, 105, 0.08);
  border-color: var(--line-mid);
}
.pricing .card.featured {
  border: 2px solid var(--cyan);
  box-shadow: 0 16px 40px rgba(22, 155, 215, 0.16);
  transform: translateY(-4px);
}
.pricing .card.featured:hover { transform: translateY(-7px); }

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  min-height: 44px;
}
.card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price-currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.price-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
}
.card-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 0 18px;
}
.card-includes {
  list-style: none;
  flex: 1;
  margin-bottom: 22px;
}
.card-includes li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 12px;
}
.card-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23169BD7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.card-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-mid);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.18s ease;
  cursor: pointer;
}
.card-cta:hover {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
}
.pricing .card.featured .card-cta {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
}
.pricing .card.featured .card-cta:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

/* ---- add-a-camera note ---- */
.addon-note {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 40px;
  padding: 18px 28px;
  background: rgba(22, 155, 215, 0.06);
  border: 1px dashed rgba(22, 155, 215, 0.35);
  border-radius: 14px;
}
.addon-icon {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(1, 33, 105, 0.06);
}
.addon-icon svg { width: 18px; height: 18px; }
.addon-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.addon-text strong { font-weight: 700; color: var(--navy); }

/* ---- trust bar ---- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 80px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}
.trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.trust-icon svg { width: 12px; height: 12px; }

/* ---- why we cost more ---- */
.why-more {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 56px;
  background: var(--navy);
  border-radius: 24px;
  color: #FFFFFF;
}
.why-more h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.why-more p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #B8C7E0;
  margin-bottom: 20px;
}
.why-more ul {
  list-style: none;
  margin-bottom: 28px;
}
.why-more ul li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
  color: #E0E8F4;
  margin-bottom: 14px;
}
.why-more ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23169BD7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.why-close {
  font-size: 16px !important;
  font-style: italic;
  color: #FFFFFF !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  margin-bottom: 0 !important;
}

/* ---- pricing responsive ---- */
@media (max-width: 980px) {
  /* stack each row: info card on top, photo beneath */
  .pkg-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  /* match the panel to the image's ~4:3 shape so the camera sits large and
     centred with minimal empty space, instead of a tall letterboxed box */
  .pkg-photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .pkg-photo img { padding: 14px; }
}
@media (max-width: 760px) {
  .pricing { padding: 80px 24px; }
  .pkg-rows { gap: 22px; }
  .pkg-row .card { padding: 28px 24px; }
  .pricing .card.featured { transform: none; }
  .trust-bar { gap: 20px; padding: 22px; }
  .why-more { padding: 36px 28px; }
}

/* =====================================================================
   FEATURES SECTION — 2×2 smart-features grid
   Shares the pricing palette + Manrope so it reads as one block with
   Packages. Tokens and .eyebrow are scoped to .features so nothing leaks.
   ===================================================================== */
.features {
  --navy:  #012169;
  --cyan:  #169BD7;
  --ink:   #0A1733;
  --muted: #5E6B82;
  --line:  rgba(1, 33, 105, 0.08);
  --line-mid: rgba(1, 33, 105, 0.15);

  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F6F8FC;          /* soft bg so the white cards pop */
  color: var(--ink);
  padding: 120px 56px;
}
.features-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.features-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.features .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.features-head h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 18px;
}
.features-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* The graphics are self-captioned infographics, so they're shown as clean
   framed tiles (no extra heading/text that would duplicate the baked-in copy). */

/* hero — the landscape vision graphic stands ahead of the grid */
.feature-hero {
  margin: 0 auto 32px;
  max-width: 1140px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(1, 33, 105, 0.08);
}
.feature-hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* 2×2 grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}
.feature-card {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(1, 33, 105, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(1, 33, 105, 0.10);
  border-color: var(--line-mid);
}
.feature-card img {
  display: block;
  width: 100%;
  height: auto;     /* 1:1 sources shown in full, no cropping */
}

/* ---- features responsive ---- */
@media (max-width: 820px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 460px;
  }
  .feature-hero { max-width: 460px; }
}
@media (max-width: 760px) {
  .features { padding: 80px 24px; }
}

/* =====================================================================
   PREMIUM POLISH — smooth scroll, scroll-reveal, micro-interactions,
   cookie consent. All motion respects prefers-reduced-motion.
   ===================================================================== */

/* anchor navigation glides instead of jumping; sections clear the header */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
section[id] { scroll-margin-top: 96px; }

/* ---- scroll reveal (added by app.js only when motion is allowed) ---- */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .js-reveal .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  /* ---- hero entrance (flag set in <head>, so it plays without a flash) ---- */
  .js-reveal .hero-text > * {
    opacity: 0;
    animation: heroRise 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .js-reveal .hero-text > *:nth-child(1) { animation-delay: 0.05s; }
  .js-reveal .hero-text > *:nth-child(2) { animation-delay: 0.18s; }
  .js-reveal .hero-text > *:nth-child(3) { animation-delay: 0.31s; }
  .js-reveal .hero-image {
    opacity: 0;
    animation: heroFade 1.2s ease 0.15s forwards;
  }
  @keyframes heroRise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes heroFade {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
  }
}

/* ---- button & nav micro-interactions ---- */
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  transition: background 0.15s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 38, 107, 0.28);
}

/* animated underline on the main nav links */
.nav a {
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: #169BD7;
  transition: width 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav a:hover::after { width: 100%; }

/* ---- cookie consent bar ---- */
.cookie-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;              /* above the sticky header while visible */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 14px 28px;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e7ecf8;
  background: linear-gradient(110deg, #0b1f54 0%, #16266b 55%, #012169 100%);
  box-shadow: 0 10px 34px rgba(1, 33, 105, 0.30);
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-bar.show { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .cookie-bar { transition: none; }
}
.cookie-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #c9d4ee;
}
.cookie-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.cookie-accept {
  background: #169BD7;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(22, 155, 215, 0.40);
}
.cookie-accept:hover { transform: translateY(-1px); background: #1aa8e8; }
.cookie-decline {
  background: rgba(255, 255, 255, 0.12);
  color: #e7ecf8;
}
.cookie-decline:hover { background: rgba(255, 255, 255, 0.22); }

@media (max-width: 600px) {
  .cookie-bar { gap: 12px; padding: 12px 18px; }
  .cookie-text { flex: 1 1 100%; text-align: center; }
  .cookie-actions { flex: 1 1 100%; justify-content: center; }
}

/* =====================================================================
   MOBILE LAYOUT POLISH — tighter spacing, fluid type, stacked fields.
   Keeps the experience feeling built-for-mobile on small viewports.
   ===================================================================== */

/* The mobile drawer sits off the right edge when closed. overflow-x:hidden on
   the root element clips that (and any stray overflow) on every browser —
   including iOS 15 Safari, which doesn't support overflow:clip. Applied to
   <html> (the scroll root) so the sticky header keeps working. */
html { overflow-x: hidden; }

@media (max-width: 760px) {
  .solutions,
  .products,
  .contact { padding: 68px 0; }
  .about    { padding: 76px 0; }

  .section-sub { font-size: 16px; }

  .field-row { grid-template-columns: 1fr; }   /* stack name / phone / email */
}

@media (max-width: 600px) {
  .hero-text { padding: 36px var(--pad) 52px; }
  .hero-text h1 {
    font-size: clamp(34px, 9vw, 52px);
    margin-bottom: 22px;
    overflow-wrap: break-word;
  }
  /* let the headline + subhead wrap naturally instead of forcing wide lines
     (the forced <br> could overflow narrow phones like the iPhone SE) */
  .hero-text h1 br,
  .subhead br { display: none; }
  .subhead { margin-bottom: 30px; }

  .contact-form { padding: 22px; }

  .about-stats { gap: 28px 22px; }
  .stat-num { font-size: clamp(32px, 11vw, 42px); }
}

/* =====================================================================
   LEGAL PAGES (privacy.html / terms.html)
   ===================================================================== */
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--border);
}
.legal-back { color: var(--gray); font-size: 15px; font-weight: 600; }
.legal-back:hover { color: var(--navy); }

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px var(--pad) 88px;
}
.legal-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #169BD7;
  margin: 0 0 14px;
}
.legal h1 {
  color: var(--navy);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.legal-updated { color: var(--gray); font-size: 14px; margin: 0 0 40px; }
.legal h2 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 12px;
}
.legal p,
.legal li { color: #3f4757; font-size: 16px; line-height: 1.7; }
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: #169BD7; text-decoration: underline; text-underline-offset: 2px; }

.legal-foot {
  border-top: 1px solid var(--border);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--gray);
  font-size: 14px;
}
.legal-foot nav { display: flex; gap: 22px; }
.legal-foot a { color: var(--gray); }
.legal-foot a:hover { color: var(--navy); }

@media (max-width: 600px) {
  .legal { padding: 40px var(--pad) 64px; }
}

/* ---- contact form: honeypot + submit status ---- */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.form-status {
  margin: 4px 0 0;
  font-size: 14.5px;
  line-height: 1.5;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok  { color: #1a8f5a; }
.form-status.err { color: #c0392b; }
