/* Global Typography Baseline (T10-approved)
   Load Inter once so every page inherits the same enterprise font.
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* Baseline (T10-approved) enterprise palette */
  --bg: #F4F6F8;
  --panel: rgba(255,255,255,.75);
  --panel-strong: rgba(255,255,255,.9);
  --text: #0B1633;
  --text-heading: #0B2A4A;
  --text-body: #4B5875;
  --text-muted: #6B7280;
  --navy: #0B2A4A;
  --muted: rgba(11,22,51,.72);

  /* Support colors (still available for UI accents) */
  --blue-1: #1F4E79;
  --blue-2: #1B7CC8;
  --blue-3: #0E4E86;

  /* Primary action accent (quality + service) */
  --accent: #2E7D5B;
  --accent-rgb: 46,125,91;
  --stroke: rgba(8, 20, 54, .10);
  --shadow: 0 18px 45px rgba(10, 25, 65, .12);
  --shadow-sm: 0 10px 25px rgba(10, 25, 65, .10);
  --radius: 18px;
  --radius-lg: 22px;
  /* Wider desktop container so the site doesn't feel "shrunk" on large screens */
  --max: 1280px;

  /* Typography tokens */
  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.12;
  --lh-snug: 1.32;
  --lh-body: 1.55;

  --fs-section-title: 34px;
  --fs-why-pillar-lines: clamp(1.25rem, 2.1vw, 1.75rem);

  /* Spacing tokens */
  /* Global spacing scale (use for consistent rhythm across sections) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 40px;
  --space-10: 48px;
  --space-11: 64px;

  --space-why-pillar-gap: 28px;
  /* Section vertical rhythm tokens */
  --space-section-top: 22px;
  --space-section-bottom: 10px;
}

*{ box-sizing: border-box; }

/*
  Scrollbar / layout-shift hardening

  Some browser/OS combinations can still produce a subtle "page shrink" on
  scroll when the scrolling element switches or when overlay scrollbars
  briefly become non-overlay.

  Fix strategy:
  - Make **html** the single scrolling element (avoid html+body both scrolling).
  - Reserve the gutter using modern `scrollbar-gutter` when supported.
  - Force a scrollbar on the root as a fallback.
*/
html{ overflow-y: scroll; scrollbar-gutter: stable both-edges; }
body{ overflow-y: visible; }

html, body{ height: 100%; }
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--text);
  /* Neutral, procurement-friendly surface */
  background: linear-gradient(180deg, #F4F6F8 0%, #EEF2F7 55%, #F7F9FB 100%);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,18,32,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner{
  height: 72px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: auto;
}

.brand-logo{ height: 52px; width: auto; display:block; }

.brand-mark{ width: 38px; height: 38px; }
.brand-text{ line-height: 1; }
.brand-name{
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 18px;
}
.brand-sub{
  display:block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.6);
}

/* Nav */
.nav{ display:flex; align-items:center; gap: 12px; position: relative; }
.nav-list{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 10px;
  padding:0;
  margin:0;
}
.nav-link{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: #ffffff;
}
.nav-link:hover{ background: rgba(45,169,255,.14); color: rgba(255,255,255,.95); }
.nav-link.is-active{ color: var(--blue-1); }

.nav-toggle{
  display:none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.9);
  box-shadow: 0 8px 18px rgba(10,25,65,.08);
  cursor:pointer;
  padding: 10px;
}
.nav-toggle span{
  display:block;
  height: 2px;
  background: rgba(11,22,51,.8);
  border-radius: 2px;
  margin: 5px 0;
}

/* Dropdown / Mega menu */
.nav-item{ position: relative; }
.nav-button{
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.nav-caret{ margin-left: 6px; font-size: 12px; opacity: .75; }

.submenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  /* Vertical dropdown menu */
  min-width: 360px;
  max-width: 440px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.submenu-col{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,22,51,.08);
}
.submenu-col:hover{ background: rgba(var(--accent-rgb), .06); }

.submenu-title{
  display: block;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.25;
}
.submenu-link{
  display: block;
  padding: 6px 0 6px 12px;
  font-weight: 600;
  color: var(--text-body);
}
.submenu-link:hover{ color: var(--blue-1); }
.submenu-muted{ display:block; color: var(--text-muted); font-size: 13px; line-height: 1.4; }

@media (min-width: 900px){
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu{
    display: flex;
  }
}

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 70% 30%, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 55%),
              linear-gradient(90deg, #052064 0%, #0a41d4 45%, #1671ff 100%);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hero-inner{
  padding: 54px 0 26px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap: 24px;
}

/* T8 consumer page: give the hero extra vertical room so the device shadow isn't clipped */
.page-consumer-tablet .hero-inner{
  padding-bottom: 64px;
}

/* T8 consumer page: eyebrow label (balanced with H1) */
.page-consumer-tablet .hero-eyebrow{
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 10px;
}

/* Ensure no divider under T8 label */
.page-consumer-tablet .hero-eyebrow::after{
  content: none !important;
}

/* T8 consumer page: product 360 card */
.page-consumer-tablet .product-360{
  position: relative;
  margin: 12px 0 4px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(8, 20, 54, .10);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  overflow: hidden;
  min-height: 320px;
  display: grid;
  place-items: center;
  cursor: grab;
  user-select: none;
}
.page-consumer-tablet .product-360:active{ cursor: grabbing; }

.page-consumer-tablet .product-360__img{
  width: 100%;
  height: auto;
  display: block;
}

.page-consumer-tablet .product-360__hint{
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,22,51,.72);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 10px 25px rgba(10, 25, 65, .10);
}

.page-consumer-tablet .product-360.is-fallback{
  cursor: default;
}

.page-consumer-tablet .spec-params-card .spec-table--light{
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

/* T8 consumer page: unified card system for the mid-page sections */
.page-consumer-tablet .product-section-card{
  padding: 22px 22px 20px;
}

.page-consumer-tablet .product-section-card .section-head{
  margin-bottom: 14px;
}

/* T8 consumer page: sticky jump links */
.page-consumer-tablet .product-jump-nav-wrap{
  position: sticky;
  top: 72px;
  z-index: 45;
  background: rgba(11,18,32,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.page-consumer-tablet .product-jump-nav{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-consumer-tablet .product-jump-nav::-webkit-scrollbar{ height: 0; }

.page-consumer-tablet .product-jump-nav__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.page-consumer-tablet .product-jump-nav__link:hover{
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
}

.page-consumer-tablet .product-jump-nav__link.is-active{
  border-color: rgba(var(--accent-rgb), .60);
  background: rgba(var(--accent-rgb), .18);
}

/* Make anchor jumps land cleanly below the sticky header + jump-nav */
.page-consumer-tablet #key-features,
.page-consumer-tablet #view-360,
.page-consumer-tablet #specifications{
  scroll-margin-top: 160px;
}

/* T8 consumer page: framed hero device so the image and background feel connected */
.page-consumer-tablet .hero-art-frame{
  position: relative;
  display: inline-block;
  padding: 14px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.page-consumer-tablet .hero-art-frame::before{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  background: radial-gradient(circle at 30% 20%, rgba(142,211,255,.18), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.page-consumer-tablet .hero-art--framed{
  position: relative;
  z-index: 1;
  display: block;
  width: min(520px, 100%);
  border-radius: 18px;
  transform: translateY(0);
  filter: none;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

/* Utility */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip: rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Homepage hero (video-centered variant) */
.hero-inner.hero-inner-mid{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding: 46px 0 26px; /* tighter top spacing */
}

.hero-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
  /* Match overall site container on desktop so the layout doesn't feel "shrunk" */
  width: min(var(--max), 100%);
}

.hero-sigil{
  color:#fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(34px, 4vw, 64px);
  text-shadow: 0 18px 50px rgba(0,0,0,.28);
  user-select:none;
}

.hero-sigil-left{ justify-self: end; }
.hero-sigil-right{ justify-self: start; }
/* Media row: RP30 | video | X aligned to video midpoint */
.hero-media-row{
  display:grid;
  /* Keep the video at (roughly) its original hero size */
  grid-template-columns: auto minmax(360px, 680px) auto;
  align-items:center;
  gap: 28px;
  width: 100%;
  max-width: var(--max);
}

/* Home hero now uses a single centered media element (no decorative RP30X sigil) */
.hero-media-row--solo{
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
}

.hero-media-row .hero-art{
  width: 100%;
  transform: translateY(0);
}

@media (max-width: 820px){
  .hero-inner.hero-inner-mid{ padding-top: 38px; }
  .hero-media-row{ gap: 18px; grid-template-columns: auto minmax(300px, 620px) auto; }
  .hero-media-row--solo{ grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 560px){
  .hero-media-row{
    grid-template-columns: 1fr;
    justify-items:center;
    gap: 12px;
  }
  .hero-media-row .hero-sigil{
    font-size: clamp(30px, 10vw, 54px);
  }
}


.hero-subtitle.hero-subtitle-center{
  margin: 0;
  max-width: 52ch;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions.hero-actions-center{
  margin-top: 0;
  justify-content:center;
}

.hero-title{
  margin: 0 0 14px;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 800;
}
.hero-title .accent{
  color: #8ed3ff;
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero-subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
  max-width: 56ch;
}

/* Compliance page hero subtitle: allow fuller first line before wrapping */
@media (min-width: 768px){
  .page-hero .hero-subtitle{max-width: none;}
}

.hero-right{
  display:flex;
  justify-content:flex-end;
}
.hero-art{
  width: min(520px, 100%);
  transform: translateY(4px);
  filter: drop-shadow(0 20px 45px rgba(0,0,0,.25));
}

/* =========================
   RP30X flicker hardening
   Some GPU/browser combos flicker when `filter: drop-shadow(...)` is used on large PNGs
   (especially when combined with transforms). For the RP30X page, replace the filter-
   based shadow with a stable box-shadow, and avoid transforms on the image.
========================= */
.products-rp30x .hero-art{
  transform: none;
  filter: none;
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.products-rp30x .hero,
.products-rp30x .hero::after{
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Homepage hero video */
.hero-video{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: transparent;
  object-fit: contain;
}

/* Hero (centered video + split title) */
.hero-inner.hero-inner-mid{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 26px;
}

.hero-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
}

.hero-subtitle.hero-subtitle-center{
  margin: 0;
  max-width: 56ch;
}

.hero-actions.hero-actions-center{
  margin-top: 0;
  justify-content:center;
}

.hero-sigil{
  color:#fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(34px, 4.4vw, 70px);
  opacity: .95;
  text-shadow: 0 18px 50px rgba(0,0,0,.28);
  user-select:none;
}

.hero-sigil-left{ text-align:right; }
.hero-sigil-right{ text-align:left; }

.hero-bottom-glow{
  position:absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 90px;
  background: radial-gradient(900px 80px at 50% 0%, rgba(255,255,255,.24) 0%, rgba(255,255,255,0) 70%);
  pointer-events:none;
}

/* Sections */
.section{ padding: var(--space-section-top) 0 var(--space-section-bottom); }
.cards-top{ margin-top: -22px; }
.cards-bottom{ padding-bottom: 34px; }

/* Grid */
.grid{ display:grid; gap: 18px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

/* Product pages: vertical stacks + icon lists */
.product-stack{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.icon-list{
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.icon-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.icon-list .icon{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 2px;
  opacity: .95;
}

.icon-list svg{ width: 100%; height: 100%; }

.btn-icon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.btn-icon svg{ width: 18px; height: 18px; }

/* Cards */
.card{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:0;
  /* Subtle neutral highlight (avoid "blue wash" behind headings) */
  background: radial-gradient(700px 120px at 20% 0%, rgba(11,42,74,.06) 0%, rgba(255,255,255,0) 55%);
  pointer-events:none;
}
.feature-card{ min-height: 164px; }
.card-head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
}
.card-icon{ width: 44px; height: 44px; }
.card-title{
  margin:0;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.card-text{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  position: relative;
}

/* Mini cards */
.mini-card{ padding: 18px; }
.mini-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.mini-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(46,125,91,.10);
  color: var(--accent);
  border: 1px solid rgba(46,125,91,.22);
}
.mini-icon svg{ width: 22px; height: 22px; }
.mini-title{ margin:0; font-size: 20px; }
.mini-text{ margin: 0 0 14px; color: var(--muted); line-height: 1.55; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid transparent;
  position: relative;
}
.btn-primary{
  background: linear-gradient(180deg, var(--accent) 0%, #23684b 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(46, 125, 91, .22);
}
.btn-primary:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.btn-secondary{
  background: rgba(255,255,255,.85);
  color: var(--navy);
  border-color: rgba(11,42,74,.18);
  box-shadow: 0 12px 22px rgba(10, 25, 65, .10);
}
.btn-secondary:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: rgba(8, 20, 54, .18);
}

.btn-ghost:hover{
  border-color: rgba(46,125,91,.40);
  box-shadow: 0 10px 20px rgba(10,25,65,.10);
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.hero-microcopy{
  margin:10px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.80);
}

.cta-band{ padding-top: 10px; }
/* CTA panel aligned with card style */
.cta-panel{
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  background: var(--panel);
}

.cta-title{
  margin:0 0 6px;
  font-size: 18px;
  color: var(--text);
}

.cta-text{
  margin:0;
  color: var(--muted);
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

@media (max-width: 720px){
  /* CTA panel aligned with card style */
.cta-panel{
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  background: var(--panel);
}
  .cta-actions{ width:100%; }
  .cta-actions .btn{ width:100%; }
}

.btn-secondary:hover{ filter: brightness(1.03); transform: translateY(-1px); }

/* Footer */
.site-footer{
  background: linear-gradient(180deg, #0a2f9b 0%, #07236f 70%, #061c55 100%);
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-top{
  padding: 26px 0;
  display:grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 18px;
  align-items:start;
}
.footer-brand{
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
}
.footer-brand-row{
  display:flex;
  align-items:center;
  gap: 10px;
}
.footer-mark{ width: 40px; height: 40px; }
.footer-brand-name{ font-weight: 800; letter-spacing: .02em; }
.footer-brand-sub{ font-size: 11px; letter-spacing: .18em; opacity: .82; margin-top: 2px; }
.footer-devices{ margin-top: 14px; opacity: .95; }

.footer-col{ padding: 6px 4px; }
.footer-title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
}
.footer-links, .footer-meta{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 10px;
  color: rgba(255,255,255,.86);
}
.footer-links a, .footer-meta a{
  color: rgba(255,255,255,.86);
}
.footer-links a:hover, .footer-meta a:hover{ color: #fff; text-decoration: underline; }

.footer-meta li{
  display:flex;
  align-items:center;
  gap: 10px;
}
.meta-icon{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

/* Footer meta icons (inline SVG) */
.meta-icon svg{
  width: 16px;
  height: 16px;
  display:block;
}

.address-row{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.address-row .meta-icon{ flex: 0 0 auto; }

.footer-address{
  color: rgba(255,255,255,.86);
  line-height: 1.6;
}

.social{
  margin-top: 12px;
  display:flex;
  gap: 10px;
}
.social-btn{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}
.social-btn:hover{ background: rgba(255,255,255,.16); }
.social-btn svg{ width: 18px; height: 18px; }

.footer-bottom{
  padding: 14px 0 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.footer-legal{
  display:flex;
  align-items:center;
  gap: 10px;
}
.footer-legal a{ color: rgba(255,255,255,.82); }
.footer-legal a:hover{ color: #fff; text-decoration: underline; }
.dot{ opacity: .8; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-right{ justify-content:flex-start; }
  .hero-inner.hero-inner-mid{ grid-template-columns: 1fr; }
  .hero-sigil-left, .hero-sigil-right{ justify-self: center; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 740px){
  .nav-toggle{ display:inline-flex; flex-direction: column; justify-content:center; }
  .nav-list{
    position: absolute;
    right: 20px;
    top: 72px;
    width: min(320px, calc(100vw - 40px));
    background: rgba(255,255,255,.94);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav-list.is-open{ display:flex; }
  .nav-link{ width: 100%; color: var(--text); }
  .nav-link:hover{ background: rgba(var(--accent-rgb), .08); color: var(--text); }
  .nav-link.is-active{ color: var(--blue-1); }



  /* Mobile dropdowns */
  .submenu{
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 10px;
    margin: 4px 0 8px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
  }
  .submenu-col{ padding: 8px 8px; }
  .has-submenu > .submenu{ display:none; }
  .has-submenu.submenu-open > .submenu{ display:flex; }

  .grid-4{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items:flex-start; }
}

/* Footer link hover – consistent + subtle */
.site-footer a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: opacity .2s ease;
}
.site-footer a:hover{
  opacity: 1;
}

/* Address hover – very soft underline */
.footer-address-link{
  display:inline-block;
}
.footer-address-link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* WhatsApp icon */
.wa-icon{
  width:20px;
  height:20px;
  display:block;
  background: transparent;
  transition: filter .2s ease;
}
.wa-link:hover .wa-icon{
  filter: brightness(1.15);
}

/* About page */
.about-hero{
  padding: 72px 0 36px;
  /* Match the Home page hero background ("Innovative Tech Solutions") */
  background: radial-gradient(1200px 600px at 70% 30%, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 55%),
              linear-gradient(90deg, #052064 0%, #0a41d4 45%, #1671ff 100%);
  position: relative;
  overflow: hidden;
}
.about-hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
}
.about-hero .kicker{
  display:inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin: 0 0 10px;
}
.about-hero h1{
  margin: 0 0 14px;
  line-height: 1.08;
  font-size: clamp(30px, 3.5vw, 48px);
  color: #fff;
}
.about-hero .accent{ color: rgba(255,255,255,.85); }
.about-hero .subhead{
  margin: 0 0 18px;
  color: rgba(255,255,255,.85);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  max-width: 60ch;
}
.about-hero .cta-row{ display:flex; gap: 12px; flex-wrap: wrap; }
.device-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.device-card img{ width:100%; height:auto; display:block; }

.about-panels{ padding: 26px 0 70px; }
.panel-stack{ display:grid; gap: 18px; }
.panel{
  background: rgba(11,18,32,.92);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
  /* Ensure readability on the dark panel background */
  color: rgba(255,255,255,.92);
}
.panel h2{ margin: 0 0 10px; }
.panel p{ margin: 0 0 10px; color: rgba(255,255,255,.82); }
.panel p:last-child{ margin-bottom: 0; }

/* About: light framed panels (used for Why + Our Journey) */
.panel--light{
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(11,18,32,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  color: rgba(11,18,32,.92);
}

.panel--light p{ color: rgba(11,18,32,.78); }
.panel--light .muted{ color: rgba(11,18,32,.62); }

/* Ensure Why copy aligns consistently within the panel */
.why-panel{ text-align: left; }
.why-panel p{ width: 100%; }

/* About: Why panel copy can be longer than other panels; tune typography for readability. */
.why-panel p{
  font-size: clamp(15px, 0.45vw + 14px, 17px);
  line-height: 1.7;
  /* Allow the copy to align flush with the panel edge on wide screens */
  max-width: none;
}

/* Secondary text inside about panels */
.panel .muted{ color: rgba(255,255,255,.70); }

.panel-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: center;
}
.panel-media img{ width:100%; height:auto; display:block; opacity: .95; }

.about-why h2{ margin: 10px 0 12px; }
.why-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.why-card{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  padding: 16px;
}
.why-ico{ font-size: 22px; margin-bottom: 6px; }

@media (max-width: 900px){
  .about-hero-grid{ grid-template-columns: 1fr; }
  .panel-grid{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
}

/* About page tweaks (mission full-width + icons inline with titles) */
.about-page .panel-grid{ display:block; } /* safeguard if any remain */

.about-page .why-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
}
.about-page .why-title h3{
  margin: 0;
}
.about-page .why-title .why-ico{
  font-size: 20px;
  line-height: 1;
  display:inline-flex;
}

/* Sketch icons */
.sketch-ico{
  width:22px;
  height:22px;
  stroke:#1f3c88;
  fill:none;
  stroke-width:1.6;
}

/* About page: new media + lists + CTA */
.about-panel-media{
  margin: 6px 0 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  overflow: hidden;
}
.about-panel-media img{ width:100%; height:auto; display:block; }

.about-bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(0,0,0,.75);
}
.about-bullets li{ margin: 8px 0; }

.about-cta{
  margin-top: 8px;
}
.about-cta .cta-box{
  background: linear-gradient(180deg, rgba(16,68,186,.10), rgba(10,44,111,.08));
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
.about-cta .cta-box h2{ margin: 0 0 10px; }
.about-cta .cta-box p{ margin: 0 0 14px; color: rgba(0,0,0,.72); }

.journey-visual { margin-top: 32px; }

/* About: Our Journey milestones (recreated to match page style) */
.milestones{
  position: relative;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.milestones-track{
  position: absolute;
  left: 10px;
  right: 10px;
  top: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22,113,255,.35), rgba(255,255,255,.10));
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

/* Light panel variant for the milestones component */
.panel--light .milestones-track{
  background: linear-gradient(90deg, rgba(22,113,255,.35), rgba(11,18,32,.06));
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.panel--light .milestone-card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

.panel--light .milestone-card h3{
  color: rgba(11,18,32,.92);
}

.panel--light .milestone-card p{
  color: rgba(11,18,32,.72);
}

.panel--light .milestone-card strong{ color: rgba(11,18,32,.92); }

.milestone{
  position: relative;
  padding-top: 64px;
}

.milestone-dot{
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: radial-gradient(90px 60px at 30% 30%, rgba(255,255,255,.18), rgba(255,255,255,0)),
              linear-gradient(180deg, rgba(22,113,255,.95), rgba(11,91,211,.85));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.95);
}

.milestone-dot svg{
  width: 26px;
  height: 26px;
  opacity: .95;
}

.milestone-year{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 14px;
}

.milestone-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 14px 14px 12px;
  min-height: 118px;
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}

.milestone-card h3{
  margin: 0 0 8px;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 800;
  color: rgba(255,255,255,.95);
  line-height: 1.25;
}

.milestone-card p{
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
  font-size: 14.5px;
}

.milestone-card strong{ color: rgba(255,255,255,.95); }

@media (max-width: 980px){
  .milestones{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .milestones-track{ top: 46px; }
}

@media (max-width: 560px){
  .milestones{ grid-template-columns: 1fr; }
  .milestones-track{ display:none; }
  .milestone{ padding-top: 0; display:flex; gap: 14px; align-items:flex-start; }
  .milestone-dot{ position: static; flex: 0 0 72px; width:72px; height:72px; }
  .milestone-year{ font-size: 13px; bottom: 8px; }
  .milestone-card{ width: 100%; }
}

/* About page: when milestones sit inside a catalogue-style card (Our Journey)
   ensure correct light theme text + left alignment. */
.about-page #journey .catalogue-feature{
  align-items: flex-start;
  grid-template-columns: 1fr;
  grid-template-areas: "body";
}

.about-page #journey .catalogue-media{display:none;}


.about-page #journey .catalogue-body{
  text-align: left;
  max-width: none;
}

.about-page #journey .catalogue-body .card-text{
  /* On About > Our Journey, this intro line should align with the full card width
     (no artificial line-length cap that leaves empty space on wide screens). */
  max-width: none;
  width: 100%;
}

.about-page #journey .milestones{
  width: 100%;
}

/* About page - Ecosystem cards: align icon directly before title */
.eco-head{
  display:flex;
  align-items:center;
  gap:12px;
}
.eco-head h3{
  margin:0;
}
.eco-head .eco-icon{
  flex-shrink:0;
  display:inline-block;
}

/* --- T8 Key Features + Light Specs Table --- */
.key-features .section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.kf-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}

.kf-card{
  grid-column: span 12;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.kf-card--wide{
  grid-column: span 12;
  padding: 18px;
}

.kf-title{
  margin: 14px 0 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.kf-meta{
  margin: 8px 0 0;
  opacity: .85;
  font-size: 14px;
}

.kf-media{
  border-radius: 16px;
  position: relative;
  min-height: 160px;
}

.kf-media--placeholder{
  background: radial-gradient(1200px 400px at 10% 10%, rgba(255,255,255,.22), rgba(255,255,255,.08) 55%, rgba(255,255,255,.04)),
              linear-gradient(135deg, rgba(120,180,255,.25), rgba(255,160,210,.16));
  border: 1px solid rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.kf-media--placeholder span{
  font-size: 14px;
  opacity: .75;
  padding: 10px 12px;
}

@media (min-width: 900px){
  .kf-card--wide{ grid-column: span 6; }
  .kf-card{ grid-column: span 4; }
  .kf-media{ min-height: 190px; }
}

/* Light table style for Key Specs */
.spec-image-wrap{
  position: relative;
  margin: 10px 0 14px;
  background: transparent;
  border-radius: 12px;
  overflow: visible;
}


.spec-image{display:block;width:100%;height:auto;}


@media (max-width: 520px){
  
}


.spec-table-wrap{ overflow-x:auto; }
.spec-table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

.spec-table--light{
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.82);
  border-radius: 14px;
  overflow:hidden;
}

.spec-table--light td{
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.spec-table--light tr:last-child td{
  border-bottom: none;
}

.spec-table--light td:first-child{
  width: 180px;
  font-weight: 600;
  color: rgba(0,0,0,.78);
}

@media (max-width: 520px){
  .spec-table--light td:first-child{ width: 140px; }
}

/* Product Page: Key Features (icon + text cards) */
.key-features .kf-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}

@media (min-width: 960px){
  .key-features .kf-grid{
    grid-template-columns: 1fr 1fr;
  }
  .key-features .kf-card{
    grid-column: auto;
  }
}

.key-features .kf-card--icon{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.key-features .kf-icon-wrap{
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--panel-strong);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  display:flex;
  align-items:center;
  justify-content:center;
}

.key-features .kf-icon-wrap .kf-icon{
  width: 32px;
  height: 32px;
  color: var(--blue-1);
}

.key-features .kf-body{min-width:0;}
.key-features .kf-title{margin:0 0 6px; font-size: 1.05rem; color: var(--text);}
.key-features .kf-meta{margin:0; color: var(--muted); line-height:1.45; font-size: .95rem;}

@media (max-width: 520px){
  .key-features .kf-icon-wrap{ width:48px; height:48px; }
  .key-features .kf-icon-wrap .kf-icon{ width:30px; height:30px; }
}
/* Product Page: Spec art block between Key Features and Key Specs */
.spec-art{display:flex;justify-content:stretch;align-items:stretch;padding:10px 0;}
.spec-art img{display:block;width:100%;max-width:100%;height:auto;border-radius:16px;box-shadow:0 12px 30px rgba(0,0,0,.12);}


.hero .btn-ghost{
  color:#fff;
  border-color: rgba(255,255,255,.28);
}
.hero .btn-ghost:hover{
  border-color: rgba(255,255,255,.55);
}


/* Product Page: Categorized specs sections */
.spec-cats{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.spec-cat{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow:hidden;
}

.spec-cat[open]{ background: rgba(255,255,255,.82); }

.spec-cat-title{
  list-style:none;
  cursor:pointer;
  padding: 12px 14px;
  font-weight: 800;
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.spec-cat-title::-webkit-details-marker{ display:none; }

.spec-cat-title::after{
  content:"+";
  font-weight: 900;
  color: rgba(var(--accent-rgb), .85);
}

.spec-cat[open] .spec-cat-title::after{ content:"–"; }

.spec-cat-body{
  padding: 0 10px 10px;
}

.spec-cat .spec-table{
  margin: 0;
  background: transparent;
  box-shadow:none;
  border-radius: 10px;
}

.spec-cat .spec-table td{
  background: rgba(255,255,255,.55);
}

.spec-cat .spec-table tr + tr td{
  border-top: 1px solid rgba(8, 20, 54, .10);
}

@media (min-width: 960px){
  .spec-cats{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:14px;
  }
  .spec-cat-body{ padding: 0 12px 12px; }
}


/* CTA copy spacing optimization (Option 1) */
.cta-title{
  margin-bottom: 8px;
}

.cta-text{
  margin-bottom: 14px;
  line-height: 1.55;
}

/* ------------------------------
   Homepage v1 (Sonim-inspired)
-------------------------------- */

.hero.hero-product{
  padding-top: 110px;
  padding-bottom: 56px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.82);
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

/* Homepage hero eyebrow label (subtle credibility cue) */
.hero-eyebrow{
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin: 0 0 10px;
}

/* Homepage hero product definition */
.hero-desc{
  margin: 0 0 10px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.45;
  color: rgba(255,255,255,.82);
  max-width: 56ch;
}

.hero-kicker .kicker-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent), rgba(109, 149, 255, .35));
  box-shadow: 0 0 24px rgba(72, 124, 255, .55);
}

.hero-title-lg{
  margin-top: 14px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero-subtitle-lg{
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 56ch;
}

.hero-actions{
  margin-top: 24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-meta{
  margin-top: 18px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.hero-meta .meta-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.hero-meta .meta-dot{
  width:4px;
  height:4px;
  border-radius:999px;
  background: rgba(255,255,255,.35);
}

.hero-product-visual{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 10px 0;
}

.hero-product-visual img{
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}

.section-title{
  font-size: var(--fs-section-title);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin: 0;
}

.section-subtitle{
  margin-top: 10px;
  color: rgba(255,255,255,.74);
  max-width: 72ch;
}

.section-head.center{
  text-align:center;
  margin-bottom: 28px;
}

.grid-2x2{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1100px){
  .grid-2x2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px){
  .grid-2x2{ grid-template-columns: 1fr; }
}

.pillar-card{
  padding: 22px;
}

.pillar-icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(190, 210, 255, .95);
  margin-bottom: 14px;
}

.pillar-icon svg{
  width: 28px;
  height: 28px;
}

.pillar-title{
  font-size: 18px;
  letter-spacing: -0.01em;
}

.pillar-text{
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.catalogue-card{
  padding: 22px;
}

.catalogue-head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}

.catalogue-icon{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(190, 210, 255, .95);
}

.catalogue-icon svg{
  width: 22px;
  height: 22px;
}

.catalogue-title{
  font-size: 18px;
  margin: 0;
}

.catalogue-desc{
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin-top: 6px;
}

.catalogue-list{
  margin-top: 12px;
  padding-left: 18px;
  color: rgba(255,255,255,.72);
}

.catalogue-list li{ margin: 6px 0; }

.card-actions{
  margin-top: 16px;
}

.industries-wrap{
  margin-top: 18px;
}

.industries-image{
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.section-cta{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

.note{
  margin-top: 10px;
  text-align:center;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

/* Ensure homepage sections have consistent spacing */
.section.home-section{
  padding-top: 62px;
  padding-bottom: 62px;
}


/* --- Homepage hero spacing + typography tweaks (video closer to menu) --- */
.hero.hero-product .hero-inner.hero-inner-mid{
  padding-top: 28px;
  padding-bottom: 18px;
}

/* Nudge the visual upward a touch to reduce whitespace */
.hero.hero-product .hero-inner.hero-inner-mid .hero-art{
  transform: translateY(-10px);
}

/* Bigger split title (RP30 / X) */
.hero.hero-product .hero-sigil{
  font-size: clamp(44px, 5.4vw, 96px);
}

/* Bigger supporting line */
.hero.hero-product .hero-subtitle.hero-subtitle-center{
  /* Now sits directly under the main RP30X title */
  margin: 0 0 18px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
}



/* --- Hero RP30 / X subtle motion on load --- */
:root{
  --hero-sigil-shift: -18px; /* baseline vertical offset (moves RP30/X up) */
}
.hero-sigil{
  transform: translateY(var(--hero-sigil-shift));
  opacity: 0;
  will-change: transform, opacity;
}
.hero-sigil{
  animation: heroSigilIn 900ms cubic-bezier(.2,.9,.2,1) both;
}

@keyframes heroSigilIn{
  from{
    opacity: 0;
    transform: translateY(calc(var(--hero-sigil-shift) + 16px));
  }
  to{
    opacity: 1;
    transform: translateY(var(--hero-sigil-shift));
  }
}


/* Staggered sigil entrance */
.hero-sigil-left{ animation-delay: 120ms; }
.hero-sigil-right{ animation-delay: 220ms; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-sigil{ opacity: 1; transform: translateY(var(--hero-sigil-shift)); }
  }


/* Why LightLife layout */
.why-layout{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items:center;
}

.why-left .section-title{
  margin: 0 0 10px 0;
}

.why-left .section-subtitle{
  margin: 0;
  max-width: 44ch;
}

.why-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-why-pillar-gap);
  justify-items: stretch;
}

.why-grid .pillar-card{
  min-height: 220px;
  display:flex;
  flex-direction:column;
  justify-content:center; /* keep content vertically centered */
  text-align:left;
  position: relative;
  overflow: hidden;
}

/* Subtle pillar index watermark (replaces micro-labels)
   Implemented as ::after so we keep the card's ::before gradient layer. */
.why-grid .pillar-card::after{
  content: "";
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(11,22,51,.10); /* visible on light panels */
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.why-grid .pillar-card.pillar-1::after{ content: "1"; }
.why-grid .pillar-card.pillar-2::after{ content: "2"; }
.why-grid .pillar-card.pillar-3::after{ content: "3"; }
.why-grid .pillar-card.pillar-4::after{ content: "4"; }

/* Ensure content sits above both the gradient and the watermark */
.why-grid .pillar-card > *{
  position: relative;
  z-index: 1;
}

.why-grid .pillar-card .pillar-icon{
  margin-bottom: 18px;
  margin-left: 0;
  margin-right: 0;
}

/* Subtle stagger: lift the right column by exactly one pillar gap */
@media (min-width: 981px){
  .why-grid .pillar-card.pillar-2,
  .why-grid .pillar-card.pillar-4{
    transform: translateY(calc(-1 * var(--space-why-pillar-gap)));
  }
}



@media (max-width: 980px){
  .why-layout{
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }
  .why-left .section-subtitle{
    max-width: none;
  }
  .why-grid{
    grid-template-columns: 1fr;
  }
}


/* Why LightLife visual refresh */
#why.section{
  background: radial-gradient(1200px 600px at 70% 30%, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 55%),
              linear-gradient(90deg, #052064 0%, #0a41d4 45%, #1671ff 100%);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

#why .section-title,
#why .section-subtitle{
  color: rgba(255,255,255,.96);
}

/* Why (homepage): operations-style panel (matches reference design) */
#why.why-ops{
  /* slightly more breathing room than default sections */
  padding-top: clamp(54px, 6vw, 84px);
  padding-bottom: clamp(54px, 6vw, 84px);
}

.why-ops-head{
  max-width: 980px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.why-ops-title{
  margin: 0 0 var(--space-2) 0;
  color: rgba(255,255,255,.97);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
}

/* Keep the headline on a single row on desktop; allow wrapping on smaller screens. */
@media (min-width: 981px){
  .why-ops-title{ white-space: normal; }
}

.why-ops-subtitle{
  margin: 0;
  color: #ffffff;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: var(--lh-relaxed);
}

.why-ops-grid{
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

.why-ops-card{
  border-radius: 14px;
  padding: 26px 26px 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  backdrop-filter: blur(10px);
}

.why-ops-card-title{
  margin: 0 0 var(--space-3) 0;
  color: var(--text-heading);
  font-size: clamp(18px, 1.15vw, 19px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.why-ops-card-text{
  margin: 0;
  color: var(--text-body);
  font-size: clamp(15px, 1vw, 15.5px);
  line-height: 1.62;
  text-wrap: pretty;
}

/* Make sure the middle (wider) card headline stays on one line on desktop. */
@media (min-width: 981px){
  .why-ops-card--wide .why-ops-card-title{ white-space: nowrap; }
}

@media (max-width: 980px){
  .why-ops-grid{
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .why-ops-card{ padding: var(--space-5); }
}

/* Left-column pillar lines (visual balance) */
.pillar-lines{
  display: grid;
  gap: 10px;
  max-width: 34ch;
  text-wrap: balance;
  font-size: var(--fs-why-pillar-lines);
  font-weight: var(--fw-medium);
}

.pillar-line{
  line-height: var(--lh-snug);
}

/* Keep the last line on one row for visual rhythm (allow wrap on very small screens) */
.pillar-line.is-nowrap{ white-space: nowrap; }
@media (max-width: 420px){
  .pillar-line.is-nowrap{ white-space: normal; }
}

/* Balance text width inside cards for even visual weight */
.why-grid .pillar-card .card-text{
  max-width: 38ch;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 980px){
  :root{ --space-why-pillar-gap: 18px; }
}


/* Catalogue product-first layout */
.catalogue-features{
  display: grid;
  /* Match inter-card vertical spacing to the section-to-section rhythm */
  column-gap: 22px;
  row-gap: calc(var(--space-section-top) + var(--space-section-bottom));
}

.catalogue-feature{
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-areas: "media body";
  gap: 26px;
  align-items: center;
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Allow per-card layout control while preserving consistent rhythm */
.catalogue-feature .catalogue-media{ grid-area: media; }
.catalogue-feature .catalogue-body{ grid-area: body; }

/* Reverse (text-left / media-right) for selected cards */
.catalogue-feature.is-reverse{
  grid-template-columns: 1fr 240px;
  grid-template-areas: "body media";
}

.catalogue-feature:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,0.22);
}

.catalogue-media{
  position: relative;
  border-radius: 18px;
  padding: 18px;
  min-height: 180px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.catalogue-icon{
  font-size: 44px;
  line-height: 1;
  opacity: .95;
}

.catalogue-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}

.catalogue-body .card-title{
  margin-top: 0;
  margin-bottom: 8px;
}

.catalogue-body .card-text{
  margin-bottom: 12px;
  max-width: 66ch;
}

/* Catalogue text block optical alignment */
.catalogue-body{
  max-width: 66ch;
}

.catalogue-body .card-list{
  margin: 0 0 16px;
  padding-left: 18px;
  max-width: 66ch;
}

.catalogue-body .card-list li{
  margin-bottom: 6px;
}

.catalogue-body .card-list li:last-child{
  margin-bottom: 0;
}

.catalogue-footer{
  margin-top: var(--space-section-top);
  display: flex;
  justify-content: center;
}

@media (max-width: 900px){
  .catalogue-feature{
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "body";
  }
  .catalogue-media{
    min-height: 150px;
  }
}


/* Tertiary button */
.btn-tertiary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.26);
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  text-decoration:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-tertiary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.36);
}


/* Industries strip layout */
.industry-list{
  display: grid;
  gap: 14px;
}

/* Industries grid (homepage) */
.industries-head{
  margin: 0 0 32px;
}

.industries-title{
  font-size: var(--fs-section-title);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin: 0;
  color: rgba(11, 22, 51, .92);
}

.industries-subtitle{
  margin: 10px 0 0 0;
  max-width: 72ch;
  color: rgba(11, 22, 51, .64);
}

/* Industries (Homepage) */
#industries.section{
  background: #f8fafc;
}

#industries .industries-content{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#industries .industries-content h2{
  margin: 0;
  color: rgba(11, 22, 51, .92);
}

#industries .industries-content .section-intro{
  margin: 0;
  max-width: 900px;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(11, 22, 51, .64);
}

#industries .industries-content .industry-grid{
  margin-top: 4px;
}

.industry-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.industry-card{
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  cursor: default;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(8, 20, 54, .10);
  box-shadow: 0 10px 25px rgba(10, 25, 65, .08);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease, background .25s ease;
  min-height: 100%;
}

.industry-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.94);
  border-color: rgba(8, 20, 54, .14);
  box-shadow: 0 18px 45px rgba(10, 25, 65, .12);
}

.industry-card-media{
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(8, 20, 54, .10);
  background: rgba(0,0,0,0.02);
}

.industry-card-media img{
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.industry-card .card-title{
  margin: 16px 0 8px 0;
  font-weight: 600;
  color: rgba(11, 22, 51, .92);
}

.industry-card .card-text{
  margin: 0;
  color: rgba(11, 22, 51, .72);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1100px){
  .industry-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}

@media (max-width: 640px){
  .industry-grid{grid-template-columns: 1fr;}
}

.industry-row{
  display: grid;
  grid-template-columns: 220px 1fr auto 30px;
  gap: 18px;
  align-items: center;
  padding: 18px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  cursor: default;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.industry-row:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}

.industry-name{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
}

.industry-desc{
  opacity: .92;
  max-width: 70ch;
}

.industry-tags{
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .02em;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}

.industry-cta{
  font-size: 18px;
  opacity: .75;
}

@media (max-width: 980px){
  .industry-row{
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }
  .industry-tags{
    justify-content: flex-start;
  }
  .industry-cta{
    display: none;
  }
}


/* Catalogue feature image (homepage) */
.catalogue-image{max-width:100%;height:auto;display:block;margin:0 auto;}


/* EasyControl MDM legacy logo sizing (homepage)
   (kept for compatibility on other pages; homepage now uses a UEM visual) */
.easycontrol-logo{width:140px;max-width:100%;height:auto;display:block;}


.catalogue-body.shifted-right{padding-left:24px;text-align:left;}

/* --------------------------------------------------------------------------
   Homepage catalogue hero-cards: reduce vertical negative space

   The three hero cards (Consumer Mobile Devices, Rugged & Mission-Critical
   Devices, EasyControl MDM) were previously sized using a fixed aspect-ratio.
   On wider viewports that forces excessive height (large empty space), making
   them visually taller than the Education/Healthcare industry cards.

   Approach:
   - Remove the forced aspect-ratio sizing so content drives height.
   - Set a compact, responsive height clamp to keep the cards aligned without
     clipping content.
   - Tighten padding and media panel sizing (only for these hero cards).
 -------------------------------------------------------------------------- */

/* Shared sizing for the three hero cards */
.catalogue-feature.rugged-mc{
  /* Height-normalized hero card (matches Education/Healthcare visual height) */
  aspect-ratio: auto;
  width: 100%;
  min-height: clamp(320px, 30vw, 360px);

  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(16px, 2.6vw, 44px);
  padding: clamp(16px, 2vw, 24px);
  align-items: center;
}
.catalogue-feature.easycontrol-mc{
  /* Height-normalized hero card (matches Education/Healthcare visual height) */
  aspect-ratio: auto;
  width: 100%;
  min-height: clamp(320px, 30vw, 360px);

  grid-template-columns: 0.55fr 0.45fr;
  gap: clamp(16px, 2.6vw, 44px);
  padding: clamp(16px, 2vw, 24px);
  align-items: center;
}
.catalogue-feature.consumer-mc{
  /* Height-normalized hero card (matches Education/Healthcare visual height) */
  aspect-ratio: auto;
  width: 100%;
  min-height: clamp(320px, 30vw, 360px);

  grid-template-columns: 0.55fr 0.45fr;
  gap: clamp(16px, 2.6vw, 44px);
  padding: clamp(16px, 2vw, 24px);
  align-items: center;
}

@media (max-width: 1024px){
  .catalogue-feature.rugged-mc,
  .catalogue-feature.easycontrol-mc,
  .catalogue-feature.consumer-mc{
    min-height: auto;
  }
}

/* --------------------------------------------------------------------------
   Homepage spacing polish (desktop)

   Goals:
   - Reduce the gap between the "Why" (brand pillars) section and the
     "Featured collections" section title.
   - Increase breathing room between the "Featured collections" title and the
     first collection card.
   - Slightly tighten the EasyControl MDM feature card by adjusting internal
     padding.
 -------------------------------------------------------------------------- */

@media (min-width: 981px){
  /* (1) Reduce space above "Featured collections" */
  #why.why-ops{ padding-bottom: 64px; }

  /* (2) Increase space below the section title */
  #catalogue .section-head{ margin-bottom: 48px; }

  /* (3) EasyControl MDM card internal padding */
  .catalogue-feature.easycontrol-mc{ padding: 32px; }
}

.catalogue-feature.rugged-mc .catalogue-media,
.catalogue-feature.rugged-mc .catalogue-body{
  align-self: center;
}

/* Make the image scale to fill the left panel without stretching */
.catalogue-feature.rugged-mc .catalogue-media{
    min-height: 0;
  padding: 10px;
  display: grid;
  place-items: center;
}

.catalogue-feature.rugged-mc .catalogue-image{
  width: auto;
  height: auto;
  max-height: 260px;
  max-width: 100%;
  object-fit: contain;
}

/* With the bullet list removed, scale up the headline + body copy for balance */
.catalogue-feature.rugged-mc .card-title{
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.catalogue-feature.rugged-mc .card-text{
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 42ch;
  margin-bottom: 14px;
}



/* EasyControl MDM (homepage) layout tuning */
.catalogue-feature.easycontrol-mc{
  /* Picture : Text ≈ 45 : 55 (reversed card: text-left, media-right) */
  grid-template-columns: 0.55fr 0.45fr;
}
.catalogue-feature.easycontrol-mc .catalogue-media,
  .catalogue-feature.consumer-mc .catalogue-media,
.catalogue-feature.easycontrol-mc .catalogue-body{
  align-self: center;
}
.catalogue-feature.easycontrol-mc .catalogue-media{
    min-height: 0;
  padding: 10px;
  display: grid;
  place-items: center;
}

/* Scale the UEM visual to fill the media panel without stretching */
.catalogue-feature.easycontrol-mc .catalogue-image{
  width: auto;
  height: auto;
  max-height: 260px;
  max-width: 100%;
  object-fit: contain;
}

.catalogue-feature.consumer-mc .catalogue-image{
  width: auto;
  height: auto;
  max-height: 260px;
  max-width: 100%;
  object-fit: contain;
}

/* Match the Rugged card’s larger type (no bullet list) */
.catalogue-feature.easycontrol-mc .card-title{
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.catalogue-feature.easycontrol-mc .card-text{
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 42ch;
  margin-bottom: 14px;
}



/* Consumer Mobile Devices (homepage) */
.catalogue-feature.consumer-mc{
  /* Same split as EasyControl (reversed card: text-left, media-right) */
  grid-template-columns: 0.55fr 0.45fr;
}
.catalogue-feature.consumer-mc .catalogue-media,
.catalogue-feature.consumer-mc .catalogue-body{
  align-self: center;
}
.catalogue-feature.consumer-mc .card-title{
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  margin-bottom: 10px;
}
.catalogue-feature.consumer-mc .card-text{
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 42ch;
  margin-bottom: 14px;
}

/* BWC30X 5G (homepage) layout tuning — same ratio + split */
.catalogue-feature.bwc30x-mc{
  aspect-ratio: 2.35 / 1;
  width: 100%;

  /* Picture : Text ≈ 45 : 55 */
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(18px, 3vw, 52px);

  padding: clamp(18px, 2.2vw, 28px);
  align-items: center;
}
.catalogue-feature.bwc30x-mc .catalogue-media,
.catalogue-feature.bwc30x-mc .catalogue-body{
  align-self: center;
}
.catalogue-feature.bwc30x-mc .catalogue-media{
  height: 100%;
  min-height: 0;
  padding: 0;
  display: grid;
  place-items: center;
}
.catalogue-feature.bwc30x-mc .catalogue-icon{
  font-size: clamp(48px, 6vw, 86px);
  opacity: .98;
}
.catalogue-feature.bwc30x-mc .catalogue-badge{
  top: 16px;
  left: 16px;
}
/* On smaller screens, stack like the rest of the catalogue cards */
@media (max-width: 900px){
  .catalogue-feature.rugged-mc,
  .catalogue-feature.easycontrol-mc,
  .catalogue-feature.consumer-mc,
  .catalogue-feature.bwc30x-mc{
    aspect-ratio: auto;
  }
  .catalogue-feature.rugged-mc .catalogue-media,
  .catalogue-feature.easycontrol-mc .catalogue-media,
  .catalogue-feature.consumer-mc .catalogue-media,
  .catalogue-feature.bwc30x-mc .catalogue-media{
    padding: 18px;
    height: auto;
    min-height: 180px;
  }
  .catalogue-feature.rugged-mc .catalogue-image{
    width: 100%;
    height: auto;
    max-height: none;
  }
}

/* ===============================
   Sonim-style hero device motion
   (Pure CSS + tiny JS for pointer)
   =============================== */

.sonim-hero{
  position: relative;
  width: min(520px, 92vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;

  /* Pure CSS defaults (no JS required) */
  --tiltX: 10deg;
  --tiltZ: 0deg;

  /* Pointer-follow highlight (updated by JS) */
  --mx: 50%;
  --my: 45%;

  /*
    Trim excess transparent/blank margins in the RP30X renders
    without re-exporting assets: scale the faces inside the 3D stage.
    This keeps the turntable animation intact while making the device
    appear larger in the hero.
  */
  --faceScale: 1.18;
}

@media (max-width: 480px){
  .sonim-hero{ --faceScale: 1.12; }
}

/* Optional: tiny interactive feel on hover (still pure CSS) */
@media (hover:hover){
  .sonim-hero:hover{ --tiltX: 12deg; --tiltZ: 2deg; }
}

/* Subtle vignette + grain-ish bg */
.sonim-hero-bg{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.10), rgba(255,255,255,0) 60%),
    radial-gradient(closest-side, rgba(120,170,255,.18), rgba(0,0,0,0) 62%),
    radial-gradient(closest-side, rgba(0,0,0,.35), rgba(0,0,0,0) 70%);
  filter: blur(2px);
  opacity: .95;
  z-index: 0;
}

/* Animated streaks behind the device */
.sonim-streak{
  position: absolute;
  inset: -55% -30%;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .75;
  transform: rotate(18deg);
  animation: sonimStreakMove 8.5s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.sonim-streak-1{
  background: linear-gradient(90deg, transparent, rgba(120,170,255,.22), transparent);
}

.sonim-streak-2{
  background: linear-gradient(90deg, transparent, rgba(65,145,255,.18), transparent);
  transform: rotate(-12deg);
  animation-duration: 10.5s;
  opacity: .6;
}

.sonim-streak-3{
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: rotate(28deg);
  animation-duration: 12.5s;
  opacity: .45;
}

@keyframes sonimStreakMove{
  0%{ translate: -12% 0; }
  100%{ translate: 12% 0; }
}

/* Soft noise overlay (SVG turbulence) */
.sonim-noise{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: .10;
  mix-blend-mode: overlay;
  z-index: 3;
  pointer-events: none;
}

.sonim-device-stage{
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  z-index: 2;
}

/* Ring like Sonim hero (soft neon ellipse) */
.sonim-ring{
  position: absolute;
  width: 95%;
  height: 48%;
  border-radius: 999px;
  border: 2px solid rgba(210,235,255,.55);
  box-shadow:
    0 0 18px rgba(170,220,255,.35),
    0 0 60px rgba(170,220,255,.18);
  transform: translateZ(-120px) rotateX(68deg);
  opacity: .9;
  animation: sonimRingPulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes sonimRingPulse{
  0%,100%{ opacity: .55; filter: blur(0px); }
  50%{ opacity: .95; filter: blur(.35px); }
}

/* Device container: we animate this, not the images */
.sonim-device{
  position: relative;
  width: min(420px, 86%);
  aspect-ratio: 9 / 16;
  transform-style: preserve-3d;
  filter: drop-shadow(0 28px 55px rgba(0,0,0,.45));

  /* Vars are now defined on .sonim-hero (inherited), so this stays pure CSS. */
}

/* Float + turntable combined (single transform so they don't overwrite) */
.sonim-device-float{
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: sonimTurntable 7.5s cubic-bezier(.2,.8,.2,1) infinite;
  will-change: transform;
}

/* Mouse-follow highlight (adds "premium" depth without heavy JS) */
.sonim-shine{
  position: absolute;
  inset: -12%;
  border-radius: 32px;
  background: radial-gradient(320px 260px at var(--mx) var(--my),
    rgba(255,255,255,.18),
    rgba(255,255,255,.06) 35%,
    rgba(255,255,255,0) 62%
  );
  mix-blend-mode: screen;
  opacity: .85;
  transform: translateZ(10px);
  pointer-events: none;
}

@keyframes sonimTurntable{
  0%{
    transform:
      translateY(0px)
      rotateX(var(--tiltX))
      rotateZ(var(--tiltZ))
      rotateY(-22deg);
  }
  35%{
    transform:
      translateY(-10px)
      rotateX(calc(var(--tiltX) + 2deg))
      rotateZ(var(--tiltZ))
      rotateY(18deg);
  }
  65%{
    transform:
      translateY(-6px)
      rotateX(calc(var(--tiltX) + 1deg))
      rotateZ(var(--tiltZ))
      rotateY(162deg);
  }
  100%{
    transform:
      translateY(0px)
      rotateX(var(--tiltX))
      rotateZ(var(--tiltZ))
      rotateY(338deg);
  }
}

/* Faces */
.sonim-face{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.sonim-front{ transform: rotateY(0deg) translateZ(1px) scale(var(--faceScale)); }
.sonim-back{  transform: rotateY(180deg) translateZ(1px) scale(var(--faceScale)); }

/* Specular highlight sweep for that “premium product-page” look */
.sonim-specular{
  position: absolute;
  inset: -8%;
  border-radius: 28px;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.22) 48%,
    rgba(255,255,255,0) 62%
  );
  transform: translateZ(6px) rotate(8deg);
  mix-blend-mode: screen;
  opacity: .55;
  animation: sonimSpecular 3.6s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce){
  .sonim-ring,
  .sonim-device-float,
  .sonim-specular,
  .sonim-streak{ animation: none !important; }
}

@keyframes sonimSpecular{
  0%,100%{ background-position: 0% 50%; opacity: .35; }
  50%{ background-position: 100% 50%; opacity: .65; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .sonim-device-float,
  .sonim-ring,
  .sonim-specular,
  .sonim-streak{ animation: none !important; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce){
  .sonim-device-float,
  .sonim-ring,
  .sonim-specular,
  .sonim-streak{
    animation: none !important;
  }
}

/* Make sure the hero art doesn't overflow the row */
.hero-media-row .hero-art{ overflow: visible; }

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .sonim-device-float,
  .sonim-ring,
  .sonim-specular{
    animation: none !important;
  }
}

/* =========================================================
   V6 PATCH (DESKTOP ONLY): Reduce negative space in the 3-card
   Product Catalogue section WITHOUT removing content.
   Targets: #catalogue section only.
   ========================================================= */
@media (min-width: 1024px){

  /* Section padding (reduce empty space above/below) */
  #catalogue.section{
    padding-top: 16px !important;     /* was 22px */
    padding-bottom: 8px !important;   /* was 10px */
  }

  /* Title spacing (there is a blank title in this template) */
  #catalogue .section-title{
    margin-bottom: 4px !important;    /* was 10px */
  }

  /* Gap between the 3 stacked cards */
  #catalogue .catalogue-features{
    row-gap: 16px !important;         /* tighter vertical rhythm between stacked cards */
  }

  /*
    Card spacing:
    The Education card (Industries grid) uses padding: 18px.
    Make these three catalogue cards ~20% taller than Education:
    18px * 1.2 = 21.6px → 22px.
  */
  /* Tighten EasyControl ↔ Rugged spacing a bit more than the rest */
  #catalogue .easycontrol-mc,
  #catalogue .rugged-mc{
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    gap: 16px !important;
  }

  /* Keep the 3rd card consistent but slightly roomier */
  #catalogue .consumer-mc{
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    gap: 18px !important;
  }

  /* Nudge Rugged card up slightly to reduce the perceived gap from EasyControl */
  #catalogue .easycontrol-mc{ margin-bottom: -4px !important; }

  /* Media panel inner padding only (keeps min-height 180px unchanged) */
  #catalogue .catalogue-media{
    padding: 12px !important;         /* was 18px */
  }
}


/* v9: keep 'Enterprise-grade. User-friendly.' on one line (desktop) */
.why-ops .feature-card.enterprise .feature-title {
  white-space: nowrap;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .why-ops .feature-card.enterprise .feature-title {
    white-space: normal;
  }
}


/* ------------------------------------------------------------
   About page visual optimisations
   - Our Approach (inside Why) was previously inheriting default text color,
     making steps hard to see on the dark gradient background.
   - Add "sketch" (line) icon styling and readable typography.
   - Left-align Offers + Who We Serve for cleaner scanning.
------------------------------------------------------------ */

/* Our Approach (Why section) */
.why-ops-approach{
  margin-top: var(--space-9);
  /* use full container width so the step cards align with the 3 Why cards above */
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.why-ops-approach-title{
  margin: 0 0 var(--space-2) 0;
  color: rgba(255,255,255,.97);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
}

.why-ops-approach-subtitle{
  margin: 0 0 var(--space-7) 0;
  color: #ffffff;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: var(--lh-relaxed);
  max-width: 980px;
}

.approach-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 981px){
  .approach-steps{ grid-template-columns: 1fr 1.22fr 1fr; }
}

.approach-step{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  backdrop-filter: blur(10px);
  text-align: left;
  min-height: 66px;
}

.approach-step-text{
  color: rgba(255,255,255,.92);
  font-weight: 650;
  line-height: 1.25;
}

.approach-step-icon{
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
}

.approach-step-icon svg{
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,.92);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Offers + Who We Serve alignment */
#offers .offers-head{
  text-align: left;
  max-width: 980px;
  margin: 0 0 var(--space-8) 0;
}

#offers .offers-title{
  margin: 0 0 var(--space-2) 0;
}

#offers .offers-subtitle{
  margin: 0;
  max-width: 900px;
}

#offers .serve-block{
  margin-top: var(--space-9);
  text-align: left;
}

#offers .serve-title{
  margin: 0 0 var(--space-6) 0;
}


#offers .offers-grid,
#offers .serve-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-7);
}

@media (max-width: 920px){
  #offers .offers-grid,
  #offers .serve-grid{
    grid-template-columns: 1fr;
  }
}

#offers .offer-card,
#offers .serve-card{
  /* match the "Our Journey" / "Why" card feel */
  border-radius: 16px;
  padding: 28px 28px 26px;
}

#offers .offer-card-title,
#offers .serve-card-title{
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: 0 0 var(--space-4) 0;
}

#offers .offer-icon,
#offers .serve-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,110,255,.12);
  border: 1px solid rgba(47,110,255,.12);
  font-size: 22px;
  line-height: 1;
}

#offers .offer-card h3,
#offers .serve-card h4{
  margin: 0;
  color: var(--text-heading);
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

#offers .offer-card h3{
  font-size: clamp(20px, 1.5vw, 24px);
}

#offers .serve-card h4{
  font-size: clamp(18px, 1.25vw, 20px);
}

#offers .offer-list{
  margin: 0 0 var(--space-4) 0;
  padding-left: 20px;
  color: var(--text-body);
}

#offers .offer-list li{
  margin: 0 0 8px 0;
}

#offers .offer-note{
  margin: 0;
  color: rgba(0,0,0,.60);
}

#offers .serve-card p{
  margin: 0;
  color: var(--text-body);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: var(--lh-relaxed);
}


/* FORCE VISIBILITY FOR OUR APPROACH SUBTITLE */
.why-ops-approach-subtitle{color:#ffffff !important; opacity:1 !important; position:relative; z-index:3;}


/* ABOUT > OFFERS AS CATALOGUE CARD */
.about-page #offers .catalogue-feature{
  align-items: flex-start;
  grid-template-columns: 1fr;
  grid-template-areas: "body";
}

.about-page #offers .catalogue-media{ display:none; }

.about-page #offers .catalogue-body{
  text-align:left;
  max-width:none;
}

.about-page #offers .catalogue-body .card-text{
  max-width:none;
}

/* Ensure inner grids match global container spacing */
.about-page #offers .offers-grid{
  margin-top: var(--space-7);
}

.about-page #offers .serve-block{
  margin-top: var(--space-8);
}



/* ABOUT > OFFERS + SERVE AS TWO SEPARATE CATALOGUE CARDS */
.about-page #offers .offers-card,
.about-page #offers .serve-cardwrap{
  margin-bottom: var(--space-8);
}

.about-page #offers .catalogue-feature{
  align-items: flex-start;
  grid-template-columns: 1fr;
  grid-template-areas: "body";
}

.about-page #offers .catalogue-media{ display:none; }

.about-page #offers .catalogue-body{
  text-align:left;
  max-width:none;
}

.about-page #offers .catalogue-body .card-text{
  max-width:none;
}

.about-page #offers .offers-grid{ margin-top: var(--space-7); }
.about-page #offers .serve-grid{ margin-top: var(--space-6); }



/* ABOUT PAGE: FORCE Journey / Offers / Clients titles to match exactly */
.about-page #journey .catalogue-body > .card-title,
.about-page #offers .catalogue-body > .card-title{
  font-size: clamp(28px, 3.0vw, 40px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.12 !important;
}



/* ABOUT PAGE: Center-align Our Approach heading/subtitle like Why header */
.about-page .why-ops-approach{
  text-align: center;
}

.about-page .why-ops-approach-title,
.about-page .why-ops-approach-subtitle{
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}



/* ALIGN ABOUT SECTION TITLES WITH PRODUCT CARD TITLE SIZE */
.about-page #journey .catalogue-body > .card-title,
.about-page #offers .catalogue-body > .card-title{
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;
}



/* BALANCED TITLE SIZE FOR ABOUT PAGE (between product cards and large section headers) */
.about-page #journey .catalogue-body > .card-title,
.about-page #offers .catalogue-body > .card-title{
  font-size: clamp(22px, 1.8vw, 26px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.2 !important;
}



/* BRAND-FORWARD ABOUT SECTION TITLE SCALE */
.about-page #journey .catalogue-body > .card-title,
.about-page #offers .catalogue-body > .card-title{
  font-size: clamp(24px, 2.2vw, 28px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.18 !important;
}



/* =========================================================
   ABOUT > OUR JOURNEY MILESTONES POLISH
   - Smaller dots, calmer blue
   - Thinner connector line
   - Uniform card heights + title clamping
   - Softer shadows/borders
   - More breathing room between dot and card
   ========================================================= */

.about-page #journey .milestones{
  margin-top: var(--space-7);
}

/* connector line */
.about-page #journey .milestones-track{
  height: 2px;
  opacity: .55;
  filter: blur(.2px);
}

/* dot */
.about-page #journey .milestone-dot{
  width: 96px;
  height: 96px;
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}

/* Use T10 baseline palette (defined in assets/css/components/t10-timeline.css) */
.about-page #journey .milestone-dot{
  background: linear-gradient(135deg, var(--t10-blue, #1F4E79) 0%, var(--t10-navy, #0B2A4A) 100%);
  border: 1px solid rgba(255,255,255,.20);
}

.about-page #journey .milestone-dot svg{
  width: 22px;
  height: 22px;
  opacity: .95;
}

.about-page #journey .milestone-year{
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* card */
.about-page #journey .milestone-card{
  border-radius: 18px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  min-height: 160px;
}

/* Title clamp to avoid uneven heights */
.about-page #journey .milestone-card h3{
  margin: 0 0 10px 0;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.18;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-page #journey .milestone-card p{
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(0,0,0,.68);
}

/* spacing between dot and card */
.about-page #journey .milestone{
  padding-top: 18px;
}

/* hover polish */
@media (hover:hover){
  .about-page #journey .milestone-card{
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .about-page #journey .milestone-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
  }
}




/* =========================================================
   Business Product Hero Standard
   Applied (scoped) to RP30X only
   ========================================================= */
.products-rp30x .hero {
  background:
    linear-gradient(
      180deg,
      #12151b 0%,
      #0f1115 60%,
      #0c0e12 100%
    );
}

/* RP30X hero vignette blend — corrected (desktop-safe) */
.products-rp30x .hero{
  position: relative;
  overflow: hidden;
}

.products-rp30x .hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;

  /* mobile / tablet */
  background:
    radial-gradient(
      700px 520px at 62% 55%,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.18) 62%,
      rgba(0,0,0,0.35) 82%,
      rgba(0,0,0,0.45) 100%
    );
}

.products-rp30x .hero > *{
  position: relative;
  z-index: 1;
}

/* Reduce repaint/"flicker" artifacts on some GPUs/browsers (RP30X hero image + overlay) */
.products-rp30x .hero,
.products-rp30x .hero::after{
  transform: translateZ(0);
}

.products-rp30x .hero .hero-art{
  transform: translateY(4px) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, filter;
}

@media (min-width: 1200px){
  .products-rp30x .hero::after{
    background:
      radial-gradient(
        820px 620px at 60% 54%,
        rgba(0,0,0,0) 42%,
        rgba(0,0,0,0.20) 65%,
        rgba(0,0,0,0.38) 85%,
        rgba(0,0,0,0.48) 100%
      );
  }
}


/* Accessibility: Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
}
.skip-link:focus{
  left: 12px;
}

/* ONE CLEAN COMMIT: HERO TEXT COLOR SAFETY */
.hero .hero-subtitle { color: var(--text-heading, inherit); }
/* END ONE CLEAN COMMIT */
