:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #f3f6fb;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --border: #e2e8f0;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  padding-top: 76px;
}

body.page-home {
  background: #fff;
}

body.page-about {
  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(14, 165, 233, 0.08),
      transparent 22%
    ),
    var(--bg);
}

body.page-contact {
  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(14, 165, 233, 0.08),
      transparent 22%
    ),
    var(--bg);
}

body.page-blog {
  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(14, 165, 233, 0.08),
      transparent 22%
    ),
    var(--bg);
}

body.page-service {
  background:
    radial-gradient(
      circle at top left,
      var(--service-accent-soft, rgba(37, 99, 235, 0.08)),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      var(--service-accent-soft-2, rgba(14, 165, 233, 0.08)),
      transparent 24%
    ),
    var(--bg);
}

body.page-enterprise-core {
  --service-accent: #2563eb;
  --service-accent-strong: #1d4ed8;
  --service-accent-soft: rgba(37, 99, 235, 0.12);
  --service-accent-soft-2: rgba(96, 165, 250, 0.1);
}

body.page-workforce-engine {
  --service-accent: #0f766e;
  --service-accent-strong: #115e59;
  --service-accent-soft: rgba(13, 148, 136, 0.12);
  --service-accent-soft-2: rgba(45, 212, 191, 0.1);
}

body.page-network-growth {
  --service-accent: #7c3aed;
  --service-accent-strong: #6d28d9;
  --service-accent-soft: rgba(124, 58, 237, 0.12);
  --service-accent-soft-2: rgba(196, 181, 253, 0.12);
}

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

a:hover {
  text-decoration: none;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header .container {
  position: relative;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}

.nav-item,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #0f172a;
  font-weight: 600;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.nav-link:hover,
.nav-item:hover,
.nav-link:focus-visible,
.nav-item:focus-visible {
  background: #eff6ff;
  color: var(--primary-dark);
  outline: none;
}

.dropdown {
  position: static;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  background: #eff6ff;
}

.dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.mega-card {
  display: block;
  min-height: 128px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.mega-card:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.mega-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.mega-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 3001;
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  position: relative;
  z-index: 3002;
  touch-action: manipulation;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: #0f172a;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none !important;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block !important;
}

.menu-toggle svg[hidden] {
  display: none !important;
}

.mobile-nav {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 84px;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 2500;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 18px 16px calc(56px + env(safe-area-inset-bottom, 0px));
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mobile-nav .nav-link,
.mobile-nav .nav-item {
  width: 100%;
  justify-content: space-between;
  border-radius: 0;
  padding: 14px 0;
  background: transparent;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.mobile-dropdown {
  display: grid;
  gap: 8px;
}

.mobile-submenu {
  display: none;
  padding: 4px 0 8px 14px;
  gap: 0;
}

.mobile-dropdown.open .mobile-submenu {
  display: grid;
}

.mobile-submenu .mega-card {
  padding: 12px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

footer {
  background: #fff;
  color: var(--muted);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .brand {
  color: var(--text);
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand .brand img {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  max-width: 100%;
  display: block;
}

.footer-brand > p {
  margin: 0 0 28px;
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-col > .h2 {
  margin: 0 0 18px;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-cols-row {
  display: contents;
}

.footer-contact .h2 {
  display: block;
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-contact .contact-wa {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-contact .contact-wa span {
  font-weight: 400;
  color: var(--muted);
}

.footer-contact .contact-address {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--muted);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.social-icons a:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: floatWa 2.8s ease-in-out infinite;
}

@keyframes floatWa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

body.page-home .hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

body.page-home .hero::before,
body.page-home .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

body.page-home .hero::before {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.5), transparent 70%);
  top: -200px;
  left: -100px;
  animation: blobMove1 4s ease-in-out infinite;
}

body.page-home .hero::after {
  display: none;
}

body.page-home .hero .container {
  position: relative;
  z-index: 1;
}

@keyframes blobMove1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, 40px) scale(1.1);
  }
  66% {
    transform: translate(-40px, 60px) scale(0.95);
  }
}

@keyframes blobMove2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-50px, -40px) scale(1.08);
  }
  66% {
    transform: translate(40px, -60px) scale(0.92);
  }
}

body.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

body.page-home .hero-copy {
  max-width: 620px;
}

body.page-home .hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

body.page-home .hero p {
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

body.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  color: #fff;
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

body.page-home .hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.18)),
    linear-gradient(135deg, #dbeafe, #eef2ff);
  box-shadow: var(--shadow);
}

body.page-home .hero-visual img.hero-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  display: block;
}

body.page-home .hero-float {
  position: absolute;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
}

body.page-home .hero-float img {
  width: 100%;
  height: auto;
  display: block;
}

body.page-home .hero-float-left {
  width: 300px;
  left: -60px;
  top: 20%;
  transform: translateY(-50%);
  animation: floatUpLeft 3.6s ease-in-out infinite;
}

body.page-home .hero-float-right {
  width: 200px;
  right: -60px;
  bottom: 20px;
  animation: floatUp 3s ease-in-out infinite reverse;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatUpLeft {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 14px));
  }
}

body.page-home .challenges {
  padding: 96px 0;
  background: #fff;
}

body.page-home .challenges-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
  width: 100%;
}

body.page-home .challenges-copy {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 8px 0;
  width: 100%;
}

body.page-home .challenges-copy h2,
body.page-home .solutions-copy h2,
body.page-home .services-header h2,
body.page-home .advantages-header h2,
body.page-home .testimonials-header h2,
body.page-home .faq-header h2,
body.page-about .story-body h2,
body.page-about .vm-header h2,
body.page-about .cv-header h2,
body.page-about .why-header h2,
body.page-about .metrics-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.page-home .challenges-copy p,
body.page-home .solutions-copy p,
body.page-home .services-header p,
body.page-home .advantages-header p,
body.page-home .testimonials-header p,
body.page-home .faq-header p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

body.page-home .challenge-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

body.page-home .challenge-card,
body.page-home .solution-point,
body.page-home .service-card,
body.page-home .advantage-card,
body.page-home .testimonial-card,
body.page-home .faq-item {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.92)
  );
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

body.page-home .challenge-card {
  padding: 22px;
  min-height: 190px;
}

body.page-home .challenge-card .card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

body.page-home .challenge-card h3,
body.page-home .solution-point h3,
body.page-home .service-card h3,
body.page-home .advantage-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

body.page-home .challenge-card p,
body.page-home .solution-point p,
body.page-home .service-card p,
body.page-home .advantage-card p,
body.page-home .testimonial-card blockquote,
body.page-home .faq-answer {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

body.page-home .challenge-card p {
  margin: 12px 0 0;
}

body.page-home .solutions {
  padding: 96px 0;
  background: #fff;
}

body.page-home .solutions-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

body.page-home .solutions-visual {
  padding: 24px;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.16)),
    linear-gradient(135deg, #dbeafe, #eef2ff);
  box-shadow: var(--shadow);
}

body.page-home .solutions-visual img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}

body.page-home .solution-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

body.page-home .solution-point {
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
}

body.page-home .solution-point p {
  margin: 10px 0 0;
}

body.page-home .services,
body.page-home .advantages,
body.page-home .testimonials,
body.page-home .faq {
  padding: 96px 0;
  background: #fff;
}

body.page-home .services-header,
body.page-home .advantages-header,
body.page-home .testimonials-header,
body.page-home .faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

body.page-home .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.page-home .service-card,
body.page-home .advantage-card,
body.page-home .testimonial-card {
  padding: 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

body.page-home .service-card:hover,
body.page-home .advantage-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

body.page-home .service-icon,
body.page-home .advantage-icon,
body.page-about .cv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  margin-bottom: 20px;
}

body.page-home .service-icon svg,
body.page-home .advantage-icon svg,
body.page-about .cv-icon svg {
  width: 26px;
  height: 26px;
}

body.page-home .advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

body.page-home .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.page-home .testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.page-home .testimonial-card blockquote {
  margin: 0;
  flex: 1;
}

body.page-home .testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

body.page-home .faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

body.page-home .faq-item {
  overflow: hidden;
}

body.page-home .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  line-height: 1.4;
}

body.page-home .faq-question:hover {
  color: var(--primary-dark);
}

body.page-home .faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 0.25s ease;
}

body.page-home .faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

body.page-home .faq-answer {
  display: none;
  padding: 0 24px 22px;
}

body.page-home .faq-item.open .faq-answer {
  display: block;
}

body.page-about main {
  padding: 80px 0 100px;
}

body.page-about .hero {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

body.page-about .hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

body.page-about .hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

body.page-about .story,
body.page-about .vm,
body.page-about .cv,
body.page-about .why,
body.page-about .metrics {
  padding: 80px 0;
}

body.page-about .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

body.page-about .story-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

body.page-about .story-body p:last-child {
  margin-bottom: 0;
}

body.page-about .story-timeline {
  display: grid;
  gap: 0;
}

body.page-about .tl-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
}

body.page-about .tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.page-about .tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

body.page-about .tl-line {
  width: 2px;
  flex: 1;
  background: rgba(37, 99, 235, 0.15);
  margin: 6px 0;
}

body.page-about .tl-item:last-child .tl-line {
  display: none;
}

body.page-about .tl-content {
  padding-bottom: 32px;
}

body.page-about .tl-item:last-child .tl-content {
  padding-bottom: 0;
}

body.page-about .tl-year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

body.page-about .tl-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.page-about .tl-content p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

body.page-about .vm-header,
body.page-about .cv-header,
body.page-about .why-header,
body.page-about .metrics-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}

body.page-about .metrics-header p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

body.page-about .vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

body.page-about .vm-card {
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--border);
}

body.page-about .vm-card.vision {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #3b82f6 100%);
  border-color: transparent;
  color: #fff;
}

body.page-about .vm-card.mission {
  background: var(--surface);
}

body.page-about .vm-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

body.page-about .vm-card.vision .vm-label {
  color: #bfdbfe;
}

body.page-about .vm-card.mission .vm-label {
  color: var(--primary);
}

body.page-about .vm-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

body.page-about .vm-card.vision h3 {
  color: #fff;
}

body.page-about .vm-card.vision p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 0.97rem;
}

body.page-about .vm-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

body.page-about .vm-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.6;
}

body.page-about .vm-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}

body.page-about .vm-list strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

body.page-about .vm-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

body.page-about .cv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

body.page-about .cv-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border);
}

body.page-about .cv-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

body.page-about .cv-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.page-about .cv-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

body.page-about .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: start;
}

body.page-about .why-header {
  grid-column: 1 / -1;
  max-width: 600px;
}

body.page-about .why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

body.page-about .why-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(37, 99, 235, 0.12);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: 48px;
}

body.page-about .why-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.page-about .why-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

body.page-about .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
}

body.page-about .metric-item {
  background: var(--surface);
  padding: 40px 32px;
  text-align: center;
}

body.page-about .metric-value {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}

body.page-about .metric-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

body.page-about .metric-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

body.page-contact main {
  padding: 72px 0 96px;
}

body.page-contact .contact-hero {
  padding: 24px 0 56px;
}

body.page-contact .contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

body.page-contact .contact-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

body.page-contact .contact-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 60ch;
}

body.page-contact .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.page-contact .contact-hero-panel {
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.92)
  );
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

body.page-contact .contact-stack {
  display: grid;
  gap: 20px;
}

body.page-contact .contact-line span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
}

body.page-contact .contact-line a,
body.page-contact .contact-line p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

body.page-blog main {
  padding: 56px 0 96px;
}

body.page-blog .blog-hero {
  padding-bottom: 28px;
}

body.page-blog .blog-hero .container {
  display: grid;
  justify-items: center;
  text-align: center;
}

body.page-blog .blog-hero h1 {
  margin: 18px auto 0;
  width: 100%;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body.page-blog .blog-hero p {
  margin: 18px auto 0;
  width: min(100%, 760px);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

body.page-blog .blog-grid-section {
  padding-top: 12px;
}

body.page-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.page-blog .blog-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

body.page-blog .blog-card-link {
  display: grid;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

body.page-blog .blog-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

body.page-blog .blog-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.45),
      transparent 22%
    ),
    radial-gradient(
      circle at 80% 26%,
      rgba(255, 255, 255, 0.18),
      transparent 18%
    ),
    linear-gradient(135deg, #1d4ed8, #0f172a);
}

body.page-blog .blog-thumb::before {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 72%;
  height: 72%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(4px);
}

body.page-blog .blog-thumb::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.page-blog .blog-thumb span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.page-blog .blog-card h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

body.page-blog .blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

body.page-blog .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 700;
  color: var(--primary-dark);
}

body.page-blog .blog-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

body.page-blog .blog-card:hover .blog-link svg {
  transform: translateX(3px);
}

body.page-blog .blog-card-link:hover h2,
body.page-blog .blog-card-link:focus-visible h2 {
  color: var(--primary-dark);
}

body.page-blog .blog-card-link:focus-visible {
  outline: none;
}

body.page-blog .pagging {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
}

body.page-blog .pagging nav {
  width: auto;
}

body.page-blog .pagging .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-left: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

body.page-blog .pagging .page-item {
  display: block;
}

body.page-blog .pagging .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

body.page-blog .pagging .page-link:hover,
body.page-blog .pagging .page-link:focus-visible {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: #eff6ff;
  transform: translateY(-1px);
  outline: none;
}

body.page-blog .pagging .page-item.active .page-link {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  pointer-events: none;
}

body.page-blog .cd-article-page {
  padding: 48px 0 96px;
}

body.page-blog .cd-article-hero {
  padding-bottom: 28px;
}

body.page-blog .cd-article-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
}

body.page-blog .cd-article-breadcrumb {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

body.page-blog .cd-article-breadcrumb a {
  color: var(--primary-dark);
}

body.page-blog .cd-article-title {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

body.page-blog .cd-article-excerpt {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

body.page-blog .cd-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

body.page-blog .cd-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.page-blog .cd-article-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #cbd5e1;
  margin-right: 4px;
}

body.page-blog .cd-article-hero-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.18)),
    linear-gradient(135deg, #dbeafe, #eef2ff);
}

body.page-blog .cd-article-hero-image::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 11;
}

body.page-blog .cd-article-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-blog .cd-article-main {
  padding-top: 12px;
}

body.page-blog .cd-article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

body.page-blog .cd-article-sidecard {
  position: sticky;
  top: 104px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow);
}

body.page-blog .cd-article-sidecard summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

body.page-blog .cd-article-sidecard summary::-webkit-details-marker {
  display: none;
}

body.page-blog .cd-article-toc-links {
  padding: 16px 0 0;
  display: grid;
  gap: 10px;
}

body.page-blog .cd-article-toc-links ul,
body.page-blog .cd-article-toc-links ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

body.page-blog .cd-article-toc-links a {
  display: block;
  color: var(--muted);
  text-decoration: none;
}

body.page-blog .cd-article-toc-links a:hover {
  color: var(--primary-dark);
}

body.page-blog .cd-article-share {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

body.page-blog .cd-article-share-title {
  margin: 0 0 14px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

body.page-blog .cd-article-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

body.page-blog .cd-article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

body.page-blog .cd-article-share-btn:hover {
  background: #eff6ff;
  color: var(--primary-dark);
  transform: translateY(-1px);
}

body.page-blog .cd-article-share-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

body.page-blog .cd-article-share-btn .share-label {
  display: none;
}

body.page-blog .cd-article-prose-wrap {
  min-width: 0;
}

body.page-blog .cd-article-prose {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow);
}

body.page-blog .cd-article-prose > :first-child {
  margin-top: 0;
}

body.page-blog .cd-article-prose h2,
body.page-blog .cd-article-prose h3,
body.page-blog .cd-article-prose h4 {
  margin: 2rem 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body.page-blog .cd-article-prose p {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.8;
}

body.page-blog .cd-article-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

body.page-blog .cd-article-prose ul,
body.page-blog .cd-article-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.8;
}

body.page-blog .cd-article-prose blockquote {
  margin: 1.5rem 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  background: #f8fbff;
  color: var(--muted);
}

body.page-service main {
  display: block;
}

body.page-service .service-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 94px;
}

body.page-service .service-hero::before,
body.page-service .service-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(96px);
  opacity: 0.85;
  pointer-events: none;
}

body.page-service .service-hero::before {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -140px;
  background: var(--service-accent-soft, rgba(37, 99, 235, 0.08));
}

body.page-service .service-hero::after {
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -160px;
  background: var(--service-accent-soft-2, rgba(14, 165, 233, 0.08));
}

body.page-service .service-hero .container {
  position: relative;
  z-index: 1;
}

body.page-service .service-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

body.page-service .service-hero-copy {
  max-width: 620px;
}

body.page-service .service-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.82);
  color: var(--service-accent, var(--primary));
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.page-service .service-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

body.page-service .service-hero p {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

body.page-service .service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.page-service .service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

body.page-service .service-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

body.page-service .service-hero-panel {
  display: grid;
  gap: 16px;
}

body.page-service .service-panel-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

body.page-service .service-panel-card--accent {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.9)
  );
  border-color: rgba(148, 163, 184, 0.22);
  color: #fff;
}

body.page-service .service-panel-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--service-accent, var(--primary));
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.page-service .service-panel-card--accent .service-panel-label {
  color: #bfdbfe;
}

body.page-service .service-panel-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

body.page-service .service-panel-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

body.page-service .service-panel-card--accent p {
  color: rgba(226, 232, 240, 0.82);
}

body.page-service .service-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

body.page-service .service-panel-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.7;
}

body.page-service .service-panel-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 0.52em;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--service-accent, var(--primary)),
    var(--service-accent-strong, var(--primary-dark))
  );
  box-shadow: 0 0 0 5px var(--service-accent-soft, rgba(37, 99, 235, 0.08));
}

body.page-service .service-panel-card--accent .service-panel-list li {
  color: rgba(226, 232, 240, 0.86);
}

body.page-service .service-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

body.page-service .service-stat {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-service .service-stat span {
  display: block;
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.page-service .service-stat strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 721px) {
  body.page-blog .blog-hero h1 {
    width: min(100%, 980px);
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    top: 76px;
  }

  .mobile-nav-inner {
    max-height: calc(100dvh - 76px - 30px);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  body.page-home .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  body.page-home .hero {
    padding: 56px 0 80px;
  }

  body.page-home .hero-copy {
    margin: 0 auto;
  }

  body.page-home .hero-actions {
    justify-content: center;
  }

  body.page-home .hero-visual {
    min-height: 420px;
    width: 100%;
    max-width: 620px;
  }

  body.page-home .challenges {
    padding-bottom: 80px;
  }

  body.page-home .challenges-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.page-home .challenges-copy {
    position: static;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
  }

  body.page-home .solutions {
    padding-bottom: 80px;
  }

  body.page-home .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.page-home .solutions-visual {
    padding: 20px;
    order: -1;
  }

  body.page-home .services {
    padding-bottom: 80px;
  }

  body.page-home .services-grid {
    grid-template-columns: 1fr;
  }

  body.page-home .advantages {
    padding-bottom: 80px;
  }

  body.page-home .testimonials {
    padding-bottom: 80px;
  }

  body.page-home .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-home .faq {
    padding-bottom: 80px;
  }

  body.page-about .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body.page-about .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-contact .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  body.page-contact .contact-hero-panel {
    padding: 24px;
  }

  body.page-blog .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-service .service-hero {
    padding: 62px 0 82px;
  }

  body.page-service .service-hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  body.page-service .service-hero-copy {
    margin: 0 auto;
  }

  body.page-service .service-actions {
    justify-content: center;
  }

  body.page-service .service-hero-panel {
    width: 100%;
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  body {
    padding-top: 70px;
  }

  .navbar {
    min-height: 70px;
  }

  .mobile-nav {
    top: 70px;
  }

  .mobile-nav-inner {
    max-height: calc(100dvh - 70px - 30px);
  }

  .mobile-nav-inner {
    max-height: calc(100vh - 70px - 30px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand > p {
    max-width: none;
  }

  .footer-contact .contact-address {
    max-width: none;
    width: 100%;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-cols-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .wa-float span {
    display: none;
  }

  .wa-float {
    padding: 14px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  body.page-home .hero {
    padding: 38px 0 64px;
  }

  body.page-home .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  body.page-home .hero p {
    font-size: 1rem;
  }

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

  body.page-home .hero-visual {
    min-height: 320px;
    border-radius: 26px;
    width: 100%;
    max-width: 100%;
  }

  body.page-home .hero-float-left {
    width: 200px;
    left: 8px;
    top: auto;
    bottom: 12px;
    transform: none;
    animation: floatUp 3.6s ease-in-out infinite;
  }

  body.page-home .hero-float-right {
    width: 90px;
    right: 8px;
    top: 12px;
    bottom: auto;
  }

  body.page-home .challenges {
    padding-bottom: 64px;
  }

  body.page-home .challenges-copy,
  body.page-home .challenge-card {
    padding: 20px;
    border-radius: 22px;
  }

  body.page-home .challenges-copy {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  body.page-home .challenges-copy h2,
  body.page-home .challenges-copy p {
    text-align: center;
  }

  body.page-home .challenge-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.page-home .solutions {
    padding-bottom: 64px;
  }

  body.page-home .solutions-grid {
    gap: 18px;
  }

  body.page-home .solutions-visual {
    display: none;
  }

  body.page-home .solutions-copy {
    text-align: center;
    width: 100%;
  }

  body.page-home .solutions-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  body.page-home .solution-point {
    text-align: left;
    padding: 18px;
    border-radius: 20px;
  }

  body.page-home .services {
    padding-bottom: 64px;
  }

  body.page-home .advantages {
    padding-bottom: 64px;
  }

  body.page-home .advantages-grid {
    grid-template-columns: 1fr;
  }

  body.page-home .testimonials {
    padding-bottom: 64px;
  }

  body.page-home .testimonials-grid {
    grid-template-columns: 1fr;
  }

  body.page-home .faq {
    padding-bottom: 64px;
  }

  body.page-about main {
    padding: 48px 0 72px;
  }

  body.page-about .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  body.page-about .vm-grid,
  body.page-about .cv-grid,
  body.page-about .metrics-grid {
    grid-template-columns: 1fr;
  }

  body.page-contact main {
    padding: 48px 0 72px;
  }

  body.page-contact .contact-hero {
    padding-bottom: 40px;
  }

  body.page-contact .contact-hero-copy h1 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  body.page-contact .contact-actions {
    flex-direction: column;
  }

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

  body.page-about .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.page-about .why-header {
    max-width: none;
  }

  body.page-about .why-item {
    gap: 14px;
  }

  body.page-about .vm-card {
    padding: 28px;
  }

  body.page-blog main {
    padding: 36px 0 72px;
  }

  body.page-blog .blog-hero h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  body.page-blog .blog-hero p {
    font-size: 1rem;
  }

  body.page-blog .blog-grid {
    grid-template-columns: 1fr;
  }

  body.page-blog .blog-card {
    padding: 16px;
    border-radius: 22px;
  }

  body.page-blog .cd-article-page {
    padding-top: 36px;
    padding-bottom: 72px;
  }

  body.page-blog .cd-article-hero-grid,
  body.page-blog .cd-article-layout {
    grid-template-columns: 1fr;
  }

  body.page-blog .cd-article-hero-grid {
    justify-items: center;
    text-align: center;
  }

  body.page-blog .cd-article-hero-copy {
    width: 100%;
  }

  body.page-blog .cd-article-hero-image {
    width: 100%;
    max-width: 640px;
    justify-self: center;
  }

  body.page-blog .cd-article-meta {
    justify-content: center;
  }

  body.page-blog .cd-article-sidecard {
    position: static;
  }

  body.page-blog .cd-article-prose {
    padding: 22px;
    border-radius: 22px;
  }

  body.page-blog .cd-article-share-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  body.page-blog .cd-article-share-btn {
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    border-radius: 999px;
  }

  body.page-blog .cd-article-share-btn .share-label {
    display: none;
  }

  body.page-service .service-hero {
    padding: 44px 0 72px;
  }

  body.page-service .service-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }

  body.page-service .service-hero p {
    font-size: 1rem;
  }

  body.page-service .service-actions .btn {
    width: 100%;
  }

  body.page-service .service-pills {
    justify-content: center;
  }

  body.page-service .service-panel-card {
    padding: 20px;
    border-radius: 22px;
  }

  body.page-service .service-panel-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.page-about .cv-grid {
    grid-template-columns: 1fr;
  }

  body.page-about .why-item {
    flex-direction: column;
    gap: 8px;
  }

  body.page-about .why-num {
    width: auto;
    font-size: 1.8rem;
  }
}
