@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300&display=swap");

/* Kaleidoskop — new visual system (reference homepage) */
:root {
  --navy: #07131f;
  --navy-2: #0a1a2a;
  --ink: #101828;
  --muted: #667085;
  --line: #eaecf0;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --green: #22c55e;
  --green-d: #16a34a;
  --orange: #f2711c;
  --yellow: #f7b733;
  --blue: #2aa9e0;
  --font-d: "Plus Jakarta Sans", Inter, sans-serif;
  --font-b: Inter, system-ui, sans-serif;
  --font-logo: "Montserrat", "Plus Jakarta Sans", sans-serif;
  --max: 1180px;
  --r: 16px;
  --hdr: 72px;
  --tick: 32px;
  --ease: cubic-bezier(.22,1,.36,1);
}
body:not(:has(.ticker)) { --tick: 0px; }
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--tick) + var(--hdr) + 8px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-d); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; margin: 0; color: var(--ink); }
p { margin: 0 0 1rem; }
button { font-family: inherit; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #111; color: #fff; padding: 10px 16px; z-index: 3000; }
.skip-link:focus { left: 0; }
.wrap, .container-xl { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 10px;
}
.eyebrow:not(.kicker)::before {
  content: "\2192";
  font-size: 14px; font-weight: 800; line-height: 1; color: var(--yellow);
}
.rainbow {
  background: linear-gradient(90deg,#f7d046,#7ed957,#2aa9e0,#8bc34a,#f7b733);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: .72rem 1.25rem; font-weight: 700; font-size: .9rem;
  border: 1.5px solid transparent; transition: .2s var(--ease);
}
.btn-green {
  background: linear-gradient(90deg, #22c55e 0%, #22d3ee 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(34, 197, 94, .28);
}
.btn-green:hover {
  background: linear-gradient(90deg, #16a34a 0%, #06b6d4 100%);
  color: #fff;
  filter: brightness(1.04);
}
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-dark { background: #111; color: #fff; }
.btn-dark:hover,
.btn-about:hover {
  background: linear-gradient(90deg, #22c55e 0%, #22d3ee 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(34, 197, 94, .28);
}
.btn-line, .btn-outline-dark-2 { background: #fff; color: #111; border-color: #111; }
.btn-outline-dark-2:hover { background: #111; color: #fff; }
.btn-sm { padding: .5rem 1rem; font-size: .84rem; }
.btn-sm-2 { padding: .5rem 1.1rem; font-size: .84rem; font-weight: 700; }

/* ticker + header */
.ticker {
  position: fixed; inset-inline: 0; top: 0; z-index: 1100; height: var(--tick);
  background: #050b12; color: #8b9aab; font-size: 11px; letter-spacing: .03em;
  display: flex; align-items: center; justify-content: center; padding: 0 16px;
  white-space: nowrap; overflow: hidden;
}
.site-header {
  position: fixed; inset-inline: 0; top: var(--tick); z-index: 1090; height: var(--hdr);
  background: #fff; border-bottom: 1px solid #eef1f4;
  display: flex; align-items: center;
}
.site-header { overflow: visible; }
.header-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo img { height: 44px; width: auto; display: block; max-width: 220px; }
.brand-word { display: none; }
.brand-logo--on-dark {
  background: #fff;
  padding: 8px 12px 8px 10px;
  border-radius: 10px;
  width: max-content;
}
.main-nav { display: flex; flex: 1; justify-content: center; min-width: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.main-nav .nav-link-item > a,
.main-nav .nav-link-item > button {
  background: none; border: 0; color: #344054; font-weight: 600; font-size: .88rem;
  padding: 8px 9px; border-radius: 999px; display: inline-flex; align-items: center; gap: 3px; cursor: pointer; white-space: nowrap;
}
.main-nav .nav-link-item > a:hover,
.main-nav .nav-link-item > button:hover { color: var(--orange); background: #fff7ed; }
.main-nav .nav-link-item.active > a,
.main-nav .nav-link-item.active > button {
  color: #2aa9e0; background: transparent;
}
.main-nav .nav-link-item.active > a:hover,
.main-nav .nav-link-item.active > button:hover {
  color: #2aa9e0; background: transparent;
}
.main-nav .nav-link-item.active > button .bi { color: #2aa9e0; }
.main-nav .nav-link-item.active > a::after,
.main-nav .nav-link-item.active > button::after {
  content: ""; position: absolute; left: 9px; bottom: 4px;
  height: 2px; border-radius: 1px; background: #2aa9e0;
}
.main-nav .nav-link-item.active > a::after { right: 9px; }
.main-nav .nav-link-item.active > button::after { right: 26px; }
.main-nav .nav-link-item > a,
.main-nav .nav-link-item > button { position: relative; }
.mobile-nav-panel > ul > li.active > .mobile-nav-link { color: #2aa9e0; }
.nav-link-item { position: relative; }
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(980px, 90vw); background: #fff; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(16,24,40,.16); padding: 22px; opacity: 0; visibility: hidden; pointer-events: none;
  z-index: 40;
}
.nav-link-item:hover .mega-menu, .nav-link-item.menu-open .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-menu-simple { width: 260px; transform: translateY(8px) !important; left: auto; right: 0; }
.nav-link-item:hover .mega-menu-simple, .nav-link-item.menu-open .mega-menu-simple { transform: translateY(0) !important; }
.mega-menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px 16px; }
.mega-col-title { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #98a2b3; margin-bottom: 10px; }
.mega-link { display: flex; gap: 8px; padding: 7px 6px; border-radius: 8px; font-size: .82rem; }
.mega-link:hover { background: var(--bg-soft); }
.mega-link .bi { color: var(--orange); }
.mega-link-title { font-weight: 700; display: block; }
.mega-link-desc { display: block; font-size: .72rem; color: var(--muted); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.mobile-nav-toggle { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; }
.mobile-nav-toggle .bar, .mobile-nav-toggle .bar::before, .mobile-nav-toggle .bar::after {
  display: block; width: 16px; height: 2px; background: #111; position: relative; margin: 0 auto;
}
.mobile-nav-toggle .bar::before, .mobile-nav-toggle .bar::after { content: ""; position: absolute; left: 0; }
.mobile-nav-toggle .bar::before { top: -5px; }
.mobile-nav-toggle .bar::after { top: 5px; }
.mobile-nav-panel {
  position: fixed; inset: calc(var(--tick) + var(--hdr)) 0 0 0; background: #fff; z-index: 1080;
  overflow: auto; padding: 16px 20px 80px; display: none;
}
.mobile-nav-panel.is-open { display: block; }
.mobile-nav-link { display: flex; justify-content: space-between; padding: 14px 4px; font-weight: 700; border-bottom: 1px solid var(--line); width: 100%; background: none; border-left: 0; border-right: 0; border-top: 0; text-align: left; }
.mobile-sub-link { display: block; padding: 8px 0; color: var(--muted); }
.mobile-sub-group { padding: 8px 4px 14px; }
.mobile-accordion-body { display: none; }
.mobile-accordion-body.is-open { display: block; }

/* geo */
.geo {
  position: relative; overflow: hidden; background: var(--navy); color: #fff;
}
.geo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 720' preserveAspectRatio='none'><polygon points='1120,0 1440,0 1440,160' fill='%23f7b733'/><polygon points='1240,0 1440,0 1440,240 1180,90' fill='%232e9e4f'/><polygon points='1040,0 1280,80 1440,0' fill='%232aa9e0' opacity='.85'/><polygon points='0,560 200,720 0,720' fill='%23f2711c'/><polygon points='40,620 280,720 0,720' fill='%232e9e4f'/><polygon points='180,660 380,720 80,720' fill='%23f7b733'/><polygon points='240,600 420,720 160,720' fill='%232aa9e0' opacity='.8'/></svg>");
  background-size: cover; background-position: center;
  opacity: .95;
}
.hero.geo {
  background: #020910 url("/assets/images/hero/hero-bg.webp") no-repeat right center / cover;
}
.hero.geo::before {
  background-image: linear-gradient(90deg, rgba(2,10,20,.42) 0%, rgba(2,10,20,.12) 42%, rgba(2,10,20,.04) 100%);
  opacity: 1;
}
.geo > * { position: relative; z-index: 1; }

/* hero */
.hero { padding: calc(var(--tick) + var(--hdr) + 28px) 0 36px; }
.hero-swiper { overflow: hidden; width: 100%; }
.hero-swiper .swiper-slide { overflow: hidden; box-sizing: border-box; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 18px; align-items: center; width: 100%; }
.hero-grid > * { min-width: 0; }
.hero-grid > div:first-child { padding-left: 12px; padding-right: 8px; }
.hero h1, .hero-slide-title {
  color: #fff; font-size: clamp(1.7rem, 3.2vw, 3.1rem); margin: 0 0 12px;
  font-family: var(--font-d); font-weight: 800; letter-spacing: -.02em; line-height: 1.14;
  max-width: 100%; overflow-wrap: break-word;
}
.hero .kicker { color: #9cc7ff; }
.hero .kicker::before {
  content: ""; width: 22px; height: 3px; border-radius: 2px; background: #2aa9e0; flex-shrink: 0;
}
.hero-swiper { min-height: 0; }
.hero .sub { color: #fff; font-weight: 700; font-size: 1.05rem; margin: 0 0 10px; }
.hero .lead { color: rgba(255,255,255,.78); max-width: 520px; font-size: .95rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.stage { position: relative; min-height: 430px; padding: 8px 4px 8px 8px; }
.device {
  width: min(72%, 380px); margin: 56px 8px 0 auto;
  position: relative; z-index: 2;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.4));
}
.device .lid {
  background: #111; border-radius: 14px 14px 6px 6px; padding: 8px 8px 0;
}
.device .screen {
  position: relative; border-radius: 8px 8px 0 0; overflow: hidden;
  aspect-ratio: 16/10.2; background: #071018;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.device .screen::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: linear-gradient(125deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 34%, rgba(80,160,255,.05) 100%);
}
.led-shot {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: left center;
}
.device .screen img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: left center;
}
.idea { display: none; }
.site-chrome { display: none; }
.device .deck {
  background: linear-gradient(#2a2d33,#1b1e24); border-radius: 0 0 10px 10px; padding: 8px 10px 10px;
}
.yb {
  background: #fff; border-radius: 10px; padding: 8px 12px 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.yb strong { font-size: .82rem; color: #111; }
.yb-bars { display: flex; gap: 6px; }
.yb-bars i { display: block; height: 6px; border-radius: 99px; background: #2aa9e0; width: 42%; }
.yb-bars i:last-child { width: 28%; background: #86efac; }
.device .hinge {
  height: 10px; margin: 0 auto; width: 100%;
  background: linear-gradient(#c5c9cf,#9aa1aa); border-radius: 0 0 40% 40%;
}

.gico { width: 14px; height: 14px; flex-shrink: 0; display: inline-block; vertical-align: -2px; }
.g-line {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; color: #1f2937; margin-bottom: 4px;
}
.site-chrome {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.92); padding: 6px 10px; font-size: 10px; font-weight: 800; color: #111;
}
.site-chrome span {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 12px 0 0 #facc15, 24px 0 0 #f87171;
}
.site-chrome b { margin-left: 28px; }
.fcard {
  position: absolute; z-index: 4; background: #fff; color: #111;
  border-radius: 16px; padding: 10px 12px;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
.fcard span { display: block; font-size: 11px; font-weight: 800; letter-spacing: .02em; color: #334155; }
.mini-chart { width: 100%; height: 38px; display: block; }
.f-search { top: 6px; left: 2%; width: 168px; padding: 8px 10px 10px; }
.f-soc { top: 12px; right: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; min-width: 176px; }
.soc-row { display: flex; align-items: center; gap: 7px; font-size: 1.05rem; }
.soc-row .bi-instagram { color: #e4405f; }
.soc-row .bi-facebook { color: #1877f2; }
.soc-row .bi-linkedin { color: #0a66c2; }
.soc-row .bi-youtube { color: #ff0000; }
.soc-row .bi-twitter-x { color: #111; }
.f-soc small { display: block; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #667085; }
.f-soc strong { display: block; font-size: .92rem; }
.ico-p { width: 28px; height: 28px; border-radius: 8px; background: #8b5cf6; color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.f-og { bottom: 8px; left: 0; width: 158px; text-align: left; }
.f-cv { top: 46%; right: 0; bottom: auto; width: 136px; text-align: center; }
.f-cv svg { width: 56px; height: 36px; margin: 0 auto 4px; display: block; }
.hero-nav { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.hero .swiper-pagination { position: static; }
.hero .swiper-pagination-bullet { width: 28px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.28); opacity: 1; margin: 0 3px !important; }
.hero .swiper-pagination-bullet-active { background: var(--orange); }
.hero .swiper-button-prev, .hero .swiper-button-next {
  position: static; margin: 0; width: 38px; height: 38px; background: rgba(255,255,255,.12); color: #fff; border-radius: 50%;
}
.hero .swiper-button-prev::after, .hero .swiper-button-next::after { font-size: .8rem; }
.hero-alt { padding: 40px 0 12px; max-width: 680px; }
.hero-alt h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 12px; }
.hero-alt p { color: rgba(255,255,255,.78); }

.strip {
  display: grid; grid-template-columns: repeat(8, minmax(140px, 1fr)); gap: 0;
  width: 100%; margin: 0; padding: 14px 24px;
  border-bottom: 1px solid var(--line); background: #fff;
}
.strip a {
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px;
  text-align: left; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: #1f2937; padding: 4px 8px; border-right: 1px solid #e8edf2; line-height: 1.2;
}
.strip a:last-child { border-right: 0; }
.strip i { font-size: 1.2rem; color: #111; }
.strip .si-code {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #0ea5e9;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.strip .si-code i { color: #0ea5e9; font-size: .85rem; }
.strip-brand i { color: #db2777; }
.strip-soc i { color: #7c3aed; }
.strip-gads .gico { width: 16px; height: 16px; }

section { padding: 64px 0; }
#about {
  background: #fff;
  padding: 28px 0 40px;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 20px 28px;
  align-items: center;
}
.about-copy .eyebrow,
.about-copy .eyebrow::before {
  font-family: var(--font-d);
  font-weight: 800;
  background-image: linear-gradient(90deg,#f7d046,#7ed957,#2aa9e0,#8bc34a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.about-copy .eyebrow {
  font-size: 12px;
  letter-spacing: .16em;
}
.about-copy h2 {
  color: #0b1220;
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 14em;
}
.about-lead {
  margin: 14px 0 18px;
  max-width: 38ch;
  color: #4b5565;
  font-size: .92rem;
  line-height: 1.55;
}
.btn-about {
  padding: .52rem 1.12rem;
  font-size: .84rem;
  background: #0b1220;
}
.about-visual { position: relative; overflow: visible; min-height: 0; background: transparent; }
.about-visual img { width: 100%; height: auto; display: block; object-fit: contain; }
.chip { position: absolute; background: #0e1a28; color: #fff; border-radius: 10px; padding: 8px 12px; font-size: 12px; font-weight: 700; }
.chip i { color: #8bc34a; margin-right: 6px; }
.c1 { top: 16px; right: 16px; }
.c2 { top: 46%; right: 20px; }
.c3 { bottom: 18px; right: 24px; }

.svc-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-bottom: 22px; }
.more { font-weight: 700; font-size: .8rem; color: #1570aa; }

.services-section {
  background: #fff;
  padding: 40px 0 48px;
}
.services-section .container {
  width: min(var(--max), calc(100% - 40px));
  max-width: var(--max);
  padding-left: 0;
  padding-right: 0;
}
.services-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
  min-height: 58px;
}
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f5a524;
}
.services-eyebrow::before {
  content: "\2192";
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #f5a524;
}
.services-heading h2 {
  margin: 0;
  color: #0b1b33;
  font-size: clamp(1.22rem, 1.85vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
  text-transform: uppercase;
}
.services-view-all {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #2f80ed;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 3px;
  white-space: nowrap;
}
.services-view-all i { font-size: 12px; }
.services-section .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid #e6edf3;
  border-radius: 14px;
  padding: 14px 12px 12px;
  min-height: 126px;
  height: 100%;
  box-shadow: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(16, 42, 67, .08);
  border-color: #d5e0ea;
}
.service-card:hover .service-icon { transform: scale(1.06); }
.service-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--ease);
}
.service-icon i { font-size: 1.05rem; }
.service-icon .gads-g { width: 20px; height: 20px; display: block; }
.service-card-body { min-width: 0; flex: 1; }
.service-card-body h3 {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: #0b1b33;
  text-transform: none;
  white-space: nowrap;
}
.service-num {
  font-size: 11px;
  font-weight: 600;
  color: #a8b4c2;
  letter-spacing: 0;
  font-family: var(--font-b);
  flex-shrink: 0;
}
.service-card-body p {
  margin: 0 0 8px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #7b8794;
}
.service-explore {
  font-size: 12.5px;
  font-weight: 600;
  color: #2f80ed;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-explore i { font-size: 12px; }
.icon-web { background: #e7f8ee; color: #22c55e; }
.icon-seo { background: #e8f1ff; color: #3b82f6; }
.icon-dm { background: #fff3dc; color: #f5a524; }
.icon-gads { background: #eaf3ff; }
.icon-smm { background: #f3e8ff; color: #a855f7; }
.icon-brand { background: #ffe8dc; color: #f97316; }
.icon-content { background: #eee6ff; color: #7c3aed; }
.icon-uiux { background: #ffe4ea; color: #f43f5e; }

.bg-soft { background: var(--bg-soft); }

.portfolio-section {
  padding: 38px 0 42px;
  color: #fff;
}
.portfolio-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 420' preserveAspectRatio='none'><polygon points='0,40 180,0 90,160' fill='%232e9e4f' opacity='.9'/><polygon points='40,0 260,20 120,180' fill='%232aa9e0' opacity='.55'/><polygon points='0,220 140,120 220,320 0,360' fill='%231a7a3a' opacity='.75'/><polygon points='0,300 200,260 80,420 0,420' fill='%232aa9e0' opacity='.45'/><polygon points='1200,0 1440,0 1440,120 1280,40' fill='%232e9e4f' opacity='.85'/><polygon points='1260,0 1440,0 1440,180' fill='%232aa9e0' opacity='.5'/><polygon points='1180,300 1440,240 1440,420 1220,420' fill='%232e9e4f' opacity='.7'/></svg>");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.portfolio-section .container {
  width: min(var(--max), calc(100% - 40px));
  max-width: var(--max);
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}
.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(270px, 1.05fr) minmax(330px, 1.4fr);
  gap: 20px 22px;
  align-items: center;
}
.portfolio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f7b733;
}
.portfolio-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #f7b733;
}
.portfolio-copy h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.portfolio-lead {
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 290px;
  margin: 0 0 22px;
}
.pf-feat {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  color: #111;
  display: block;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.pf-feat-shot { background: linear-gradient(180deg, #e8eef4, #d5dee6); }
.pf-devices {
  position: relative;
  height: 188px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 10px 0;
}
.pf-laptop {
  width: 78%;
  background: #1c1c1c;
  border-radius: 10px 10px 0 0;
  padding: 6px 6px 0;
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.pf-laptop img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top;
  border-radius: 4px 4px 0 0;
}
.pf-phone {
  position: absolute;
  right: 11%;
  bottom: 0;
  width: 26%;
  background: #111;
  border-radius: 12px 12px 0 0;
  padding: 5px 5px 0;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.pf-phone img {
  display: block;
  width: 100%;
  aspect-ratio: 9/15;
  max-height: 142px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px 8px 0 0;
}
.pf-feat-body { padding: 12px 14px 14px; }
.pf-feat-body h3 {
  margin: 0 0 3px;
  font-size: 1rem;
  font-weight: 800;
  color: #0b1b33;
  letter-spacing: -.02em;
}
.pf-feat-meta {
  margin: 0 0 3px;
  font-size: 11px;
  font-weight: 600;
  color: #98a2b3;
}
.pf-feat-desc {
  margin: 0 0 8px;
  font-size: 12.5px;
  color: #667085;
}
.pf-feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0b1b33;
}
.pf-minis {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.pf-mini {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: #111;
  display: block;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pf-mini:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.22); }
.pf-mini-shot {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eef3f7;
}
.pf-mini-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.pf-mini-body { padding: 8px 9px 9px; }
.pf-mini-body h3 {
  margin: 0 0 2px;
  font-size: 11.5px;
  font-weight: 700;
  color: #0b1b33;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.pf-mini-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  color: #98a2b3;
}
.pf-mini-meta i { color: #2aa9e0; font-size: 12px; flex-shrink: 0; }

@media (max-width: 1199.98px) {
  .portfolio-layout {
    grid-template-columns: 1fr 1.15fr;
  }
  .portfolio-copy { grid-column: 1 / -1; }
  .portfolio-lead { max-width: 560px; }
}

/* testimonials */
.testimonials-section { padding: 64px 0; background: #f7f9fc; }
.testimonials-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
}
.testimonials-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); max-width: 16ch; }
.testimonials-lead { color: var(--muted); max-width: 480px; margin: 8px 0 0; font-size: .92rem; }
.testimonials-nav { display: flex; gap: 8px; }
.testi-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid #d0d5dd;
  background: #fff; color: #111; display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .2s var(--ease);
}
.testi-btn:hover { background: #111; color: #fff; border-color: #111; }
.testimonials-swiper { overflow: hidden; padding-bottom: 36px; }
.testi-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 18px;
  padding: 24px 22px; height: 100%; box-shadow: 0 10px 28px rgba(16,24,40,.06);
  display: flex; flex-direction: column; gap: 14px;
}
.testi-stars { color: #f59e0b; font-size: .9rem; display: flex; gap: 3px; }
.testi-card blockquote {
  margin: 0; flex: 1; color: #344054; font-size: .94rem; line-height: 1.65;
  font-style: normal;
}
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #2aa9e0, #22c55e);
}
.testi-card:nth-child(2) .testi-avatar,
.swiper-slide:nth-child(2) .testi-avatar { background: linear-gradient(135deg, #6366f1, #2aa9e0); }
.swiper-slide:nth-child(3) .testi-avatar { background: linear-gradient(135deg, #f59e0b, #22c55e); }
.swiper-slide:nth-child(4) .testi-avatar { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.swiper-slide:nth-child(5) .testi-avatar { background: linear-gradient(135deg, #14b8a6, #2aa9e0); }
.testi-author strong { display: block; font-size: .92rem; color: #111; }
.testi-author span { font-size: .8rem; color: var(--muted); }
.testi-pagination { bottom: 0 !important; }
.testi-pagination .swiper-pagination-bullet {
  width: 28px; height: 3px; border-radius: 2px; background: #d0d5dd; opacity: 1;
}
.testi-pagination .swiper-pagination-bullet-active { background: var(--orange); }

.blog-intro { color: var(--muted); max-width: 420px; margin: 10px 0 16px; }

.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.blog-cats a {
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
  font-size: .78rem; font-weight: 700; color: #344054; background: #fff;
}
.blog-cats a:hover { background: #111; color: #fff; border-color: #111; }
.blog-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.bcard { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; height: 100%; }
.bthumb { aspect-ratio: 16/10; background: #e8eef3; position: relative; overflow: hidden; }
.bthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btag { position: absolute; top: 10px; left: 10px; background: #fff; border-radius: 999px; padding: 3px 10px; font-size: 10px; font-weight: 800; color: var(--orange); z-index: 1; }
.blog-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; background: #e8eef3; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-thumb-tag { position: absolute; top: 10px; left: 10px; z-index: 1; background: #fff; border-radius: 999px; padding: 3px 10px; font-size: 10px; font-weight: 800; color: var(--orange); }
.bcard .body { padding: 14px; }
.bcard h3 { font-size: .92rem; margin-bottom: 8px; }

.home-faq { padding: 64px 0; background: #fff; }
.home-faq h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }

.cta { padding: 56px 0 64px; color: #fff; }
.cta h2 { color: #fff; }
.cta-grid { display: grid; grid-template-columns: .85fr 1.85fr; gap: 22px; align-items: start; }
.cta-form {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px 24px;
  align-items: start;
  min-width: 0;
}
.cta-form-aside textarea {
  min-height: 72px;
  height: 72px;
  resize: vertical;
}
.cta-form-aside .btn { margin-top: 2px; }
.captcha-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.captcha-q {
  flex: 0 0 auto;
  min-width: 108px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px dashed rgba(255,255,255,.28);
  background: rgba(0,0,0,.25);
  font-weight: 800;
  letter-spacing: .04em;
  color: #7cffb2;
  user-select: none;
}
.captcha-row .form-control-2 { flex: 1; min-width: 0; }
.form-label-2 { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; color: rgba(255,255,255,.8); }
.form-control-2, .form-select-2 {
  width: 100%; border-radius: 10px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06); color: #fff; padding: 11px 12px;
}
.form-select-2 option { color: #111; }
.form-field { margin-bottom: 12px; }
.form-msg { display: none; margin-top: 10px; padding: 10px 12px; border-radius: 8px; font-size: .85rem; }
.form-msg.show { display: block; }
.form-msg.success { background: #e7f6ec; color: #146c43; }
.form-msg.error { background: #fdecec; color: #b3261e; }
.form-msg.info { background: #eef4ff; color: #1d4ed8; }
.invalid-feedback-2 { display: none; color: #fecaca; font-size: 12px; margin-top: 4px; }
.form-field.has-error .invalid-feedback-2 { display: block; }
.side li { display: flex; gap: 8px; margin-bottom: 12px; color: rgba(255,255,255,.8); }
.side .bi { color: var(--yellow); }

.site-footer {
  background: #07111c;
  color: #8b97a8;
  padding-top: 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr 1.05fr 1.15fr 1.15fr;
  gap: 28px 24px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  color: #d5dde6;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 14px;
}
.footer-col a,
.footer-col li {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  color: #8b97a8;
}
.footer-col a:hover { color: #fff; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-brand p {
  max-width: 210px;
  font-size: 13px;
  line-height: 1.55;
  color: #8b97a8;
  margin: 12px 0 16px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  color: #c5ced8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: transparent;
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #8b97a8;
}
.footer-contact a { display: inline; color: inherit; }
.footer-contact .bi {
  color: #a8b4c2;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-visit {
  display: inline-block;
  margin-top: 2px;
  font-size: 13px;
  color: #8b97a8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-visit:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 16px 0 22px;
  font-size: 12.5px;
  color: #7d8896;
}
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.footer-bottom-links a {
  color: #7d8896;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,.18);
  line-height: 1;
}
.footer-bottom-links a:first-child { padding-left: 0; }
.footer-bottom-links a:last-child { border-right: 0; padding-right: 0; }
.footer-bottom-links a:hover { color: #fff; }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 1070;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
}
.back-to-top {
  position: fixed; right: 18px; bottom: 80px; z-index: 1069;
  width: 42px; height: 42px; border-radius: 50%; background: #111; color: #fff; border: 0;
  display: none; align-items: center; justify-content: center; cursor: pointer;
}
.back-to-top.is-visible { display: flex; }

.page-header { padding: calc(var(--tick) + var(--hdr) + 36px) 0 40px; background: var(--bg-soft); }
.page-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.breadcrumb-2 { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.page-legal .page-hero h1 { max-width: none; }
.page-legal .page-hero .lead { max-width: 620px; }
.page-legal .breadcrumb-2 { color: rgba(255,255,255,.62); }
.page-legal .breadcrumb-2 a { color: rgba(255,255,255,.82); }
.page-legal .breadcrumb-2 a:hover { color: #fff; }
.legal-nav {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  max-width: 760px; margin: 28px auto 0; padding-top: 20px;
  border-top: 1px solid #e8edf3;
}
.legal-nav a {
  font-size: .9rem; font-weight: 600; color: var(--ink);
  text-decoration: underline; text-underline-offset: 3px;
}
.legal-nav a:hover { color: var(--green); }
[data-reveal] { opacity: 1; transform: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ----- Blog listing & article ----- */
.blog-hero {
  padding: calc(var(--tick) + var(--hdr) + 36px) 0 56px;
  color: #fff;
}
.blog-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px 48px;
  align-items: center;
}
.blog-hero .eyebrow { color: #9cc7ff; }
.blog-hero .eyebrow:not(.kicker)::before { color: #2aa9e0; content: ""; width: 22px; height: 3px; border-radius: 2px; background: #2aa9e0; }
.blog-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  margin: 0 0 14px;
  max-width: 16ch;
}
.blog-hero .lead {
  color: rgba(255,255,255,.78);
  max-width: 460px;
  font-size: .98rem;
  margin-bottom: 22px;
}
.blog-hero-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 16 / 10.4;
  box-shadow: 0 28px 60px rgba(0,0,0,.38);
}
.blog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-hero-media .tri {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.blog-hero-media .tri-tl,
.page-hero-media .tri-tl {
  top: 0; left: 0;
  width: 28%; height: 42%;
  background: linear-gradient(135deg, #2aa9e0, #22c55e);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .92;
}
.blog-hero-media .tri-br,
.page-hero-media .tri-br {
  right: 0; bottom: 0;
  width: 42%; height: 48%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 55%, #2aa9e0 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: .95;
}
.page-hero-media .tri,
.blog-hero-media .tri {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.blog-listing { padding: 56px 0 40px; background: #f7f9fc; }
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 32px;
}
.blog-filters button {
  border: 1px solid #e4e7ec;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: .82rem;
  color: #344054;
  cursor: pointer;
}
.blog-filters button:hover { border-color: #111; }
.blog-filters button.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
}
.blist-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eef1f4;
  box-shadow: 0 12px 32px rgba(16,24,40,.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.blist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16,24,40,.1);
}
.blist-card .thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef3;
}
.blist-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}
.blist-card:hover .thumb img { transform: scale(1.04); }
.blist-card .body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blist-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 8px;
}
.blist-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}
.blist-card h3 a:hover { color: #0d9488; }
.blist-card .excerpt {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}
.blist-meta {
  font-size: 12px;
  color: #98a2b3;
  font-weight: 600;
  margin-bottom: 10px;
}
.blist-more {
  color: #16a34a;
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blist-more:hover { color: #15803d; }
.blog-empty {
  display: none;
  text-align: center;
  color: var(--muted);
  padding: 24px;
}
.blog-list-grid.is-empty + .blog-empty { display: block; }

.news-band {
  padding: 52px 0;
  color: #fff;
}
.news-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.news-inner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.news-inner p { color: rgba(255,255,255,.75); margin: 0; }
.news-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.news-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.news-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #111;
  padding: 13px 18px;
  font-size: .92rem;
}
.news-form .form-msg { width: 100%; margin-top: 8px; }
.news-form .form-msg.success { background: rgba(255,255,255,.12); color: #d1fae5; border: 1px solid rgba(255,255,255,.2); }
.news-form .form-msg.error { background: rgba(255,255,255,.1); color: #fecaca; border: 1px solid rgba(255,255,255,.2); }
.news-form .form-msg a { color: #7cffb2; }

.article-hero h1 { max-width: 18ch; font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
}
.article-shell { background: #fff; padding: 48px 0 24px; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-body > p,
.article-body li { color: #475467; font-size: 1.02rem; line-height: 1.75; }
.article-body h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
}
.article-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--green); }
.page-legal .article-shell { padding: 32px 0 40px; }
.article-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  margin: 22px 0;
  align-items: start;
}
.article-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #2aa9e0);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-step h3 { font-size: 1.05rem; margin: 8px 0 6px; }
.article-step p { margin: 0; }
.thoughts-box {
  background: linear-gradient(180deg, #eef7ff 0%, #f4fbf7 100%);
  border: 1px solid #d7ebf8;
  border-left: 4px solid #2aa9e0;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 36px 0 8px;
}
.thoughts-box h2 { margin-top: 0; }
.share-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #344054;
}
.share-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475467;
}
.share-row a:hover { background: #111; color: #fff; border-color: #111; }
.related { padding: 12px 0 64px; background: #fff; }
.related h2 { margin-bottom: 22px; font-size: 1.5rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related .blist-card h3 { font-size: 1rem; }

/* ----- About & Contact pages ----- */
.page-hero { padding: calc(var(--tick) + var(--hdr) + 28px) 0 40px; color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); max-width: 14ch; margin-bottom: 14px; }
.page-hero .lead { color: rgba(255,255,255,.78); max-width: 480px; margin-bottom: 22px; }
.page-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 36px 44px; align-items: center; }
.page-hero-media { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 16/10.2; box-shadow: 0 28px 60px rgba(0,0,0,.38); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .eyebrow { color: #9cc7ff; }
.page-hero .eyebrow:not(.kicker)::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: #2aa9e0; }
.hero-float {
  position: absolute; z-index: 3; background: rgba(255,255,255,.95);
  border-radius: 12px; padding: 10px 14px; font-size: 12px; font-weight: 700;
  color: #111; box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.hero-float.tl { top: 14px; left: 14px; }
.hero-float.br { bottom: 18px; right: 18px; display: flex; align-items: center; gap: 8px; }
.hero-float.br i { color: #22c55e; font-size: 1.1rem; }

.page-section { padding: 48px 0; }
.page-section.soft { background: #f7f9fc; }
.split-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px 48px; align-items: start; }
.split-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.split-head p { color: var(--muted); }
.stat-row { display: flex; flex-wrap: wrap; gap: 22px 28px; margin-top: 24px; }
.stat-item { min-width: 120px; }
.stat-item strong { display: block; font-size: 1.5rem; color: #111; font-family: var(--font-d); }
.stat-item span { font-size: .82rem; color: var(--muted); font-weight: 600; }
.stat-item i { color: #2aa9e0; margin-right: 6px; }

.who-visual { position: relative; }
.who-visual img { width: 100%; border-radius: 18px; box-shadow: 0 20px 50px rgba(16,24,40,.12); }
.page-about .who-visual-frame {
  max-height: 240px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(16,24,40,.12);
}
.page-about .who-visual-frame img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 0;
  box-shadow: none;
}
.page-about .mv-stack { gap: 10px; margin-top: 12px; }
.page-about .mv-card { padding: 14px 16px; }
.mv-stack { display: grid; gap: 14px; margin-top: 16px; }
.mv-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 16px;
  padding: 18px 20px; box-shadow: 0 10px 28px rgba(16,24,40,.06);
}
.mv-card h3 { font-size: 1rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.mv-card h3 i { color: #2aa9e0; }
.mv-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feature-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 16px;
  padding: 22px 20px; box-shadow: 0 10px 28px rgba(16,24,40,.05);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(16,24,40,.1); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #e0f2fe, #dcfce7);
  color: #0d9488; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 12px;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 6px; }
.feature-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 16px;
  overflow: hidden; box-shadow: 0 10px 28px rgba(16,24,40,.06);
}
.team-avatar {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #2aa9e0, #22c55e);
}
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, #6366f1, #2aa9e0); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #f59e0b, #22c55e); }
.team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.team-body { padding: 14px 16px 16px; }
.team-body h3 { font-size: .98rem; margin-bottom: 2px; }
.team-body p { margin: 0 0 10px; color: var(--muted); font-size: .82rem; }
.team-body a { color: #0d9488; font-size: 1rem; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 16px;
  padding: 24px 20px; text-align: center; box-shadow: 0 10px 28px rgba(16,24,40,.05);
}
.value-card i {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #22c55e, #2aa9e0); color: #fff; font-size: 1.25rem;
}
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.page-cta {
  padding: 52px 0; color: #fff; text-align: center;
}
.page-cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.page-cta p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 20px; }
.page-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

.info-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: -36px; position: relative; z-index: 2; padding-bottom: 8px;
}
.info-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 16px;
  padding: 22px 18px; box-shadow: 0 14px 36px rgba(16,24,40,.08);
}
.info-card .ic {
  width: 44px; height: 44px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 12px;
}
.info-card .ic.green { background: #dcfce7; color: #16a34a; }
.info-card .ic.blue { background: #e0f2fe; color: #0284c7; }
.info-card .ic.purple { background: #ede9fe; color: #7c3aed; }
.info-card .ic.teal { background: #ccfbf1; color: #0d9488; }
.info-card h3 { font-size: 1rem; margin-bottom: 8px; }
.info-card p, .info-card a { font-size: .86rem; color: var(--muted); margin: 0 0 4px; display: block; }
.info-card a:hover { color: #111; }
.info-card .status { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: #16a34a; margin-top: 6px; }
.info-card .status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }

.contact-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }
.contact-form-wrap {
  background: #fff; border: 1px solid #eef1f4; border-radius: 18px;
  padding: 28px 26px; box-shadow: 0 12px 32px rgba(16,24,40,.06);
}
.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 4px; }
.contact-map-wrap {
  background: #fff; border: 1px solid #eef1f4; border-radius: 18px;
  padding: 28px 26px; box-shadow: 0 12px 32px rgba(16,24,40,.06);
}
.contact-map-wrap h2 { font-size: 1.5rem; margin-bottom: 12px; }
.map-embed-wrap { border-radius: 14px; overflow: hidden; margin-top: 14px; border: 1px solid #eef1f4; }
.map-embed-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }
.contact-social-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.contact-social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: #475467;
}
.contact-social-row a:hover { background: #111; color: #fff; border-color: #111; }

.form-light .form-label-2 { color: #344054; }
.form-light .form-control-2,
.form-light .form-select-2 {
  background: #fff; color: #111; border: 1px solid #e4e7ec;
}
.form-light .form-control-2:focus,
.form-light .form-select-2:focus { border-color: #2aa9e0; outline: none; box-shadow: 0 0 0 3px rgba(42,169,224,.15); }
.form-light .invalid-feedback-2 { color: #b3261e; }
.form-light .captcha-q { border-color: #d0d5dd; background: #f9fafb; color: #0d9488; }
.form-light .form-msg.success { background: #e7f6ec; color: #146c43; }
.form-light .form-msg.error { background: #fdecec; color: #b3261e; }
.form-light textarea.form-control-2 { min-height: 96px; resize: vertical; }

.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid #eef1f4; border-radius: 14px; background: #fff; overflow: hidden; }
.faq-trigger {
  width: 100%; border: 0; background: #fff; text-align: left;
  padding: 16px 18px; font-weight: 700; font-size: .95rem; color: #111;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer;
}
.faq-trigger i { color: #98a2b3; transition: transform .2s var(--ease); }
.faq-item.is-open .faq-trigger i { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 18px 16px; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.faq-item.is-open .faq-body { display: block; }
.faq-aside {
  background: linear-gradient(180deg, #eef7ff 0%, #f4fbf7 100%);
  border-radius: 16px; padding: 22px; border: 1px solid #d7ebf8;
  font-size: .9rem; color: #475467;
}

/* ----- Service pages (E-commerce etc.) ----- */
.page-service .page-hero h1 { max-width: 16ch; }
.page-service .hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.svc-hero-media {
  aspect-ratio: auto; min-height: 340px; overflow: visible;
  background: transparent; box-shadow: none;
}
.svc-device-stack { position: relative; height: 360px; }
.svc-laptop {
  position: absolute; right: 0; top: 10px; width: 78%;
  background: #111; border-radius: 14px 14px 8px 8px; padding: 10px 10px 0;
  box-shadow: 0 28px 60px rgba(0,0,0,.45);
}
.svc-laptop::after {
  content: ""; display: block; height: 12px; margin: 8px auto 0;
  width: 88%; border-radius: 0 0 8px 8px;
  background: linear-gradient(#2a2d33, #1b1e24);
}
.svc-laptop-screen {
  border-radius: 8px 8px 0 0; overflow: hidden; aspect-ratio: 16/10;
}
.svc-laptop-screen img { width: 100%; height: 100%; object-fit: cover; }
.svc-phone {
  position: absolute; left: 0; bottom: 0; width: 30%;
  background: #111; border-radius: 22px; padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.svc-phone img {
  width: 100%; height: auto; border-radius: 16px; aspect-ratio: 9/16; object-fit: cover;
}
.svc-visual img {
  width: 100%; border-radius: 18px; box-shadow: 0 20px 50px rgba(16,24,40,.12);
}
.page-ecommerce .split-head--match { align-items: stretch; }
.page-ecommerce .svc-visual { height: 100%; min-height: 0; }
.page-ecommerce .svc-visual-frame {
  height: 100%; overflow: hidden; border-radius: 18px;
  box-shadow: 0 20px 50px rgba(16,24,40,.12);
}
.page-ecommerce .svc-visual-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  border-radius: 0; box-shadow: none;
}
.check-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.check-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: #344054; font-size: .92rem;
}
.check-list i { color: #22c55e; font-size: 1.05rem; flex-shrink: 0; }

.svc-process { padding: 48px 0; }
.svc-process-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap; margin-bottom: 36px;
}
.svc-process-head h2 { color: #fff; max-width: 18ch; margin-bottom: 10px; }
.svc-process-head .lead { max-width: 520px; margin: 0; }
.process-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  counter-reset: step;
}
.process-steps li {
  position: relative; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 22px 16px 18px; text-align: center;
}
.process-steps li::after {
  content: ""; position: absolute; top: 50%; right: -14px; width: 14px; height: 2px;
  background: rgba(255,255,255,.25); transform: translateY(-50%);
}
.process-steps li:last-child::after { display: none; }
.step-num {
  display: block; font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  color: #9cc7ff; margin-bottom: 10px;
}
.process-steps i {
  display: inline-flex; width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(42,169,224,.18); color: #7dd3fc; font-size: 1.1rem; margin-bottom: 10px;
}
.process-steps h3 { color: #fff; font-size: .92rem; margin-bottom: 6px; }
.process-steps p { margin: 0; color: rgba(255,255,255,.68); font-size: .8rem; line-height: 1.5; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.industry-card {
  border: 1px solid #eef1f4; border-radius: 16px; padding: 22px 18px;
  background: #fff; box-shadow: 0 8px 24px rgba(16,24,40,.05);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.industry-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(16,24,40,.1); }
.industry-card i {
  width: 42px; height: 42px; border-radius: 12px; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 10px;
  background: #e0f2fe; color: #0284c7; font-size: 1.1rem;
}
.industry-card h3 { font-size: .98rem; margin-bottom: 4px; }
.industry-card p { margin: 0; color: var(--muted); font-size: .84rem; }

.svc-portfolio-head { margin-bottom: 24px; }
.svc-subhead { font-size: 1.15rem; margin: 28px 0 16px; }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 8px; }
.cat-card {
  border: 1px solid #eef1f4; border-radius: 14px; background: #fff;
  padding: 16px 10px; text-align: center; font-weight: 700; font-size: .82rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.cat-card i { color: #2aa9e0; font-size: 1.2rem; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 18px;
  overflow: hidden; box-shadow: 0 12px 32px rgba(16,24,40,.06);
}
.project-thumb { display: block; overflow: hidden; }
.project-thumb {
  display: flex; align-items: center; justify-content: center;
  height: 190px; padding: 10px; background: #eef2f6;
}
.project-thumb img {
  width: 100%; height: 100%; max-height: 170px;
  object-fit: contain; object-position: center center;
  transition: transform .3s var(--ease);
}
.project-card:hover .project-thumb img { transform: scale(1.03); }
.project-body { padding: 16px 18px 18px; }
.project-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #0d9488; background: #ecfdf5;
  border-radius: 999px; padding: 4px 10px; margin-bottom: 8px;
}
.project-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.project-body p { margin: 0 0 12px; color: var(--muted); font-size: .86rem; }
.project-link { font-weight: 700; font-size: .88rem; color: #2aa9e0; display: inline-flex; align-items: center; gap: 6px; }
.project-link:hover { color: #111; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card {
  position: relative; background: #fff; border: 1px solid #eef1f4;
  border-radius: 18px; padding: 24px 20px; box-shadow: 0 10px 28px rgba(16,24,40,.05);
}
.pricing-card.is-featured {
  border-color: #111; box-shadow: 0 18px 40px rgba(16,24,40,.12);
  transform: translateY(-4px);
}
.pricing-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #22c55e, #22d3ee); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--font-d); font-size: 2rem; font-weight: 800;
  color: #111; margin: 0 0 16px; line-height: 1;
}
.pricing-card .price span { font-size: 1.1rem; vertical-align: top; }
.pricing-card .price-note { font-size: .78rem; font-weight: 600; color: var(--muted); margin-left: 4px; }
.pricing-card ul { margin: 0 0 18px; padding: 0; list-style: none; display: grid; gap: 8px; }
.pricing-card li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .86rem; color: #475467;
}
.pricing-card li i { color: #22c55e; margin-top: 2px; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ----- Portfolio page ----- */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.type-filter-btn {
  border: 1px solid #d0d5dd; background: #fff; color: #344054;
  border-radius: 999px; padding: 8px 16px; font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: .2s var(--ease);
}
.type-filter-btn:hover { border-color: #111; color: #111; }
.type-filter-btn.is-active {
  background: #111; color: #fff; border-color: #111;
}
.pf-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 18px;
}
.portfolio-item { display: none; }
.portfolio-item.is-visible { display: block; }
.pf-page-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 18px;
  overflow: hidden; height: 100%; box-shadow: 0 10px 28px rgba(16,24,40,.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pf-page-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16,24,40,.12); }
.pf-page-thumb {
  display: flex; align-items: center; justify-content: center;
  height: 190px; padding: 10px; overflow: hidden;
  background: linear-gradient(180deg, #eef2f6 0%, #e4eaf0 100%);
  border-bottom: 1px solid #eef1f4;
}
.pf-page-thumb img {
  width: 100%; height: 100%; max-height: 170px;
  object-fit: cover; object-position: top center;
  display: block; transition: transform .3s var(--ease);
}
.pf-page-card:hover .pf-page-thumb img { transform: scale(1.02); }
.pf-page-body { padding: 16px 18px 18px; }
.pf-page-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #0d9488; background: #ecfdf5;
  border-radius: 999px; padding: 4px 10px; margin-bottom: 8px;
}
.pf-page-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.35; }
.pf-page-body p { margin: 0 0 12px; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.pf-page-link {
  font-weight: 700; font-size: .88rem; color: #2aa9e0;
  display: inline-flex; align-items: center; gap: 6px;
}
.pf-page-link:hover { color: #111; }

/* ----- Services overview page ----- */
.page-services .page-hero h1 { max-width: 18ch; }
.page-services .svc-hero-visual { min-height: 380px; overflow: visible; }
.svc-hero-chip {
  position: absolute; z-index: 5;
  background: rgba(255,255,255,.96);
  border-radius: 12px; padding: 10px 12px;
  font-size: 11px; font-weight: 700; color: #111;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  display: flex; align-items: center; gap: 8px;
  max-width: 168px; line-height: 1.3;
}
.svc-hero-chip.chip-tl { top: 4px; left: -8px; }
.svc-hero-chip.chip-tr { top: 28px; right: -6px; }
.svc-hero-chip.chip-bl { bottom: 72px; left: -12px; }
.svc-hero-chip.chip-br { bottom: 18px; right: -10px; }
.chip-ic {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.chip-ic-blue { background: #e0f2fe; color: #0284c7; }
.chip-ic-purple { background: #ede9fe; color: #7c3aed; }
.chip-ic-teal { background: #ccfbf1; color: #0d9488; }
.chip-ic-green { background: #dcfce7; color: #16a34a; }

.svc-explore-head {
  text-align: center; max-width: 640px; margin: 0 auto 36px;
}
.svc-explore-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 8px; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #16a34a;
}
.svc-explore-kicker::before {
  content: ""; width: 22px; height: 3px; border-radius: 2px; background: #c6f135;
}
.svc-explore-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 10px;
}
.svc-explore-head p { margin: 0; color: var(--muted); }

.svc-explore-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.svc-pillar {
  border: 1px solid #eef1f4; border-radius: 18px; background: #fff;
  padding: 18px 14px 16px; box-shadow: 0 10px 28px rgba(16,24,40,.05);
  display: flex; flex-direction: column;
}
.svc-pillar-head { text-align: center; margin-bottom: 14px; }
.svc-pillar-icon {
  width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 10px;
}
.svc-pillar--green .svc-pillar-icon { background: #dcfce7; color: #16a34a; }
.svc-pillar--blue .svc-pillar-icon { background: #e0f2fe; color: #0284c7; }
.svc-pillar--purple .svc-pillar-icon { background: #ede9fe; color: #7c3aed; }
.svc-pillar--orange .svc-pillar-icon { background: #ffedd5; color: #ea580c; }
.svc-pillar-head h3 { font-size: .98rem; margin-bottom: 6px; line-height: 1.35; }
.svc-pillar-head p {
  margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5;
}
.svc-pillar-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1;
}
.svc-mini {
  background: #f8fafc; border: 1px solid #eef1f4; border-radius: 12px;
  padding: 12px 10px; display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.svc-mini:hover {
  transform: translateY(-2px); box-shadow: 0 10px 24px rgba(16,24,40,.08);
}
.svc-mini-ic {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; margin-bottom: 8px; background: #fff; color: #475467;
  border: 1px solid #e4e7ec;
}
.svc-pillar--green .svc-mini-ic { color: #16a34a; }
.svc-pillar--blue .svc-mini-ic { color: #0284c7; }
.svc-pillar--purple .svc-mini-ic { color: #7c3aed; }
.svc-pillar--orange .svc-mini-ic { color: #ea580c; }
.svc-mini h4 { font-size: .78rem; margin-bottom: 4px; line-height: 1.3; }
.svc-mini p {
  margin: 0 0 8px; color: var(--muted); font-size: .7rem; line-height: 1.45; flex: 1;
}
.svc-mini a {
  font-size: .68rem; font-weight: 700; color: #2aa9e0;
  display: inline-flex; align-items: center; gap: 4px;
}
.svc-mini a:hover { color: #111; }
.svc-mini[id] { scroll-margin-top: calc(var(--tick) + var(--hdr) + 28px); }

.page-cta--split { text-align: left; }
.page-cta-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
}
.page-cta--split .page-cta-actions { justify-content: flex-start; }
.page-cta--split .eyebrow.kicker { color: #c6f135; }
.page-cta--split .eyebrow.kicker::before {
  content: ""; width: 22px; height: 3px; border-radius: 2px; background: #c6f135;
}
.cta-stamp {
  width: 132px; height: 132px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; transform: rotate(-12deg);
  font-family: var(--font-d); line-height: 1.15;
}
.cta-stamp span { font-size: .82rem; font-weight: 600; opacity: .9; }
.cta-stamp strong { font-size: 1.05rem; font-weight: 800; }

/* ----- Digital Marketing overview page ----- */
.page-dm .page-hero h1 { max-width: 17ch; }
.dm-hero-grid {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: 36px 44px; align-items: center;
}
.dm-hero-visual {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 16/10.2; box-shadow: 0 28px 60px rgba(0,0,0,.38);
}
.dm-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.dm-stat {
  position: absolute; z-index: 4; background: rgba(255,255,255,.96);
  border-radius: 12px; padding: 10px 12px; box-shadow: 0 12px 30px rgba(0,0,0,.18);
  display: flex; align-items: center; gap: 10px; min-width: 148px;
}
.dm-stat small {
  display: block; font-size: .68rem; font-weight: 600; color: var(--muted); line-height: 1.2;
}
.dm-stat strong { font-size: 1rem; color: #111; font-family: var(--font-d); }
.dm-stat-1 { top: 14%; left: -18px; }
.dm-stat-2 { top: 42%; right: -14px; }
.dm-stat-3 { bottom: 16%; left: 8%; }
.dm-stat-ic {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dm-stat-ic-green { background: #dcfce7; color: #16a34a; }
.dm-stat-ic-blue { background: #e0f2fe; color: #0284c7; }
.dm-stat-ic-orange { background: #ffedd5; color: #ea580c; }

.dm-split {
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: 36px 48px; align-items: start;
}
.dm-split-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.dm-split-copy p { color: var(--muted); margin-bottom: 18px; }
.dm-split--process { align-items: center; }
.dm-process .dm-split-copy h2 { color: #fff; }
.dm-split--process .dm-split-copy .lead { color: rgba(255,255,255,.75); }
.page-dm .hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

.dm-svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.dm-svc-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 16px;
  padding: 18px 16px; box-shadow: 0 8px 24px rgba(16,24,40,.05);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: block; color: inherit;
}
.dm-svc-card:hover {
  transform: translateY(-3px); box-shadow: 0 14px 32px rgba(16,24,40,.1); color: inherit;
}
.dm-svc-ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff7ed; color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 10px;
}
.dm-svc-card h3 { font-size: .95rem; margin-bottom: 6px; }
.dm-svc-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.dm-process { padding: 48px 0; }
.dm-process-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  counter-reset: dmstep;
}
.dm-process-steps li {
  position: relative; text-align: center; padding: 8px 6px 0;
}
.dm-process-steps li::after {
  content: ""; position: absolute; top: 34px; left: calc(50% + 22px);
  width: calc(100% - 44px); height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 4px, transparent 4px 8px);
}
.dm-process-steps li:last-child::after { display: none; }
.dm-step-num {
  display: block; font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  color: #9cc7ff; margin-bottom: 8px;
}
.dm-step-ic {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(42,169,224,.18); color: #7dd3fc; font-size: 1.05rem;
}
.dm-process-steps h3 { color: #fff; font-size: .82rem; margin-bottom: 6px; line-height: 1.3; }
.dm-process-steps p { margin: 0; color: rgba(255,255,255,.65); font-size: .72rem; line-height: 1.45; }

.dm-industry-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.dm-industry-card {
  display: block; color: inherit; text-decoration: none;
  background: #fff; border: 1px solid #eef1f4; border-radius: 16px;
  overflow: hidden; box-shadow: 0 8px 24px rgba(16,24,40,.06);
  padding-bottom: 14px; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dm-industry-card:hover {
  transform: translateY(-4px);
  border-color: #d6e8f5;
  box-shadow: 0 14px 32px rgba(16,24,40,.1);
  color: inherit;
}
.dm-industry-img { aspect-ratio: 4/3; overflow: hidden; }
.dm-industry-img img { width: 100%; height: 100%; object-fit: cover; }
.dm-industry-ic {
  width: 36px; height: 36px; border-radius: 50%; margin: -18px auto 8px;
  position: relative; z-index: 1; background: #fff; border: 1px solid #eef1f4;
  display: inline-flex; align-items: center; justify-content: center;
  color: #2aa9e0; font-size: .95rem; box-shadow: 0 6px 16px rgba(16,24,40,.08);
}
.dm-industry-card h3 { font-size: .88rem; margin-bottom: 2px; }
.dm-industry-card p { margin: 0; color: var(--muted); font-size: .72rem; }

.dm-results-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap; margin-bottom: 24px;
}
.dm-results-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.dm-results-head p { margin: 0; color: var(--muted); max-width: 520px; }
.dm-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dm-case-card {
  background: #fff; border: 1px solid #eef1f4; border-radius: 18px;
  overflow: hidden; box-shadow: 0 10px 28px rgba(16,24,40,.06);
}
.dm-case-img { aspect-ratio: 16/10; overflow: hidden; }
.dm-case-img img { width: 100%; height: 100%; object-fit: cover; }
.dm-case-body { padding: 16px 18px 18px; }
.dm-case-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #0d9488; background: #ecfdf5;
  border-radius: 999px; padding: 4px 10px; margin-bottom: 8px;
}
.dm-case-body h3 { font-size: 1rem; margin-bottom: 4px; }
.dm-case-metric {
  font-family: var(--font-d); font-weight: 800; color: #111;
  font-size: .92rem; margin-bottom: 8px;
}
.dm-case-body p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }

.dm-testimonials { background: #fff; }
.dm-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dm-cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); max-width: 14ch; margin-bottom: 10px; }
.dm-cta p { color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 18px; }
.dm-cta .page-cta-inner { align-items: center; }
.cta-stamp--growth { transform: rotate(-10deg); }

/* ----- Digital marketing inner pages ----- */
.page-dm-inner .page-hero h1,
.page-ind-inner .page-hero h1,
.page-svc-inner .page-hero h1 { max-width: 16ch; }
.dm-inner { padding: 12px 0 28px; }
.dm-inner-grid {
  display: flex; flex-direction: column; gap: 22px;
}
.dm-sidebar {
  position: static; display: flex; align-items: stretch; gap: 16px;
}
.dm-sidebar-nav {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px; flex: 1;
  background: #fff; border: 1px solid #eef1f4; border-radius: 16px;
  padding: 10px; box-shadow: 0 8px 24px rgba(16,24,40,.05);
}
.dm-sidebar-link {
  display: flex; align-items: center; gap: 10px;
  flex: 0 0 auto; white-space: nowrap;
  padding: 10px 14px; border-radius: 12px;
  font-weight: 600; font-size: .9rem; color: #344054;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.dm-sidebar-link i { color: var(--orange); font-size: 1.05rem; flex-shrink: 0; }
.dm-sidebar-link.is-active {
  background: #eef4ff; color: #111; font-weight: 700;
}
.dm-sidebar-link:hover:not(.is-active) { background: #f8fafc; color: #111; }
.dm-sidebar-cta {
  flex: 0 0 240px; margin-top: 0; align-self: stretch;
  background: #f8fafc; border: 1px solid #eef1f4;
  border-radius: 16px; padding: 16px 14px;
}
.dm-sidebar-cta h3 { font-size: .95rem; margin-bottom: 6px; }
.dm-sidebar-cta p { margin: 0 0 12px; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.dm-sidebar-cta .btn { width: 100%; justify-content: center; }
.dm-inner-content { min-width: 0; }
.dm-inner-content > section + section { margin-top: 28px; }
.page-dm-inner .check-list,
.page-ind-inner .check-list { margin-top: 14px; gap: 8px; }
.dm-inner-process { padding: 20px 18px; }
.dm-inner-process ol { margin-top: 12px; gap: 10px; }
.dm-inner-block h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); margin-bottom: 12px; }
.dm-inner-block p { color: var(--muted); }
.dm-include-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px;
}
.dm-include-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff; border: 1px solid #eef1f4; border-radius: 14px;
  padding: 14px 14px; font-size: .88rem; font-weight: 600; color: #344054;
}
.dm-include-item i { color: #22c55e; margin-top: 2px; flex-shrink: 0; }
.dm-inner-process {
  background: #f7f9fc; border: 1px solid #eef1f4; border-radius: 18px;
  padding: 24px 22px;
}
.dm-inner-process ol {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.dm-inner-process li {
  background: #fff; border: 1px solid #eef1f4; border-radius: 14px;
  padding: 16px 12px; text-align: center;
}
.dm-inner-process li strong {
  display: block; font-size: .72rem; color: #2aa9e0; margin-bottom: 6px;
}
.dm-inner-process li span {
  display: inline-flex; width: 38px; height: 38px; border-radius: 50%;
  align-items: center; justify-content: center;
  background: #eef4ff; color: #2aa9e0; margin-bottom: 8px; font-size: 1rem;
}
.dm-inner-process li h3 { font-size: .82rem; margin-bottom: 4px; }
.dm-inner-process li p { margin: 0; font-size: .72rem; color: var(--muted); line-height: 1.45; }
