:root {
  --navy-950: #031b36;
  --navy-900: #062a55;
  --navy-800: #0a376b;
  --blue-700: #0f52bf;
  --blue-600: #1766db;
  --blue-500: #2a7ff0;
  --cyan-500: #16a3b6;
  --cyan-100: #dff8fb;
  --ink: #0a1c36;
  --muted: #60718a;
  --line: #dce6f2;
  --soft: #f4f8fd;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(8, 42, 84, .08);
  --shadow-md: 0 22px 70px rgba(8, 42, 84, .13);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, button, a { -webkit-tap-highlight-color: transparent; }

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

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

svg { display: block; width: 1.5em; height: 1.5em; }

h1, h2, h3, p { margin-top: 0; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(220, 230, 242, .8);
  backdrop-filter: blur(18px);
}

.header__inner { height: 100%; display: flex; align-items: center; gap: 34px; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }

.brand__mark { width: 46px; height: auto; overflow: visible; }

.brand__mark path:first-child { fill: none; stroke: var(--cyan-500); stroke-width: 5.5; stroke-linecap: round; stroke-linejoin: round; }

.brand__mark path:last-child { fill: none; stroke: var(--navy-800); stroke-width: 5.5; stroke-linecap: round; stroke-linejoin: round; }

.brand__copy { display: flex; flex-direction: column; direction: ltr; line-height: 1; }

.brand__copy strong { color: var(--navy-900); font-size: 19px; letter-spacing: .35px; font-family: Arial, sans-serif; }

.brand__copy small { direction: rtl; color: var(--muted); font-size: 9px; margin-top: 6px; white-space: nowrap; }

.desktop-nav { display: flex; align-items: stretch; align-self: stretch; gap: 26px; margin-inline: auto; }

.desktop-nav a { position: relative; display: flex; align-items: center; color: #31445f; font-size: 14px; font-weight: 700; transition: color .2s ease; }

.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--blue-700); }

.desktop-nav a.is-active::after { content: ""; position: absolute; right: 0; left: 0; bottom: -1px; height: 3px; background: var(--blue-600); border-radius: 3px 3px 0 0; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.35;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button--large { min-height: 54px; padding: 14px 25px; font-size: 15px; }

.button--primary { color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); box-shadow: 0 12px 26px rgba(15, 82, 191, .2); }

.button--primary:hover { box-shadow: 0 16px 32px rgba(15, 82, 191, .3); }

.button--outline { color: var(--blue-700); border-color: var(--blue-700); background: #fff; }

.button--outline:hover { background: #f3f7ff; }

.button--ghost { color: var(--navy-900); border-color: var(--line); background: rgba(255, 255, 255, .8); }

.button--white { background: #fff; color: var(--blue-700); box-shadow: 0 14px 35px rgba(0, 0, 0, .16); }

.button__icon { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255, 255, 255, .16); transform: scaleX(-1); }

.button__icon svg { width: 14px; height: 14px; }

.button--outline .button__icon { background: #eaf2ff; }

.mobile-nav { display: none; position: relative; margin-inline-start: auto; }

.mobile-nav summary { list-style: none; width: 44px; height: 44px; padding: 11px 9px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }

.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav summary span { display: block; height: 2px; margin: 4px; border-radius: 2px; background: var(--navy-900); }

.mobile-nav nav { position: absolute; top: 54px; left: 0; width: min(300px, calc(100vw - 40px)); padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); }

.mobile-nav nav > a:not(.button) { display: block; padding: 13px 12px; border-bottom: 1px solid #eef3f8; font-weight: 700; color: #344760; }

.mobile-nav nav .button { width: 100%; margin-top: 10px; }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 81, 160, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 81, 160, .025) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff 0%, #f5faff 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 90px; background: linear-gradient(transparent, rgba(255,255,255,.76)); pointer-events: none; }

.hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .65; pointer-events: none; }

.hero__glow--one { width: 560px; height: 560px; left: 2%; top: -210px; background: radial-gradient(circle, rgba(42, 127, 240, .14), transparent 67%); }

.hero__glow--two { width: 430px; height: 430px; right: -140px; bottom: -170px; background: radial-gradient(circle, rgba(22, 163, 182, .13), transparent 68%); }

.hero__grid { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 52px; padding-block: 72px 82px; }

.hero__content { max-width: 500px; }

.eyebrow, .section-kicker { color: var(--blue-700); font-size: 13px; font-weight: 800; letter-spacing: .1px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border: 1px solid #d8e8ff; border-radius: 999px; background: rgba(238, 246, 255, .85); }

.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 5px rgba(22, 163, 182, .12); }

.hero h1 { margin: 24px 0 18px; color: var(--navy-950); font-size: clamp(43px, 4.45vw, 66px); line-height: 1.2; letter-spacing: -2.2px; font-weight: 900; }

.hero h1 em { color: var(--blue-700); font-style: normal; }

.hero__content > p { max-width: 460px; color: var(--muted); font-size: 18px; line-height: 1.9; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero__note { display: flex; align-items: center; gap: 13px; margin-top: 32px; }

.hero__note > span:last-child { display: flex; flex-direction: column; gap: 5px; }

.hero__note strong { color: var(--navy-900); font-size: 13px; }

.hero__note small { color: var(--muted); font-size: 11px; }

.hero__avatars { display: flex; direction: ltr; }

.hero__avatars i { display: grid; width: 31px; height: 31px; place-items: center; margin-left: -7px; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--navy-800); font-style: normal; font-size: 11px; font-weight: 800; }

.hero__avatars i:nth-child(2) { background: var(--blue-600); }

.hero__avatars i:nth-child(3) { background: var(--cyan-500); }

.showcase { position: relative; height: 510px; direction: ltr; }

.showcase__halo { position: absolute; inset: 10px 0 0 10%; border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(42, 127, 240, .2), rgba(22, 163, 182, .07) 38%, transparent 70%); filter: blur(8px); }

.browser { position: absolute; overflow: hidden; border: 1px solid rgba(165, 189, 219, .7); border-radius: 17px; background: #fff; box-shadow: var(--shadow-md); }

.browser--main { width: 88%; height: 420px; top: 8px; right: 0; transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }

.browser--telecom { width: 56%; height: 250px; left: -12px; bottom: 0; z-index: 3; transform: perspective(900px) rotateY(4deg) rotateZ(-.8deg); }

.browser__bar, .visual-browser__bar { height: 31px; display: flex; align-items: center; gap: 5px; padding-inline: 12px; direction: ltr; background: #f8fbfe; border-bottom: 1px solid #e4ecf5; }

.browser__bar span, .visual-browser__bar span { width: 7px; height: 7px; border-radius: 50%; background: #b8c8dc; }

.browser__bar span:first-child, .visual-browser__bar span:first-child { background: #ff7c74; }

.browser__bar span:nth-child(2), .visual-browser__bar span:nth-child(2) { background: #f8ca60; }

.browser__bar span:nth-child(3), .visual-browser__bar span:nth-child(3) { background: #61cf93; }

.browser__bar b { margin-left: auto; color: #7b8da4; font-size: 9px; letter-spacing: .2px; }

.browser__image { height: calc(100% - 31px); overflow: hidden; background: #f3f7fc; }

.browser__image img { width: 100%; height: 100%; object-fit: cover; object-position: right top; }

.browser--main .browser__image img { object-position: 75% top; }

.browser--telecom .browser__image img { object-position: center top; }

.mini-panel { position: absolute; z-index: 5; right: -8px; bottom: 24px; display: flex; align-items: center; gap: 10px; width: 210px; padding: 13px 14px; border: 1px solid #dce8f5; border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); direction: rtl; }

.mini-panel__icon { display: grid; width: 38px; height: 38px; place-items: center; color: var(--blue-600); border-radius: 11px; background: #edf5ff; }

.mini-panel__icon svg { width: 20px; height: 20px; }

.mini-panel > span:nth-child(2) { display: flex; flex-direction: column; margin-left: auto; }

.mini-panel small { color: var(--muted); font-size: 9px; }

.mini-panel strong { color: var(--navy-900); margin-top: 3px; font-size: 12px; }

.mini-panel i { color: #18a875; font-size: 12px; font-style: normal; font-weight: 900; }

.assurances { position: relative; z-index: 5; border-block: 1px solid var(--line); background: #fff; }

.assurances__grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.assurances article { display: flex; align-items: center; justify-content: center; gap: 15px; min-height: 116px; padding: 24px; border-inline-start: 1px solid var(--line); }

.assurances article:last-child { border-inline-start: 0; }

.assurances article > span { display: grid; width: 45px; height: 45px; place-items: center; color: var(--blue-600); border-radius: 14px; background: #edf5ff; }

.assurances article > span svg { width: 23px; height: 23px; }

.assurances article div { display: flex; flex-direction: column; gap: 6px; }

.assurances strong { color: var(--navy-900); font-size: 15px; }

.assurances small { color: var(--muted); font-size: 11px; }

.section { padding-block: 108px; }

.products { background: linear-gradient(180deg, #fff 0%, #f6faff 45%, #fff 100%); }

.section-heading { margin-bottom: 48px; }

.section-heading--center { max-width: 700px; margin-inline: auto; margin-bottom: 50px; text-align: center; }

.section-heading h2, .process__intro h2, .cta-card h2 { color: var(--navy-950); font-size: clamp(30px, 3.3vw, 46px); line-height: 1.35; letter-spacing: -1.1px; margin: 12px 0; }

.section-heading p, .process__intro p { color: var(--muted); line-height: 1.85; }

.product-stack { display: grid; gap: 34px; }

.product-card { display: grid; grid-template-columns: 1.06fr .94fr; min-height: 520px; overflow: hidden; border: 1px solid #d9e5f3; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }

.product-card__visual { position: relative; min-height: 520px; overflow: hidden; background: radial-gradient(circle at 20% 20%, rgba(42,127,240,.18), transparent 30%), linear-gradient(145deg, #eaf4ff, #f9fcff); }

.product-card__content { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 54px 48px; }

.product-card--telecom .product-card__visual { order: 2; background: radial-gradient(circle at 80% 20%, rgba(22,163,182,.17), transparent 32%), linear-gradient(145deg, #eefbfc, #f7fbff); }

.product-card--telecom .product-card__content { order: 1; }

.product-number { position: absolute; top: 30px; left: 32px; color: #dce8f8; font: 900 60px/1 Arial, sans-serif; }

.product-card__content h3 { position: relative; z-index: 1; max-width: 480px; color: var(--navy-950); font-size: clamp(27px, 3vw, 38px); line-height: 1.4; margin-bottom: 14px; }

.product-card__content > p { max-width: 480px; color: var(--muted); line-height: 1.9; font-size: 16px; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 8px 0 30px; list-style: none; }

.feature-pills li { display: inline-flex; align-items: center; gap: 7px; padding: 9px 11px; color: #36506f; border: 1px solid #dce8f4; border-radius: 9px; background: #f9fbfe; font-size: 12px; font-weight: 700; }

.feature-pills svg { width: 15px; height: 15px; color: #15a277; }

.product-card__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.text-link { color: var(--blue-700); border-bottom: 1px solid #b5cff2; font-size: 13px; font-weight: 800; }

.visual-browser { position: absolute; top: 70px; right: 42px; left: 42px; height: 365px; overflow: hidden; border: 1px solid #b8cce4; border-radius: 16px; background: #fff; box-shadow: 0 28px 70px rgba(8, 42, 84, .2); transform: perspective(900px) rotateY(2deg) rotateX(1deg); }

.visual-browser img { width: 100%; height: calc(100% - 28px); object-fit: cover; object-position: 72% top; }

.visual-browser__bar { height: 28px; }

.product-badge { position: absolute; z-index: 4; right: 22px; bottom: 24px; display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; color: var(--navy-900); border: 1px solid rgba(185,205,229,.8); border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 800; }

.product-badge svg { width: 18px; height: 18px; color: var(--blue-600); }

.product-card__visual--split { min-height: 520px; }

.visual-browser--back { top: 56px; left: 110px; right: 25px; height: 335px; transform: rotate(3deg); opacity: .86; }

.visual-browser--back img { object-position: center; }

.visual-browser--front { top: 150px; right: 85px; left: 28px; height: 315px; transform: rotate(-2deg); }

.visual-browser--front img { object-position: center top; }

.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 60px; }

.section-heading--split > div { max-width: 610px; }

.section-heading--split > p { max-width: 430px; margin-bottom: 12px; }

.why { background: var(--navy-950); color: #fff; }

.why .section-kicker { color: #71dce7; }

.why .section-heading h2 { color: #fff; }

.why .section-heading p { color: #aebed2; }

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

.why__grid article { position: relative; min-height: 270px; overflow: hidden; padding: 28px 26px; border: 1px solid rgba(160, 191, 227, .16); border-radius: var(--radius-md); background: rgba(255,255,255,.04); transition: transform .2s ease, background .2s ease; }

.why__grid article:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); }

.why__grid article.why__accent { background: linear-gradient(145deg, rgba(23,102,219,.32), rgba(22,163,182,.18)); }

.why__icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 34px; color: #7adde8; border: 1px solid rgba(113,220,231,.25); border-radius: 15px; background: rgba(40,154,181,.11); }

.why__icon svg { width: 27px; height: 27px; }

.why__grid h3 { font-size: 18px; margin-bottom: 12px; }

.why__grid p { color: #aebed2; font-size: 13px; line-height: 1.85; }

.why__grid b { position: absolute; bottom: -9px; left: 14px; color: rgba(255,255,255,.055); font: 900 74px/1 Arial, sans-serif; }

.process { background: #fff; }

.process__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }

.process__intro p { max-width: 450px; margin-bottom: 28px; }

.process__steps { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }

.process__steps::before { content: ""; position: absolute; top: 54px; bottom: 54px; right: 34px; width: 1px; background: linear-gradient(var(--blue-600), var(--cyan-500)); }

.process__steps li { position: relative; display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 20px; min-height: 124px; padding: 18px 0; }

.process__steps li > span { position: relative; z-index: 2; display: grid; width: 68px; height: 68px; place-items: center; color: #fff; border: 7px solid #eef5fd; border-radius: 50%; background: var(--blue-700); font: 800 14px/1 Arial, sans-serif; }

.process__steps li:nth-child(2) > span { background: #1176cf; }

.process__steps li:nth-child(3) > span { background: var(--cyan-500); }

.process__steps li div { padding: 25px 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }

.process__steps h3 { color: var(--navy-900); margin-bottom: 7px; font-size: 18px; }

.process__steps p { color: var(--muted); margin: 0; font-size: 13px; line-height: 1.75; }

.cta-section { padding: 0 0 90px; background: #fff; }

.cta-card { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; min-height: 255px; overflow: hidden; padding: 48px 58px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(120deg, var(--navy-950), var(--blue-700) 60%, #0a73ba); box-shadow: 0 24px 60px rgba(5, 43, 86, .24); }

.cta-card__pattern { position: absolute; inset: 0; opacity: .32; background: radial-gradient(circle at 8% 110%, transparent 0 95px, rgba(118,225,238,.3) 96px 97px, transparent 98px 120px, rgba(118,225,238,.18) 121px 122px, transparent 123px), radial-gradient(circle at 96% -20%, rgba(118,225,238,.22), transparent 36%); }

.cta-card > *:not(.cta-card__pattern) { position: relative; z-index: 2; }

.section-kicker--light { color: #83e3ec; }

.cta-card h2 { max-width: 700px; color: #fff; margin-bottom: 8px; }

.cta-card p { color: #c5d4e8; margin-bottom: 0; }

.cta-card .button svg { width: 19px; height: 19px; }

.site-footer { padding: 72px 0 24px; background: var(--navy-950); color: #fff; }

.brand--light .brand__copy strong, .brand--light .brand__copy small { color: #fff; }

.brand--light .brand__copy small { opacity: .68; }

.brand--light .brand__mark path:last-child { stroke: #fff; }

.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; padding-bottom: 46px; }

.footer__brand p { max-width: 280px; margin: 24px 0 0; color: #aebed2; line-height: 1.8; font-size: 13px; }

.footer__grid h3 { margin: 2px 0 18px; font-size: 14px; }

.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

.footer__grid > div:not(.footer__brand) a { color: #aebed2; font-size: 12px; transition: color .2s ease; }

.footer__grid > div:not(.footer__brand) a:hover { color: #fff; }

.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(171, 196, 224, .15); color: #8194ad; font-size: 11px; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 12px; }
  .hero__grid { grid-template-columns: .9fr 1.1fr; gap: 24px; }
  .hero h1 { font-size: 49px; }
  .showcase { transform: scale(.94); transform-origin: center right; }
  .product-card__content { padding: 46px 36px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  .site-header { height: 72px; }
  .desktop-nav, .header__cta { display: none; }
  .mobile-nav { display: block; }
  .hero { min-height: auto; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; padding-block: 62px 70px; text-align: center; }
  .hero__content { max-width: 670px; margin-inline: auto; }
  .hero__content > p { max-width: 610px; margin-inline: auto; }
  .hero__actions, .hero__note { justify-content: center; }
  .showcase { width: min(680px, 100%); height: 480px; margin: 14px auto 0; transform: none; }
  .browser--main { width: 88%; right: 2%; }
  .browser--telecom { left: 1%; }
  .assurances article { padding: 18px 12px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card__visual, .product-card__visual--split { min-height: 440px; }
  .product-card--telecom .product-card__visual { order: 1; }
  .product-card--telecom .product-card__content { order: 2; }
  .product-card__content { min-height: 450px; }
  .section-heading--split { align-items: flex-start; flex-direction: column; gap: 0; }
  .process__grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-card { align-items: flex-start; flex-direction: column; gap: 28px; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand__mark { width: 39px; }
  .brand__copy strong { font-size: 16px; }
  .brand__copy small { font-size: 7.5px; }
  .section { padding-block: 78px; }
  .hero__grid { padding-block: 48px 54px; }
  .eyebrow { font-size: 11px; }
  .hero h1 { margin-top: 18px; font-size: clamp(36px, 11vw, 48px); letter-spacing: -1.5px; }
  .hero__content > p { font-size: 15px; line-height: 1.85; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__note { margin-top: 24px; }
  .showcase { height: 335px; margin-top: 22px; }
  .browser--main { width: 96%; height: 275px; right: 2%; }
  .browser--telecom { width: 59%; height: 160px; left: -2px; }
  .browser__bar { height: 24px; }
  .browser__image { height: calc(100% - 24px); }
  .mini-panel { right: 0; bottom: 5px; width: 172px; padding: 9px; }
  .mini-panel__icon { width: 31px; height: 31px; }
  .mini-panel strong { font-size: 10px; }
  .assurances__grid { grid-template-columns: 1fr; padding-block: 8px; }
  .assurances article { justify-content: flex-start; min-height: 84px; border-inline-start: 0; border-bottom: 1px solid var(--line); }
  .assurances article:last-child { border-bottom: 0; }
  .section-heading--center { margin-bottom: 34px; }
  .section-heading h2, .process__intro h2, .cta-card h2 { font-size: 31px; }
  .section-heading p { font-size: 14px; }
  .product-stack { gap: 24px; }
  .product-card { border-radius: 24px; }
  .product-card__visual, .product-card__visual--split { min-height: 330px; }
  .visual-browser { top: 48px; right: 20px; left: 20px; height: 235px; }
  .product-badge { right: 14px; bottom: 13px; }
  .visual-browser--back { top: 34px; right: 54px; left: 16px; height: 210px; }
  .visual-browser--front { top: 104px; right: 22px; left: 50px; height: 190px; }
  .product-card__content { min-height: 0; padding: 52px 24px 36px; }
  .product-number { top: 20px; left: 22px; font-size: 48px; }
  .product-card__content h3 { font-size: 28px; }
  .product-card__content > p { font-size: 14px; }
  .feature-pills { margin-bottom: 24px; }
  .product-card__actions { align-items: stretch; flex-direction: column; }
  .product-card__actions .button { width: 100%; }
  .text-link { align-self: center; }
  .why__grid { grid-template-columns: 1fr; }
  .why__grid article { min-height: 230px; }
  .process__steps li { grid-template-columns: 54px 1fr; gap: 10px; }
  .process__steps::before { right: 27px; }
  .process__steps li > span { width: 54px; height: 54px; border-width: 5px; }
  .process__steps li div { padding: 20px 18px; }
  .cta-section { padding-bottom: 70px; }
  .cta-card { min-height: 0; padding: 38px 26px; border-radius: 24px; }
  .cta-card .button { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
