:root {
  --blue: #2490EF;
  --blue-dk: #1a75c9;
  --blue-lt: #5aadf4;
  --blue-bg: #EBF5FE;
  --teal: #00A09D;
  --green: #22c55e;
  --orange: #e8572a;
  --yellow: #f0ad4e;
  --purple: #7c3aed;
  --white: #fff;
  --bg-lt: #F8F9FA;
  --bg-ltr: #f0f4f8;
  --txt: #0f172a;
  --body: #475569;
  --muted: #94a3b8;
  --bdr: #e2e8f0;
  --bdr-lt: #f1f5f9;
  --f1: 'Roboto', sans-serif;
  --f2: 'Raleway', sans-serif;
  --f3: 'Open Sans', sans-serif;
  --f4: 'Source Sans Pro', sans-serif;
  --f5: 'Noto Serif', serif;
  --f6: 'Arvo', serif;
  --mw: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--f1);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden
}

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

img {
  max-width: 100%;
  display: block
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px
}

.W {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px
}

section {
  padding: 80px 0
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f1);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 11px 28px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap
}

.btn-bl {
  background: var(--blue);
  color: #fff
}

.btn-bl:hover {
  background: var(--blue-dk);
  transform: translateY(-2px)
}

.btn-ol {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue)
}

.btn-ol:hover {
  background: var(--blue-bg);
  transform: translateY(-2px)
}

.btn-wh {
  background: #fff;
  color: var(--blue);
  font-weight: 700
}

.btn-wh:hover {
  transform: translateY(-2px)
}

.btn-gh {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4)
}

.btn-gh:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px)
}

/* Section headers */
.eyebrow {
  display: block;
  font-family: var(--f3);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px
}

.sec-title {
  font-family: var(--f2);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.14;
  margin-bottom: 14px
}

.sec-title .hl {
  color: var(--blue)
}

.sec-desc {
  font-family: var(--f4);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.72
}

.cen {
  text-align: center
}

.cen .sec-desc {
  margin: 0 auto 44px
}

/* Reveal */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease
}

.rv.vis {
  opacity: 1;
  transform: none
}

/* Navbar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr-lt);
  transition: box-shadow .3s
}

.nav.sc {
  box-shadow: 0 2px 16px rgba(36, 144, 239, .1)
}

.nav-in {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.logo-name {
  font-family: var(--f2);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--txt)
}

.logo-name span {
  color: var(--blue)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none
}

.nav-links a {
  font-family: var(--f1);
  font-size: .83rem;
  font-weight: 500;
  color: var(--body);
  padding: 6px 11px;
  border-radius: 6px;
  transition: all .2s
}

.nav-links a:hover {
  background: var(--blue-bg);
  color: var(--blue)
}

.nav-acts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.nav-demo {
  font-family: var(--f1);
  font-size: .83rem;
  font-weight: 500;
  color: var(--blue);
  padding: 7px 15px;
  border: 1.5px solid var(--blue);
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap
}

.nav-demo:hover {
  background: var(--blue-bg)
}

.nav-go {
  font-family: var(--f1);
  font-size: .83rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  padding: 8px 20px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap
}

.nav-go:hover {
  background: var(--blue-dk)
}

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0
}

.hbg span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  z-index: 999;
  padding: 20px 28px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  border-top: 1px solid var(--bdr)
}

.mob-nav.open {
  display: flex
}

.mob-nav a {
  font-family: var(--f1);
  font-size: .95rem;
  font-weight: 500;
  color: var(--txt);
  padding: 11px 14px;
  border-radius: 6px
}

.mob-nav a:hover {
  background: var(--blue-bg);
  color: var(--blue)
}

@media(max-width:768px) {

  .nav-links,
  .nav-acts {
    display: none
  }

  .hbg {
    display: flex
  }
}

/* Hero */
.hero {
  padding: 122px 0 72px;
  background: var(--white);
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(36, 144, 239, .1) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .55
}

.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 144, 239, .06), transparent 70%);
  top: -250px;
  right: -200px;
  pointer-events: none
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-bg);
  border: 1px solid rgba(36, 144, 239, .25);
  border-radius: 50px;
  padding: 5px 15px;
  margin-bottom: 18px;
  font-family: var(--f3);
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pls 1.5s ease infinite
}

@keyframes pls {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.hero-h1 {
  font-family: var(--f2);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.1;
  margin-bottom: 18px
}

.hero-h1 .cb {
  color: var(--blue)
}

.hero-sub {
  font-family: var(--f4);
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 490px;
  line-height: 1.75;
  margin-bottom: 32px
}

@media(max-width:900px) {
  .hero-sub {
    margin-left: auto;
    margin-right: auto
  }
}

.hero-acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px
}

@media(max-width:900px) {
  .hero-acts {
    justify-content: center
  }
}

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--bdr-lt);
  flex-wrap: wrap
}

@media(max-width:900px) {
  .hero-stats {
    justify-content: center
  }
}

.stat-n {
  font-family: var(--f2);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  line-height: 1
}

.stat-l {
  font-family: var(--f3);
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600
}

/* Hero frame - crisp, no shadows */
.hero-frame {
  position: relative;
  z-index: 1
}

.hf-main {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--bdr)
}

.hf-main img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top left;
  display: block
}

.hf-float {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--bdr);
  background: #fff
}

.hf-float img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top left
}

.hf-a {
  width: 54%;
  right: -20px;
  bottom: -24px;
  animation: fa 5s ease-in-out infinite
}

.hf-a img {
  height: 120px
}

.hf-b {
  width: 38%;
  left: -18px;
  top: 18%;
  animation: fb 6s ease-in-out infinite
}

.hf-b img {
  height: 90px
}

@keyframes fa {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes fb {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

.hf-chip {
  position: absolute;
  z-index: 10;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 50px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f1);
  font-size: .72rem;
  font-weight: 600;
  color: var(--txt)
}

.chip-d {
  width: 7px;
  height: 7px;
  border-radius: 50%
}

.hf-chip-a {
  top: -14px;
  left: 10px
}

.hf-chip-b {
  bottom: 6px;
  left: 28%
}

@media(max-width:600px) {

  .hf-float,
  .hf-chip {
    display: none
  }
}

/* Marquee */
.strip {
  background: var(--txt);
  padding: 14px 0;
  overflow: hidden
}

.strip-row {
  display: flex;
  gap: 44px;
  animation: mq 22s linear infinite;
  white-space: nowrap
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f3);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  flex-shrink: 0
}

.strip-item img {
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 1
}

.strip-item .dot {
  color: rgba(255, 255, 255, .2)
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* Product cards */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 44px
}

.prod-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s;
  cursor: pointer
}

.prod-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue)
}

.prod-img {
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px
}

.prod-img img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform .3s
}

.prod-card:hover .prod-img img {
  transform: scale(1.06)
}

.prod-body {
  padding: 18px 20px
}

.prod-tag {
  font-family: var(--f3);
  font-size: .63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  background: var(--blue-bg);
  padding: 3px 9px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 9px
}

.prod-body h3 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .98rem;
  color: var(--txt);
  margin-bottom: 5px
}

.prod-body p {
  font-family: var(--f1);
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6
}

.prod-foot {
  padding: 12px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bdr-lt)
}

.prod-link {
  font-family: var(--f3);
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue)
}

.prod-link:hover {
  text-decoration: underline
}

.prod-oss {
  font-family: var(--f3);
  font-size: .62rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(34, 197, 94, .1);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid rgba(34, 197, 94, .22)
}

/* Tab buttons */
.tab-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap
}

.tab-btn {
  font-family: var(--f3);
  font-size: .83rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--bdr);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s
}

.tab-btn.on,
.tab-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue)
}

.tab-pane {
  display: none
}

.tab-pane.on {
  display: block
}

/* Showcase - multi image, crisp */
.sc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px
}

.sc-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s
}

.sc-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue)
}

.sc-frame {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--blue-bg)
}

.sc-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 76%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 0 0 0 12px
}

.sc-side {
  position: absolute;
  left: 0;
  width: 27%;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
  border: 1.5px solid var(--bdr)
}

.sc-s1 {
  top: 10px;
  height: 48%
}

.sc-s2 {
  bottom: 10px;
  height: 44%
}

.sc-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--blue);
  color: #fff;
  font-family: var(--f3);
  font-size: .6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px
}

.sc-body {
  padding: 20px 22px
}

.sc-body h3 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: 1rem;
  color: var(--txt);
  margin-bottom: 8px
}

.sc-feat {
  font-family: var(--f1);
  font-size: .8rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 5px
}

.sc-feat::before {
  content: '✓';
  font-family: 'Material Icons';
  color: var(--blue);
  font-size: .9rem;
  flex-shrink: 0
}

/* Icon grid */
.ig {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 22px 14px
}

.ii {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer
}

.ib {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all .25s;
  flex-shrink: 0
}

.ib:hover {
  transform: translateY(-3px) scale(1.04)
}

.ib svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ib.gr {
  background: #8a94a6
}

.in-name {
  font-family: var(--f3);
  font-size: .76rem;
  font-weight: 700;
  color: var(--txt);
  text-align: center;
  line-height: 1.3
}

/* Service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 22px
}

.svc-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue)
}

.svc-imgs {
  height: 136px;
  display: flex;
  gap: 4px;
  padding: 12px;
  background: var(--blue-bg);
  overflow: hidden
}

.svc-imgs img {
  border-radius: 8px;
  object-fit: cover;
  object-position: top left;
  flex: 1;
  height: 100%
}

.svc-imgs .img-m {
  flex: 2
}

.svc-body {
  padding: 22px 26px 16px
}

.svc-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

.svc-ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.svc-card h3 {
  font-family: var(--f2);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px
}

.svc-card p {
  font-family: var(--f1);
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.7
}

.svc-tags {
  padding: 14px 26px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--bdr-lt)
}

.tg {
  font-family: var(--f3);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid
}

.tg-b {
  background: rgba(36, 144, 239, .07);
  color: var(--blue);
  border-color: rgba(36, 144, 239, .22)
}

.tg-g {
  background: rgba(34, 197, 94, .07);
  color: var(--green);
  border-color: rgba(34, 197, 94, .22)
}

.tg-t {
  background: rgba(0, 160, 157, .07);
  color: var(--teal);
  border-color: rgba(0, 160, 157, .22)
}

.tg-o {
  background: rgba(232, 87, 42, .07);
  color: var(--orange);
  border-color: rgba(232, 87, 42, .22)
}

.tg-p {
  background: rgba(124, 58, 237, .07);
  color: var(--purple);
  border-color: rgba(124, 58, 237, .22)
}

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

@media(max-width:860px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.feat-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s
}

.feat-row:hover {
  border-color: var(--blue)
}

.feat-ico {
  min-width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue-bg);
  border: 1.5px solid rgba(36, 144, 239, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem
}

.feat-row h4 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .93rem;
  color: var(--txt);
  margin-bottom: 3px
}

.feat-row p {
  font-family: var(--f1);
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65
}

/* why frame - crisp borders, no shadows */
.wi-frame {
  position: relative;
  padding: 20px 0 36px
}

.wi-main {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--bdr)
}

.wi-main img {
  width: 100%;
  display: block
}

.wi-f1 {
  position: absolute;
  bottom: -18px;
  right: -16px;
  width: 52%;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--bdr)
}

.wi-f1 img {
  width: 100%;
  display: block
}

.wi-f2 {
  position: absolute;
  bottom: 40px;
  left: -16px;
  width: 38%;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--bdr)
}

.wi-f2 img {
  width: 100%;
  display: block
}

@media(max-width:600px) {

  .wi-f1,
  .wi-f2 {
    display: none
  }
}

/* Gallery - crisp */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px
}

@media(max-width:768px) {
  .gal-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .gal-grid {
    grid-template-columns: 1fr
  }
}

.gal-item {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--bdr);
  transition: border-color .25s;
  cursor: pointer
}

.gal-item:hover {
  border-color: var(--blue)
}

.gal-bg {
  background: var(--blue-bg);
  padding: 12px 12px 0
}

.gal-ss {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  margin-bottom: 2px
}

.gal-ss img {
  width: 100%;
  display: block;
  height: 96px;
  object-fit: cover;
  object-position: top left
}

.gal-ss.sm img {
  height: 68px
}

.gal-info {
  padding: 13px 15px
}

.gal-info h4 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .88rem;
  color: var(--txt);
  margin-bottom: 4px
}

.gal-info p {
  font-family: var(--f1);
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.5
}

/* Persona */
.persona-sec {
  background: var(--blue-bg);
  padding: 76px 0;
  position: relative;
  overflow: hidden
}

.persona-sec::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(36, 144, 239, .07);
  pointer-events: none
}

.persona-in {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1
}

.persona-q {
  font-family: var(--f5);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--txt);
  line-height: 1.55;
  margin-bottom: 26px
}

.persona-q::before {
  content: '"';
  font-size: 5rem;
  color: var(--blue);
  opacity: .18;
  line-height: 0;
  vertical-align: -1.4rem;
  margin-right: 4px;
  font-family: var(--f6)
}

.persona-n {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .98rem;
  color: var(--txt)
}

.persona-r {
  font-family: var(--f3);
  font-size: .8rem;
  color: var(--muted)
}

/* Process */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative
}

@media(max-width:860px) {
  .proc-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .proc-grid {
    grid-template-columns: 1fr
  }
}

.proc-step {
  text-align: center;
  padding: 18px 10px;
  position: relative
}

.proc-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--f2);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1
}

.proc-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(36, 144, 239, .06));
  z-index: 0
}

@media(max-width:860px) {
  .proc-step::after {
    display: none
  }
}

.proc-emoji {
  font-size: 1.65rem;
  margin-bottom: 9px
}

.proc-step h4 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .87rem;
  color: var(--txt);
  margin-bottom: 4px
}

.proc-step p {
  font-family: var(--f1);
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.6
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px
}

.testi-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .25s;
  position: relative
}

.testi-card:hover {
  border-color: var(--blue)
}

.testi-qm {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--f6);
  font-size: 3.8rem;
  color: rgba(36, 144, 239, .07);
  line-height: 1;
  pointer-events: none
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px
}

.testi-stars span {
  color: var(--yellow);
  font-size: .9rem
}

.testi-txt {
  font-family: var(--f5);
  font-size: .88rem;
  font-style: italic;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 18px
}

.testi-div {
  height: 1px;
  background: var(--bdr-lt);
  margin-bottom: 16px
}

.testi-auth {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f2);
  font-weight: 800;
  font-size: .82rem;
  color: #fff;
  flex-shrink: 0
}

.testi-name {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .83rem;
  color: var(--txt)
}

.testi-role {
  font-family: var(--f3);
  font-size: .7rem;
  color: var(--muted)
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start
}

@media(max-width:860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.about-txt p {
  font-family: var(--f1);
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 13px
}

.about-txt strong {
  color: var(--txt)
}

.val-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px
}

.val-card {
  background: var(--bg-lt);
  border: 1px solid var(--bdr);
  border-radius: 8px;
  padding: 14px;
  transition: border-color .2s
}

.val-card:hover {
  border-color: var(--blue)
}

.val-ico {
  font-size: 1.2rem;
  margin-bottom: 6px
}

.val-card h5 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .82rem;
  color: var(--txt);
  margin-bottom: 3px
}

.val-card p {
  font-family: var(--f1);
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.5
}

.about-panel {
  background: var(--bg-lt);
  border: 1.5px solid var(--bdr);
  border-radius: 24px;
  padding: 30px
}

.panel-title {
  font-family: var(--f2);
  font-weight: 800;
  font-size: .92rem;
  color: var(--txt);
  margin-bottom: 16px
}

.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px
}

.cert {
  font-family: var(--f3);
  font-size: .67rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--bdr);
  color: var(--muted);
  background: #fff
}

.cert.on {
  border-color: rgba(36, 144, 239, .3);
  color: var(--blue);
  background: var(--blue-bg)
}

.addr-box {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  padding: 16px
}

.addr-lbl {
  font-family: var(--f3);
  font-size: .67rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 7px
}

.addr-box p {
  font-family: var(--f1);
  font-size: .82rem;
  color: var(--body);
  line-height: 1.7
}

/* Pricing - equal columns and height */
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 44px;
  align-items: stretch;
  border: 1.5px solid var(--bdr);
  border-radius: 16px;
  overflow: hidden
}

@media(max-width:1100px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:700px) {
  .price-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .price-grid {
    grid-template-columns: 1fr
  }
}

.price-card {
  background: #fff;
  border-right: 1px solid var(--bdr);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: background .2s;
  position: relative
}

.price-card:last-child {
  border-right: none
}

.price-card:hover {
  background: var(--blue-bg)
}

.price-card.featured {
  background: var(--blue-bg);
  border-right: 1px solid var(--bdr)
}

.featured-label {
  display: block;
  font-family: var(--f3);
  font-size: .63rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px
}

.price-name {
  font-family: var(--f2);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 6px
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
  line-height: 1
}

.price-cur {
  font-family: var(--f2);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue)
}

.price-amt {
  font-family: var(--f2);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--blue)
}

.price-per {
  font-family: var(--f1);
  font-size: .78rem;
  color: var(--muted)
}

.price-custom {
  font-family: var(--f2);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 4px
}

.price-desc {
  font-family: var(--f4);
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px
}

.price-div {
  height: 1px;
  background: var(--bdr);
  margin-bottom: 16px
}

.price-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 20px
}

.price-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--f1);
  font-size: .78rem;
  color: var(--body);
  line-height: 1.45
}

.price-feat::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: .78rem;
  flex-shrink: 0;
  margin-top: 1px
}

.price-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--f2);
  font-size: .88rem;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  margin-top: auto
}

.price-cta.cta-bl {
  background: var(--blue);
  color: #fff
}

.price-cta.cta-bl:hover {
  background: var(--blue-dk)
}

.price-cta.cta-ol {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue)
}

.price-cta.cta-ol:hover {
  background: var(--blue);
  color: #fff
}

/* CTA banner */
.cta-sec {
  background: var(--blue);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, .08), transparent 70%)
}

.cta-in {
  position: relative;
  z-index: 1
}

.cta-sec h2 {
  font-family: var(--f2);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px
}

.cta-sec p {
  font-family: var(--f4);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 30px
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.cta-note {
  font-family: var(--f1);
  font-size: .76rem;
  color: rgba(255, 255, 255, .48);
  margin-top: 13px
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

@media(max-width:860px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

.cinfo-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px
}

.cinfo-ic {
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--blue-bg);
  border: 1px solid rgba(36, 144, 239, .2)
}

.cinfo-block h5 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .85rem;
  color: var(--txt);
  margin-bottom: 3px
}

.cinfo-block p,
.cinfo-block a {
  font-family: var(--f1);
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65
}

.cinfo-block a:hover {
  color: var(--blue)
}

.map-wrap {
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bdr)
}

.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block
}

.map-foot {
  background: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--bdr-lt)
}

.map-foot a {
  font-family: var(--f3);
  font-size: .73rem;
  font-weight: 700;
  color: var(--blue)
}

.map-foot a:hover {
  text-decoration: underline
}

.contact-form {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 32px
}

.contact-form h3 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--txt);
  margin-bottom: 20px
}

.fg {
  margin-bottom: 14px
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

@media(max-width:480px) {
  .fg-row {
    grid-template-columns: 1fr
  }
}

label {
  display: block;
  font-family: var(--f3);
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .05em
}

input,
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-lt);
  border: 1px solid var(--bdr);
  border-radius: 8px;
  color: var(--txt);
  font-family: var(--f1);
  font-size: .87rem;
  outline: none;
  transition: border-color .2s;
  resize: none
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  background: #fff
}

textarea {
  height: 100px
}

.form-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: var(--f2);
  font-weight: 700;
  font-size: .93rem;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s
}

.form-btn:hover {
  background: var(--blue-dk)
}

/* Footer */
.footer {
  background: var(--txt);
  color: rgba(255, 255, 255, .55);
  padding: 52px 0 24px
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px
}

@media(max-width:860px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }
}

@media(max-width:480px) {
  .foot-grid {
    grid-template-columns: 1fr
  }
}

.foot-brand .logo-name {
  color: #fff
}

.foot-brand .logo-name span {
  color: var(--blue-lt)
}

.foot-brand p {
  font-family: var(--f1);
  font-size: .8rem;
  line-height: 1.7;
  max-width: 260px;
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, .42)
}

.foot-socials {
  display: flex;
  gap: 8px
}

.foot-soc {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: rgba(255, 255, 255, .42);
  transition: all .2s
}

.foot-soc:hover {
  border-color: var(--blue-lt);
  color: var(--blue-lt)
}

.foot-col h4 {
  font-family: var(--f2);
  font-weight: 700;
  font-size: .84rem;
  color: #fff;
  margin-bottom: 13px
}

.foot-col ul {
  list-style: none
}

.foot-col ul li {
  margin-bottom: 8px
}

.foot-col ul li a {
  font-family: var(--f1);
  font-size: .78rem;
  color: rgba(255, 255, 255, .42);
  transition: color .2s
}

.foot-col ul li a:hover {
  color: var(--blue-lt)
}

.foot-bot {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.foot-bot p {
  font-family: var(--f1);
  font-size: .71rem;
  color: rgba(255, 255, 255, .28)
}

.foot-bot-r {
  display: flex;
  gap: 14px;
  align-items: center
}

.foot-bot-r a {
  font-family: var(--f1);
  font-size: .71rem;
  color: rgba(255, 255, 255, .33);
  transition: color .2s
}

.foot-bot-r a:hover {
  color: var(--blue-lt)
}

.foot-ker {
  font-family: var(--f6);
  font-size: .7rem;
  font-style: italic;
  color: rgba(255, 255, 255, .26)
}

.foot-ker span {
  color: var(--blue-lt)
}

/* WhatsApp */
.wa-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s
}

.wa-btn:hover {
  transform: scale(1.12) rotate(-5deg)
}

.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff
}

/* Utility */
.bg-white {
  background: var(--white)
}

.bg-light {
  background: var(--bg-lt)
}

.bg-ltr {
  background: var(--bg-ltr)
}

/* Privacy Policy */
.pp-body { padding: 120px 20px 80px 20px; max-width: 800px; margin: 0 auto; font-family: var(--f2); color: var(--drk); line-height: 1.6; }
.pp-body h1 { font-family: var(--f1); font-size: 2.5rem; margin-bottom: 24px; color: var(--blue); }
.pp-body h2 { font-family: var(--f1); font-size: 1.5rem; margin-top: 40px; margin-bottom: 16px; font-weight: 600; }
.pp-body p { margin-bottom: 16px; font-size: 1.05rem; }
.pp-body ul { margin-bottom: 16px; padding-left: 20px; font-size: 1.05rem; }
.pp-body li { margin-bottom: 8px; }
.pp-body a { color: var(--blue); text-decoration: none; font-weight: 500; }
.pp-body a:hover { text-decoration: underline; }