:root {
  --blue: #061c86;
  --blue2: #0a3fc8;
  --red: #d90000;
  --yellow: #ffe100;
  --orange: #ff8a00;
  --green: #0c9f3d;
  --ink: #08154f;
  --muted: #526079;
  --line: rgba(6, 28, 134, .16);
  --paper: #ffffff;
  --soft: #f4f8ff;
  --shadow: 0 18px 45px rgba(6, 28, 134, .18);
  --radius: 18px;
  --font: "Noto Sans Devanagari", "Mukta", Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255,225,0,.24), transparent 18%),
    radial-gradient(circle at 92% 8%, rgba(10,63,200,.22), transparent 22%),
    linear-gradient(180deg, #e8f2ff 0%, #f9fbff 52%, #eaf3ff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.top-strip {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-weight: 900;
  padding: 8px 12px;
  font-size: clamp(.82rem, 2.8vw, 1.05rem);
  transition: transform .22s ease, opacity .22s ease;
}
.top-strip.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }

.site-nav {
  position: sticky;
  top: 38px;
  z-index: 1000;
  margin: 0 auto;
  width: min(100% - 18px, 1200px);
  min-height: 66px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  background: linear-gradient(90deg, #06145d, var(--blue), #07145f);
  color: #fff;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 10px 30px rgba(6, 20, 93, .28);
}
.site-nav.scrolled { top: 0; border-radius: 0 0 18px 18px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: transparent;
  color: var(--red);
  font-weight: 900;
  font-size: 1.45rem;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand strong { display: block; font-size: 1.05rem; line-height: 1.1; white-space: nowrap; }
.brand small { display: block; opacity: .82; font-size: .72rem; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--yellow);
  color: var(--ink);
}
.order-cta, .btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 950;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.14), 0 8px 20px rgba(255,138,0,.28);
}
.btn-red {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #f40a0a, #b90000);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 900;
  border: 2px solid #fff;
}
.menu-btn { display: none; background: transparent; border: 0; width: 42px; flex-direction: column; gap: 5px; }
.menu-btn span {
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 104px 10px auto;
  z-index: 999;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 13px 14px; border-bottom: 1px solid var(--line); font-weight: 900; }
.mobile-nav a:last-child { border: 0; }

section, .page-section { padding: 56px 16px; }
.container { width: min(1160px, 100%); margin: 0 auto; }
.poster-shell {
  width: min(1220px, calc(100% - 16px));
  margin: 16px auto 0;
  padding: clamp(12px, 2vw, 22px);
  border-radius: 28px;
  border: 5px solid var(--blue);
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(235,245,255,.9)),
    radial-gradient(circle at 50% 20%, #fff 0 22%, transparent 23%),
    linear-gradient(135deg, #dcebff, #fff 46%, #ddebff);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.poster-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 87% 16%, rgba(6,28,134,.08) 0 1.5px, transparent 1.7px) 0 0 / 14px 14px,
    linear-gradient(124deg, rgba(5,46,160,.98) 0 7%, transparent 7.2% 88%, rgba(5,46,160,.98) 88.2% 100%),
    linear-gradient(150deg, transparent 0 20%, rgba(10,63,200,.1) 20.2% 30%, transparent 30.2% 100%);
  pointer-events: none;
}
.poster-shell::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 6%;
  width: 120%;
  height: 38%;
  background:
    linear-gradient(135deg, transparent 0 8%, rgba(6,28,134,.16) 8.5% 10.5%, transparent 11%),
    linear-gradient(155deg, transparent 0 72%, rgba(6,28,134,.18) 72.3% 74%, transparent 74.3%);
  pointer-events: none;
}
.hero-bg-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
  filter: saturate(1.12) contrast(1.04);
  z-index: 0;
}
.hero { position: relative; z-index: 1; display: grid; grid-template-columns: 215px 1fr 250px; gap: 18px; align-items: center; padding-top: 10px; }
.hero-title {
  color: var(--red);
  font-size: clamp(3rem, 7vw, 5.45rem);
  line-height: .94;
  font-weight: 950;
  letter-spacing: .01em;
  text-align: center;
  text-shadow:
    3px 3px 0 #fff,
    -3px 3px 0 #fff,
    3px -3px 0 #fff,
    -3px -3px 0 #fff,
    7px 8px 0 rgba(0,0,0,.22);
}
.hero-title span { display: block; color: var(--blue); }
.hero-pill {
  display: flex;
  width: fit-content;
  margin: 14px auto 8px;
  background: var(--yellow);
  color: #07145f;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: clamp(1rem, 2.3vw, 1.28rem);
  font-weight: 950;
  border: 2px solid #fff;
  box-shadow: 0 10px 28px rgba(255,225,0,.36), inset 0 -4px 0 rgba(0,0,0,.1);
}
.phone-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; font-size: clamp(1.35rem, 3.8vw, 2.05rem); color: var(--blue); font-weight: 950; }
.owner { background: var(--red); color: #fff; padding: 7px 18px; border-radius: 10px; font-size: clamp(1rem, 2.4vw, 1.28rem); }
.call-chip, .wa-chip {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--red), #b90000);
  border: 3px solid rgba(255,255,255,.95);
  box-shadow: 0 8px 18px rgba(6,28,134,.22);
}
.wa-chip { background: linear-gradient(180deg, #18b64e, #0c8e35); }
.call-chip svg, .wa-chip svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.hero-side { display: grid; gap: 10px; justify-items: center; }
.starburst {
  justify-self: center;
  width: min(205px, 58vw);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  color: #fff;
  background: var(--red);
  clip-path: polygon(50% 0%, 58% 14%, 73% 7%, 75% 24%, 93% 22%, 86% 38%, 100% 50%, 86% 62%, 93% 78%, 75% 76%, 73% 93%, 58% 86%, 50% 100%, 42% 86%, 27% 93%, 25% 76%, 7% 78%, 14% 62%, 0% 50%, 14% 38%, 7% 22%, 25% 24%, 27% 7%, 42% 14%);
  font-weight: 950;
  font-size: clamp(1.05rem, 3vw, 1.48rem);
  line-height: 1.08;
  padding: 34px;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.22));
}
.starburst-line {
  display: block;
  line-height: .96;
}
.starburst-main {
  color: var(--yellow);
  display: block;
  line-height: .96;
  text-shadow: 0 2px 0 rgba(0,0,0,.18);
}
.hero-machine {
  min-height: 185px;
  display: grid;
  place-items: center;
}
.hero-machine img {
  width: min(240px, 100%);
  filter: drop-shadow(0 16px 16px rgba(0,0,0,.18));
}
.printer-visual {
  position: relative;
  width: 240px;
  min-height: 170px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 12px 14px rgba(0,0,0,.24));
}
.printer-visual img { width: 100%; }
.peripheral-stage {
  position: relative;
  z-index: 2;
  margin: 10px auto 16px;
  width: min(850px, 96%);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 2px solid rgba(6,28,134,.18);
  box-shadow: 0 14px 26px rgba(6,28,134,.12);
  overflow: hidden;
}
.peripheral-stage img {
  width: 100%;
  max-height: 210px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 1; margin-top: 16px; }
.service-panel {
  background: rgba(255,255,255,.94);
  border: 3px solid var(--red);
  border-radius: 18px;
  overflow: hidden;
}
.service-panel.blue { border-color: var(--blue); }
.panel-head { background: linear-gradient(180deg, #f20707, #b80000); color: #fff; text-align: center; font-weight: 950; font-size: clamp(1.18rem, 2.3vw, 1.55rem); padding: 8px; }
.service-panel.blue .panel-head { background: linear-gradient(180deg, #1646d6, #061c86); }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; padding: 16px; }
.service-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px dashed #b9c5df; font-weight: 950; color: var(--red); font-size: clamp(.94rem, 1.75vw, 1.08rem); }
.service-panel.blue .service-item { color: var(--blue); }
.service-item .ico {
  width: 74px;
  height: 58px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff, #eaf2ff);
  border: 1px solid var(--line);
  border-radius: 12px;
  flex: 0 0 auto;
  box-shadow: inset 0 -4px 0 rgba(6,28,134,.08), 0 5px 10px rgba(6,28,134,.1);
  overflow: hidden;
}
.service-item .ico img { width: 100%; height: 100%; object-fit: cover; }
.service-item small { display: block; color: #111; font-size: .72em; font-weight: 800; }
.trust-bar {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  border-radius: 16px;
  margin-top: 16px;
  padding: 12px;
  text-align: center;
  font-weight: 950;
  font-size: clamp(.82rem, 1.8vw, 1rem);
}
.trust-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.trust-track div { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 0; }
.trust-logo,
.card-logo {
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--red);
  border: 2px solid rgba(255,255,255,.88);
  font-weight: 950;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.14), 0 5px 12px rgba(0,0,0,.14);
}
.trust-logo { width: 38px; height: 34px; font-size: .92rem; flex: 0 0 auto; }
.trust-logo svg,
.card-logo svg {
  width: 68%;
  height: 68%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-logo.speed svg { fill: currentColor; stroke: none; }
.trust-logo.check, .trust-logo.users, .trust-logo.clock { color: var(--blue); }
.poster-carousel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  background: rgba(255,255,255,.92);
  border: 2px solid rgba(6,28,134,.22);
  border-radius: 18px;
}
.poster-carousel-item {
  min-width: 0;
  text-align: center;
  border: 2px solid #c6d8ff;
  border-radius: 50%;
  aspect-ratio: 1.38;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--blue);
  font-weight: 950;
  background: radial-gradient(circle at 50% 35%, #fff, #eff5ff);
  box-shadow: inset 0 -6px 0 rgba(6,28,134,.08);
}
.poster-carousel-item span { display: block; width: 72%; max-width: 92px; }
.poster-carousel-item span img { width: 100%; aspect-ratio: 1.25; object-fit: cover; border-radius: 999px; }
.poster-carousel-item strong { font-size: clamp(.72rem, 1.2vw, .88rem); }
.poster-bottom {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: var(--blue);
  color: #fff;
  border-radius: 16px;
  padding: 13px 18px;
  font-size: clamp(.98rem, 2.2vw, 1.28rem);
  font-weight: 950;
}
.poster-bottom strong {
  background: var(--yellow);
  color: var(--red);
  border-radius: 999px;
  padding: 5px 18px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.15;
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 12px;
}
.section-sub { text-align: center; color: var(--muted); max-width: 760px; margin: 0 auto 24px; font-weight: 700; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-marquee {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.service-marquee::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: serviceScroll 42s linear infinite;
}
.service-marquee:hover .gallery-track,
.service-marquee:focus-within .gallery-track {
  animation-play-state: paused;
}
.card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 22px rgba(6,28,134,.08);
}
.service-card {
  flex: 0 0 clamp(250px, 26vw, 330px);
  min-height: 230px;
}
.card .big {
  width: 74px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f8ff;
}
.card .big img { width: 100%; height: 100%; object-fit: cover; }
.card-logo { width: 100%; height: 100%; font-size: 1.3rem; }
.card h3 { color: var(--red); font-size: 1.15rem; margin: 8px 0 4px; }
.card p { color: var(--muted); font-weight: 700; font-size: .93rem; }
@keyframes serviceScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
@keyframes trustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 5px)); }
}
@keyframes trustMobileScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% + 100vw - 18px)); }
}
.gallery-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.gallery-strip.service-marquee { display: block; }
.gallery-item {
  flex: 0 0 160px;
  background: #fff;
  border: 3px solid #bdd1ff;
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 14px 10px;
  text-align: center;
  font-weight: 950;
  color: var(--blue);
  display: grid;
  place-items: center;
  align-content: center;
}
.gallery-item span {
  width: min(82px, 78%);
  aspect-ratio: 1.25;
  display: block;
  margin: 0 auto 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #f4f8ff;
}
.gallery-item span img { width: 100%; height: 100%; object-fit: cover; }
.price-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { background: #fff; border: 3px solid var(--blue); border-radius: 18px; padding: 22px; text-align: center; }
.price-card strong { color: var(--red); font-size: 2rem; display: block; }
.shop-product-section{
  position:relative;
  padding-top:42px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,225,0,.18), transparent 20rem),
    radial-gradient(circle at 92% 18%, rgba(10,63,200,.14), transparent 22rem);
}
.shop-section-head{
  max-width:780px;
  margin:0 auto 22px;
  text-align:center;
}
.shop-section-head .product-kicker{
  margin-bottom:10px;
}
.shop-section-head .section-title{
  margin-bottom:8px;
}
.home-product-chart{
  max-width:1080px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.home-product-row{
  position:relative;
  display:grid;
  grid-template-columns:84px minmax(0,1fr);
  gap:16px;
  align-items:center;
  min-height:128px;
  padding:18px;
  border:2px solid rgba(6,28,134,.12);
  border-radius:24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,246,255,.88));
  color:var(--ink);
  box-shadow:0 14px 32px rgba(6,28,134,.09);
  overflow:hidden;
}
.home-product-row::after{
  content:"";
  position:absolute;
  right:-34px;
  top:-34px;
  width:104px;
  height:104px;
  border-radius:999px;
  background:rgba(255,225,0,.26);
  pointer-events:none;
}
.home-product-row:hover{
  transform:translateY(-2px);
  border-color:rgba(6,28,134,.28);
  box-shadow:0 18px 38px rgba(6,28,134,.14);
}
.home-product-thumb{
  width:84px;
  height:84px;
  display:grid;
  place-items:center;
  border:2px solid rgba(6,28,134,.12);
  border-radius:20px;
  background:#fff;
  overflow:hidden;
  font-size:1.8rem;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}
.home-product-thumb img{width:100%;height:100%;object-fit:contain;padding:6px}
.home-product-main{display:grid;gap:4px}
.home-product-main strong{color:var(--blue);font-size:1.08rem}
.home-product-main small{color:var(--muted);font-weight:800;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.home-product-type{
  grid-column:2;
  justify-self:start;
  padding:6px 10px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--blue);
  font-weight:900;
  text-transform:capitalize;
  font-size:.84rem;
}
.home-product-price{
  position:absolute;
  right:18px;
  bottom:16px;
  color:var(--red);
  font-size:1.35rem;
  font-weight:950;
}
.shop-section-action{
  text-align:center;
  margin-top:24px;
}
.digital-card-product .section-sub{margin-bottom:18px}
.digital-card-product-card{max-width:980px}
.home-digital-card-row{
  grid-template-columns:72px minmax(220px,1fr) 140px 90px 230px;
  border-bottom:0;
}
.home-digital-card-row:hover{background:#f8fbff}
.digital-card-thumb img{padding:0;object-fit:cover}
.home-product-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;justify-self:end;width:100%}
.home-product-actions .btn-ghost,
.home-product-actions .order-cta{min-height:44px;padding:9px 12px;font-size:.88rem}
.home-product-actions .btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:var(--blue);
  font-weight:950;
}
.digital-card-product{padding-top:24px}
.digital-card-poster{
  padding-top:34px;
  padding-bottom:34px;
}
.digital-card-product-inner{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(300px,.75fr);
  gap:22px;
  align-items:center;
  max-width:1060px;
  margin:0 auto;
  background:#fff;
  border:3px solid var(--blue);
  border-radius:24px;
  padding:24px;
  box-shadow:0 16px 36px rgba(6,28,134,.12);
  position:relative;
  overflow:hidden;
}
.digital-card-poster .digital-card-product-inner{
  max-width:1220px;
  border:5px solid var(--blue);
  border-radius:28px;
  padding:clamp(18px,3vw,34px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255,225,0,.22), transparent 13rem),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(235,245,255,.96)),
    linear-gradient(135deg, #dcebff, #fff 46%, #ddebff);
}
.digital-card-product-inner::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,225,0,.18),transparent 34%,rgba(6,28,134,.08));
  pointer-events:none;
}
.digital-card-poster .digital-card-product-inner::before{
  background:
    radial-gradient(circle at 87% 16%, rgba(6,28,134,.08) 0 1.5px, transparent 1.7px) 0 0 / 14px 14px,
    linear-gradient(124deg, rgba(5,46,160,.98) 0 5%, transparent 5.2% 92%, rgba(5,46,160,.98) 92.2% 100%),
    linear-gradient(150deg, transparent 0 22%, rgba(10,63,200,.1) 22.2% 31%, transparent 31.2% 100%);
}
.digital-card-copy,.digital-card-preview{position:relative;z-index:1}
.product-kicker{
  display:inline-flex;
  width:fit-content;
  background:var(--yellow);
  color:var(--red);
  border-radius:999px;
  padding:4px 12px;
  font-weight:950;
  margin-bottom:10px;
}
.digital-card-copy h2{
  color:var(--blue);
  font-size:clamp(1.85rem,4vw,3rem);
  line-height:1.05;
  font-weight:950;
  margin-bottom:10px;
}
.digital-card-poster .digital-card-copy h2{
  color:var(--red);
  font-size:clamp(2.1rem,5.2vw,4.3rem);
  text-shadow:
    2px 2px 0 #fff,
    -2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff,
    5px 6px 0 rgba(0,0,0,.16);
}
.digital-card-copy p{
  color:var(--muted);
  font-weight:800;
  font-size:1.02rem;
  max-width:650px;
}
.digital-card-poster .digital-card-copy p{
  color:var(--ink);
  font-size:1.12rem;
}
.digital-card-points{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin:16px 0 18px;
}
.digital-card-points span{
  display:inline-flex;
  padding:8px 11px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--blue);
  border:1px solid var(--line);
  font-weight:950;
  font-size:.9rem;
}
.digital-card-actions{display:flex;flex-wrap:wrap;gap:10px}
.digital-card-preview{
  display:grid;
  gap:12px;
  background:linear-gradient(180deg,#06145d,#0a3fc8);
  color:#fff;
  border-radius:20px;
  padding:16px;
  border:3px solid rgba(255,255,255,.9);
  box-shadow:0 18px 34px rgba(6,28,134,.2);
}
.digital-card-poster .digital-card-preview{
  background:linear-gradient(180deg,#06145d,#082b9e);
  border-radius:24px;
  padding:12px;
}
.digital-card-poster .digital-card-screen{
  min-height:300px;
  background:#fff;
}
.digital-card-poster .digital-card-screen img{
  max-height:none;
  object-fit:cover;
}
.digital-card-tag{
  justify-self:start;
  background:var(--yellow);
  color:var(--ink);
  border-radius:999px;
  padding:5px 11px;
  font-weight:950;
  font-size:.84rem;
}
.digital-card-screen{
  display:grid;
  place-items:center;
  min-height:210px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
}
.digital-card-screen img{
  width:100%;
  height:100%;
  max-height:260px;
  object-fit:contain;
  filter:drop-shadow(0 14px 18px rgba(0,0,0,.24));
}
.digital-card-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.digital-card-mini-grid span{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:10px;
  padding:8px;
  text-align:center;
  font-weight:900;
  font-size:.86rem;
}
.home-blog-section { padding-top: 24px; }
.home-blog-grid { display: grid; grid-template-columns: 1fr .86fr; gap: 14px; align-items: stretch; max-width: 980px; margin: 0 auto; }
.home-blog-featured,
.home-blog-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(6,28,134,.08);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.home-blog-featured { display: grid; grid-template-columns: 190px 1fr; align-items: center; border-color: var(--blue); }
.home-blog-media { aspect-ratio: 16 / 9; width: 190px; min-height: 0; background: #f4f8ff; display: grid; place-items: center; overflow: hidden; }
.home-blog-media img,
.home-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-blog-emoji { font-size: 2.6rem; }
.home-blog-body { padding: 16px 18px; display: flex; flex: 1; flex-direction: column; justify-content: center; }
.home-blog-cat { display: inline-flex; width: fit-content; background: var(--yellow); color: var(--red); border-radius: 999px; padding: 2px 9px; font-size: .72rem; font-weight: 950; margin-bottom: 7px; }
.home-blog-featured strong { color: var(--blue); font-size: clamp(1.05rem, 1.45vw, 1.28rem); line-height: 1.22; font-weight: 950; margin-bottom: 7px; }
.home-blog-excerpt { color: var(--muted); font-weight: 800; line-height: 1.45; margin-bottom: 9px; font-size: .92rem; }
.home-blog-meta { color: var(--muted); font-size: .76rem; font-weight: 850; }
.home-blog-readmore { display: inline-flex; width: fit-content; margin-top: 10px; background: linear-gradient(135deg,var(--yellow),var(--orange)); color: var(--ink); border: 2px solid rgba(255,255,255,.8); border-radius: 10px; padding: 7px 13px; font-weight: 950; box-shadow: inset 0 -3px 0 rgba(0,0,0,.14),0 8px 18px rgba(255,138,0,.22); }
.home-blog-list { display: grid; gap: 10px; }
.home-blog-card { display: grid; grid-template-columns: 84px 1fr; gap: 10px; padding: 9px; align-items: center; min-height: 74px; }
.home-blog-card:hover,
.home-blog-featured:hover { transform: translateY(-2px); border-color: var(--red); transition: transform .2s ease, border-color .2s ease; }
.home-blog-thumb { width: 84px; aspect-ratio: 16 / 9; border-radius: 10px; background: #f4f8ff; overflow: hidden; display: grid; place-items: center; color: var(--blue); font-size: 1.35rem; }
.home-blog-card strong { display: block; color: var(--blue); font-size:.94rem; font-weight: 950; line-height: 1.22; margin-bottom: 4px; }
.home-blog-action { text-align: center; margin-top: 16px; }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.contact-card { background: #fff; border: 2px solid var(--line); border-radius: 18px; padding: 22px; }
.contact-card h3 { color: var(--blue); font-size: 1.5rem; margin-bottom: 10px; }
.contact-card p, .contact-card a { display: block; margin: 8px 0; font-weight: 800; color: var(--muted); }
.map-embed { overflow: hidden; border-radius: 14px; border: 2px solid var(--blue); margin-top: 12px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
.simple-form { display: grid; gap: 12px; }
.simple-form input, .simple-form textarea, .simple-form select {
  width: 100%;
  border: 2px solid #c4d4f5;
  border-radius: 12px;
  padding: 13px 14px;
  background: #f8fbff;
  color: var(--ink);
  font-weight: 700;
}
.simple-form textarea { min-height: 110px; resize: vertical; }
.field-error { display: block; min-height: 18px; margin-top: -6px; color: #ba0000; font-size: .82rem; font-weight: 850; }
.input-error { border-color: #ba0000 !important; background: #fff7f7 !important; }
.msg { padding: 12px; border-radius: 10px; font-weight: 800; }
.msg.success { background: #e8fff0; color: #097a32; border: 1px solid #9be3b4; }
.msg.error { background: #fff0f0; color: #ba0000; border: 1px solid #ffaaaa; }

.policy-page { padding: 48px 16px; }
.policy-wrap { width: min(960px, 100%); margin: 0 auto; }
.policy-kicker { color: var(--red); font-weight: 950; }
.policy-title { font-size: clamp(2rem, 6vw, 3.4rem); color: var(--blue); line-height: 1.1; margin: 8px 0; font-weight: 950; }
.policy-updated { color: var(--muted); font-weight: 700; margin-bottom: 18px; }
.policy-card { background: #fff; border: 2px solid var(--line); border-radius: 18px; padding: clamp(18px, 4vw, 32px); box-shadow: var(--shadow); }
.policy-card h2 { color: var(--red); margin: 20px 0 8px; font-size: 1.3rem; }
.policy-card h2:first-child { margin-top: 0; }
.policy-card p, .policy-card li { color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.policy-card ul { margin-left: 20px; }
.policy-card a { color: var(--blue); font-weight: 950; }
.policy-note { margin-top: 18px; padding: 14px; background: #fff8d4; border: 2px solid #ffe16a; border-radius: 12px; font-weight: 900; }

.about-page { overflow: hidden; }
.about-profile {
  padding: 44px 16px 28px;
}
.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
  gap: 22px;
  align-items: stretch;
}
.about-kicker {
  display: inline-flex;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 8px;
}
.about-story-card {
  background: rgba(255,255,255,.82);
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.about-story-card h1 {
  color: var(--blue);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.06;
  font-weight: 950;
  max-width: 760px;
}
.about-story-card p,
.about-long-copy {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 800;
  margin-top: 14px;
  max-width: 720px;
}
.about-story-card .about-actions { margin-top: 22px; }
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-identity-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(6,28,134,.94), rgba(7,20,95,.98)),
    radial-gradient(circle at 20% 10%, rgba(255,225,0,.3), transparent 32%);
  color: #fff;
  border: 3px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.about-logo-frame {
  width: min(185px, 72%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0,0,0,.2);
}
.about-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.about-identity-panel strong {
  color: var(--yellow);
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  font-weight: 950;
}
.about-identity-panel p {
  text-align: center;
  font-weight: 850;
  opacity: .9;
  margin-top: 8px;
}
.about-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.about-mini-list span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 850;
}
.about-info-band {
  padding-top: 34px;
}
.about-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}
.about-info-grid .section-title {
  text-align: left;
}
.about-facts-grid {
  display: grid;
  gap: 12px;
}
.about-facts-grid article {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(6,28,134,.07);
}
.about-facts-grid span {
  display: block;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 4px;
}
.about-facts-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.05rem;
  line-height: 1.35;
}
.about-band {
  padding: 50px 16px;
}
.about-process-band {
  background: rgba(255,255,255,.36);
}
.about-process-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
}
.about-process-layout .section-title {
  text-align: left;
}
.about-commitment-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}
.about-commitment-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-weight: 800;
}
.about-commitment-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 0 4px rgba(255,225,0,.22);
}
.about-highlight-grid,
.about-process-grid,
.about-team-grid {
  display: grid;
  gap: 16px;
}
.about-highlight-grid,
.about-process-grid {
  grid-template-columns: repeat(3, 1fr);
}
.about-team-grid {
  grid-template-columns: repeat(3, 1fr);
}
.about-highlight-card,
.about-process-card,
.about-team-card {
  background: rgba(255,255,255,.82);
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(6,28,134,.08);
}
.about-highlight-card span,
.about-process-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--blue);
  font-weight: 950;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.about-highlight-card span svg,
.about-process-card span svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-highlight-card span svg path:first-child:last-child,
.about-process-card span svg path:first-child:last-child {
  fill: currentColor;
  stroke: none;
}
.about-highlight-card h3,
.about-process-card h3,
.about-team-card h3 {
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 6px;
}
.about-highlight-card p,
.about-process-card p,
.about-team-card p {
  color: var(--muted);
  font-weight: 750;
}
.about-team-card {
  text-align: center;
}
.about-team-photo {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 3px solid rgba(6,28,134,.18);
  background: #fff;
  overflow: hidden;
}
.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  display: block;
}
.about-team-photo.is-logo img {
  object-fit: contain;
  padding: 16px;
}
.about-contact-strip {
  padding: 0 16px 54px;
}
.about-contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, var(--blue), #07145f);
  color: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 3px solid rgba(255,255,255,.76);
  box-shadow: var(--shadow);
}
.about-contact-inner strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 950;
}
.about-contact-inner p {
  opacity: .86;
  font-weight: 800;
  margin-top: 4px;
}
.about-simple {
  background: linear-gradient(180deg, #eef5ff 0%, #f8fbff 52%, #eef5ff 100%);
}
.about-simple-hero {
  padding: 46px 16px 28px;
}
.about-simple-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  align-items: center;
  background: rgba(255,255,255,.88);
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 14px 34px rgba(6,28,134,.08);
}
.about-simple-hero h1 {
  color: var(--blue);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 8px 0 16px;
}
.about-simple-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 800;
  line-height: 1.65;
  max-width: 880px;
  margin-bottom: 10px;
}
.about-simple-logo {
  width: 210px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: 0 12px 26px rgba(6,28,134,.1);
  overflow: hidden;
}
.about-simple-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.about-simple-section {
  padding: 28px 16px;
}
.about-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-product-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: inherit;
  box-shadow: 0 10px 24px rgba(6,28,134,.08);
}
.about-product-card strong {
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 950;
}
.about-product-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}
.about-product-card:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  transition: transform .2s ease, border-color .2s ease;
}
.about-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.about-simple-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(6,28,134,.07);
}
.about-simple-card h2 {
  color: var(--blue);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 16px;
}
.about-simple-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
}
.about-simple-card li {
  position: relative;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.45;
  padding-left: 28px;
}
.about-simple-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,225,0,.24);
}
.about-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-step-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(6,28,134,.07);
}
.about-step-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--blue);
  font-weight: 950;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.about-step-card h3 {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.about-step-card p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}
.about-clean-info {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(6,28,134,.07);
}
.about-clean-info h2 {
  color: var(--blue);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.about-clean-info p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}
.about-clean-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.about-clean-facts article {
  background: #f4f8ff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.about-clean-facts span {
  display: block;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 4px;
}
.about-clean-facts strong {
  display: block;
  color: var(--blue);
  font-weight: 900;
  line-height: 1.35;
}

.services-page { overflow: hidden; }
.services-hero {
  padding: 42px 16px 34px;
  position: relative;
}
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,225,0,.26), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(232,242,255,.36));
  pointer-events: none;
}
.services-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  min-height: 380px;
}
.services-kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 8px;
}
.services-hero h1 {
  color: var(--blue);
  font-size: clamp(2.2rem, 5.4vw, 4.35rem);
  line-height: 1.05;
  font-weight: 950;
  max-width: 760px;
}
.services-hero p {
  color: var(--muted);
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  max-width: 650px;
  margin: 14px 0 22px;
}
.services-actions,
.services-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.services-hero-media {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid rgba(6,28,134,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.42);
}
.services-hero-media::before {
  content: none;
}
.services-hero-computer {
  position: relative;
  width: min(500px, 90%);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(6,28,134,.2));
}
.services-hero-logo {
  position: absolute;
  right: 18px;
  top: 18px;
  width: clamp(70px, 10vw, 112px);
  filter: drop-shadow(0 12px 18px rgba(6,28,134,.28));
}
.services-band {
  padding: 50px 16px;
}
.services-print-band {
  background: rgba(255,255,255,.38);
}
.services-product-band {
  padding-top: 46px;
}
.services-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.services-product-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6,28,134,.08);
}
.services-product-media {
  height: 140px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.services-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.services-product-price {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff8d4;
  color: var(--red);
  font-size: .8rem;
  font-weight: 950;
  margin-bottom: 8px;
}
.services-product-card h3 {
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 6px;
}
.services-product-card p {
  color: var(--muted);
  font-weight: 800;
}
.services-product-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 950;
  border-bottom: 2px solid var(--yellow);
}
.services-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.services-feature-card,
.services-poster-card,
.services-digital-card {
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 24px rgba(6,28,134,.08);
}
.services-feature-card {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
}
.services-card-media {
  width: 98px;
  aspect-ratio: 1.18;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}
.services-card-media img,
.services-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.services-feature-card h3,
.services-poster-card h3,
.services-digital-card h3 {
  color: var(--red);
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: 4px;
}
.services-feature-card p,
.services-poster-card p,
.services-digital-card p {
  color: var(--muted);
  font-weight: 750;
}
.services-poster-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.services-poster-card {
  text-align: center;
  padding: 14px;
}
.services-poster-card span {
  width: 100%;
  aspect-ratio: 1.18;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: transparent;
  margin-bottom: 10px;
}
.services-digital-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.services-digital-card {
  padding: 20px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.services-digital-icon {
  width: 116px;
  height: 88px;
  display: grid;
  place-items: center;
  background: transparent;
  margin-bottom: 14px;
}
.services-digital-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(6,28,134,.14));
}
.services-digital-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 950;
  border-bottom: 2px solid var(--yellow);
}
.services-contact-strip {
  padding: 0 16px 54px;
}
.services-contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, var(--blue), #07145f);
  color: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 3px solid rgba(255,255,255,.76);
  box-shadow: var(--shadow);
}
.services-contact-inner strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 950;
}
.services-contact-inner p {
  opacity: .86;
  font-weight: 800;
  margin-top: 4px;
}

.site-footer { background: #06145d; color: #fff; padding: 42px 16px 24px; }
.footer-grid { width: min(1240px, 100%); margin: 0 auto 24px; display: grid; grid-template-columns: 1.35fr .9fr .95fr .9fr 1.1fr 1.05fr; gap: 22px; }
.footer-grid p { opacity: .82; margin-top: 12px; font-weight: 700; }
.footer-grid h4 { color: var(--yellow); margin-bottom: 12px; }
.footer-grid a, .footer-grid span { display: block; opacity: .86; margin: 8px 0; font-weight: 700; }
.footer-social { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.footer-grid .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  opacity: 1;
  font-size: .82rem;
  line-height: 1;
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }
.footer-social span { display: inline; margin: 0; opacity: 1; font-weight: 900; }
.footer-social a:hover { background: var(--yellow); color: var(--blue); border-color: var(--yellow); }
.footer-payment-col { min-width: 0; }
.footer-payments { display: flex; align-items: center; justify-content: flex-start; gap: 6px; flex-wrap: wrap; }
.footer-payments strong { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 27px; margin: 0; border-radius: 4px; background: #fff; color: #111; border: 1px solid rgba(255,255,255,.72); box-shadow: 0 5px 12px rgba(0,0,0,.12); font-family: Arial,sans-serif; font-size: .66rem; font-weight: 900; line-height: 1; opacity: 1; }
.footer-payments .pay-visa { color: #1434cb; font-style: italic; letter-spacing: .02em; }
.footer-payments .pay-master { gap: 0; }
.footer-payments .pay-master span { display: block; width: 15px; height: 15px; margin: 0 -2px; border-radius: 50%; opacity: 1; }
.footer-payments .pay-master span:first-child { background: #eb001b; }
.footer-payments .pay-master span:last-child { background: #f79e1b; }
.footer-payments .pay-amex { background: #1f72cd; color: #fff; font-size: .58rem; }
.footer-payments .pay-rupay { color: #174a9c; font-style: italic; }
.footer-payments .pay-rupay::after { content: ""; width: 0; height: 0; margin-left: 3px; border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-left: 7px solid #f58220; }
.footer-payments .pay-upi { width: 58px; gap: 3px; color: #2f333a; font-size: .98rem; font-style: italic; letter-spacing: -.08em; }
.footer-payments .pay-upi span { position: relative; display: inline-block; width: 16px; height: 20px; margin: 0 0 0 2px; opacity: 1; flex: 0 0 auto; }
.footer-payments .pay-upi span::before,
.footer-payments .pay-upi span::after { content: ""; position: absolute; top: 2px; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; }
.footer-payments .pay-upi span::before { left: 0; border-left: 11px solid #f58220; }
.footer-payments .pay-upi span::after { left: 5px; border-left: 11px solid #087b57; }
.footer-bottom { width: min(1160px, 100%); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.18); padding-top: 16px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; opacity: .82; font-weight: 800; }
.footer-bottom a { color: var(--yellow); font-weight: 950; opacity: 1; }
.footer-bottom a:hover { text-decoration: underline; }
.site-footer { font-size: .9rem; }
.footer-brand strong { font-size: 1rem; }
.footer-brand small { font-size: .72rem; }
.footer-grid p { font-size: .9rem; line-height: 1.5; }
.footer-grid h4 { font-size: .98rem; }
.footer-grid a, .footer-grid span { font-size: .9rem; line-height: 1.35; }
.footer-bottom { font-size: .88rem; }
.floating-actions {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 900;
  width: 60px;
  height: 60px;
}
.fab-actions {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.floating-actions .fab-action {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  border: 2px solid rgba(255,255,255,.92);
  box-shadow: 0 14px 30px rgba(6,28,134,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.78);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.floating-actions .fab-action:nth-child(1) { transition-delay: .04s; }
.floating-actions .fab-action:nth-child(2) { transition-delay: 0s; }
.fab-icon {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  border: 0;
  flex: 0 0 auto;
}
.fab-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.fab-call { background: linear-gradient(180deg, var(--red), #b90000); }
.fab-chat { background: linear-gradient(180deg, #18b64e, #0c8e35); }
.floating-actions .fab-main {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  max-width: 58px;
  max-height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.14), var(--shadow);
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.fab-main-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  transition: transform .2s ease;
}
.fab-main-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
}
.floating-actions.open .fab-actions { pointer-events: auto; }
.floating-actions.open .fab-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.floating-actions.open .fab-action:nth-child(1) { transition-delay: .03s; }
.floating-actions.open .fab-action:nth-child(2) { transition-delay: .08s; }
.floating-actions.open .fab-main-icon { transform: scale(.92); }
@media (max-width: 620px) {
  .floating-actions {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 62px;
    height: 62px;
  }
  .floating-actions .fab-action {
    width: 58px;
    height: 58px;
  }
  .floating-actions .fab-main {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }
}

/* Offline services poster */
.fk-offline-poster {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  border: 5px solid #061c86;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.84)),
    url("../assets/fastkaam-hero-banner-v2.png") center / cover no-repeat;
  box-shadow: 0 18px 38px rgba(6,28,134,.14);
}

.fk-offline-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fk-offline-panel {
  overflow: hidden;
  border: 4px solid #061c86;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
}

.fk-offline-panel.print {
  border-color: #e00000;
}

.fk-offline-panel h3 {
  padding: 12px 16px;
  color: #fff;
  text-align: center;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  font-weight: 950;
  background: #061c86;
}

.fk-offline-panel.print h3 {
  background: #e00000;
}

.fk-offline-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  padding: 16px 18px;
}

.fk-offline-list a {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 78px;
  padding: 8px 0;
  border-bottom: 1px dashed #b7c7ef;
  min-width: 0;
}

.fk-offline-list img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  border: 1px solid #c8d8ff;
  border-radius: 12px;
  background: #fff;
}

.fk-offline-list strong {
  display: block;
  color: #061c86;
  font-size: clamp(.86rem, .95vw, .96rem);
  line-height: 1.15;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fk-offline-panel.print .fk-offline-list strong {
  color: #e00000;
}

.fk-offline-list small {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-weight: 850;
  font-size: .68rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fk-offline-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
  margin: 18px 0;
  padding: 12px 22px;
  border-radius: 14px;
  background: #061c86;
  color: #fff;
}

.fk-offline-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  font-size: .92rem;
  font-weight: 950;
}

.fk-offline-trust i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffdf08, #ff9800);
  color: #e00000;
  border: 2px solid rgba(255,255,255,.8);
  font-style: normal;
}

.fk-offline-trust svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fk-offline-strip {
  display: block;
  overflow: hidden;
  padding: 14px;
  border: 2px solid #c8d8ff;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
}

.fk-offline-strip-track {
  display: flex;
  width: max-content;
  gap: 26px;
  animation: offlineServiceScroll 46s linear infinite;
}

.fk-offline-strip:hover .fk-offline-strip-track,
.fk-offline-strip:focus-within .fk-offline-strip-track {
  animation-play-state: paused;
}

.fk-offline-strip a {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  flex: 0 0 150px;
  min-height: 118px;
  color: #061c86;
  text-align: center;
  font-size: .88rem;
  font-weight: 950;
}

.fk-offline-strip img {
  width: 104px;
  height: 78px;
  object-fit: cover;
  border: 3px solid #d8e4ff;
  border-radius: 50%;
  background: #fff;
}

@keyframes offlineServiceScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 13px)); }
}

.fk-offline-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #061c86;
  color: #fff;
  font-size: clamp(.94rem, 1.55vw, 1.12rem);
  font-weight: 950;
}

.fk-offline-bottom span {
  flex: 0 0 auto;
  padding: 8px 22px;
  border-radius: 999px;
  background: #ffe100;
  color: #d90000;
}

@media (max-width: 1100px) {
  .fk-offline-panels {
    grid-template-columns: 1fr;
  }

  .fk-offline-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .fk-offline-strip-track { gap: 18px; }
  .fk-offline-strip a { flex-basis: 132px; }
}

@media (max-width: 620px) {
  .fk-offline-poster {
    padding: 12px;
    border-width: 3px;
    border-radius: 18px;
  }

  .fk-offline-list {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .fk-offline-list a {
    grid-template-columns: 74px 1fr;
  }

  .fk-offline-list img {
    width: 74px;
    height: 56px;
  }

  .fk-offline-list strong,
  .fk-offline-list small {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .fk-offline-trust {
    grid-template-columns: 1fr 1fr;
  }

  .fk-offline-strip {
    padding: 10px;
  }

  .fk-offline-strip-track {
    gap: 14px;
    animation-duration: 38s;
  }

  .fk-offline-strip a {
    flex-basis: 112px;
    min-height: 104px;
    font-size: .76rem;
  }

  .fk-offline-strip img {
    width: 84px;
    height: 64px;
  }

  .fk-offline-trust span {
    justify-content: flex-start;
    font-size: .82rem;
  }

  .fk-offline-bottom {
    display: grid;
    text-align: center;
  }

  .fk-offline-bottom span {
    justify-self: center;
    white-space: normal;
  }
}

/* Final step-card formatting override */
.home-page .fk-steps-grid article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px 22px;
  align-items: center;
  min-height: 280px;
  padding: 34px 28px 30px;
  border: 3px solid #d3ddef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(6,28,134,.08);
}

.home-page .fk-steps-grid article::after {
  content: none !important;
}

.home-page .fk-steps-grid strong {
  width: 110px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffdf08, #ff9800);
  color: #d90000;
  border: 3px solid #eef2fb;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,.12), 0 2px 0 #c9d3e7;
}

.home-page .fk-steps-grid strong svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .fk-steps-grid h3 {
  min-width: 0;
  margin: 0;
  color: #d90000;
  font-size: clamp(1.25rem, 1.75vw, 1.7rem);
  line-height: 1.2;
  font-weight: 950;
}

.home-page .fk-steps-grid p {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  color: #526079;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.45;
  font-weight: 900;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 620px) {
  .home-page .fk-steps-grid article {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 0;
    padding: 22px;
    border-radius: 18px;
  }

  .home-page .fk-steps-grid strong {
    width: 78px;
    height: 62px;
    border-radius: 14px;
  }

  .home-page .fk-steps-grid strong svg {
    width: 32px;
    height: 32px;
  }
}

/* Compact horizontal step process */
.home-page .fk-steps-section {
  padding: 18px 16px 24px;
  background: #fff;
}

.home-page .fk-steps-section .section-title {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
}

.home-page .fk-steps-grid {
  counter-reset: processStep;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-page .fk-steps-grid article {
  counter-increment: processStep;
  position: relative;
  display: grid;
  grid-template-columns: 34px 34px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 68px;
  padding: 10px 12px;
  border: 2px solid #d9e5ff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(6,28,134,.05);
}

.home-page .fk-steps-grid article::before {
  content: counter(processStep);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #061c86;
  color: #fff;
  font-size: .95rem;
  font-weight: 950;
}

.home-page .fk-steps-grid article:not(:last-child)::after {
  content: "→" !important;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: #061c86;
  font-size: 1.1rem;
  font-weight: 950;
}

.home-page .fk-steps-grid strong {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #061c86;
  box-shadow: none;
}

.home-page .fk-steps-grid strong svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .fk-steps-grid h3 {
  grid-column: 3;
  margin: 0;
  color: #061c86;
  font-size: .86rem;
  line-height: 1.15;
  font-weight: 950;
}

.home-page .fk-steps-grid p {
  grid-column: 3;
  margin: -2px 0 0;
  color: #33415f;
  font-size: .68rem;
  line-height: 1.2;
  font-weight: 850;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 1100px) {
  .home-page .fk-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .fk-steps-grid article:nth-child(2)::after {
    content: none !important;
  }
}

@media (max-width: 620px) {
  .home-page .fk-steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .fk-steps-grid article {
    grid-template-columns: 34px 34px minmax(0, 1fr);
    min-height: 66px;
    padding: 10px;
  }

  .home-page .fk-steps-grid article::after {
    content: none !important;
  }
}

/* Final global navbar override for all pages */
.top-strip { display: none !important; }
.site-nav {
  top: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 72px;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 10px max(16px, calc((100vw - 1200px) / 2)) !important;
  background: linear-gradient(90deg, #06156f, #082bb3, #06156f) !important;
}
.site-nav.scrolled { top: 0 !important; border-radius: 0 !important; }
.brand-mark { width: 48px; height: 48px; border-radius: 10px; }
.nav-links a { border-radius: 8px; font-size: .94rem; }
.nav-links a:hover,
.nav-links a.active { background: #ffc400; color: #07145f; }
.site-nav .order-cta { min-height: 42px; padding: 10px 18px; border-radius: 10px; }

@media (max-width: 620px) {
  .site-nav {
    min-height: 64px !important;
    padding: 10px 12px !important;
    border-radius: 0 0 18px 18px !important;
  }
  .site-nav.scrolled { border-radius: 0 0 18px 18px !important; }
  .brand { display: flex !important; }
  .brand small { display: none !important; }
  .site-nav .order-cta { display: none !important; }
  .mobile-nav { inset: 74px 10px auto !important; }
}

/* Final mobile layout fixes */
.home-page #price {
  position: relative !important;
  z-index: 3 !important;
  margin-top: -28px !important;
  border-radius: 34px 34px 0 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 -10px 28px rgba(6,28,134,.08) !important;
}

@media (max-width: 620px) {
  .home-page #price {
    margin-top: -18px !important;
    border-radius: 22px 22px 0 0 !important;
  }

  .home-page .fk-hero-visual {
    display: grid !important;
    place-items: center !important;
    justify-items: center !important;
    min-height: 320px !important;
    overflow: hidden !important;
    padding-inline: 0 !important;
  }

  .home-page .fk-hero-art {
    width: 128% !important;
    max-width: none !important;
    margin-inline: auto !important;
    transform: translateX(-10%) !important;
    object-position: center !important;
  }

  .home-page .fk-shop-img {
    height: 168px !important;
    padding: 10px !important;
    overflow: hidden !important;
  }

  .home-page .fk-shop-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0 !important;
  }
}


/* Final services dropdown + mobile hero/product fixes */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .94rem;
  font-weight: 800;
  cursor: pointer;
}

.nav-drop-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown:hover .nav-drop-trigger,
.nav-dropdown:focus-within .nav-drop-trigger,
.nav-dropdown.active .nav-drop-trigger {
  background: #ffc400;
  color: #07145f;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1200;
  min-width: 230px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 2px solid #c8d8ff;
  border-radius: 12px;
  background: #fff;
  color: #061c86;
  box-shadow: 0 18px 38px rgba(6,28,134,.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 10px 12px !important;
  border-radius: 8px !important;
  color: #061c86 !important;
  white-space: nowrap;
}

.nav-drop-menu a:hover,
.nav-drop-menu a.active {
  background: #ffc400 !important;
  color: #07145f !important;
}

.mobile-nav-label {
  padding: 13px 14px 6px;
  color: #061c86;
  font-weight: 950;
}

.placeholder-page {
  min-height: 52vh;
}

@media (max-width: 980px) {
  .nav-dropdown {
    display: none;
  }
}

@media (max-width: 620px) {
  .home-page .fk-hero-visual {
    display: grid !important;
    place-items: center !important;
    justify-items: center !important;
    overflow: hidden !important;
  }

  .home-page .fk-hero-art {
    width: 128% !important;
    max-width: none !important;
    margin-inline: auto !important;
    transform: translateX(-10%) !important;
    object-position: center !important;
  }
}
/* Final homepage polish */
.fk-offline-panel h3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  line-height: 1.22 !important;
}
.fk-offline-list a {
  grid-template-columns: 70px minmax(0, 1fr) !important;
  min-height: 72px !important;
  gap: 9px !important;
}
.fk-offline-list img {
  width: 70px !important;
  height: 52px !important;
}
.fk-offline-list strong {
  font-size: .9rem !important;
  line-height: 1.35 !important;
  padding-top: 2px !important;
}
.fk-offline-list small {
  font-size: .66rem !important;
  line-height: 1.35 !important;
}
#contact {
  padding: 28px 16px 34px !important;
  background: #eef5ff !important;
}
#contact .section-title {
  margin-bottom: 18px !important;
}
.fk-contact-box {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  align-items: stretch !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
.fk-contact-box .contact-card {
  background: #fff !important;
  border: 2px solid #c7d6f7 !important;
  border-radius: 18px !important;
  padding: 24px !important;
  box-shadow: 0 14px 32px rgba(6,28,134,.08) !important;
}
.fk-contact-info h3,
.fk-contact-form h3 {
  font-size: 1.55rem !important;
  line-height: 1.2 !important;
  margin-bottom: 12px !important;
}
.fk-contact-info p,
.fk-contact-info a {
  font-size: 1rem !important;
  line-height: 1.45 !important;
}
.fk-contact-map {
  margin-top: 16px !important;
  border: 2px solid #061c86 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}
.fk-contact-map iframe {
  width: 100% !important;
  height: 260px !important;
  border-radius: 0 !important;
}
.fk-contact-form .simple-form {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}
.fk-contact-form .simple-form input,
.fk-contact-form .simple-form select,
.fk-contact-form .simple-form textarea {
  min-height: 58px !important;
  border-radius: 12px !important;
  padding: 13px 16px !important;
  background: #f8fbff !important;
}
.fk-contact-form .simple-form textarea {
  min-height: 110px !important;
}
.fk-contact-form .btn-red {
  min-height: 58px !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg,#f10a0a,#c60000) !important;
}
.fk-shop-card ul {
  min-height: 88px !important;
}
@media (max-width: 980px) {
  .fk-contact-box {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 620px) {
  .fk-offline-list {
    gap: 0 10px !important;
  }
  .fk-offline-list a {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    min-height: 66px !important;
  }
  .fk-offline-list img {
    width: 58px !important;
    height: 44px !important;
  }
  .fk-offline-list strong {
    font-size: .78rem !important;
  }
  .fk-offline-list small {
    font-size: .6rem !important;
  }
  .fk-contact-box .contact-card {
    padding: 20px !important;
  }
}

/* Dark 3D homepage hero */
.home-page .fk-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 540px !important;
  padding: 0 16px 24px !important;
  background:
    radial-gradient(circle at 78% 55%, rgba(125,40,255,.35) 0 8%, transparent 30%),
    radial-gradient(circle at 49% 89%, rgba(0,184,255,.26) 0 4%, transparent 28%),
    linear-gradient(115deg, #020823 0%, #061064 45%, #07062e 70%, #18002e 100%) !important;
  color: #fff !important;
}
.home-page .fk-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 90% 15%, rgba(113,225,255,.65) 0 1.4px, transparent 1.8px) 0 0 / 16px 16px,
    repeating-linear-gradient(132deg, transparent 0 18px, rgba(125,63,255,.22) 18px 20px, transparent 20px 34px) !important;
  opacity: .36 !important;
  pointer-events: none !important;
}
.home-page .fk-hero::after {
  content: "" !important;
  position: absolute !important;
  right: -10%;
  bottom: -30%;
  width: 70%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, transparent 39%, rgba(94,91,255,.42) 40%, transparent 41%, transparent 47%, rgba(51,180,255,.26) 48%, transparent 49%) !important;
  transform: rotate(-14deg);
  pointer-events: none;
}
.home-page .fk-hero-grid {
  position: relative !important;
  z-index: 1 !important;
  width: min(1200px, 100%) !important;
  min-height: 500px !important;
  display: grid !important;
  grid-template-columns: .92fr 1.08fr !important;
  align-items: center !important;
  gap: 28px !important;
}
.home-page .fk-hero-copy {
  max-width: 560px !important;
}
.home-page .fk-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 8px 18px !important;
  border: 1px solid rgba(120,160,255,.36) !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(60,86,255,.42), rgba(120,34,190,.24)) !important;
  color: #fff !important;
  box-shadow: 0 0 26px rgba(61,118,255,.28) !important;
}
.home-page .fk-badge::before {
  content: "⚡";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #172782;
  color: #ffd200;
}
.home-page .fk-hero h1 {
  margin: 22px 0 10px !important;
  color: #fff !important;
  font-size: clamp(3.1rem, 6.25vw, 6.05rem) !important;
  line-height: .92 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 14px 40px rgba(0,0,0,.42) !important;
}
.home-page .fk-hero h1 span {
  display: inline !important;
  color: transparent !important;
  background: linear-gradient(92deg, #42d8ff 0%, #5ea9ff 42%, #9878ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
.home-page .fk-hero p {
  color: rgba(255,255,255,.88) !important;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem) !important;
  font-weight: 800 !important;
}
.home-page .fk-hero-points {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px 26px !important;
  margin: 28px 0 !important;
}
.home-page .fk-hero-points span {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: rgba(255,255,255,.9) !important;
  font-size: .93rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}
.home-page .fk-hero-points span::before {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at center, rgba(61,217,255,.98) 0 3px, transparent 4px),
    linear-gradient(145deg, rgba(74,107,255,.92), rgba(20,39,120,.92)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2), 0 0 18px rgba(76,197,255,.24) !important;
}
.home-page .fk-actions {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}
.home-page .fk-actions .order-cta {
  min-height: 54px !important;
  padding: 14px 24px !important;
  border-radius: 11px !important;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.18), 0 12px 28px rgba(255,189,0,.3) !important;
}
.home-page .fk-outline-btn {
  min-height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 13px 22px !important;
  border: 2px solid rgba(255,255,255,.45) !important;
  border-radius: 11px !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  font-weight: 950 !important;
  box-shadow: inset 0 0 0 1px rgba(75,191,255,.16) !important;
}
.home-page .fk-outline-btn::after {
  content: "▶";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #07145f;
  font-size: .75rem;
}
.home-page .fk-hero-visual {
  position: relative !important;
  min-height: 500px !important;
  display: block !important;
  perspective: 1200px !important;
  isolation: isolate !important;
}
.home-page .fk-stage {
  position: absolute;
  left: 21%;
  right: 9%;
  bottom: 44px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(79,231,255,.45) 0 4%, rgba(44,38,170,.62) 32%, rgba(23,12,82,.96) 55%, transparent 70%);
  border: 2px solid rgba(101,210,255,.56);
  box-shadow: 0 0 34px rgba(55,177,255,.45), inset 0 0 36px rgba(130,58,255,.5);
  transform: rotateX(64deg);
  z-index: 1;
}
.home-page .fk-stage span {
  position: absolute;
  inset: 22px 45px;
  border: 3px solid rgba(73,224,255,.85);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(54,218,255,.8);
}
.home-page .fk-phone-3d {
  position: absolute;
  left: 31%;
  bottom: 96px;
  width: min(250px, 38vw);
  z-index: 5;
  transform: rotate(-6deg) skewY(-1deg);
  filter: drop-shadow(0 34px 34px rgba(0,0,0,.5));
}
.home-page .fk-phone {
  width: 100% !important;
  max-height: none !important;
  display: block !important;
  transform: none !important;
  border-radius: 34px !important;
}
.home-page .fk-phone-glare {
  position: absolute;
  inset: 8% 8% auto auto;
  width: 38%;
  height: 54%;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255,255,255,.28), transparent 65%);
  transform: rotate(18deg);
  z-index: 2;
  pointer-events: none;
}
.home-page .fk-nfc-card {
  position: absolute;
  right: 16%;
  top: 84px;
  width: 160px;
  height: 220px;
  z-index: 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 2px solid rgba(131,115,255,.78);
  border-radius: 16px;
  background: linear-gradient(145deg, #1e67ff, #151698 62%, #4a1fb5);
  color: #fff;
  box-shadow: 0 28px 42px rgba(0,0,0,.38), inset 0 0 32px rgba(71,215,255,.2);
  transform: rotate(10deg) skewY(-3deg);
}
.home-page .fk-nfc-card::after {
  content: "";
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 4px solid #48eaff;
  box-shadow: 0 0 24px #44dfff, inset 0 0 20px rgba(68,223,255,.6);
}
.home-page .fk-nfc-card b {
  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: .02em;
}
.home-page .fk-wifi-mark {
  position: relative;
  width: 58px;
  height: 40px;
}
.home-page .fk-wifi-mark i {
  position: absolute;
  left: 50%;
  bottom: 0;
  border: 4px solid #fff;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 60px 60px 0 0;
  transform: translateX(-50%);
}
.home-page .fk-wifi-mark i:nth-child(1) { width: 54px; height: 34px; opacity: .96; }
.home-page .fk-wifi-mark i:nth-child(2) { width: 36px; height: 23px; opacity: .88; }
.home-page .fk-wifi-mark i:nth-child(3) { width: 16px; height: 10px; border-width: 5px; opacity: .82; }
.home-page .fk-qr-card {
  position: absolute;
  right: 11%;
  bottom: 92px;
  width: 150px;
  z-index: 6;
  padding: 10px 10px 13px;
  border-radius: 12px;
  background: #fff;
  color: #06145d;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 22px 34px rgba(0,0,0,.36);
  transform: rotate(4deg);
}
.home-page .fk-qr-card img {
  width: 100%;
  height: auto;
  display: block;
}
.home-page .fk-qr-card small {
  display: block;
  margin-top: 4px;
  font-size: .68rem;
}
.home-page .fk-hero-note {
  position: absolute;
  z-index: 7;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 10px;
  align-items: center;
  min-width: 160px;
  padding: 10px 12px;
  border: 1px solid rgba(143,121,255,.62);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(84,50,180,.85), rgba(40,23,103,.88));
  box-shadow: 0 14px 28px rgba(0,0,0,.28), inset 0 0 18px rgba(125,91,255,.2);
}
.home-page .fk-hero-note svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
}
.home-page .fk-hero-note b {
  color: #fff;
  font-size: .78rem;
  line-height: 1;
}
.home-page .fk-hero-note small {
  color: rgba(255,255,255,.78);
  font-size: .67rem;
  font-weight: 800;
}
.home-page .fk-note-secure {
  left: 8%;
  top: 105px;
}
.home-page .fk-note-tap {
  left: 9%;
  top: 188px;
}
.home-page .fk-trusted-badge {
  position: absolute;
  right: -2px;
  top: 162px;
  z-index: 3;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: #ffd66b;
  text-align: center;
  background:
    radial-gradient(circle, rgba(23,12,82,.9) 0 56%, transparent 58%),
    conic-gradient(from 20deg, transparent 0 9%, #ffd66b 9% 13%, transparent 13% 20%, #ffd66b 20% 24%, transparent 24% 100%);
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.35));
}
.home-page .fk-trusted-badge span,
.home-page .fk-trusted-badge small {
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 850;
}
.home-page .fk-trusted-badge strong {
  color: #ffd200;
  font-size: 1.45rem;
  line-height: 1;
}
.home-page .fk-orbit {
  position: absolute;
  border: 1px solid rgba(94,218,255,.22);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-16deg);
  z-index: 0;
}
.home-page .fk-orbit-one {
  right: 3%;
  bottom: 12px;
  width: 450px;
  height: 180px;
}
.home-page .fk-orbit-two {
  right: -5%;
  bottom: 70px;
  width: 560px;
  height: 240px;
}
@media (max-width: 980px) {
  .home-page .fk-hero-grid {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding-top: 34px !important;
  }
  .home-page .fk-hero-copy {
    max-width: 100% !important;
  }
  .home-page .fk-hero-visual {
    min-height: 470px !important;
  }
  .home-page .fk-phone-3d {
    left: 24%;
    width: min(230px, 42vw);
  }
}
@media (max-width: 620px) {
  .home-page .fk-hero {
    min-height: 0 !important;
    padding: 30px 12px 22px !important;
  }
  .home-page .fk-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem) !important;
  }
  .home-page .fk-hero-points {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .home-page .fk-actions > * {
    width: 100% !important;
  }
  .home-page .fk-hero-visual {
    min-height: 410px !important;
    margin-top: 10px !important;
  }
  .home-page .fk-phone-3d {
    left: 22%;
    bottom: 92px;
    width: 44%;
    min-width: 150px;
  }
  .home-page .fk-nfc-card {
    right: 7%;
    top: 76px;
    width: 112px;
    height: 160px;
  }
  .home-page .fk-nfc-card b {
    font-size: 1.45rem;
  }
  .home-page .fk-qr-card {
    right: 6%;
    bottom: 80px;
    width: 104px;
  }
  .home-page .fk-hero-note {
    min-width: 132px;
    padding: 8px 9px;
    grid-template-columns: 30px 1fr;
  }
  .home-page .fk-hero-note svg {
    width: 28px;
    height: 28px;
    padding: 6px;
  }
  .home-page .fk-hero-note b {
    font-size: .66rem;
  }
  .home-page .fk-hero-note small {
    font-size: .57rem;
  }
  .home-page .fk-note-secure {
    left: 0;
    top: 18px;
  }
  .home-page .fk-note-tap {
    left: 0;
    top: 82px;
  }
  .home-page .fk-trusted-badge {
    right: 0;
    top: 244px;
    width: 92px;
    height: 92px;
  }
  .home-page .fk-trusted-badge strong {
    font-size: 1rem;
  }
  .home-page .fk-trusted-badge span,
  .home-page .fk-trusted-badge small {
    font-size: .55rem;
  }
  .home-page .fk-stage {
    left: 8%;
    right: 4%;
    bottom: 42px;
  }
}

/* Fresh hero artwork + feature icon row */
.home-page .fk-hero-visual {
  min-height: 500px !important;
  display: grid !important;
  place-items: center !important;
}
.home-page .fk-hero-art {
  width: min(760px, 116%) !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  transform: translateX(24px) !important;
  filter: drop-shadow(0 30px 36px rgba(0,0,0,.34)) !important;
}
.home-page .fk-phone-3d,
.home-page .fk-nfc-card,
.home-page .fk-qr-card,
.home-page .fk-stage,
.home-page .fk-hero-note,
.home-page .fk-trusted-badge,
.home-page .fk-orbit {
  display: none !important;
}
.home-page .fk-hero-points span {
  display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
}
.home-page .fk-hero-points span::before {
  content: none !important;
}
.home-page .fk-hero-points i {
  width: 30px !important;
  height: 30px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: linear-gradient(145deg, #1737ae, #0b1d79) !important;
  border: 1px solid rgba(101,171,255,.45) !important;
  box-shadow: inset 0 0 12px rgba(96,188,255,.18), 0 0 18px rgba(47,127,255,.25) !important;
}
.home-page .fk-hero-points i svg {
  width: 17px !important;
  height: 17px !important;
  fill: none !important;
  stroke: #a9d8ff !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.home-page .fk-hero-points b {
  color: rgba(255,255,255,.92) !important;
  font-size: .93rem !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}
@media (max-width: 980px) {
  .home-page .fk-hero-art {
    width: min(740px, 100%) !important;
    transform: none !important;
  }
}
@media (max-width: 620px) {
  .home-page .fk-hero-visual {
    min-height: 310px !important;
  }
  .home-page .fk-hero-art {
    width: 122% !important;
    transform: translateX(2%) !important;
  }
}

/* Final hero proportion pass: match compact reference */
.home-page .fk-hero {
  min-height: 430px !important;
  padding: 0 16px 18px !important;
}
.home-page .fk-hero-grid {
  min-height: 410px !important;
  grid-template-columns: .87fr 1.13fr !important;
  gap: 18px !important;
}
.home-page .fk-hero-copy {
  max-width: 535px !important;
}
.home-page .fk-badge {
  padding: 6px 14px !important;
  font-size: .78rem !important;
}
.home-page .fk-badge::before {
  width: 22px !important;
  height: 22px !important;
}
.home-page .fk-hero h1 {
  margin: 16px 0 8px !important;
  font-size: clamp(3rem, 5.1vw, 4.65rem) !important;
  line-height: .93 !important;
}
.home-page .fk-hero p {
  font-size: clamp(1rem, 1.35vw, 1.18rem) !important;
  line-height: 1.32 !important;
}
.home-page .fk-hero-points {
  gap: 11px 24px !important;
  margin: 22px 0 20px !important;
}
.home-page .fk-hero-points span {
  grid-template-columns: 26px minmax(0, 1fr) !important;
  gap: 8px !important;
}
.home-page .fk-hero-points i {
  width: 26px !important;
  height: 26px !important;
}
.home-page .fk-hero-points i svg {
  width: 15px !important;
  height: 15px !important;
}
.home-page .fk-hero-points b {
  font-size: .78rem !important;
  line-height: 1.22 !important;
}
.home-page .fk-actions {
  gap: 12px !important;
}
.home-page .fk-actions .order-cta,
.home-page .fk-outline-btn {
  min-height: 45px !important;
  padding: 11px 18px !important;
  font-size: .86rem !important;
}
.home-page .fk-outline-btn::after {
  content: none !important;
  display: none !important;
}
.home-page .fk-hero-visual {
  min-height: 410px !important;
  overflow: visible !important;
}
.home-page .fk-hero-art {
  width: min(860px, 132%) !important;
  transform: translateX(-104px) translateY(4px) !important;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.32)) !important;
  pointer-events: none !important;
}

/* Center the reduced homepage product set after removing Digital Card */
.home-page .fk-product-grid {
  grid-template-columns: repeat(4, minmax(240px, 1fr)) !important;
  max-width: 1260px !important;
  margin-inline: auto !important;
  gap: 28px !important;
}

.home-page .fk-shop-card {
  min-height: 370px !important;
  padding: 18px !important;
}

.home-page .fk-shop-img {
  height: 108px !important;
}

.home-page .fk-shop-card ul {
  min-height: 100px !important;
}

.home-page .fk-shop-card .btn {
  margin-top: auto !important;
}

@media (max-width: 1180px) {
  .home-page .fk-product-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
    max-width: 760px !important;
  }
}

@media (max-width: 620px) {
  .home-page .fk-product-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 380px !important;
    gap: 18px !important;
  }
}
@media (max-width: 980px) {
  .home-page .fk-hero {
    min-height: 0 !important;
  }
  .home-page .fk-hero-grid {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }
  .home-page .fk-hero-art {
    width: min(760px, 100%) !important;
    transform: none !important;
  }
}
@media (max-width: 620px) {
  .home-page .fk-hero {
    padding: 26px 12px 16px !important;
  }
  .home-page .fk-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem) !important;
  }
  .home-page .fk-hero-visual {
    min-height: 280px !important;
  }
  .home-page .fk-hero-art {
    width: 116% !important;
    transform: translateX(3%) !important;
  }
}

/* Global navbar style aligned with homepage */
.top-strip {
  display: none;
}

.site-nav {
  top: 0;
  width: 100%;
  max-width: none;
  min-height: 72px;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 10px max(16px, calc((100vw - 1200px) / 2));
  background: linear-gradient(90deg, #06156f, #082bb3, #06156f);
}

.site-nav.scrolled {
  top: 0;
  border-radius: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.nav-links a {
  border-radius: 8px;
  font-size: .94rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: #ffc400;
  color: #07145f;
}

.site-nav .order-cta {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 10px;
}

@media (max-width: 620px) {
  .site-nav {
    top: 0;
    width: 100%;
    min-height: 64px;
    padding: 10px 12px;
    border: 0;
    border-radius: 0 0 18px 18px;
  }

  .site-nav.scrolled {
    top: 0;
    border-radius: 0 0 18px 18px;
  }

  .brand {
    display: flex;
  }

  .brand small {
    display: none;
  }

  .site-nav .order-cta {
    display: none;
  }

  .mobile-nav {
    inset: 74px 10px auto;
  }
}

/* Mobile-only marquee for offline trust bar */
.fk-offline-trust {
  display: block;
  overflow: hidden;
}

.fk-offline-trust-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
  width: 100%;
}

.fk-offline-trust-track .is-duplicate {
  display: none;
}

@media (max-width: 1100px) {
  .fk-offline-trust {
    grid-template-columns: none;
  }

  .fk-offline-trust-track {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 620px) {
  .fk-offline-trust {
    display: block;
    padding: 10px 12px;
  }

  .fk-offline-trust-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: offlineTrustScroll 24s linear infinite;
  }

  .fk-offline-trust-track .is-duplicate {
    display: inline-flex;
  }

  .fk-offline-trust:hover .fk-offline-trust-track,
  .fk-offline-trust:focus-within .fk-offline-trust-track {
    animation-play-state: paused;
  }

  .fk-offline-trust span {
    min-width: 172px;
    justify-content: center;
    padding: 0 12px;
    white-space: nowrap;
    font-size: .8rem;
  }
}

@keyframes offlineTrustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Featured blog plus three cards */
.home-page .home-blog-section {
  padding: 30px 16px;
  background: #fff;
}

.home-page .home-blog-section .section-title {
  width: min(1160px, 100%);
  margin: 0 auto 16px;
  color: #061c86;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.home-page .home-blog-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.home-page .home-blog-featured {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 2px solid #c8d8ff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(6,28,134,.08);
}

.home-page .home-blog-featured .home-blog-media {
  width: 100%;
  min-height: 230px;
  aspect-ratio: auto;
}

.home-page .home-blog-featured .home-blog-body {
  padding: 22px;
  align-items: flex-start;
}

.home-page .home-blog-featured strong {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

.home-page .home-blog-readmore {
  text-decoration: none;
}

.home-page .home-blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-page .home-blog-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  min-height: 118px;
  padding: 12px;
  border: 2px solid #d9e5ff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(6,28,134,.06);
}

.home-page .home-blog-thumb {
  width: 112px;
  height: 86px;
  border-radius: 8px;
}

.home-page .home-blog-card strong {
  font-size: .98rem;
}

@media (max-width: 980px) {
  .home-page .home-blog-featured,
  .home-page .home-blog-list {
    grid-template-columns: 1fr;
  }

  .home-page .home-blog-featured .home-blog-media {
    min-height: 210px;
  }
}

@media (max-width: 620px) {
  .home-page .home-blog-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .home-page .home-blog-thumb {
    width: 92px;
    height: 72px;
  }
}

/* Step cards styled like the support/process card reference */
.fk-steps-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  padding: 42px 16px 54px;
}

.fk-steps-section .section-title {
  margin-bottom: 26px;
}

.fk-steps-grid {
  gap: 28px;
}

.fk-steps-grid article {
  display: block;
  min-height: 280px;
  padding: 34px 28px 30px;
  border: 3px solid #d3ddef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(6,28,134,.08);
}

.fk-steps-grid article::after {
  content: none !important;
}

.fk-steps-grid strong {
  width: 110px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 0 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffdf08, #ff9800);
  color: #d90000;
  border: 3px solid #eef2fb;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,.12), 0 2px 0 #c9d3e7;
}

.fk-steps-grid strong svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fk-steps-grid h3 {
  color: #d90000;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.18;
  margin-bottom: 14px;
  font-weight: 950;
}

.fk-steps-grid p {
  color: #526079;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.45;
  font-weight: 900;
}

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

@media (max-width: 620px) {
  .fk-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fk-steps-grid article {
    min-height: 0;
    padding: 24px;
    border-radius: 18px;
  }
}

/* Homepage reference layout refinements */
.fk-anchor {
  position: relative;
  top: -90px;
  display: block;
  width: 1px;
  height: 1px;
}

.fk-hero {
  padding-bottom: 22px;
}

.fk-hero-grid {
  min-height: 500px;
}

.fk-product-grid {
  gap: 16px;
}

.fk-shop-card {
  min-height: 242px;
  padding: 14px;
  align-content: start;
  border-color: #bdd1ff;
}

.fk-shop-img {
  height: 88px;
}

.fk-shop-card strong {
  min-height: 28px;
  line-height: 1.2;
}

.fk-shop-card b {
  font-size: 1.65rem;
  line-height: 1.05;
}

.fk-shop-card ul {
  display: grid;
  gap: 5px;
  margin: 4px 0 8px;
  list-style: none;
}

.fk-shop-card li {
  position: relative;
  padding-left: 18px;
  color: #17224b;
  font-size: .82rem;
  font-weight: 850;
}

.fk-shop-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #061c86;
}

.fk-buy {
  margin-top: auto;
  background: #061c86;
  color: #fff;
}

.fk-trust-section {
  padding: 10px 16px 22px;
  background: #fff;
}

.fk-trust-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 2px solid #c8d8ff;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(6,28,134,.06);
}

.fk-trust-grid .fk-why-card {
  min-height: 92px;
  border: 0;
  border-right: 1px solid #d9e5ff;
  border-radius: 0;
  box-shadow: none;
  padding: 14px 10px;
}

.fk-trust-grid .fk-why-card:last-child {
  border-right: 0;
}

.fk-trust-grid .fk-why-card span {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}

.fk-trust-grid .fk-why-card h3 {
  font-size: 1.18rem;
  line-height: 1.1;
}

.fk-trust-grid .fk-why-card p {
  font-size: .78rem;
  line-height: 1.2;
}

.fk-service-panels {
  gap: 0;
  border: 2px solid #c8d8ff;
  border-radius: 8px;
  overflow: hidden;
}

.fk-service-panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fk-service-panel + .fk-service-panel {
  border-left: 1px solid #d9e5ff;
}

.fk-service-panel h3 {
  padding: 10px;
}

.fk-service-panel div {
  padding: 14px;
}

.fk-steps-section {
  padding: 20px 16px 26px;
  background: #fff;
}

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

.fk-steps-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  border: 2px solid #d9e5ff;
  border-radius: 8px;
  background: #fff;
}

.fk-steps-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  color: #061c86;
  font-weight: 950;
}

.fk-steps-grid strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #061c86;
  color: #fff;
  font-size: 1.2rem;
}

.fk-steps-grid h3 {
  color: #061c86;
  font-size: .98rem;
  line-height: 1.2;
}

.fk-steps-grid p {
  color: #526079;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.25;
}

.home-blog-section {
  padding: 24px 16px;
  background: #fff;
}

.home-blog-section .section-title {
  text-align: left;
  width: min(1160px, 100%);
  margin: 0 auto 12px;
  font-size: 1.8rem;
}

.home-blog-section .section-sub,
.home-blog-action {
  display: none;
}

.home-blog-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1160px;
  border: 2px solid #c8d8ff;
  border-radius: 8px;
  padding: 14px;
}

.home-blog-featured,
.home-blog-card {
  border-radius: 8px;
  box-shadow: none;
}

.home-blog-featured {
  grid-template-columns: 110px 1fr;
  border-color: #d9e5ff;
}

.home-blog-media {
  width: 110px;
  height: 100%;
  min-height: 104px;
}

.home-blog-list {
  display: contents;
}

.home-blog-card {
  min-height: 104px;
  border-color: #d9e5ff;
}

#contact {
  padding: 0 16px 26px;
}

.fk-contact-box {
  grid-template-columns: 1fr 1.25fr 1.35fr;
  gap: 16px;
  align-items: stretch;
  border: 2px solid #bdd1ff;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.fk-contact-box .contact-card,
.fk-contact-map {
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.fk-contact-map iframe {
  height: 210px;
  border-radius: 8px;
}

.fk-contact-info h3,
.fk-contact-form h3 {
  color: #061c86;
  font-size: 1.35rem;
}

.fk-contact-form .simple-form {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fk-contact-form .simple-form small,
.fk-contact-form .simple-form textarea,
.fk-contact-form .simple-form button,
.fk-contact-form #contactFormMsg {
  grid-column: 1 / -1;
}

.fk-contact-form .simple-form input,
.fk-contact-form .simple-form select,
.fk-contact-form .simple-form textarea {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 6px;
}

.fk-contact-form .simple-form textarea {
  min-height: 56px;
}

.fk-contact-form .btn-red {
  border-radius: 6px;
  background: #061c86;
}

@media (max-width: 1100px) {
  .fk-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .fk-steps-grid,
  .home-blog-grid,
  .fk-contact-box {
    grid-template-columns: 1fr 1fr;
  }

  .fk-contact-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .fk-shop-card {
    min-height: 0;
  }

  .home-page .fk-shop-img {
    height: 156px;
    padding: 8px;
  }

  .home-page .fk-shop-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .home-page .fk-shop-card {
    gap: 10px;
  }

  .fk-trust-grid,
  .fk-steps-grid,
  .home-blog-grid,
  .fk-contact-box {
    grid-template-columns: 1fr;
  }

  .fk-trust-grid .fk-why-card,
  .fk-service-panel + .fk-service-panel {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #d9e5ff;
  }

  .fk-steps-grid article::after {
    content: none !important;
  }

  .home-blog-featured {
    grid-template-columns: 1fr;
  }

  .home-blog-media {
    width: 100%;
  }

  .fk-contact-form .simple-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .site-nav .order-cta { display: inline-flex; }
  .menu-btn { display: flex; }
  .about-profile-grid,
  .about-info-grid,
  .about-process-layout { grid-template-columns: 1fr; }
  .about-info-grid .section-title,
  .about-process-layout .section-title { text-align: center; }
  .about-highlight-grid,
  .about-process-grid,
  .about-team-grid { grid-template-columns: 1fr 1fr; }
  .about-simple-hero-inner {
    grid-template-columns: 1fr;
  }
  .about-simple-logo {
    width: 150px;
    justify-self: center;
    order: -1;
  }
  .about-simple-grid {
    grid-template-columns: 1fr;
  }
  .about-product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-step-grid,
  .about-clean-info,
  .about-clean-facts {
    grid-template-columns: 1fr;
  }
  .about-contact-inner { align-items: flex-start; flex-direction: column; }
  .services-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .services-hero-media { min-height: 280px; }
  .services-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .services-poster-grid { grid-template-columns: repeat(3, 1fr); }
  .services-digital-grid { grid-template-columns: repeat(2, 1fr); }
  .services-contact-inner { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; }
  .hero-machine { min-height: 150px; order: 2; }
  .hero-side { order: 3; }
  .panel-grid, .contact-box { grid-template-columns: 1fr; }
  .starburst { width: 190px; }
  .gallery-strip { grid-template-columns: repeat(4, 1fr); }
  .poster-carousel { grid-template-columns: repeat(4, 1fr); }
  .price-wrap { grid-template-columns: 1fr; }
  .home-product-chart{grid-template-columns:1fr}
  .home-product-row{grid-template-columns:64px 1fr}
  .home-product-thumb{width:64px;height:64px}
  .home-product-type,.home-product-price{grid-column:2;justify-self:start}
  .home-digital-card-row{grid-template-columns:64px 1fr}
  .home-product-actions{grid-column:1/-1;justify-self:stretch}
  .digital-card-product-inner{grid-template-columns:1fr}
  .home-blog-grid { grid-template-columns: 1fr; }
  .home-blog-featured { grid-template-columns: 170px 1fr; }
  .home-blog-media { width: 170px; min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-payment-col { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .top-strip {
    display: block;
    position: sticky;
    top: 0;
    padding: 7px 10px;
    font-size: .92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .site-nav {
    top: 34px;
    width: 100%;
    min-height: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 0 0 18px 18px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(180deg, #06145d, #082b9e);
  }
  .site-nav::before { content: none; }
  .site-nav.scrolled { top: 0; border-radius: 0 0 18px 18px; }
  .brand { display: none; }
  .menu-btn {
    order: 1;
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    background: rgba(0,0,0,.18);
    flex: 0 0 auto;
  }
  .site-nav .order-cta {
    order: 2;
    display: inline-flex;
    margin-left: auto;
    padding: 9px 13px;
    border-radius: 13px;
    font-size: .9rem;
    min-height: 42px;
    white-space: nowrap;
  }
  .nav-links {
    display: none;
  }
  .mobile-nav {
    inset: 88px 10px auto;
    max-height: calc(100vh - 80px);
    overflow: auto;
  }
  .about-profile {
    padding: 30px 12px 20px;
  }
  .about-story-card {
    padding: 22px;
    border-radius: 18px;
  }
  .about-story-card h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }
  .about-identity-panel {
    border-radius: 18px;
    padding: 22px;
  }
  .about-logo-frame {
    width: 138px;
    border-radius: 18px;
  }
  .about-info-grid .section-title,
  .about-process-layout .section-title {
    text-align: left;
  }
  .about-band {
    padding: 34px 10px;
  }
  .about-highlight-grid,
  .about-process-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-product-grid {
    grid-template-columns: 1fr;
  }
  .about-team-photo {
    width: 118px;
    height: 118px;
  }
  .about-contact-strip {
    padding: 0 10px 34px;
  }
  .about-contact-inner {
    padding: 18px;
    border-radius: 16px;
  }
  .services-hero {
    padding: 28px 12px 18px;
  }
  .services-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .services-hero-media {
    min-height: 220px;
  }
  .services-hero-logo {
    width: 78px;
    right: 12px;
    top: 12px;
  }
  .services-band {
    padding: 34px 10px;
  }
  .services-feature-grid,
  .services-poster-grid,
  .services-digital-grid {
    grid-template-columns: 1fr;
  }
  .services-feature-card {
    grid-template-columns: 82px 1fr;
  }
  .services-card-media {
    width: 82px;
  }
  .services-contact-strip {
    padding: 0 10px 34px;
  }
  .services-contact-inner {
    padding: 18px;
    border-radius: 16px;
  }
  .poster-shell {
    width: 100%;
    margin-top: 0;
    padding: 8px;
    border-width: 3px;
    border-radius: 0 0 18px 18px;
  }
  .hero {
    grid-template-columns: 25% 1fr 25%;
    gap: 2px;
    align-items: center;
    padding: 14px 2px 10px;
  }
  .hero > div:nth-child(2) { order: 2; min-width: 0; }
  .hero-machine {
    order: 1;
    display: grid;
    min-height: 100px;
  }
  .hero-side {
    order: 3;
    gap: 4px;
  }
  .hero-title {
    font-size: clamp(2.15rem, 14.2vw, 3.35rem);
    line-height: .9;
    text-shadow:
      2px 2px 0 #fff,
      -2px 2px 0 #fff,
      2px -2px 0 #fff,
      -2px -2px 0 #fff,
      4px 5px 0 rgba(0,0,0,.2);
  }
  .hero-pill {
    margin: 8px auto 7px;
    padding: 5px 9px;
    font-size: clamp(.72rem, 3.3vw, .92rem);
    line-height: 1.15;
  }
  .hero-machine img,
  .printer-visual img { width: 112%; max-width: none; }
  .hero-machine img { transform: translateX(-8%); }
  .printer-visual {
    width: 100%;
    min-height: 74px;
  }
  .printer-visual img { transform: translateX(-5%); }
  .starburst {
    width: min(84px, 21vw);
    padding: 13px;
    font-size: clamp(.52rem, 2.2vw, .68rem);
    justify-self: end;
    transform: translateY(2px);
  }
  .phone-row {
    align-items: center;
    flex-direction: row;
    gap: 6px;
    font-size: clamp(.98rem, 5.4vw, 1.28rem);
  }
  .call-chip, .wa-chip {
    display: inline-grid;
    width: 32px;
    height: 32px;
    border-width: 2px;
    font-size: .85rem;
  }
  .owner {
    width: fit-content;
    margin: 2px auto 0;
    padding: 5px 12px;
    font-size: .92rem;
  }
  .hero .order-cta,
  .hero .btn-red {
    flex: 1 1 120px;
    min-height: 42px;
    padding: 9px 10px;
    font-size: .88rem;
  }
  .panel-grid, .contact-box { grid-template-columns: 1fr; gap: 12px; }
  .service-panel {
    border-width: 2px;
    border-radius: 16px;
  }
  .panel-head {
    font-size: 1.28rem;
    padding: 8px;
  }
  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
    padding: 10px 12px;
  }
  .service-item {
    gap: 7px;
    padding: 8px 0;
    font-size: clamp(.78rem, 3.4vw, .96rem);
    line-height: 1.25;
  }
  .service-item .ico {
    width: 54px;
    height: 44px;
    border-radius: 9px;
  }
  .service-item small {
    font-size: .68em;
    line-height: 1.15;
  }
  .trust-bar {
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 14px;
    padding: 9px 6px;
    scrollbar-width: none;
  }
  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: trustMobileScroll 12s linear infinite;
  }
  .trust-bar:hover .trust-track { animation-play-state: paused; }
  .trust-track div {
    min-width: 118px;
    padding: 0 8px;
    border-right: 1px solid rgba(255,255,255,.28);
    font-size: .78rem;
    white-space: nowrap;
  }
  .trust-track div:last-child { border-right: 0; }
  .trust-logo {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: .72rem;
  }
  .poster-carousel {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    padding: 9px;
    border-radius: 14px;
  }
  .poster-carousel-item strong { font-size: .68rem; }
  .poster-bottom {
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
    font-size: .95rem;
  }
  section, .page-section { padding: 34px 10px; }
  .cards { grid-template-columns: 1fr; }
  .gallery-strip.service-marquee {
    margin: 0 -10px;
    padding: 2px 10px 12px;
  }
  .gallery-track {
    gap: 10px;
    animation-duration: 34s;
  }
  .gallery-item {
    flex-basis: 104px;
    border-width: 2px;
    padding: 9px 6px;
    font-size: .72rem;
    line-height: 1.15;
  }
  .gallery-item span {
    width: 70px;
    margin-bottom: 3px;
  }
  .price-wrap, .footer-grid { grid-template-columns: 1fr; }
  .digital-card-product{padding-top:14px}
  .digital-card-product-inner{padding:16px;border-radius:18px}
  .digital-card-actions .order-cta,
  .digital-card-actions .btn-red{flex:1 1 150px}
  .home-product-actions{grid-template-columns:1fr}
  .digital-card-screen{min-height:170px}
  .footer-payment-col { grid-column: auto; }
  .home-blog-grid { max-width: 100%; }
  .home-blog-featured { grid-template-columns: 1fr; }
  .home-blog-media { width: 100%; max-height: 190px; }
  .home-blog-card { grid-template-columns: 78px 1fr; }
  .home-blog-thumb { width: 78px; }
  .home-blog-body { padding: 14px; }
}

/* FastKaam homepage refresh */
body.home-page {
  background: #f4f8ff;
}

.home-page .top-strip {
  display: none;
}

.home-page .site-nav {
  top: 0;
  width: 100%;
  min-height: 72px;
  border: 0;
  border-radius: 0;
  padding: 10px max(16px, calc((100vw - 1200px) / 2));
  background: linear-gradient(90deg, #06156f, #082bb3, #06156f);
}

.home-page .site-nav.scrolled {
  top: 0;
  border-radius: 0;
}

.home-page .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.home-page .nav-links a {
  border-radius: 8px;
  font-size: .94rem;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  background: #ffc400;
  color: #07145f;
}

.home-page .site-nav .order-cta {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 10px;
}

.fk-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 16px 34px;
  background:
    radial-gradient(circle at 85% 22%, rgba(7, 43, 179, .1) 0 1px, transparent 2px) 0 0 / 17px 17px,
    linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #edf5ff 100%);
}

.fk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 34%, transparent 0 13rem, rgba(7,43,179,.07) 13.1rem 13.25rem, transparent 13.35rem),
    linear-gradient(132deg, transparent 0 47%, rgba(7,43,179,.06) 47.2% 61%, transparent 61.2%);
  pointer-events: none;
}

.fk-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: 480px;
}

.fk-badge,
.home-page .product-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 13px;
  border-radius: 8px;
  background: #ffc400;
  color: #07145f;
  font-weight: 950;
  font-size: .86rem;
}

.fk-hero h1 {
  margin-top: 18px;
  color: #10182f;
  font-size: clamp(3.1rem, 6.7vw, 5.7rem);
  line-height: .96;
  font-weight: 950;
}

.fk-hero h1 span {
  color: #061c86;
}

.fk-hero p,
.fk-preview-copy p {
  color: #3f4b66;
  font-weight: 800;
  font-size: 1.12rem;
  margin-top: 16px;
}

.fk-hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 22px;
  margin: 22px 0;
  max-width: 650px;
}

.fk-hero-points span,
.fk-check-grid span {
  position: relative;
  padding-left: 24px;
  color: #17224b;
  font-weight: 850;
}

.fk-hero-points span::before,
.fk-check-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #061c86;
}

.fk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fk-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 2px solid #061c86;
  border-radius: 10px;
  background: #fff;
  color: #061c86;
  font-weight: 950;
}

.fk-hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.fk-phone {
  width: min(340px, 76%);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(5, 20, 80, .28));
  z-index: 2;
}

.fk-float {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 15px 18px rgba(5, 20, 80, .2));
}

.fk-nfc {
  width: 170px;
  right: 7%;
  top: 70px;
  transform: rotate(7deg);
}

.fk-qr {
  width: 150px;
  right: 15%;
  bottom: 130px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  transform: rotate(8deg);
}

.fk-secure {
  position: absolute;
  right: 4%;
  bottom: 55px;
  z-index: 3;
  background: #fff;
  border: 1px solid #d9e5ff;
  border-radius: 14px;
  padding: 12px 16px;
  color: #061c86;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(6,28,134,.12);
}

.fk-secure small {
  display: block;
  color: #5c6680;
  font-size: .78rem;
}

.fk-section {
  padding: 34px 16px;
  background: #fff;
}

.fk-section.compact {
  padding-top: 26px;
  padding-bottom: 22px;
}

.section-title.lined {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0 58px;
  color: #061c86;
}

.section-title.lined::before,
.section-title.lined::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 2px;
  background: #9db9ff;
}

.section-title.lined::before { left: 0; }
.section-title.lined::after { right: 0; }

.fk-card-grid,
.fk-product-grid,
.fk-why-grid {
  display: grid;
  gap: 18px;
}

.fk-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.fk-plan-card,
.fk-shop-card,
.fk-why-card {
  background: #fff;
  border: 2px solid #c8d8ff;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(6,28,134,.06);
}

.fk-plan-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 16px;
  align-items: start;
}

.fk-plan-card img {
  width: 92px;
  height: 96px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f8ff;
}

.fk-plan-card h3,
.fk-shop-card strong,
.fk-why-card h3,
.fk-service-panel h3 {
  color: #061c86;
  font-weight: 950;
}

.fk-plan-card small,
.fk-shop-card small,
.fk-why-card p {
  display: block;
  color: #5a6682;
  font-weight: 750;
}

.fk-plan-card strong,
.fk-shop-card b {
  display: block;
  color: #061c86;
  font-size: 1.35rem;
  font-weight: 950;
}

.fk-plan-card span {
  display: block;
  color: #17224b;
  font-size: .86rem;
  font-weight: 850;
  margin-top: 5px;
}

.fk-plan-card a,
.fk-buy {
  grid-column: 1 / -1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  border: 2px solid #061c86;
  border-radius: 6px;
  color: #061c86;
  font-weight: 950;
  background: #fff;
}

.center-action {
  margin-top: 14px;
  text-align: center;
}

.fk-product-grid {
  grid-template-columns: repeat(5, 1fr);
}

.fk-shop-card {
  padding: 15px;
  display: grid;
  gap: 6px;
  min-height: 190px;
}

.fk-shop-img {
  height: 72px;
  display: grid;
  place-items: center;
  background: #f7faff;
  border-radius: 6px;
  overflow: hidden;
}

.fk-shop-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fk-buy {
  margin-top: 8px;
}

.fk-why-grid {
  grid-template-columns: repeat(6, 1fr);
}

.fk-why-card {
  min-height: 124px;
  padding: 16px 12px;
  text-align: center;
}

.fk-why-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 9px;
  border-radius: 50%;
  background: #f1f6ff;
  color: #061c86;
}

.fk-why-card span svg,
.fk-check-grid svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fk-service-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fk-service-panel {
  overflow: hidden;
  border: 2px solid #c8d8ff;
  border-radius: 8px;
  background: #fff;
}

.fk-service-panel h3 {
  padding: 12px;
  text-align: center;
  color: #fff;
  background: #061c86;
}

.fk-service-panel div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 16px;
}

.fk-service-panel a {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  color: #061c86;
  font-size: .82rem;
  font-weight: 900;
}

.fk-service-panel img {
  width: 58px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  background: #f4f8ff;
}

.fk-preview-section {
  padding: 28px 16px;
  background: #fff;
}

.fk-preview-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.fk-preview-media {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(160px, 240px);
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.fk-preview-media > img {
  max-height: 370px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(6,28,134,.2));
}

.fk-qr-box {
  background: #061c86;
  border-radius: 10px;
  color: #fff;
  padding: 18px;
  text-align: center;
  font-weight: 950;
}

.fk-qr-box img {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.fk-preview-copy h2 {
  color: #061c86;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  font-weight: 950;
}

.fk-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 18px 0;
}

.fk-check-grid span::before {
  background: #0c9f3d;
}

.fk-stats {
  padding: 0 16px 28px;
  background: #fff;
}

.fk-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #061c86;
  color: #fff;
}

.fk-stats-grid strong {
  display: grid;
  gap: 2px;
  padding: 22px;
  text-align: center;
  font-size: 1.9rem;
  border-right: 1px solid rgba(255,255,255,.16);
}

.fk-stats-grid strong:last-child {
  border-right: 0;
}

.fk-stats-grid span {
  font-size: .9rem;
  color: #fff;
}

#gallery {
  padding-top: 22px;
  background: #fff;
}

#gallery .section-title {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

#home-blog {
  background: #fff;
}

#contact {
  background: #fff;
}

@media (max-width: 1100px) {
  .fk-card-grid,
  .fk-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fk-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fk-service-panel div {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .fk-hero-grid,
  .fk-preview-grid {
    grid-template-columns: 1fr;
  }

  .fk-hero-grid {
    min-height: 0;
  }

  .fk-hero-visual {
    min-height: 420px;
  }

  .fk-service-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-page .site-nav {
    top: 0;
  }

  .home-page .brand {
    display: flex;
  }

  .home-page .brand small {
    display: none;
  }

  .home-page .site-nav .order-cta {
    display: none;
  }

  .home-page .mobile-nav {
    inset: 74px 10px auto;
  }

  .fk-hero {
    padding-top: 40px;
  }

  .fk-hero-points,
  .fk-check-grid,
  .fk-preview-media,
  .fk-stats-grid {
    grid-template-columns: 1fr;
  }

  .fk-hero-visual {
    min-height: 360px;
  }

  .fk-phone {
    width: 82%;
  }

  .fk-nfc {
    width: 112px;
    right: 0;
    top: 36px;
  }

  .fk-qr {
    width: 104px;
    right: 3%;
    bottom: 78px;
  }

  .fk-secure {
    right: 0;
    bottom: 24px;
    font-size: .78rem;
  }

  .section-title.lined {
    padding: 0 34px;
  }

  .section-title.lined::before,
  .section-title.lined::after {
    width: 24px;
  }

  .fk-card-grid,
  .fk-product-grid,
  .fk-why-grid {
    grid-template-columns: 1fr;
  }

  .fk-service-panel div {
    grid-template-columns: repeat(2, 1fr);
  }

  .fk-stats-grid strong {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .fk-stats-grid strong:last-child {
    border-bottom: 0;
  }
}

/* Final global navbar override for all pages */
.top-strip { display: none !important; }
.site-nav {
  top: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 72px;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 10px max(16px, calc((100vw - 1200px) / 2)) !important;
  background: linear-gradient(90deg, #06156f, #082bb3, #06156f) !important;
}
.site-nav.scrolled { top: 0 !important; border-radius: 0 !important; }
.brand-mark { width: 48px; height: 48px; border-radius: 10px; }
.nav-links a { border-radius: 8px; font-size: .94rem; }
.nav-links a:hover,
.nav-links a.active { background: #ffc400; color: #07145f; }
.site-nav .order-cta { min-height: 42px; padding: 10px 18px; border-radius: 10px; }

@media (max-width: 620px) {
  .site-nav {
    min-height: 64px !important;
    padding: 10px 12px !important;
    border-radius: 0 0 18px 18px !important;
  }
  .site-nav.scrolled { border-radius: 0 0 18px 18px !important; }
  .brand { display: flex !important; }
  .brand small { display: none !important; }
  .site-nav .order-cta { display: none !important; }
  .mobile-nav { inset: 74px 10px auto !important; }
}

/* Final mobile layout fixes */
@media (max-width: 620px) {
  .home-page .fk-hero-visual {
    display: grid !important;
    place-items: center !important;
    justify-items: center !important;
    min-height: 320px !important;
    overflow: visible !important;
    padding-inline: 0 !important;
  }

  .home-page .fk-hero-visual picture {
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
  }

  .home-page .fk-hero-art {
    width: min(100%, 360px) !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    transform: none !important;
    object-position: center !important;
  }

  .home-page .fk-shop-img {
    height: 168px !important;
    padding: 10px !important;
    overflow: hidden !important;
  }

  .home-page .fk-shop-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0 !important;
  }

  .home-page .home-blog-action {
    display: block !important;
    text-align: center !important;
    margin-top: 18px !important;
  }
}

/* Advertisement services page */
.advertisement-page {
  background:
    radial-gradient(circle at 8% 14%, rgba(255,196,0,.18), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(217,0,0,.12), transparent 30%),
    #f4f8ff;
}

.ad-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 16px 44px;
  background:
    linear-gradient(135deg, rgba(6,20,93,.98), rgba(8,43,179,.96) 58%, rgba(217,0,0,.86));
  color: #fff;
}

.ad-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 80% 22%, rgba(255,196,0,.22), transparent 26%);
  pointer-events: none;
}

.ad-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.ad-hero-copy {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.ad-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffc400;
  font-weight: 950;
}

.ad-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.ad-hero p,
.ad-network p,
.ad-cta p {
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  line-height: 1.65;
}

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

.ad-hero-art {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.ad-hero-art img {
  width: min(680px, 110%);
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.24));
}

.ad-section {
  padding: 46px 16px;
  background: #fff;
}

.ad-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ad-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ad-card,
.ad-steps article {
  border: 2px solid #c8d8ff;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(6,28,134,.08);
}

.ad-card {
  padding: 24px;
  min-height: 240px;
}

.ad-feature-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 100%;
}

.ad-card-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff8d4, #f4f8ff);
  overflow: hidden;
}

.ad-card-media img {
  width: 112%;
  height: 112%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(6,28,134,.18));
}

.ad-card-content {
  min-width: 0;
}

.ad-card span,
.ad-steps strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffe100, #ff9400);
  color: #06145d;
  font-weight: 950;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.14);
}

.ad-card h3,
.ad-steps h3 {
  margin-top: 18px;
  color: #061c86;
  font-size: 1.3rem;
  line-height: 1.2;
}

.ad-card p,
.ad-steps p {
  margin-top: 10px;
  color: #5a6682;
  font-weight: 800;
  line-height: 1.62;
}

.ad-feature-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.ad-feature-card li {
  position: relative;
  padding-left: 20px;
  color: #33415f;
  font-weight: 900;
  line-height: 1.35;
}

.ad-feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffc400;
  box-shadow: 0 0 0 3px rgba(255,196,0,.2);
}

.ad-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ad-card-actions .order-cta,
.ad-card-actions .btn-red,
.ad-actions button {
  border: 0;
  font-family: var(--font);
  cursor: pointer;
}

.ad-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.ad-chip-grid span {
  padding: 14px 16px;
  border: 2px solid #c8d8ff;
  border-radius: 12px;
  background: #fff;
  color: #061c86;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(6,28,134,.06);
}

.ad-network-section {
  padding: 46px 16px;
  background: #eef4ff;
}

.ad-network {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid #c8d8ff;
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255,196,0,.2), transparent 30%),
    linear-gradient(135deg, #06145d, #082bb3);
  box-shadow: 0 18px 42px rgba(6,28,134,.18);
  color: #fff;
}

.ad-network h2,
.ad-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 950;
  margin: 12px 0;
}

.ad-network-stats {
  display: grid;
  gap: 12px;
}

.ad-network-stats strong {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.1);
}

.ad-network-stats b {
  color: #ffc400;
  font-size: 1.65rem;
  line-height: 1;
}

.ad-network-stats span {
  color: rgba(255,255,255,.86);
  font-weight: 900;
}

.ad-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ad-steps article {
  padding: 18px;
}

.ad-cta-section {
  padding: 0 16px 54px;
  background: #fff;
}

.ad-cta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 18px;
  background: linear-gradient(135deg, #d90000, #061c86);
  color: #fff;
  box-shadow: 0 18px 42px rgba(6,28,134,.16);
}

@media (max-width: 980px) {
  .ad-hero-grid,
  .ad-network {
    grid-template-columns: 1fr;
  }

  .ad-card-grid,
  .ad-feature-grid,
  .ad-steps,
  .ad-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ad-feature-card {
    grid-template-columns: 1fr;
  }

  .ad-card-media {
    max-width: 240px;
  }

  .ad-hero-art {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .ad-hero {
    padding: 34px 12px 28px;
  }

  .ad-hero h1 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .ad-hero-art {
    min-height: 250px;
    overflow: visible;
  }

  .ad-hero-art img {
    width: min(100%, 430px);
    max-width: 100%;
    height: auto;
  }

  .ad-card-grid,
  .ad-feature-grid,
  .ad-steps,
  .ad-chip-grid {
    grid-template-columns: 1fr;
  }

  .ad-feature-card {
    padding: 16px;
  }

  .ad-card-media {
    max-width: 210px;
  }

  .ad-network,
  .ad-cta {
    border-radius: 14px;
  }

  .ad-network-stats strong {
    grid-template-columns: 1fr;
  }

  .ad-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ad-card-actions .order-cta,
  .ad-card-actions .btn-red,
  .ad-actions,
  .ad-actions a,
  .ad-actions button {
    width: 100%;
  }
}

/* Offline services page refresh */
.offline-services-page {
  background: linear-gradient(180deg, #eef5ff 0%, #fff 38%, #eef5ff 100%);
}

.offline-page {
  overflow: hidden;
}

.offline-hero {
  position: relative;
  padding: 54px 16px 42px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,196,0,.2), transparent 26%),
    linear-gradient(135deg, #06145d 0%, #082bb3 58%, #d90000 118%);
  color: #fff;
  overflow: hidden;
}

.offline-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.12), transparent 24%);
  pointer-events: none;
}

.offline-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.offline-hero-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.offline-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffc400;
  font-weight: 950;
}

.offline-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
}

.offline-hero p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  line-height: 1.65;
}

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

.offline-hero-art {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.offline-hero-art img {
  width: min(700px, 112%);
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.24));
}

.offline-note-band {
  padding: 22px 16px 0;
  background: #fff;
}

.offline-note {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  border: 2px solid #c8d8ff;
  border-radius: 14px;
  background: #fff8d4;
  color: #06145d;
  box-shadow: 0 12px 28px rgba(6,28,134,.08);
  font-weight: 900;
  line-height: 1.45;
}

.offline-note strong {
  color: #d90000;
}

.offline-section,
.offline-trust-section {
  padding: 46px 16px;
  background: #fff;
}

.offline-counter-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,196,0,.14), transparent 28%),
    #eef4ff;
}

.offline-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.offline-service-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 2px solid #c8d8ff;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(6,28,134,.08);
}

.offline-service-media {
  width: 108px;
  height: 84px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f8ff;
}

.offline-service-media img,
.offline-counter-card span img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offline-service-media img {
  padding: 0;
}

.offline-service-card h3 {
  color: #d90000;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 950;
}

.offline-service-card p {
  margin-top: 4px;
  color: #17224b;
  font-weight: 800;
  line-height: 1.42;
}

.offline-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.offline-counter-card {
  min-height: 300px;
  padding: 18px;
  border: 2px solid #c8d8ff;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(6,28,134,.08);
}

.offline-counter-card span {
  display: grid;
  place-items: center;
  height: 210px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f8ff;
}

.offline-counter-card span img {
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.offline-counter-card h3 {
  color: #061c86;
  font-size: 1.14rem;
  line-height: 1.22;
  font-weight: 950;
}

.offline-counter-card p {
  margin-top: 8px;
  color: #5a6682;
  font-weight: 800;
  line-height: 1.55;
}

.offline-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.offline-trust-grid article {
  padding: 20px;
  border: 2px solid #c8d8ff;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(6,28,134,.08);
}

.offline-trust-grid strong {
  display: block;
  color: #061c86;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 950;
}

.offline-trust-grid p {
  margin-top: 8px;
  color: #5a6682;
  font-weight: 800;
  line-height: 1.55;
}

.offline-contact-strip {
  padding: 0 16px 54px;
  background: #fff;
}

.offline-contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,196,0,.22), transparent 24%),
    linear-gradient(135deg, #d90000, #061c86);
  color: #fff;
  box-shadow: 0 18px 42px rgba(6,28,134,.16);
}

.offline-contact-inner strong {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.18;
  font-weight: 950;
}

.offline-contact-inner p {
  margin-top: 6px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  line-height: 1.5;
}

/* About page richer refresh */
.about-simple {
  background:
    radial-gradient(circle at 84% 10%, rgba(255,196,0,.13), transparent 24%),
    linear-gradient(180deg, #eef5ff 0%, #fff 44%, #eef5ff 100%);
}

.about-simple-hero {
  position: relative;
  padding: 54px 16px 42px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255,196,0,.28), transparent 26%),
    radial-gradient(circle at 70% 82%, rgba(217,0,0,.24), transparent 28%),
    linear-gradient(135deg, #06104e 0%, #061c86 58%, #021044 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.about-simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.13), transparent 24%);
  pointer-events: none;
}

.about-simple-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr);
  gap: 28px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-simple-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.04;
  font-weight: 950;
}

.about-simple-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.94);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 800;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0,0,0,.28);
}

.about-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffc400;
  font-weight: 950;
}

.about-hero-art {
  display: grid;
  place-items: center;
  min-height: 430px;
  width: auto;
  aspect-ratio: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.about-hero-art img {
  width: min(760px, 118%);
  height: auto;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 28px 30px rgba(0,0,0,.3));
}

.about-simple-section {
  padding: 46px 16px;
}

.about-product-grid,
.about-simple-grid,
.about-step-grid,
.about-clean-facts,
.about-team-grid {
  margin-top: 22px;
}

.about-product-card,
.about-simple-card,
.about-step-card,
.about-clean-facts article,
.about-team-card {
  border: 2px solid #c8d8ff;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(6,28,134,.08);
}

.about-product-card {
  min-height: 150px;
}

.about-product-card strong,
.about-simple-card h2,
.about-step-card h3,
.about-clean-info h2,
.about-team-card h3 {
  color: #061c86;
}

.about-simple-card li {
  color: #17224b;
  font-weight: 850;
}

.about-clean-info {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid #c8d8ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6,28,134,.12);
}

.about-clean-info p {
  color: #5a6682;
  font-weight: 800;
  line-height: 1.62;
}

.about-team-card {
  text-align: left;
}

.about-team-photo {
  margin-left: 0;
  margin-right: 0;
}

.about-team-card small {
  display: block;
  margin-top: 10px;
  color: #5a6682;
  font-weight: 800;
  line-height: 1.52;
}

.about-partner-card {
  background:
    radial-gradient(circle at 86% 12%, rgba(255,196,0,.18), transparent 28%),
    #fff;
}

.about-partner-badge {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin: 0 0 16px;
  border-radius: 26px;
  border: 3px solid #c8d8ff;
  background: linear-gradient(135deg, #061c86, #0b3bd9);
  color: #ffc400;
  box-shadow: 0 16px 30px rgba(6,28,134,.2);
}

.about-partner-badge svg {
  width: 86px;
  height: 86px;
  display: block;
}

.about-partner-head {
  fill: #ffc400;
}

.about-partner-head-main {
  fill: #fff;
}

.about-partner-body {
  fill: rgba(255,196,0,.9);
}

.about-partner-body-main {
  fill: #fff;
}

.about-partner-gear {
  fill: none;
  stroke: #ffc400;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.about-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 2px solid #061c86;
  border-radius: 10px;
  color: #061c86;
  background: #fff;
  font-weight: 950;
  text-decoration: none;
}

.about-social-links a svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.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;
}

.about-social-links a:hover {
  background: #061c86;
  color: #fff;
}

.about-social-links a[href="#"] {
  color: #5a6682;
  border-color: #c8d8ff;
  pointer-events: none;
}

@media (max-width: 980px) {
  .offline-hero-grid,
  .about-simple-hero-inner,
  .about-clean-info {
    grid-template-columns: 1fr;
  }

  .offline-counter-grid,
  .offline-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offline-hero-art,
  .about-hero-art {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .offline-hero,
  .about-simple-hero {
    padding: 34px 12px 28px;
  }

  .offline-hero h1,
  .about-simple-hero h1 {
    font-size: clamp(2rem, 11vw, 3.15rem);
  }

  .offline-hero-art,
  .about-hero-art {
    min-height: 250px;
    overflow: visible;
  }

  .offline-hero-art img,
  .about-hero-art img {
    width: min(100%, 430px);
    max-width: 100%;
    height: auto;
  }

  .offline-note,
  .offline-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .offline-service-grid,
  .offline-counter-grid,
  .offline-trust-grid {
    grid-template-columns: 1fr;
  }

  .offline-service-card {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 14px;
  }

  .offline-service-media {
    width: 92px;
    height: 74px;
  }

  .offline-actions,
  .offline-actions a {
    width: 100%;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

/* Digital services page */
.digital-services-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(54,215,255,.13), transparent 24%),
    linear-gradient(180deg, #eef5ff 0%, #fff 42%, #eef5ff 100%);
}

.digital-page {
  overflow: hidden;
}

.digital-hero {
  position: relative;
  padding: 54px 16px 42px;
  background:
    radial-gradient(circle at 84% 18%, rgba(54,215,255,.22), transparent 26%),
    linear-gradient(135deg, #06145d 0%, #082bb3 58%, #00a7d9 132%);
  color: #fff;
  overflow: hidden;
}

.digital-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.12), transparent 24%);
  pointer-events: none;
}

.digital-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr);
  gap: 28px;
  align-items: center;
}

.digital-hero-copy {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.digital-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffc400;
  font-weight: 950;
}

.digital-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.55rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
}

.digital-hero p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 800;
  line-height: 1.65;
}

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

.digital-hero-art {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.digital-hero-art img {
  width: min(700px, 112%);
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.24));
}

.digital-section {
  padding: 46px 16px;
  background: #fff;
}

.digital-marketing-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(54,215,255,.13), transparent 28%),
    #eef4ff;
}

.digital-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.digital-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.digital-card,
.digital-step-card {
  padding: 22px;
  border: 2px solid #c8d8ff;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 32px rgba(6,28,134,.08);
}

.digital-feature-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 100%;
}

.digital-card-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4f8ff, #fff8d4);
  overflow: hidden;
}

.digital-card-media img {
  width: 112%;
  height: 112%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(6,28,134,.18));
}

.digital-card-content {
  min-width: 0;
}

.digital-card span,
.digital-step-card strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffe100, #ff9400);
  color: #06145d;
  font-weight: 950;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.14);
}

.digital-card h3,
.digital-step-card h3 {
  color: #061c86;
  font-size: 1.22rem;
  line-height: 1.22;
  font-weight: 950;
}

.digital-card p,
.digital-step-card p {
  margin-top: 10px;
  color: #5a6682;
  font-weight: 800;
  line-height: 1.58;
}

.digital-feature-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.digital-feature-card li {
  position: relative;
  padding-left: 20px;
  color: #33415f;
  font-weight: 900;
  line-height: 1.35;
}

.digital-feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffc400;
  box-shadow: 0 0 0 3px rgba(255,196,0,.2);
}

.digital-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.digital-card-actions .order-cta,
.digital-card-actions .btn-red,
.digital-actions button {
  border: 0;
  font-family: var(--font);
  cursor: pointer;
}

.digital-fit-section {
  padding: 46px 16px;
  background: #fff;
}

.digital-fit-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid #c8d8ff;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,196,0,.18), transparent 28%),
    linear-gradient(135deg, #06145d, #082bb3);
  color: #fff;
  box-shadow: 0 18px 42px rgba(6,28,134,.18);
}

.digital-fit-panel h2 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 950;
}

.digital-fit-panel p {
  margin-top: 12px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  line-height: 1.62;
}

.digital-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.digital-chip-grid span {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 950;
}

.digital-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.digital-contact-strip {
  padding: 0 16px 54px;
  background: #fff;
}

.digital-contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,196,0,.22), transparent 24%),
    linear-gradient(135deg, #061c86, #00a7d9);
  color: #fff;
  box-shadow: 0 18px 42px rgba(6,28,134,.16);
}

.digital-contact-inner strong {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.18;
  font-weight: 950;
}

.digital-contact-inner p {
  margin-top: 6px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  line-height: 1.5;
}

.digital-enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6,20,93,.68);
}

.digital-enquiry-modal.open {
  display: flex;
}

.digital-enquiry-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, 92vh);
  overflow-y: auto;
  padding: clamp(20px, 4vw, 28px);
  border: 3px solid #061c86;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
}

.digital-enquiry-dialog h2 {
  color: #061c86;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.12;
  font-weight: 950;
}

.digital-enquiry-dialog p {
  margin: 8px 0 16px;
  color: #5a6682;
  font-weight: 800;
  line-height: 1.5;
}

.digital-enquiry-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: #f4f8ff;
  color: #061c86;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 950;
  cursor: pointer;
}

.digital-enquiry-form button[type="submit"] {
  min-height: 50px;
  border: 0;
  cursor: pointer;
}

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

  .digital-feature-card {
    grid-template-columns: 1fr;
  }

  .digital-card-media {
    max-width: 240px;
  }
}

@media (max-width: 980px) {
  .digital-hero-grid,
  .digital-fit-panel {
    grid-template-columns: 1fr;
  }

  .digital-hero-art {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .digital-hero {
    padding: 34px 12px 28px;
  }

  .digital-hero h1 {
    font-size: clamp(2rem, 11vw, 3.15rem);
  }

  .digital-hero-art {
    min-height: 250px;
    overflow: visible;
  }

  .digital-hero-art img {
    width: min(100%, 430px);
    max-width: 100%;
    height: auto;
  }

  .digital-card-grid,
  .digital-feature-grid,
  .digital-step-grid,
  .digital-chip-grid {
    grid-template-columns: 1fr;
  }

  .digital-feature-card {
    padding: 16px;
  }

  .digital-card-media {
    max-width: 210px;
  }

  .digital-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .digital-card-actions .order-cta,
  .digital-card-actions .btn-red,
  .digital-actions,
  .digital-actions a {
    width: 100%;
  }

  .digital-card-actions .order-cta,
  .digital-card-actions .btn-red,
  .digital-actions button {
    width: 100%;
  }
}

/* Keep homepage blog archive CTA visible on every viewport */
.home-page .home-blog-action {
  display: block !important;
  text-align: center;
  margin-top: 18px;
}

.home-page .home-blog-action .order-cta {
  display: inline-flex;
}
