:root {
  --navy: #07142f;
  --navy-2: #0f2448;
  --blue: #1b66ff;
  --sky: #14a7e6;
  --teal: #14b8a6;
  --green: #16a34a;
  --purple: #7c3aed;
  --orange: #f97316;
  --pink: #db2777;
  --text: #172033;
  --muted: #647089;
  --soft: #f4f7fb;
  --soft-2: #eef4ff;
  --line: #dde6f2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(9, 24, 55, 0.12);
  --shadow-soft: 0 10px 28px rgba(9, 24, 55, 0.08);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(180deg, #07142f 0%, #081630 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.boot-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

html.boot-active body > *:not(.boot-screen) {
  visibility: hidden;
}

html.boot-active .boot-screen {
  visibility: visible;
}

.boot-screen__inner {
  width: min(340px, 100%);
  display: grid;
  justify-items: center;
  gap: 24px;
}

.boot-screen__logo {
  width: min(240px, 72vw);
  height: auto;
  filter: brightness(0) invert(1);
  animation: boot-logo-float 1.4s ease-in-out infinite alternate;
}

.boot-screen__track {
  width: min(290px, 100%);
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.boot-screen__bar {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--sky), var(--blue));
  box-shadow: 0 0 20px rgba(27, 102, 255, 0.45);
  animation: boot-bar-move 1s ease-in-out infinite;
}

body.menu-open {
  overflow: hidden;
}

body.boot-loading {
  overflow: hidden;
}

body:not(.menu-open) {
  overflow-x: hidden;
}

@keyframes boot-logo-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@keyframes boot-bar-move {
  0% {
    transform: translateX(-130%);
  }

  50% {
    transform: translateX(60%);
  }

  100% {
    transform: translateX(230%);
  }
}

@media (max-width: 480px) {
  .boot-screen {
    padding: 16px;
  }

  .boot-screen__inner {
    width: min(200px, 100%);
    gap: 12px;
    transform: none;
  }

  .boot-screen__logo {
    width: min(132px, 46vw);
  }

  .boot-screen__track {
    width: min(176px, 100%);
    height: 5px;
  }
}

@media (max-width: 360px) {
  .boot-screen {
    padding: 14px;
  }

  .boot-screen__inner {
    width: min(180px, 100%);
    gap: 10px;
  }

  .boot-screen__logo {
    width: min(116px, 42vw);
  }

  .boot-screen__track {
    width: min(160px, 100%);
    height: 5px;
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svg-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

.section {
  padding: 88px 0;
}

.center {
  text-align: center;
}

.center .section-text {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #8fd3ff;
}

.section-title {
  max-width: 860px;
  margin: 0 auto 14px;
  color: var(--text);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.section-text {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.section-text-left {
  margin-left: 0;
  margin-right: 0;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 14px 30px rgba(27, 102, 255, 0.24);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-border-blue {
  width: 100%;
  color: var(--blue);
  border-color: rgba(27, 102, 255, 0.35);
  background: var(--white);
}

.btn-border-blue:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 24px rgba(27, 102, 255, 0.14);
}

.btn-full {
  width: 100%;
}

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

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-img {
  width: 152px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: var(--radius);
  padding: 8px 10px;
  color: #26344d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--blue);
  background: rgba(27, 102, 255, 0.08);
}

.menu-item-with-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 520px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.menu-item-with-mega:hover .mega-menu,
.menu-item-with-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  height: 15px;
}

.mega-link {
  gap: 9px;
  width: 100%;
  min-width: 0;
  min-height: 54px !important;
  justify-content: flex-start;
  color: var(--text) !important;
  background: var(--soft) !important;
  text-transform: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  white-space: normal !important;
  line-height: 1.3;
  text-align: left;
  overflow-wrap: anywhere;
}

.mega-link span {
  min-width: 0;
}

.mega-link:hover {
  color: var(--blue) !important;
  background: var(--soft-2) !important;
}

.header-btn {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 11px 16px;
  font-size: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero,
.services-hero,
.service-single-hero,
.about-page-hero,
.contact-page-hero,
.case-page-hero,
.process-page-hero,
.guide-page-hero,
.guide-hero,
.faq-page-hero,
.policy-page-hero,
.policy-hero,
.blog-soon-hero,
.blog-page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 86px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 47, 0.98), rgba(15, 36, 72, 0.96)),
    linear-gradient(90deg, rgba(20, 184, 166, 0.2), rgba(27, 102, 255, 0.18));
}

.hero::after,
.services-hero::after,
.service-single-hero::after,
.about-page-hero::after,
.contact-page-hero::after,
.case-page-hero::after,
.process-page-hero::after,
.guide-page-hero::after,
.guide-hero::after,
.faq-page-hero::after,
.policy-page-hero::after,
.policy-hero::after,
.blog-soon-hero::after,
.blog-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.hero-grid,
.about-grid,
.about-hero-grid,
.contact-hero-grid,
.case-hero-grid,
.process-hero-grid,
.guide-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 58px;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dceaff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.center .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

.dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}

.hero h1,
.services-hero h1,
.service-single-hero h1,
.about-page-hero h1,
.contact-page-hero h1,
.case-page-hero h1,
.process-page-hero h1,
.guide-page-hero h1,
.guide-hero h1,
.faq-page-hero h1,
.policy-page-hero h1,
.policy-hero h1,
.blog-soon-hero h1,
.blog-page-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: 62px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.center h1 {
  margin-left: auto;
  margin-right: auto;
}

.about-page-hero {
  padding: 96px 0 82px;
  background:
    radial-gradient(circle at 78% 24%, rgba(20, 184, 166, 0.26), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(27, 102, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #07142f 0%, #10264c 58%, #07142f 100%);
}

.about-page-hero .about-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 56px;
}

.about-page-hero h1 {
  max-width: 790px;
  font-size: 54px;
  line-height: 1.06;
}

.about-page-hero p {
  max-width: 720px;
}

.about-page-hero .hero-actions {
  margin-top: 32px;
}

.about-page-hero .hero-actions .btn {
  min-width: 178px;
}

.about-page-hero .btn-outline {
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-page-hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.case-page-hero {
  padding: 96px 0 82px;
  background:
    radial-gradient(circle at 80% 22%, rgba(124, 58, 237, 0.24), transparent 32%),
    radial-gradient(circle at 15% 20%, rgba(20, 184, 166, 0.24), transparent 28%),
    linear-gradient(135deg, #07142f 0%, #10264c 58%, #07142f 100%);
}

.case-page-hero .case-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
}

.case-page-hero h1 {
  max-width: 760px;
  font-size: 54px;
  line-height: 1.06;
}

.case-page-hero p {
  max-width: 700px;
}

.case-page-hero .hero-actions {
  margin-top: 32px;
}

.case-page-hero .hero-actions .btn {
  min-width: 170px;
}

.case-page-hero .btn-outline {
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.case-page-hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.process-page-hero {
  padding: 96px 0 82px;
  background:
    radial-gradient(circle at 78% 24%, rgba(27, 102, 255, 0.24), transparent 32%),
    radial-gradient(circle at 16% 20%, rgba(249, 115, 22, 0.16), transparent 28%),
    linear-gradient(135deg, #07142f 0%, #10264c 58%, #07142f 100%);
}

.process-page-hero .process-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
}

.process-page-hero h1 {
  max-width: 800px;
  font-size: 54px;
  line-height: 1.06;
}

.process-page-hero p {
  max-width: 710px;
}

.process-page-hero .hero-actions {
  margin-top: 32px;
}

.process-page-hero .hero-actions .btn {
  min-width: 180px;
}

.process-page-hero .btn-outline {
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.process-page-hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.contact-page-hero {
  padding: 96px 0 82px;
  background:
    radial-gradient(circle at 78% 24%, rgba(20, 184, 166, 0.24), transparent 32%),
    radial-gradient(circle at 15% 18%, rgba(27, 102, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #07142f 0%, #10264c 58%, #07142f 100%);
}

.contact-page-hero .contact-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
}

.contact-page-hero h1 {
  max-width: 780px;
  font-size: 54px;
  line-height: 1.06;
}

.contact-page-hero p {
  max-width: 720px;
}

.contact-page-hero .hero-actions {
  margin-top: 32px;
}

.contact-page-hero .hero-actions .btn {
  min-width: 170px;
}

.contact-page-hero .btn-outline {
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.contact-page-hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.guide-hero {
  padding: 96px 0 82px;
  background:
    radial-gradient(circle at 78% 24%, rgba(249, 115, 22, 0.18), transparent 32%),
    radial-gradient(circle at 16% 18%, rgba(27, 102, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #07142f 0%, #10264c 58%, #07142f 100%);
}

.guide-hero .guide-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
}

.guide-hero h1 {
  max-width: 800px;
  font-size: 54px;
  line-height: 1.06;
}

.guide-hero p {
  max-width: 700px;
}

.guide-hero .hero-actions {
  margin-top: 32px;
}

.guide-hero .hero-actions .btn {
  min-width: 166px;
}

.guide-hero .btn-outline {
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.guide-hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.faq-page-hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 50% 10%, rgba(27, 102, 255, 0.26), transparent 34%),
    radial-gradient(circle at 84% 28%, rgba(20, 184, 166, 0.18), transparent 28%),
    linear-gradient(135deg, #07142f 0%, #10264c 58%, #07142f 100%);
}

.faq-page-hero h1 {
  font-size: 54px;
  line-height: 1.06;
}

.faq-page-hero p {
  max-width: 760px;
}

.hero h1 span,
.hero-content h1 span {
  color: #7dd3fc;
}

.hero p,
.services-hero p,
.service-single-hero p,
.about-page-hero p,
.contact-page-hero p,
.case-page-hero p,
.process-page-hero p,
.guide-page-hero p,
.guide-hero p,
.faq-page-hero p,
.policy-page-hero p,
.policy-hero p,
.blog-soon-hero p,
.blog-page-hero p {
  max-width: 720px;
  color: #c9d8ef;
  font-size: 18px;
}

.center p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.center-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.center-actions,
.center .hero-actions {
  justify-content: center;
}

.hero-visual-3d,
.hero-card,
.about-hero-panel,
.contact-hero-panel,
.case-hero-panel,
.process-hero-panel,
.guide-hero-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.hero-visual-3d {
  overflow: hidden;
}

.hero-visual-3d::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-visual-glass {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--white);
  background: rgba(7, 20, 47, 0.72);
  box-shadow: var(--shadow);
}

.hero-visual-glass span,
.hero-visual-glass small {
  display: block;
  color: #c9d8ef;
  font-size: 12px;
  font-weight: 700;
}

.hero-visual-glass strong {
  display: block;
  margin: 4px 0;
  font-size: 42px;
  line-height: 1;
}

.floating-kpi {
  position: absolute;
  z-index: 3;
  min-width: 126px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  background: rgba(7, 20, 47, 0.78);
  box-shadow: var(--shadow-soft);
}

.floating-kpi b {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.floating-kpi span {
  display: block;
  color: #c9d8ef;
  font-size: 12px;
}

.growth-chart {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  padding: 16px 16px 14px;
  background:
    radial-gradient(circle at 82% 18%, rgba(78, 216, 255, 0.16), transparent 26%),
    radial-gradient(circle at 16% 86%, rgba(27, 102, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(6, 16, 38, 0.88), rgba(8, 24, 56, 0.72));
  box-shadow: var(--shadow-soft);
}

.growth-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.growth-chart::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.growth-chart__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--white);
}

.growth-chart__header span {
  color: #c9d8ef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-chart__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 10px;
  border: 1px solid rgba(78, 216, 255, 0.26);
  border-radius: 999px;
  color: #dff7ff;
  background: rgba(78, 216, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-chart__live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ed8ff;
  box-shadow: 0 0 0 5px rgba(78, 216, 255, 0.15);
}

.growth-chart__header strong {
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.growth-chart__body {
  position: relative;
  isolation: isolate;
}

.growth-chart__body::before,
.growth-chart__body::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.growth-chart__body::before {
  left: 10%;
  right: 10%;
  bottom: 38px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 216, 255, 0.22), transparent 72%);
  filter: blur(8px);
}

.growth-chart__body::after {
  left: 20px;
  right: 20px;
  bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 216, 255, 0.26), transparent);
}

.growth-chart__line {
  width: 100%;
  height: 220px;
  display: block;
  overflow: visible;
}

.growth-chart__glow {
  opacity: 0.45;
  filter: blur(3px);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: growth-line-draw 1.55s ease forwards;
}

.growth-chart__stroke {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: growth-line-draw 1.55s ease forwards;
}

.growth-chart__area {
  opacity: 0;
  animation: growth-area-fade 1.1s ease 0.3s forwards;
}

.growth-chart__grid line {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}

.growth-chart__markers {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.growth-point {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  padding: 0;
  background: none;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.growth-point:focus-visible {
  outline: none;
}

.growth-point__dot,
.growth-point__pulse {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.growth-point__dot {
  width: 14px;
  height: 14px;
  background: #eaf5ff;
  box-shadow: 0 0 0 4px rgba(78, 216, 255, 0.14);
}

.growth-point__pulse {
  width: 28px;
  height: 28px;
  background: rgba(78, 216, 255, 0.16);
  transform-box: fill-box;
  transform-origin: center;
  animation: growth-point-pulse 1.8s ease-in-out infinite;
}

.growth-point--final .growth-point__dot {
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(78, 216, 255, 0.18);
}

.growth-point--final .growth-point__pulse {
  background: rgba(255, 255, 255, 0.16);
}

.growth-point--final .growth-point__tooltip {
  background: linear-gradient(135deg, rgba(27, 102, 255, 0.98), rgba(78, 216, 255, 0.92));
  border-color: rgba(255, 255, 255, 0.2);
}

.growth-point__tooltip {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 8px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(7, 20, 47, 0.96);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.growth-point:hover .growth-point__tooltip,
.growth-point:focus-visible .growth-point__tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.growth-point:hover .growth-point__pulse,
.growth-point:focus-visible .growth-point__pulse {
  animation-play-state: paused;
}

.growth-chart__labels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: -2px;
  color: #c9d8ef;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.growth-chart__labels span {
  text-align: center;
}

@keyframes growth-point-pulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.28;
  }
}

@keyframes growth-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes growth-area-fade {
  to {
    opacity: 1;
  }
}

.kpi-one {
  right: 28px;
  top: 76px;
}

.kpi-two {
  left: 38px;
  bottom: 42px;
}

.kpi-three {
  right: 42px;
  bottom: 86px;
}

.trusted {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trusted p {
  margin-bottom: 16px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.brand-logo {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: #334155;
  font-weight: 900;
}

.brand-logo b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-style: normal;
  line-height: 1;
}

.brand-logo em {
  font-style: normal;
}

.google-logo b { background: #4285f4; }
.meta-logo b { background: #1767ff; }
.meta-logo b::before { content: "M"; }
.shopify-logo b { background: #7ab55c; }
.hubspot-logo b { background: #ff5c35; }
.hubspot-logo b::before { content: "H"; }
.webflow-logo b { background: #146ef5; }

.services,
.service-single-features,
.about-values,
.process-principles,
.case-study-showcase,
.faq-page-section,
.blog-empty-section {
  background: var(--white);
}

.about,
.stats,
.service-process,
.service-single-process,
.service-pricing,
.service-single-intro,
.services-showcase,
.process-framework,
.process-cadence,
.process-deliverables,
.guide-content,
.contact-page-main,
.contact,
.contact-expectations,
.contact-support,
.case-industries,
.policy-content {
  background: var(--soft);
}

.about-story,
.about-method,
.about-expertise,
.case-studies {
  background: var(--white);
}

.services-grid,
.case-grid,
.testimonial-grid,
.pricing-grid,
.features-grid-3,
.services-grid-detailed,
.process-stage-grid,
.case-results-grid,
.industry-grid,
.guide-card-grid,
.checklist-grid,
.funnel-grid,
.cadence-grid,
.stats-grid,
.about-value-grid,
.expertise-list,
.contact-card-grid,
.case-panel-grid,
.results-grid,
.guide-panel-list,
.deliverable-list {
  display: grid;
  gap: 22px;
}

.services-grid,
.case-grid,
.testimonial-grid,
.pricing-grid,
.features-grid-3,
.case-results-grid,
.industry-grid,
.guide-card-grid,
.checklist-grid,
.funnel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid-detailed {
  grid-template-columns: 1fr;
  gap: 28px;
}

.stats-grid,
.process-row,
.about-value-grid,
.cadence-grid,
.contact-card-grid,
.case-panel-grid,
.results-grid,
.guide-panel-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.case-card,
.testimonial-card,
.feature-box,
.price-card,
.process-card,
.timeline-item,
.contact-card,
.faq-item,
.faq-category-card,
.guide-card-grid > *,
.blog-empty-card,
.growth-card,
.result-item,
.stat-item,
.service-detail-card,
.stats-box,
.service-cta,
.policy-section,
.guide-note,
.guide-mistakes,
.about-story-image,
.case-study-detail,
.support-list > div,
.service-single-grid > div,
.contact-page-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card,
.testimonial-card,
.feature-box,
.price-card,
.process-card,
.timeline-item,
.contact-card,
.faq-item,
.faq-category-card,
.guide-card-grid > *,
.blog-empty-card,
.result-item,
.stat-item {
  padding: 26px;
}

.service-card,
.case-card,
.price-card,
.feature-box,
.process-card,
.timeline-item,
.contact-card,
.case-study-detail,
.service-detail-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.case-card:hover,
.price-card:hover,
.feature-box:hover,
.process-card:hover,
.timeline-item:hover,
.contact-card:hover,
.case-study-detail:hover,
.service-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 102, 255, 0.24);
  box-shadow: var(--shadow);
}

.icon,
.service-icon,
.feature-icon,
.process-icon,
.stat-icon,
.contact-card-icon,
.blog-empty-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 26px rgba(27, 102, 255, 0.18);
}

.blue { background: var(--blue) !important; }
.green { background: var(--green) !important; }
.purple { background: var(--purple) !important; }
.orange { background: var(--orange) !important; }
.pink { background: var(--pink) !important; }
.teal { background: var(--teal) !important; }

.icon-search,
.icon-code,
.icon-trend,
.icon-mail,
.icon-chip,
.icon-pin,
.icon-share,
.icon-pen,
.icon-magic,
.icon-target,
.icon-users,
.icon-rocket,
.icon-star,
.icon-mobile,
.icon-bolt,
.icon-book,
.icon-briefcase,
.icon-building,
.icon-bullhorn,
.icon-cart,
.icon-chart,
.icon-compass,
.icon-file,
.icon-flask,
.icon-gear,
.icon-layer,
.icon-lightbulb,
.icon-link,
.icon-map,
.icon-palette,
.icon-pie,
.icon-question,
.icon-quote,
.icon-shield,
.icon-speed,
.icon-video {
  color: inherit;
}

.fa-brands,
.fa-wordpress {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: inherit;
  font-style: normal;
  font-weight: 900;
}

.fa-wordpress::before {
  content: "W";
}

.service-card h3,
.feature-box h3,
.process-card h3,
.timeline-item h3,
.case-card h3,
.price-card h3,
.contact-card b,
.faq-question,
.guide-card-grid h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.service-card p,
.feature-box p,
.process-card p,
.timeline-item p,
.case-card p,
.testimonial-card p,
.price-card p,
.contact-card span,
.faq-answer,
.guide-card-grid p,
.blog-empty-card p {
  color: var(--muted);
}

.service-card a,
.case-card a,
.service-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.about-grid,
.about-story-grid,
.expertise-grid,
.contact-page-grid,
.support-grid,
.case-study-detail,
.process-row,
.service-single-grid,
.guide-layout,
.faq-page-grid,
.policy-layout {
  display: grid;
  gap: 34px;
}

.about-grid,
.about-story-grid,
.expertise-grid,
.contact-page-grid,
.support-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
}

.about-image,
.about-story-image,
.case-study-media,
.case-img,
.case-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0f2448, #1b66ff);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.experience {
  position: absolute;
  left: 22px;
  bottom: 22px;
  min-width: 132px;
  border-radius: var(--radius);
  padding: 16px;
  color: var(--white);
  background: rgba(7, 20, 47, 0.84);
  box-shadow: var(--shadow);
}

.experience strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.about-features,
.about-signal-grid,
.about-value-grid,
.deliverable-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.about-features,
.about-signal-grid,
.deliverable-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-feature {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mini-feature span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--soft-2);
}

.mini-feature b {
  display: block;
  color: var(--text);
}

.mini-feature p {
  color: var(--muted);
  font-size: 14px;
}

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item {
  text-align: center;
}

.stat-icon {
  margin: 0 auto 14px;
}

.stat-item strong,
.stat-big strong,
.growth-card span,
.case-hero-panel strong,
.process-hero-panel strong,
.contact-hero-panel strong,
.guide-hero-panel strong {
  display: block;
  color: var(--text);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.stat-item span,
.stat-big span,
.growth-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.case-card {
  overflow: hidden;
}

.case-img,
.case-image {
  min-height: 210px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.case-one,
.case-1,
.fashion-case {
  background:
    linear-gradient(135deg, rgba(15, 36, 72, 0.82), rgba(27, 102, 255, 0.55)),
    url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=900&q=80") center/cover;
}

.case-two,
.case-2,
.b2b-case {
  background:
    linear-gradient(135deg, rgba(15, 36, 72, 0.82), rgba(20, 184, 166, 0.5)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=80") center/cover;
}

.case-three,
.case-3,
.saas-case {
  background:
    linear-gradient(135deg, rgba(15, 36, 72, 0.82), rgba(124, 58, 237, 0.5)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80") center/cover;
}

.tag,
.case-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.tag {
  position: absolute;
  left: 16px;
  top: 16px;
}

.tag-green,
.case-label.green {
  background: var(--green);
}

.tag-purple,
.case-label.purple {
  background: var(--purple);
}

.case-body {
  padding: 24px;
}

.case-stats,
.case-metric-row,
.case-results-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.case-stats,
.case-metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-stats div,
.case-metric-row div,
.case-panel-grid > div,
.case-panel-grid > span {
  border-radius: var(--radius);
  padding: 14px;
  background: var(--soft);
}

.case-stats strong,
.case-metric-row strong,
.case-panel-grid strong,
.case-panel-grid b {
  display: block;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.case-stats span,
.case-metric-row span,
.case-panel-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.testimonials,
.case-results-band,
.cta-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 47, 0.98), rgba(15, 36, 72, 0.96)),
    linear-gradient(90deg, rgba(20, 184, 166, 0.18), rgba(249, 115, 22, 0.12));
}

.testimonials .section-title,
.case-results-band .section-title,
.cta-section .section-title {
  color: var(--white);
}

.testimonials .section-text,
.case-results-band .section-text,
.cta-section .section-text {
  color: #c9d8ef;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.testimonial-card p {
  color: #e4edfb;
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.client b {
  display: block;
  color: var(--white);
}

.client small {
  color: #bfd0ea;
}

.cta-content {
  max-width: 820px;
  margin: 0 auto;
}

.cta-content .btn {
  margin-top: 24px;
}

.about-final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.24), transparent 30%),
    radial-gradient(circle at 84% 28%, rgba(27, 102, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #07142f 0%, #10264c 58%, #07142f 100%);
}

.about-final-cta .cta-content {
  max-width: 900px;
}

.about-final-cta .eyebrow {
  margin-bottom: 14px;
}

.about-final-cta .section-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.12;
}

.about-final-cta .section-text {
  max-width: 700px;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.about-cta-actions .btn {
  min-width: 190px;
  margin-top: 0;
}

.about-final-cta .btn-outline {
  color: #eef6ff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.about-final-cta .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.services-showcase {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 42%, #f4f7fb 100%);
}

.service-detail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--sky));
}

.service-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-header h2,
.service-single-grid h2,
.guide-article h2,
.policy-section h2 {
  color: var(--text);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.service-intro {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: var(--muted);
  margin-bottom: 22px;
}

.service-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  grid-template-rows: auto 1fr;
  gap: 12px 26px;
  align-items: start;
}

.service-content > h3 {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-content > h3:first-of-type {
  grid-column: 1;
  grid-row: 1;
}

.service-content > h3:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.service-content > .service-features {
  grid-column: 1;
  grid-row: 2;
}

.service-content > .results-grid {
  grid-column: 2;
  grid-row: 2;
}

.service-features,
.benefits-list,
.expertise-list,
.case-actions,
.guide-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.service-features li,
.benefits-list li,
.expertise-list li,
.case-actions li,
.guide-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.service-features li::before,
.benefits-list li::before,
.expertise-list li::before,
.case-actions li::before,
.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.about-expertise .expertise-list {
  gap: 16px;
}

.about-expertise .expertise-list > div {
  position: relative;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 18px 42px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.about-expertise .expertise-list > div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.about-expertise .expertise-list b {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.about-expertise .expertise-list span {
  display: block;
  color: var(--muted);
  line-height: 1.58;
}

.service-detail-card .results-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.service-detail-card .result-item {
  display: grid;
  gap: 5px;
  padding: 16px;
  box-shadow: none;
  background: var(--soft);
}

.service-detail-card .result-item strong {
  color: var(--blue);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.service-detail-card .result-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.service-cta {
  align-self: stretch;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid rgba(27, 102, 255, 0.22);
  background: linear-gradient(135deg, rgba(27, 102, 255, 0.08), rgba(64, 190, 255, 0.12));
  color: var(--blue);
  box-shadow: 0 12px 24px rgba(27, 102, 255, 0.08);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.service-cta:hover {
  border-color: rgba(27, 102, 255, 0.38);
  box-shadow: 0 16px 30px rgba(27, 102, 255, 0.14);
}

.service-process .process-row,
.service-pricing .pricing-grid {
  margin-top: 38px;
}

.price-card {
  position: relative;
}

.price-card.popular {
  border-color: rgba(27, 102, 255, 0.48);
  box-shadow: 0 18px 48px rgba(27, 102, 255, 0.16);
}

.popular-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.price {
  margin: 16px 0;
  color: var(--text);
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 14px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.service-single-grid {
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 28px;
}

.service-single-grid > div {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.service-single-grid > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--sky));
}

.service-single-grid h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.service-single-grid p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  max-width: 760px;
}

.service-single-grid .benefits-list {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 24px 0 28px;
}

.service-single-grid .benefits-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px 11px 34px;
  background: var(--soft);
  color: #34435c;
  font-size: 14px;
  font-weight: 750;
}

.service-single-grid .benefits-list li::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.service-single-grid .btn {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

.stats-box {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(27, 102, 255, 0.18);
  background: var(--white);
}

.stat-big {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(27, 102, 255, 0.08), transparent 54%),
    var(--white);
}

.stat-big:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-big:last-child {
  padding-bottom: 24px;
}

.stat-big strong {
  color: var(--blue);
  font-size: 34px;
}

.stat-big span {
  color: #526078;
  font-weight: 800;
}

.service-single-features .section-title,
.service-single-process .section-title {
  text-align: center;
}

.service-single-features .features-grid-3,
.service-single-process .process-timeline {
  margin-top: 38px;
}

.service-single-features .feature-box {
  min-height: 100%;
  padding: 28px;
}

.service-single-features .feature-box:nth-child(2) .feature-icon,
.service-single-features .feature-box:nth-child(5) .feature-icon {
  background: var(--teal);
}

.service-single-features .feature-box:nth-child(3) .feature-icon,
.service-single-features .feature-box:nth-child(6) .feature-icon {
  background: var(--purple);
}

.service-single-features .feature-box p {
  font-size: 15px;
}

.service-single-process {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.service-single-process .timeline-item {
  min-height: 100%;
  padding: 26px;
}

.service-single-process .timeline-number {
  margin-bottom: 2px;
  box-shadow: 0 12px 24px rgba(27, 102, 255, 0.2);
}

.service-single-process .timeline-item:nth-child(2) .timeline-number,
.service-single-process .timeline-item:nth-child(5) .timeline-number {
  background: var(--teal);
}

.service-single-process .timeline-item:nth-child(3) .timeline-number,
.service-single-process .timeline-item:nth-child(6) .timeline-number {
  background: var(--purple);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.timeline-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact {
  padding: 88px 0;
  background:
    linear-gradient(180deg, #f4f7fb 0%, #eef4ff 100%);
}

.contact .contact-grid {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 64px;
}

.contact .contact-grid > div:first-child {
  display: flex;
  flex-direction: column;
}

.contact .eyebrow {
  margin-bottom: 14px;
}

.contact .section-title {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: 46px;
  line-height: 1.18;
}

.contact .section-title + p {
  max-width: 620px;
  margin: 0;
  color: #34435c;
  font-size: 18px;
  line-height: 1.75;
}

.contact .contact-info {
  max-width: 560px;
  gap: 14px;
  margin-top: 28px;
}

.contact .contact-info > div {
  display: block;
  border: 1px solid rgba(221, 230, 242, 0.9);
  border-radius: var(--radius);
  padding: 15px 18px 16px;
  background: rgba(255, 255, 255, 0.62);
}

.contact .contact-info b {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.contact .contact-info b .svg-icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.contact .contact-info small {
  display: block;
  padding-left: 34px;
  margin-top: 5px;
  color: #526078;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact .form {
  align-self: stretch;
  align-content: stretch;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  margin-top: 36px;
  padding: 0;
}

.contact .form-row {
  gap: 20px;
}

.contact .form input,
.contact .form textarea {
  min-height: 68px;
  border-color: #d4e0f0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 16px;
}

.contact .form textarea {
  min-height: 176px;
  height: 100%;
  padding-top: 18px;
}

.contact .form .btn {
  min-height: 60px;
  width: 100%;
  font-size: 16px;
}

.form,
.contact-page-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(27, 102, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(27, 102, 255, 0.1);
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.contact-page-main {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 44%, #f4f7fb 100%);
}

.contact-page-main .contact-page-grid {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 52px;
}

.contact-page-main .section-title {
  margin-left: 0;
  margin-right: 0;
}

.contact-page-main .contact-card-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 30px;
}

.contact-page-main .contact-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.contact-page-main .contact-card-icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
}

.contact-page-main .contact-card b {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.contact-page-main .contact-card span {
  display: block;
  color: #526078;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-page-form {
  position: relative;
  overflow: hidden;
  gap: 18px;
  padding: 32px;
  border-color: rgba(27, 102, 255, 0.16);
  box-shadow: var(--shadow);
}

.contact-page-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--teal));
}

.contact-page-form label {
  color: #26344d;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  min-height: 52px;
  border-color: #d4e0f0;
  background: #fbfdff;
}

.contact-page-form textarea {
  min-height: 160px;
}

.contact-page-form .btn {
  min-height: 56px;
  margin-top: 4px;
  font-size: 15px;
}

.contact-expectations {
  background: var(--white);
}

.contact-expectations .process-timeline {
  margin-top: 40px;
}

.contact-expectations .timeline-item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
}

.contact-expectations .timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--sky));
}

.contact-expectations .timeline-item:nth-child(2) .timeline-number {
  background: var(--teal);
}

.contact-expectations .timeline-item:nth-child(3) .timeline-number {
  background: var(--purple);
}

.contact-expectations .timeline-number {
  box-shadow: 0 12px 24px rgba(27, 102, 255, 0.18);
}

.contact-support {
  background:
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.contact-support .support-grid {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 52px;
}

.contact-support .section-title {
  margin-left: 0;
  margin-right: 0;
}

.contact-support .support-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-support .support-list > div {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  padding: 22px;
  border-color: rgba(221, 230, 242, 0.95);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-support .support-list > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.contact-support .support-list > div:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 102, 255, 0.24);
  box-shadow: var(--shadow);
}

.contact-support .support-list b {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.contact-support .support-list span {
  display: block;
  color: #526078;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-panel-list,
.process-panel-list,
.guide-panel-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-panel-list span,
.process-panel-list span,
.guide-panel-list span {
  display: block;
  border-radius: var(--radius);
  padding: 12px;
  color: #dceaff;
  background: rgba(255, 255, 255, 0.08);
}

.contact-hero-panel,
.case-hero-panel,
.process-hero-panel,
.guide-hero-panel,
.about-hero-panel {
  min-height: auto;
  padding: 30px;
}

.contact-hero-panel strong,
.case-hero-panel strong,
.process-hero-panel strong,
.guide-hero-panel strong,
.about-hero-panel strong {
  color: var(--white);
  font-size: 58px;
}

.contact-hero-panel p,
.case-hero-panel p,
.process-hero-panel p,
.guide-hero-panel p,
.about-hero-panel p {
  color: #c9d8ef;
}

.case-hero-panel {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.case-hero-panel .panel-label {
  color: #9bdcff;
}

.case-hero-panel strong {
  margin: 4px 0 12px;
  font-size: 58px;
}

.case-hero-panel .case-panel-grid {
  gap: 12px;
  margin-top: 24px;
}

.case-hero-panel .case-panel-grid > span {
  margin: 0;
  color: #dceaff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.case-hero-panel .case-panel-grid b {
  color: var(--white);
}

.process-hero-panel {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.process-hero-panel .panel-label {
  color: #9bdcff;
}

.process-hero-panel strong {
  margin: 4px 0 12px;
  font-size: 58px;
}

.process-hero-panel .process-panel-list {
  gap: 12px;
  margin-top: 24px;
}

.process-hero-panel .process-panel-list span {
  position: relative;
  padding: 13px 14px 13px 38px;
  color: #dceaff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.process-hero-panel .process-panel-list span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.contact-hero-panel {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.contact-hero-panel .panel-label {
  color: #9bdcff;
}

.contact-hero-panel strong {
  margin: 4px 0 12px;
  font-size: 64px;
  letter-spacing: 0;
}

.contact-hero-panel .contact-panel-list {
  gap: 12px;
  margin-top: 24px;
}

.contact-hero-panel .contact-panel-list span {
  position: relative;
  padding: 13px 14px 13px 38px;
  color: #dceaff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.contact-hero-panel .contact-panel-list span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.guide-hero-panel {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.guide-hero-panel .panel-label {
  color: #9bdcff;
}

.guide-hero-panel strong {
  margin: 4px 0 12px;
  font-size: 64px;
  letter-spacing: 0;
}

.guide-hero-panel .guide-panel-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.guide-hero-panel .guide-panel-list span {
  position: relative;
  padding: 13px 14px 13px 34px;
  color: #dceaff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.guide-hero-panel .guide-panel-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list > div {
  padding: 18px;
}

.support-list b {
  display: block;
  color: var(--text);
}

.support-list span {
  color: var(--muted);
}

.about-hero-panel {
  display: grid;
  gap: 18px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.about-signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.growth-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.growth-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0.9;
}

.growth-card span,
.growth-card small {
  color: var(--white);
}

.growth-card span {
  font-size: 30px;
}

.growth-card small {
  color: #c9d8ef;
  line-height: 1.35;
}

.main-growth-card {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(27, 102, 255, 0.24), rgba(20, 184, 166, 0.12)),
    rgba(255, 255, 255, 0.1);
}

.main-growth-card .panel-label {
  color: #9bdcff;
  margin-bottom: 14px;
}

.main-growth-card strong {
  margin-bottom: 10px;
  font-size: 64px;
  letter-spacing: 0;
}

.main-growth-card p {
  max-width: 310px;
  margin: 0;
  color: #d8e7fb;
}

.about-story-image {
  min-height: 400px;
  background:
    linear-gradient(135deg, rgba(15, 36, 72, 0.75), rgba(27, 102, 255, 0.4)),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.case-study-list {
  display: grid;
  gap: 34px;
  margin-top: 44px;
}

.case-study-detail {
  position: relative;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  border-color: rgba(27, 102, 255, 0.12);
}

.case-study-detail.reverse .case-study-media {
  order: 2;
}

.case-study-media {
  min-height: 390px;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: none;
}

.case-study-detail.reverse .case-study-media {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.case-study-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 38px;
}

.case-study-copy h3 {
  color: var(--text);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 900;
}

.case-study-copy p {
  color: var(--muted);
}

.case-study-copy .case-label {
  margin-bottom: 2px;
}

.case-actions {
  margin-top: 4px;
}

.case-metric-row {
  margin: 4px 0 2px;
}

.case-metric-row div {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff, #f6f9ff);
}

.case-metric-row strong {
  color: var(--blue);
  font-size: 24px;
}

.case-actions li {
  color: #3a465c;
  font-size: 14px;
  font-weight: 700;
}

.case-results-band .case-results-grid > div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.case-results-grid strong {
  display: block;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.case-results-grid span {
  display: block;
  margin-top: 10px;
  color: #c9d8ef;
  line-height: 1.5;
}

.case-industries {
  background:
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.case-industries .industry-grid {
  margin-top: 40px;
}

.industry-grid > div {
  min-height: 150px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry-grid > div:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 102, 255, 0.24);
  box-shadow: var(--shadow);
}

.industry-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.industry-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.process-stage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

.process-framework {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 48%, #f4f7fb 100%);
}

.process-stage-grid article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(221, 230, 242, 0.95);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.process-stage-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--sky));
}

.process-stage-grid article:nth-child(2n)::before {
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.process-stage-grid article:nth-child(3n)::before {
  background: linear-gradient(180deg, var(--purple), var(--pink));
}

.process-stage-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 102, 255, 0.28);
  box-shadow: var(--shadow);
}

.process-stage-grid article span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-2);
  font-size: 14px;
  font-weight: 900;
}

.process-stage-grid article h3 {
  margin: 22px 0 10px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.process-stage-grid article p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.process-framework .process-card,
.process-principles .feature-box {
  min-height: 100%;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.process-deliverables {
  background: var(--white);
}

.process-deliverables .section-title {
  margin-left: 0;
  margin-right: 0;
}

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

.deliverable-list > div,
.checklist-grid > div,
.funnel-grid > div,
.cadence-grid > div,
.industry-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.deliverable-list > div {
  min-height: 180px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.deliverable-list > div:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 102, 255, 0.24);
  box-shadow: var(--shadow);
}

.deliverable-list b,
.cadence-grid strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.deliverable-list span,
.cadence-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.process-cadence {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 20, 47, 0.98), rgba(15, 36, 72, 0.96)),
    linear-gradient(90deg, rgba(27, 102, 255, 0.2), rgba(20, 184, 166, 0.14));
}

.process-cadence .section-title {
  color: var(--white);
}

.process-cadence .cadence-grid {
  margin-top: 38px;
}

.process-cadence .cadence-grid > div {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.process-cadence .cadence-grid > div:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.process-cadence .cadence-grid > div::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.process-cadence .cadence-grid strong {
  margin-top: 28px;
  color: var(--white);
}

.process-cadence .cadence-grid span {
  color: #c9d8ef;
}

.process-principles .about-value-grid {
  margin-top: 38px;
}

.process-principles .feature-box:nth-child(2) .feature-icon {
  background: var(--teal);
}

.process-principles .feature-box:nth-child(3) .feature-icon {
  background: var(--purple);
}

.process-principles .feature-box:nth-child(4) .feature-icon {
  background: var(--orange);
}

.guide-layout,
.policy-layout,
.faq-page-grid {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.policy-hero {
  padding: 116px 0 92px;
  background:
    radial-gradient(circle at 18% 24%, rgba(32, 204, 192, 0.18), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(255, 178, 70, 0.14), transparent 28%),
    linear-gradient(135deg, #071225 0%, #10264a 50%, #0a1830 100%);
}

.policy-hero .container {
  display: grid;
  justify-items: center;
}

.policy-hero .hero-badge {
  margin-bottom: 18px;
  border-color: rgba(255, 255, 255, 0.18);
  color: #dce9ff;
  background: rgba(255, 255, 255, 0.08);
}

.policy-hero h1 {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.policy-hero p {
  margin-inline: auto;
  text-align: center;
}

.section.policy-section {
  padding: 84px 0;
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 48%, #f4f8ff 100%);
}

.policy-section .policy-layout {
  gap: 40px;
}

.policy-sidebar {
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.policy-sidebar > b {
  display: block;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.policy-sidebar a {
  position: relative;
  border: 1px solid transparent;
  padding: 11px 12px 11px 15px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.policy-sidebar a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--sky));
  transform: translateY(-50%);
  transition: height 0.2s ease;
}

.policy-sidebar a:hover {
  border-color: rgba(27, 102, 255, 0.14);
  transform: translateX(2px);
}

.policy-sidebar a:hover::before {
  height: 22px;
}

.policy-content {
  gap: 20px;
  background: transparent;
}

.policy-content > section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
}

.policy-content > section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--sky));
}

.policy-content > section:nth-child(2n)::before {
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.policy-content > section:nth-child(3n)::before {
  background: linear-gradient(180deg, var(--orange), var(--purple));
}

.policy-content h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.policy-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.policy-content p + p,
.policy-content p + ul {
  margin-top: 12px;
}

.policy-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.policy-content li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.65;
}

.policy-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(27, 102, 255, 0.11);
}

.policy-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.policy-content a:hover {
  color: var(--teal);
}

.guide-content {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 42%, #f4f7fb 100%);
}

.guide-content .guide-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
}

.guide-sidebar,
.policy-sidebar,
.faq-category-card {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.guide-sidebar {
  padding: 18px;
}

.guide-sidebar > b {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.guide-sidebar ul,
.policy-sidebar ul,
.faq-category-card ul {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.guide-sidebar a,
.policy-sidebar a,
.faq-category-card a {
  display: block;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 800;
}

.guide-sidebar a:hover,
.policy-sidebar a:hover,
.faq-category-card a:hover {
  color: var(--blue);
  background: var(--soft-2);
}

.guide-sidebar a {
  border: 1px solid transparent;
}

.guide-sidebar a:hover {
  border-color: rgba(27, 102, 255, 0.14);
  transform: translateX(2px);
}

.guide-article,
.policy-content,
.faq-page-content {
  display: grid;
  gap: 22px;
}

.guide-article section,
.policy-section {
  padding: 28px;
}

.guide-article section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.guide-article section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--sky));
}

.guide-article section:nth-child(2n)::before {
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.guide-article section:nth-child(3n)::before {
  background: linear-gradient(180deg, var(--orange), var(--purple));
}

.guide-article h2 {
  margin-bottom: 12px;
  font-size: 31px;
}

.guide-article p {
  color: var(--muted);
  line-height: 1.72;
}

.guide-article p + p,
.guide-article p + .guide-note,
.guide-article p + .funnel-grid,
.guide-article p + .guide-list {
  margin-top: 14px;
}

.guide-note,
.guide-mistakes {
  padding: 24px;
  background: var(--white);
}

.guide-note {
  margin-top: 18px;
  border: 1px solid rgba(27, 102, 255, 0.18);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  color: #26344d;
  background: var(--soft-2);
  font-weight: 800;
}

.guide-mistakes {
  border-left: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.guide-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.guide-card-grid > div,
.funnel-grid > div {
  min-height: 150px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.guide-card-grid > div:hover,
.funnel-grid > div:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 102, 255, 0.24);
  box-shadow: var(--shadow);
}

.guide-card-grid b,
.funnel-grid strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.guide-card-grid span,
.funnel-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.funnel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.guide-list {
  margin-top: 20px;
}

.guide-list li {
  min-height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px 11px 36px;
  background: var(--soft);
  color: #34435c;
  font-size: 14px;
  font-weight: 750;
}

.guide-list li::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.checklist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.checklist-grid label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #34435c;
  background: var(--soft);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.checklist-grid label:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 102, 255, 0.24);
  background: var(--soft-2);
}

.checklist-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--blue);
}

.guide-mistakes .industry-grid {
  margin-top: 38px;
}

.faq-page-accordion,
.accordion {
  display: grid;
  gap: 14px;
}

.faq-page-section {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 42%, #f4f7fb 100%);
}

.faq-page-section .faq-page-grid {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
}

.faq-category-card {
  padding: 18px;
}

.faq-category-card > b {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.faq-category-card a {
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-category-card a:hover {
  border-color: rgba(27, 102, 255, 0.14);
  transform: translateX(2px);
}

.faq-page-content {
  gap: 28px;
}

.faq-page-content > section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-page-content > section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--sky));
}

.faq-page-content > section:nth-child(2n)::before {
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.faq-page-content > section:nth-child(3n)::before {
  background: linear-gradient(180deg, var(--orange), var(--purple));
}

.faq-page-content h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.faq-page-accordion {
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border-color: rgba(27, 102, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.faq-page-accordion .faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 102, 255, 0.28);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  border: 0;
  padding: 20px 22px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.faq-question span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-2);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.faq-page-accordion .faq-item:hover .faq-question span {
  color: var(--white);
  background: var(--blue);
  transform: rotate(90deg);
}

.faq-page-accordion .faq-item.active .faq-question span {
  color: var(--white);
  background: var(--blue);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  line-height: 1.68;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.22s ease;
}

.faq-page-accordion .faq-item.active .faq-answer {
  max-height: 260px;
  padding: 0 22px 22px;
  opacity: 1;
}

.homepage-faqs {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.homepage-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: stretch;
}

.homepage-faq-intro {
  position: sticky;
  top: 104px;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
}

.homepage-faq-intro .section-title {
  margin-left: 0;
  margin-right: 0;
}

.homepage-faq-panel {
  width: min(430px, 100%);
  min-height: 272px;
  display: flex;
  flex-direction: column;
  margin: 28px 0 24px;
  border: 1px solid rgba(27, 102, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 255, 0.95));
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.homepage-faq-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 102, 255, 0.28);
  box-shadow: var(--shadow);
}

.faq-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-panel-top span {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.faq-panel-top b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 12px 24px rgba(27, 102, 255, 0.2);
}

.faq-panel-search {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #71809a;
  background: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

.faq-panel-items {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  flex: 1;
  align-content: end;
}

.faq-panel-items div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(221, 230, 242, 0.86);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-panel-items b {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.faq-panel-items span {
  color: #34435c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.homepage-faq-visual {
  position: relative;
  width: min(360px, 100%);
  height: 190px;
  margin: 30px 0 26px;
}

.faq-visual-card {
  border: 1px solid rgba(27, 102, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.faq-visual-card.main {
  position: absolute;
  left: 24px;
  right: 34px;
  top: 22px;
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 24px;
}

.faq-visual-card.main span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--soft-2);
  font-size: 12px;
  font-weight: 900;
}

.faq-visual-card.main strong {
  max-width: 220px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.faq-visual-card.small {
  position: absolute;
  min-width: 78px;
  padding: 10px 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.faq-visual-card.small.one {
  left: 0;
  bottom: 18px;
}

.faq-visual-card.small.two {
  right: 4px;
  bottom: 32px;
}

.faq-visual-orbit {
  position: absolute;
  right: 30px;
  top: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 16px 30px rgba(27, 102, 255, 0.24);
  font-size: 28px;
  font-weight: 900;
}

.homepage-faq-visual:hover .faq-visual-card.main {
  transform: translateY(-4px);
}

.homepage-faq-visual:hover .faq-visual-orbit {
  transform: rotate(12deg) scale(1.04);
}

.homepage-faq-visual .faq-visual-card,
.homepage-faq-visual .faq-visual-orbit {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.homepage-faq-intro .btn {
  width: fit-content;
  margin-top: 0;
}

.homepage-faq-list {
  gap: 16px;
}

.homepage-faq-list .faq-item {
  border-color: rgba(27, 102, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.homepage-faq-list .faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 102, 255, 0.32);
  box-shadow: var(--shadow);
}

.homepage-faq-list .faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 22px 24px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-size: 18px;
  line-height: 1.35;
}

.homepage-faq-list .faq-question span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-2);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.homepage-faq-list .faq-item:hover .faq-question span {
  color: var(--white);
  background: var(--blue);
  transform: rotate(90deg);
}

.homepage-faq-list .faq-item.active .faq-question span {
  color: var(--white);
  background: var(--blue);
  transform: rotate(45deg);
}

.homepage-faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  line-height: 1.65;
  opacity: 0;
  transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.22s ease;
}

.homepage-faq-list .faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 24px 24px;
  opacity: 1;
}

.policy-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.policy-updated::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.blog-empty-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.blog-empty-icon {
  margin: 0 auto 18px;
}

.footer,
.site-footer {
  padding: 66px 0 24px;
  color: #d7e3f7;
  background: var(--navy);
}

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

.footer-logo .logo-img,
.footer .logo-img,
.site-footer .logo-img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer p,
.footer a,
.footer li,
.site-footer p,
.site-footer a,
.site-footer li {
  color: #b9c8df;
  font-size: 14px;
}

.footer p {
  margin-top: 14px;
}

.footer h4,
.site-footer h4 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 15px;
}

.footer ul,
.site-footer ul {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.footer a:hover,
.site-footer a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.newsletter input {
  min-width: 0;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter input::placeholder {
  color: #98abc8;
}

.newsletter button {
  width: 46px;
  min-width: 46px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  color: #98abc8;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .header-btn {
    display: none;
  }

  .menu a {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 1020px) {
  .nav {
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .menu {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 86px;
    max-height: calc(100vh - 110px);
    display: none;
    overflow: auto;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    justify-content: flex-start;
  }

  .menu-item-with-mega {
    width: 100%;
  }

  .mega-menu {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .mega-menu::before {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .about-hero-grid,
  .about-story-grid,
  .expertise-grid,
  .contact-grid,
  .contact-hero-grid,
  .contact-page-grid,
  .support-grid,
  .case-hero-grid,
  .case-study-detail,
  .process-hero-grid,
  .deliverables-grid,
  .guide-hero-grid,
  .guide-layout,
  .faq-page-grid,
  .policy-layout,
  .service-single-grid {
    grid-template-columns: 1fr;
  }

  .service-content,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .case-grid,
  .testimonial-grid,
  .pricing-grid,
  .features-grid-3,
  .process-timeline,
  .case-results-grid,
  .industry-grid,
  .guide-card-grid,
  .checklist-grid,
  .funnel-grid,
  .stats-grid,
  .process-stage-grid,
  .process-row,
  .about-value-grid,
  .deliverable-list,
  .service-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-content {
    grid-template-rows: auto auto;
  }

  .service-content > h3:nth-of-type(2),
  .service-content > .service-features,
  .service-content > .results-grid {
    grid-column: 1 / -1;
  }

  .guide-sidebar,
  .policy-sidebar,
  .faq-category-card {
    position: static;
  }

  .faq-page-section .faq-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-page-content,
  .faq-page-content > section,
  .faq-category-card {
    width: 100%;
    min-width: 0;
  }

  .policy-section .policy-layout {
    gap: 30px;
  }

  .policy-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .policy-sidebar > b {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .case-study-detail.reverse .case-study-media {
    order: 0;
  }

  .case-study-media {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .case-study-detail.reverse .case-study-media {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .about-page-hero .about-hero-grid {
    gap: 34px;
  }

  .about-page-hero h1,
  .about-page-hero p {
    max-width: 100%;
  }

  .case-page-hero .case-hero-grid {
    gap: 34px;
  }

  .case-page-hero h1,
  .case-page-hero p {
    max-width: 100%;
  }

  .contact-page-hero .contact-hero-grid,
  .contact-page-main .contact-page-grid,
  .contact-support .support-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-page-hero h1,
  .contact-page-hero p {
    max-width: 100%;
  }

  .contact-page-main .contact-page-grid > div,
  .contact-page-form,
  .contact-support .support-grid > div {
    width: 100%;
    min-width: 0;
  }

  .guide-hero .guide-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .guide-hero h1,
  .guide-hero p {
    max-width: 100%;
  }

  .guide-content .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar,
  .guide-article,
  .guide-article section,
  .guide-note {
    width: 100%;
    min-width: 0;
  }

  .process-page-hero .process-hero-grid {
    gap: 34px;
  }

  .process-page-hero h1,
  .process-page-hero p {
    max-width: 100%;
  }

  .homepage-faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .homepage-faq-intro {
    position: static;
    display: block;
  }

  .homepage-faq-visual {
    width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .homepage-faq-panel {
    width: 100%;
    min-height: auto;
  }

  .contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact .section-title,
  .contact .section-title + p,
  .contact .contact-info {
    max-width: 100%;
  }

  .contact .form {
    width: 100%;
    min-width: 0;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .hero,
  .services-hero,
  .service-single-hero,
  .about-page-hero,
  .contact-page-hero,
  .case-page-hero,
  .process-page-hero,
  .guide-page-hero,
  .guide-hero,
  .faq-page-hero,
  .policy-page-hero,
  .policy-hero,
  .blog-soon-hero,
  .blog-page-hero {
    padding: 72px 0 58px;
  }

  .hero h1,
  .services-hero h1,
  .service-single-hero h1,
  .about-page-hero h1,
  .contact-page-hero h1,
  .case-page-hero h1,
  .process-page-hero h1,
  .guide-page-hero h1,
  .guide-hero h1,
  .faq-page-hero h1,
  .policy-page-hero h1,
  .policy-hero h1,
  .blog-soon-hero h1,
  .blog-page-hero h1 {
    font-size: 40px;
  }

  .section-title {
    font-size: 31px;
  }

  .hero p,
  .services-hero p,
  .service-single-hero p,
  .about-page-hero p,
  .contact-page-hero p,
  .case-page-hero p,
  .process-page-hero p,
  .guide-page-hero p,
  .guide-hero p,
  .faq-page-hero p,
  .policy-page-hero p,
  .policy-hero p,
  .blog-soon-hero p,
  .blog-page-hero p {
    font-size: 16px;
  }

  .about-page-hero .about-hero-grid,
  .case-page-hero .case-hero-grid,
  .contact-page-hero .contact-hero-grid,
  .process-page-hero .process-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .about-page-hero .about-hero-grid > div:first-child,
  .case-page-hero .case-hero-grid > div:first-child,
  .contact-page-hero .contact-hero-grid > div:first-child,
  .process-page-hero .process-hero-grid > div:first-child {
    max-width: 100%;
  }

  .about-page-hero .about-hero-panel,
  .case-page-hero .case-hero-panel,
  .contact-page-hero .contact-hero-panel,
  .process-page-hero .process-hero-panel {
    width: 100%;
    margin-top: 0;
  }

  .about-page-hero .about-hero-grid,
  .case-page-hero .case-hero-grid,
  .contact-page-hero .contact-hero-grid,
  .process-page-hero .process-hero-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .case-grid,
  .testimonial-grid,
  .pricing-grid,
  .features-grid-3,
  .services-grid-detailed,
  .process-timeline,
  .process-stage-grid,
  .case-results-grid,
  .industry-grid,
  .guide-card-grid,
  .checklist-grid,
  .funnel-grid,
  .cadence-grid,
  .stats-grid,
  .process-row,
  .about-features,
  .about-signal-grid,
  .about-value-grid,
  .deliverable-list,
  .guide-panel-list,
  .case-panel-grid,
  .results-grid,
  .contact-info,
  .contact-card-grid,
  .form-row,
  .footer-grid,
  .case-stats,
  .case-metric-row,
  .service-content {
    grid-template-columns: 1fr;
  }

  .service-content {
    grid-template-rows: auto;
  }

  .service-content > h3:first-of-type,
  .service-content > h3:nth-of-type(2),
  .service-content > .service-features,
  .service-content > .results-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .service-single-grid .benefits-list {
    grid-template-columns: 1fr;
  }

  .service-single-grid .btn {
    width: 100%;
  }

  .hero-actions,
  .center-actions,
  .about-cta-actions,
  .bottom-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .center-actions .btn,
  .about-cta-actions .btn {
    width: 100%;
  }

  .hero-visual-3d,
  .hero-card,
  .about-hero-panel,
  .contact-hero-panel,
  .case-hero-panel,
  .process-hero-panel,
  .guide-hero-panel {
    min-height: 360px;
  }

  .about-page-hero .about-hero-panel,
  .case-page-hero .case-hero-panel,
  .contact-page-hero .contact-hero-panel,
  .process-page-hero .process-hero-panel {
    min-height: auto;
    padding: 20px;
  }

  .about-page-hero .about-signal-grid,
  .case-page-hero .case-panel-grid,
  .contact-page-hero .contact-panel-list,
  .process-page-hero .process-panel-list {
    grid-template-columns: 1fr;
  }

  .about-page-hero .growth-card,
  .case-page-hero .case-panel-grid > span,
  .contact-page-hero .contact-panel-list span,
  .process-page-hero .process-panel-list span {
    padding: 12px 14px;
  }

  .contact-page-hero .contact-panel-list span,
  .process-page-hero .process-panel-list span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 14px;
  }

  .contact-page-hero .contact-panel-list span::before,
  .process-page-hero .process-panel-list span::before {
    position: relative;
    left: 0;
    top: 6px;
    transform: none;
    flex: 0 0 auto;
  }

  .about-page-hero .main-growth-card strong,
  .case-page-hero .case-hero-panel strong,
  .contact-page-hero .contact-hero-panel strong,
  .process-page-hero .process-hero-panel strong {
    font-size: 40px;
  }

  .about-page-hero .about-hero-panel,
  .case-page-hero .case-hero-panel,
  .contact-page-hero .contact-hero-panel,
  .process-page-hero .process-hero-panel {
    gap: 14px;
  }

  .about-page-hero .about-signal-grid,
  .case-page-hero .case-panel-grid,
  .contact-page-hero .contact-panel-list,
  .process-page-hero .process-panel-list {
    gap: 10px;
  }

  .floating-kpi {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 12px;
  }

  .kpi-one,
  .kpi-two,
  .kpi-three {
    position: relative;
    display: inline-block;
  }

  .growth-chart {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 12px;
  }

  .growth-chart__header {
    flex-wrap: wrap;
  }

  .growth-chart__live {
    order: 3;
  }

  .growth-point__tooltip {
    display: none;
  }

  .hero-visual-glass {
    position: relative;
    left: auto;
    top: auto;
    margin: 18px;
  }

  .brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo:last-child {
    grid-column: 1 / -1;
  }

  .about-page-hero .growth-card span {
    font-size: 28px;
  }

  .about-page-hero .main-growth-card strong {
    font-size: 48px;
  }

  .case-study-media {
    min-height: 260px;
  }

  .case-study-copy h3 {
    font-size: 24px;
  }

  .case-results-band .case-results-grid > div,
  .industry-grid > div {
    padding: 22px;
  }

  .contact-page-hero .hero-actions .btn {
    width: 100%;
  }

  .guide-hero .hero-actions .btn {
    width: 100%;
  }

  .guide-card-grid,
  .funnel-grid,
  .checklist-grid,
  .guide-hero-panel .guide-panel-list {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .guide-sidebar > b {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .guide-sidebar a {
    min-width: 0;
    padding: 10px;
  }

  .faq-page-section .faq-page-grid {
    gap: 28px;
  }

  .faq-category-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .faq-category-card > b {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .faq-category-card a {
    min-width: 0;
    padding: 10px;
  }

  .faq-page-content > section {
    padding: 24px;
  }

  .faq-page-content h2 {
    font-size: 25px;
  }

  .faq-question {
    align-items: flex-start;
    min-height: 62px;
    padding: 18px;
    font-size: 16px;
  }

  .faq-question span {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-page-accordion .faq-item.active .faq-answer {
    padding: 0 18px 20px;
  }

  .guide-article section {
    padding: 24px;
  }

  .guide-article h2 {
    font-size: 25px;
  }

  .guide-card-grid > div,
  .funnel-grid > div {
    min-height: auto;
  }

  .guide-list li {
    align-items: flex-start;
  }

  .section.policy-section {
    padding: 62px 0;
  }

  .policy-sidebar {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .policy-content {
    gap: 16px;
  }

  .policy-content > section {
    padding: 24px;
  }

  .policy-content h2 {
    font-size: 25px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 15px;
  }

  .policy-updated {
    justify-content: center;
    max-width: 100%;
    text-align: center;
  }

  .contact-page-main .contact-card-grid,
  .contact-support .support-list {
    grid-template-columns: 1fr;
  }

  .contact-page-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-page-form label,
  .contact-page-form input,
  .contact-page-form select,
  .contact-page-form textarea {
    min-width: 0;
  }

  .contact-page-form {
    padding: 24px;
  }

  .contact-expectations .timeline-item,
  .contact-support .support-list > div {
    min-height: auto;
  }

  .process-stage-grid article,
  .deliverable-list > div,
  .process-cadence .cadence-grid > div {
    min-height: auto;
  }

  .process-stage-grid article {
    padding: 24px;
  }

  .process-stage-grid article h3 {
    font-size: 21px;
  }

  .process-page-hero .hero-actions .btn {
    width: 100%;
  }

  .contact {
    padding: 66px 0;
  }

  .contact .section-title {
    font-size: 34px;
    line-height: 1.18;
  }

  .contact .section-title + p {
    font-size: 16px;
    line-height: 1.65;
  }

  .contact .contact-info > div {
    padding: 15px;
  }

  .contact .contact-info small {
    padding-left: 0;
  }

  .contact .form-row {
    grid-template-columns: 1fr;
  }

  .contact .form input,
  .contact .form textarea {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }

  .contact .form textarea {
    min-height: 150px;
  }

  .about-expertise .expertise-list > div {
    padding: 16px 16px 16px 38px;
  }

  .about-expertise .expertise-list > div::before {
    left: 16px;
    top: 22px;
  }

  .homepage-faq-list .faq-question {
    min-height: 64px;
    padding: 18px;
    font-size: 16px;
  }

  .homepage-faq-visual {
    height: 170px;
    margin-top: 24px;
  }

  .homepage-faq-panel {
    padding: 18px;
    margin-top: 24px;
  }

  .faq-visual-card.main {
    left: 12px;
    right: 18px;
    min-height: 108px;
    padding: 18px;
  }

  .faq-visual-card.main strong {
    font-size: 18px;
  }

  .homepage-faq-list .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .homepage-faq-list .faq-item.active .faq-answer {
    padding: 0 18px 20px;
  }

  .service-card,
  .testimonial-card,
  .feature-box,
  .price-card,
  .process-card,
  .timeline-item,
  .contact-card,
  .faq-category-card,
  .blog-empty-card,
  .result-item,
  .stat-item,
  .service-detail-card,
  .service-single-grid > div,
  .contact-page-form,
  .case-study-copy {
    padding: 22px;
  }

  .contact-page-main .contact-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .contact-page-main .contact-card-icon {
    width: 44px;
    height: 44px;
  }

  .contact-support .support-list span {
    overflow-wrap: anywhere;
  }

  .logo-img {
    width: 134px;
  }
}

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

  .faq-category-card {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    grid-template-columns: 1fr;
  }

  .guide-article section {
    padding: 20px;
  }

  .guide-note {
    padding: 18px;
  }

  .guide-list li {
    padding: 11px 12px 11px 34px;
  }

  .faq-page-content > section {
    padding: 20px;
  }

  .faq-question {
    gap: 12px;
    padding: 16px;
    font-size: 15px;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 1.62;
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-page-accordion .faq-item.active .faq-answer {
    max-height: 520px;
    padding: 0 16px 18px;
  }

  .growth-chart__header strong {
    font-size: 22px;
  }

  .growth-chart__line {
    height: 200px;
  }

  .menu {
    left: 14px;
    right: 14px;
  }

  .hero h1,
  .services-hero h1,
  .service-single-hero h1,
  .about-page-hero h1,
  .contact-page-hero h1,
  .case-page-hero h1,
  .process-page-hero h1,
  .guide-page-hero h1,
  .guide-hero h1,
  .faq-page-hero h1,
  .policy-page-hero h1,
  .policy-hero h1,
  .blog-soon-hero h1,
  .blog-page-hero h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 28px;
  }

  .brand-row {
    grid-template-columns: 1fr;
  }
}

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

  .boot-screen {
    transition: none;
  }

  .boot-screen__logo,
  .boot-screen__bar {
    animation: none !important;
  }
}
