:root {
  --color-ink: #111827;
  --color-muted: #667085;
  --color-soft: #f8fafc;
  --color-line: #e5e7eb;
  --color-deep: #0b1220;
  --color-blue: #3b82f6;
  --color-indigo: #6366f1;
  --color-gold: #f7c948;
  --color-amber: #ffb020;
  --shadow-card: 0 20px 60px -34px rgba(17, 24, 39, 0.28);
  --shadow-lift: 0 30px 80px -34px rgba(17, 24, 39, 0.38);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-site: 1280px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--color-ink);
  background: #ffffff;
}

/* Keep the Website Development platform heading clear of phone edges. */
@media (max-width: 767px) {
  #platforms .section-heading {
    width: calc(100% - 12px);
    max-width: calc(100% - 12px);
    margin-left: 6px;
    margin-right: 6px;
  }

  /* Product pages use a runtime layout reset; restore a consistent mobile
     gutter for the hero, service details, FAQ, and package content. */
  #site-main > .page-hero > .container,
  #site-main > .section > .container.product-layout {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Mobile service links are direct destinations: retain left-aligned labels
     while centering them vertically inside the full hover/tap target. */
  .mobile-panel[data-mobile-panel] .mobile-service-menu .mobile-service-summary {
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding-top: 4px !important;
    padding-bottom: 0 !important;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--color-ink);
  background: #ffffff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:not(.site-loaded)::before,
body:not(.site-loaded)::after,
body.site-loader-exiting::before,
body.site-loader-exiting::after {
  position: fixed;
  z-index: 2147483647;
  content: "";
  pointer-events: none;
}

body:not(.site-loaded)::before,
body.site-loader-exiting::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(59, 130, 246, 0.1), transparent 28%),
    #ffffff url("./images/web-logo.png") no-repeat center calc(50% - 34px) / 92px auto;
}

body:not(.site-loaded)::after,
body.site-loader-exiting::after {
  left: 50%;
  top: calc(50% + 54px);
  width: min(220px, calc(100vw - 96px));
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 0%, #2f80ed 36%, #ffb020 62%, transparent 100%)
      0 0 / 60% 100% no-repeat,
    #e9eef6;
  animation: siteLoaderBar 1.05s ease-in-out infinite;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.12);
}

body.site-loaded::before,
body.site-loaded::after,
body.site-loader-exiting::before,
body.site-loader-exiting::after {
  animation: siteLoaderExit 0.28s ease forwards;
}

@keyframes siteLoaderBar {
  0% {
    background-position: -80% 0, 0 0;
  }

  100% {
    background-position: 180% 0, 0 0;
  }
}

@keyframes siteLoaderExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.site-loaded)::after {
    animation: none;
    background-size: 100% 100%;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: 72px;
}

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

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--color-soft);
}

.section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 0%, rgba(59, 130, 246, 0.34), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #121a2d 54%, #1e1b4b 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.is-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: 0;
  color: inherit;
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--color-ink);
}

.section-dark .section-title,
.section-dark .section-kicker,
.section-dark .section-copy {
  color: #ffffff;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--color-gold), #f97316 30%, var(--color-blue) 72%, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

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

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  box-shadow: 0 18px 38px -22px rgba(255, 176, 32, 0.85);
}

.btn-blue {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-blue), #7c3aed);
  box-shadow: 0 18px 38px -22px rgba(59, 130, 246, 0.85);
}

.btn-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.btn-outline {
  color: var(--color-ink);
  border-color: var(--color-line);
  background: #ffffff;
}

.btn-full {
  width: 100%;
}

.icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.icon::before {
  content: attr(data-icon);
}

body:not(.symbols-ready) .icon::before {
  opacity: 0;
}

.nav-chevron {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-item:hover .nav-chevron,
.nav-trigger:focus .nav-chevron,
details[open] > .mobile-summary .nav-chevron {
  transform: translateY(1px) rotate(225deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 72px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.64);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header[data-header] {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 10000;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 48px -32px rgba(17, 24, 39, 0.32);
}

.header-inner {
  width: min(var(--max-site), calc(100% - 48px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--color-ink);
  white-space: nowrap;
}

.brand-mark {
  width: 136px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--color-muted);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  transition: color 200ms ease, background 200ms ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.is-active,
.nav-trigger.is-active {
  color: var(--color-ink);
  background: #f3f4f6;
}

.nav-link::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
  transition: transform 200ms ease;
}

.nav-link:hover::after,
.nav-trigger:hover::after,
.nav-link.is-active::after,
.nav-trigger.is-active::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

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

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.mega-card {
  min-height: 100%;
  padding: 28px 32px 32px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #edf0f3;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.mega-card:hover {
  background: var(--color-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px -36px rgba(17, 24, 39, 0.36);
}

.mega-title {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  font-weight: 900;
  min-height: 64px;
  padding: 0;
}

.mega-heading {
  display: contents;
}

.mega-heading-text {
  display: block;
  align-self: center;
  justify-self: center;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  max-width: none;
  padding: 0 5px;
  text-wrap: balance;
}

.mega-service-icon,
.mega-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.mega-arrow {
  justify-self: end;
}

.mega-desc {
  margin: 20px 0 24px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.72;
}

.mega-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 10px;
}

.mega-sub a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #344054;
  background: #f3f4f6;
  font-size: 13px;
  font-weight: 800;
  transition: color 200ms ease, background 200ms ease;
}

.mega-sub a:hover {
  color: #111827;
  background: #fef3c7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  min-height: 34px;
  padding: 0 13px;
  font-size: 11px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  background: #ffffff;
}

.mobile-panel {
  position: fixed;
  inset: 72px 0 0 auto;
  width: min(420px, 100%);
  padding: 22px;
  background: #ffffff;
  border-left: 1px solid var(--color-line);
  box-shadow: -24px 0 70px -48px rgba(17, 24, 39, 0.6);
  transform: translateX(100%);
  transition: transform 240ms ease;
  overflow-y: auto;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  inset: 72px 0 0;
  background: rgba(15, 23, 42, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-link,
.mobile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  color: var(--color-ink);
  background: transparent;
  font-weight: 800;
}

.mobile-link.is-active,
.mobile-summary.is-active,
.mobile-link:hover,
.mobile-summary:hover {
  background: var(--color-soft);
}

.mobile-group {
  margin: 6px 0;
  border-radius: 16px;
}

.mobile-submenu {
  display: grid;
  gap: 8px;
  padding: 6px 0 12px 18px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.mobile-submenu a:hover {
  color: var(--color-ink);
  background: #f9fafb;
}

.hero {
  position: relative;
  min-height: 80vh;
  padding: 126px 0 86px;
  color: #ffffff;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(8, 17, 31, 0.95), rgba(16, 24, 39, 0.78) 52%, rgba(49, 46, 129, 0.82)),
    radial-gradient(circle at 72% 20%, rgba(59, 130, 246, 0.48), transparent 34%),
    linear-gradient(135deg, #08111f, #1e1b4b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-site), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.08;
  font-weight: 900;
}

.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.dashboard-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 80px -38px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
}

.dashboard-main {
  top: 36px;
  right: 12px;
  width: min(430px, 100%);
  padding: 24px;
}

.dashboard-main h3 {
  font-size: 18px;
  font-weight: 900;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.metric-mini {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.metric-mini strong {
  display: block;
  font-size: 25px;
  font-family: Manrope, Inter, sans-serif;
}

.metric-mini span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.chart-lines {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 118px;
  margin-top: 24px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(3, 7, 18, 0.22);
}

.chart-lines span {
  flex: 1;
  min-width: 16px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-blue));
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 70px -42px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
  font-weight: 800;
  animation: floatY 4.8s ease-in-out infinite;
}

.float-chip:nth-child(2) {
  left: 0;
  top: 16px;
}

.float-chip:nth-child(3) {
  left: 8px;
  bottom: 122px;
  animation-delay: -1.4s;
}

.float-chip:nth-child(4) {
  right: 22px;
  bottom: 36px;
  animation-delay: -2.2s;
}

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

.grid-3,
.grid-2,
.case-grid,
.service-grid,
.pricing-grid,
.stats-grid {
  display: grid;
  gap: 24px;
}

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

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

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

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

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 0 12px 46px -42px rgba(17, 24, 39, 0.32);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: var(--shadow-card);
}

.advantage-card,
.service-card,
.feature-card,
.pricing-card,
.testimonial-card,
.case-card,
.stat-card {
  padding: 28px;
}

.line-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid #dbe1ea;
  border-radius: 16px;
  color: var(--color-ink);
  background: #ffffff;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover .line-icon {
  color: #111827;
  border-color: rgba(247, 201, 72, 0.58);
  background: #fff7cc;
}

.card-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.caps-title {
  min-height: 58px;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 900;
  text-transform: uppercase;
}

.card-copy {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.service-number,
.service-tag {
  color: #98a2b3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-number {
  margin-bottom: 56px;
}

.service-arrow {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-top: auto;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-ink);
  transition: transform 220ms ease, background 220ms ease;
}

.service-card:hover {
  background: #ffffff;
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
  background: linear-gradient(135deg, var(--color-blue), #7c3aed);
}

.case-tabs,
.package-tabs,
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-muted);
  background: #ffffff;
  font-weight: 800;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.tab-button.is-active,
.tab-button:hover {
  color: var(--color-ink);
  border-color: #fde68a;
  background: #fffbeb;
}

.case-card {
  overflow: hidden;
  padding: 0;
}

.case-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, #101828, #3b82f6 48%, #f7c948);
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.01);
  transition: transform 280ms ease;
}

.case-card:hover .case-visual img {
  transform: scale(1.06);
}

/* Two marketing cases are centered and use a larger, unfiltered data-image area. */
.case-grid--marketing {
  grid-template-columns: repeat(2, minmax(0, 560px));
  justify-content: center;
  gap: 32px;
}

.case-grid--marketing .case-visual {
  height: 400px;
  aspect-ratio: auto;
  padding: 10px;
  background: #ffffff;
}

.case-grid--marketing .case-visual.is-contain img {
  width: 100%;
  height: 100%;
  max-height: none;
  opacity: 1;
  transform: none;
}

.case-grid--marketing .case-card:hover .case-visual img {
  transform: none;
}

@media (max-width: 900px) {
  .case-grid--marketing {
    grid-template-columns: minmax(0, 620px);
  }

  .case-grid--marketing .case-visual {
    height: min(62vw, 400px);
  }
}

.case-visual-placeholder {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 22%, transparent 22% 100%),
    rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.case-body {
  padding: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #475467;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 800;
}

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

.metric-box {
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
}

.metric-box strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--color-ink);
}

.metric-box span {
  display: block;
  margin-top: 4px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #111827;
  background: #f7c948;
  font-size: 13px;
  font-weight: 900;
}

.seo-case-data-section {
  background: #fff;
}

.seo-data-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 46px;
  padding: 28px;
  border: 1px solid #d9e6f2;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.seo-data-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.seo-data-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  color: #4f6f7c;
  background: #e9f3f6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.seo-data-copy h3 {
  margin: 22px 0 12px;
  color: var(--color-ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.seo-data-copy p {
  max-width: 560px;
  margin: 0;
  color: #5e6f86;
  font-size: 16px;
  line-height: 1.75;
}

.seo-data-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.seo-data-metric {
  padding: 16px 14px;
  border: 1px solid #cfe8f5;
  background: #eaf8ff;
}

.seo-data-metric span {
  display: block;
  color: #52677b;
  font-size: 12px;
  font-weight: 800;
}

.seo-data-metric strong {
  display: block;
  margin-top: 8px;
  color: #06406f;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 900;
}

.seo-data-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #c7ddee;
  border-radius: 8px;
  background: #f5f8fc;
}

.seo-data-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
}

.case-link .icon {
  font-size: 18px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 78px 28px;
  border-radius: 32px;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 201, 72, 0.35), transparent 30%),
    linear-gradient(135deg, #101828, #1e1b4b 72%, #312e81);
}

.cta-band h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
}

.cta-band p {
  max-width: 700px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}

.page-hero {
  position: relative;
  padding: 116px 0 88px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-hero.is-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 20%, rgba(124, 58, 237, 0.34), transparent 30%),
    linear-gradient(135deg, #08111f, #111827 54%, #1e1b4b);
}

.page-hero-inner {
  width: min(var(--max-site), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  gap: 52px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb a:hover {
  color: var(--color-blue);
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.page-hero .contact-hero-title {
  max-width: none;
}

.contact-hero-title-line {
  display: block;
}

.page-hero .contact-hero-copy {
  max-width: none;
}

.contact-hero-copy-line {
  display: block;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.78;
}

.page-hero.is-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.hero-mockup {
  position: relative;
  min-height: 420px;
}

.device-frame {
  position: absolute;
  inset: 0;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(22px);
}

.page-hero.is-dark .device-frame {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.mock-browser-bar {
  display: flex;
  gap: 7px;
  padding: 4px 0 18px;
}

.mock-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.mock-section {
  border-radius: 22px;
  background: linear-gradient(135deg, #101828, #3b82f6 60%, #f7c948);
  padding: 20px;
  color: #ffffff;
}

.mock-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.mock-line.short {
  width: 46%;
}

.mock-line.mid {
  width: 68%;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.mock-panel {
  min-height: 92px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.platform-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 32px;
}

.platform-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 0;
  color: #111827;
  background: transparent;
}

.platform-icon .brand-svg {
  width: 34px;
  height: 34px;
  display: block;
}

.platform-icon.is-shopify .brand-svg {
  width: 36px;
  height: 36px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.is-featured {
  border-color: #fde68a;
  box-shadow: 0 26px 80px -34px rgba(247, 201, 72, 0.45);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #111827;
  background: #fef3c7;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 18px 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.pricing-card .btn {
  margin-top: auto;
}

.feature-list li {
  position: relative;
  display: block;
  padding-left: 28px;
  color: #475467;
  font-size: 14px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid #16a34a;
  border-radius: 999px;
}

.feature-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #16a34a;
  border-bottom: 2px solid #16a34a;
  transform: rotate(45deg);
}

.process-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 201, 72, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.process-section .section-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(208, 213, 221, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 34px 90px -62px rgba(15, 23, 42, 0.42);
}

.process-step {
  position: relative;
  min-height: 188px;
  padding: 38px 24px 28px;
  overflow: hidden;
  border-right: 1px solid rgba(208, 213, 221, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1), transparent 44%);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, min-height 240ms ease;
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
  opacity: 0;
  transition: opacity 220ms ease;
}

.process-number {
  display: block;
  margin-bottom: 0;
  color: #cbd5e1;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(54px, 4.8vw, 74px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  transition: color 220ms ease;
}

.process-step > div {
  max-height: none;
  margin-top: 18px;
  opacity: 1 !important;
  overflow: visible;
  transform: none;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}

.process-step .card-title {
  display: block !important;
  margin: 0;
  min-height: 2.5em;
  color: var(--color-ink) !important;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  opacity: 1 !important;
  overflow: visible !important;
  transform: none !important;
  visibility: visible !important;
}

.process-step .card-copy {
  max-height: 0;
  margin-top: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 260ms ease, margin-top 220ms ease, opacity 200ms ease, transform 220ms ease;
}

.process-step:hover {
  z-index: 1;
  min-height: 260px;
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 24px 62px -42px rgba(15, 23, 42, 0.54);
}

.process-step:hover .card-copy,
.process-step:focus-within .card-copy {
  max-height: 190px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover .process-number {
  color: var(--color-gold);
}

.testimonial-track {
  display: grid;
  grid-template-columns: 0.82fr 1.2fr 0.82fr;
  gap: 22px;
  align-items: center;
}

.testimonial-card {
  min-height: 280px;
}

.testimonial-card.is-main {
  min-height: 340px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1e1b4b);
}

.quote-mark {
  color: var(--color-gold);
  font-size: 56px;
  font-family: Georgia, serif;
  line-height: 1;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--color-muted);
  line-height: 1.7;
}

.faq-item .icon {
  transition: transform 200ms ease;
}

.faq-item[open] .icon {
  transform: rotate(45deg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  color: #475467;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 13px 15px;
  color: var(--color-ink);
  background: #f8fafc;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--color-muted);
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #0f766e;
}

.form-status[data-state="error"] {
  color: #b42318;
}

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

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #3b82f6 58%, #f7c948);
}

.blog-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 280ms ease;
}

.blog-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 17, 31, 0.74));
}

.blog-cover strong {
  position: relative;
  z-index: 1;
}

.blog-card:hover .blog-cover img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 24px;
}

.article-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.article-hero {
  padding-bottom: 56px;
}

.article-hero-content {
  text-align: center;
}

.article-hero-content .breadcrumb {
  justify-content: center;
}

.article-hero-content h1 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.article-hero-content p {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.article-meta span + span::before,
.article-meta time + span::before,
.article-meta span + time::before {
  content: '•';
  margin-right: 18px;
  color: var(--color-line-strong);
}

.article-card-date {
  display: block;
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.article-cover-hero {
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  margin-top: 34px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.article-body {
  max-width: 900px;
  color: #324252;
  text-align: left;
  line-height: 1.8;
  font-size: 17px;
}

.article-body h2 {
  margin: 3rem 0 1.1rem;
  color: var(--color-ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
  font-weight: 900;
}

.article-body h3,
.article-body h4 {
  margin: 2.1rem 0 1rem;
  color: var(--color-ink);
  font-weight: 900;
}

.article-step-title {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.07), rgba(247, 201, 72, 0.12));
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.25;
}

.article-step-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #ffffff;
  background: #003461;
  font-size: 15px;
  font-weight: 900;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
  margin: 1rem 0;
}

.article-body ul,
.article-body ol {
  padding-left: 1.55rem;
}

.article-list,
.article-ordered-list {
  display: grid;
  gap: 10px;
  padding: 18px 22px 18px 42px !important;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #f8fafc;
}

.article-list li,
.article-ordered-list li {
  padding-left: 4px;
  color: #344054;
}

.article-body blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: 1rem;
  color: var(--color-muted);
}

.article-service-cta {
  margin-top: 56px;
  padding: 32px;
  border: 1px solid #cfe0f2;
  border-radius: 24px;
  background: linear-gradient(135deg, #f4f9ff, #fff);
  box-shadow: 0 20px 48px -38px rgba(0, 52, 97, 0.52);
}

.article-service-cta .eyebrow {
  color: var(--color-primary);
}

.article-service-cta h2 {
  margin-top: 14px;
}

.article-service-cta p {
  max-width: 680px;
}

.article-service-cta .btn {
  margin-top: 10px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #3b82f6 60%, #f7c948);
}

.gallery-main img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main .visual-ui {
  height: 100%;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  aspect-ratio: 16 / 10;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #3b82f6 60%, #f7c948);
}

.gallery-thumb.is-active {
  border-color: var(--color-gold);
}

.package-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.package-price {
  margin: 18px 0 8px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 38px;
  font-weight: 900;
}

.review-summary {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}

.rating-number {
  font-family: Manrope, Inter, sans-serif;
  font-size: 56px;
  font-weight: 900;
}

.rating-bar {
  display: grid;
  grid-template-columns: 70px 1fr 36px;
  gap: 10px;
  align-items: center;
  margin: 8px 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.rating-track {
  height: 8px;
  border-radius: 999px;
  background: #edf0f3;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-gold), var(--color-amber));
}

.visual-ui {
  position: relative;
  padding: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 18%, rgba(247, 201, 72, 0.35), transparent 28%),
    linear-gradient(135deg, #111827, #1e1b4b 54%, #3b82f6);
}

.visual-ui::before {
  content: "";
  display: block;
  width: 40%;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.visual-ui::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 34%;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.16) 18% 19%, transparent 19% 31%);
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: #f9fafb;
}

.footer-inner {
  width: min(var(--max-site), calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 34px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: #475467;
  background: #ffffff;
  font-weight: 900;
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.social-link:hover {
  color: var(--color-blue);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

/* Contact-page social actions need readable labels instead of compact footer icons. */
.contact-card .social-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-card .social-link {
  width: 100% !important;
  min-width: 0 !important;
  height: 44px !important;
  padding: 0 10px !important;
}

.contact-card .social-link::before {
  content: attr(title) !important;
  max-width: none !important;
  overflow: visible !important;
  white-space: nowrap;
  font-size: 11px !important;
}

.contact-card .social-link .social-glyph {
  display: none !important;
}

.footer-phone {
  color: var(--color-ink);
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.footer-gradient {
  height: 4px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), #ec4899, #7c3aed, var(--color-blue));
}

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

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 900;
}

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

.footer-col a {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.4;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--color-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
  color: #98a2b3;
  font-size: 13px;
}

.empty-state {
  padding: 38px;
  border: 1px dashed #d0d5dd;
  border-radius: 24px;
  color: var(--color-muted);
  text-align: center;
  background: #ffffff;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-inner,
  .page-hero-inner,
  .contact-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-mockup {
    min-height: 380px;
  }

  .grid-3,
  .service-grid,
  .pricing-grid,
  .case-grid,
  .blog-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 18px;
    min-height: auto;
    padding: 24px;
    border: 1px solid rgba(208, 213, 221, 0.86);
    border-radius: 22px;
    border-right: 0;
  }

  .process-number {
    margin: 0;
    font-size: 42px;
  }

  .process-step > div {
    max-height: none;
    margin-top: 0;
    opacity: 1;
    overflow: visible;
    transform: none;
  }

  .process-step:hover {
    min-height: auto;
  }

  .package-panel {
    position: static;
  }

  .seo-data-panel {
    grid-template-columns: 1fr;
  }

  .seo-data-visual {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner,
  .footer-inner,
  .hero-inner,
  .page-hero-inner {
    width: min(100% - 32px, var(--max-site));
  }

  .section {
    padding: 76px 0;
  }

  .brand-link {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 72px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .hero p,
  .page-hero p,
  .section-copy {
    font-size: 16px;
  }

  .hero-visual,
  .hero-mockup {
    display: none;
  }

  .grid-3,
  .grid-2,
  .service-grid,
  .pricing-grid,
  .case-grid,
  .blog-grid,
  .stats-grid,
  .footer-grid,
  .form-grid,
  .testimonial-track,
  .review-summary,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 94px 0 66px;
  }

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

  .seo-data-panel {
    gap: 18px;
    margin-top: 30px;
    padding: 18px;
  }

  .seo-data-metrics {
    grid-template-columns: 1fr;
  }

  .seo-data-visual {
    min-height: 180px;
    padding: 10px;
  }

  .testimonial-card,
  .testimonial-card.is-main {
    min-height: auto;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-panel {
    width: 100%;
  }

  .contact-card,
  .form-card,
  .advantage-card,
  .service-card,
  .feature-card,
  .pricing-card,
  .testimonial-card,
  .case-body {
    padding: 22px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* codex targeted refinements */
.case-search {
  max-width: 720px;
  margin: 0 auto 22px;
}

.case-search input {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  background: #ffffff;
  box-shadow: 0 18px 48px -38px rgba(17, 24, 39, 0.28);
  outline: none;
}

.case-search input:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

@media (max-width: 760px) {
  .process-step .card-copy {
    margin-top: 12px;
  }
}

/* codex footer reference layout */
.site-footer.footer-reference {
  background: #ffffff;
  border-top: 0;
}

.site-footer.footer-reference .footer-inner {
  width: min(1240px, calc(100% - 64px));
  padding: 68px 0 36px;
}

.site-footer.footer-reference .footer-top {
  margin-bottom: 36px;
}

.site-footer.footer-reference .social-row {
  gap: 16px;
}

.site-footer.footer-reference .social-link {
  width: 54px;
  min-width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: 50%;
  color: #000000;
  background: #ffd900;
  box-shadow: 0 10px 20px -14px rgba(17, 24, 39, .45);
}

.site-footer.footer-reference .social-link::before {
  content: none !important;
}

.site-footer.footer-reference .social-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-footer.footer-reference .social-glyph svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.site-footer.footer-reference .footer-phone {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  background: linear-gradient(90deg, #4f46e5, #ec4899, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer.footer-reference .footer-gradient {
  height: 10px;
  margin-bottom: 40px;
  border-radius: 0;
  background: linear-gradient(90deg, #00859a, #3947d8, #a137c9, #ed4b87, #ff8a21, #ffe600);
}

.site-footer.footer-reference .footer-grid-reference {
  display: grid !important;
  grid-template-columns: minmax(420px, 2.3fr) minmax(150px, .7fr) minmax(170px, .75fr) minmax(170px, .75fr) !important;
  gap: 24px !important;
  align-items: start;
}

.site-footer.footer-reference .footer-services-group {
  min-width: 0;
}

.site-footer.footer-reference .footer-group-title,
.site-footer.footer-reference .footer-col h3,
.site-footer.footer-reference .footer-title-only h3 {
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 4px solid #e8e8e8;
  color: #07111f;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
}

.site-footer.footer-reference .footer-services-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.site-footer.footer-reference .footer-contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "address phone whatsapp";
  column-gap: 28px;
  row-gap: 0;
  max-width: none;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #e3e7ec;
}

.site-footer.footer-reference .footer-contact-detail {
  min-width: 0;
}

.site-footer.footer-reference .footer-contact-address {
  grid-area: address;
}

.site-footer.footer-reference .footer-contact-detail:nth-child(2) {
  grid-area: phone;
}

.site-footer.footer-reference .footer-contact-detail:nth-child(3) {
  grid-area: whatsapp;
}

.site-footer.footer-reference .footer-contact-label {
  display: flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 13px;
  padding-left: 10px;
  border-left: 3px solid #f7c948;
  color: #0b4a6f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer.footer-reference .footer-contact-details address,
.site-footer.footer-reference .footer-contact-details a {
  display: block;
  margin: 0;
  color: #475467;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
}

.site-footer.footer-reference .footer-contact-details a:hover {
  color: #003461;
}

.site-footer.footer-reference .footer-subcol h4 {
  margin: 0 0 14px;
  color: #07111f;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.site-footer.footer-reference .footer-col ul {
  display: grid;
  gap: 14px;
}

.site-footer.footer-reference .footer-col a,
.site-footer.footer-reference .footer-title-only a {
  color: #07111f;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.site-footer.footer-reference .footer-industries a,
.site-footer.footer-reference .footer-company a {
  font-weight: 800;
}

.site-footer.footer-reference .footer-stack-col {
  display: grid;
  gap: 28px;
}

.site-footer.footer-reference .footer-compact ul {
  gap: 10px;
}

.site-footer.footer-reference .footer-title-only h3 {
  margin-bottom: 12px;
}

@media (max-width: 1060px) {
  .site-footer.footer-reference .footer-grid-reference {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 720px) {
  .site-footer.footer-reference .footer-inner {
    width: min(100% - 32px, 1240px);
  }

  .site-footer.footer-reference .footer-grid-reference,
  .site-footer.footer-reference .footer-services-cols {
    grid-template-columns: 1fr !important;
  }

  .site-footer.footer-reference .footer-contact-details {
    grid-template-columns: 1fr;
    grid-template-areas:
      "address"
      "phone"
      "whatsapp";
    max-width: none;
  }
}



/* codex 2026-05-20 case/blog/footer refinements */
.case-search-toolbar { max-width: 1040px; display: grid; grid-template-columns: minmax(260px, 1fr) auto auto auto; align-items: center; gap: 12px; margin: 0 auto 34px; }
.case-search-toolbar input { margin: 0; }
.case-filter-button, .case-search-button { min-height: 52px; padding: 0 22px; border: 1px solid var(--color-line); border-radius: 999px; background: #ffffff; color: var(--color-ink); font-weight: 900; transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease; }
.case-filter-button:hover, .case-search-button:hover, .case-filter-button.is-active { border-color: #003461; background: #003461; color: #ffffff; transform: translateY(-1px); }
.case-search-button { background: linear-gradient(135deg, #003461, #3b82f6); border-color: transparent; color: #ffffff; }
.blog-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 36px; align-items: start; }
.blog-sidebar { position: sticky; top: 96px; padding: 24px; border: 1px solid var(--color-line); border-radius: 24px; background: #ffffff; box-shadow: var(--shadow-card); }
.blog-sidebar-title { margin-bottom: 16px; color: var(--color-ink); font-size: 18px; font-weight: 900; }
.blog-category-list { display: grid; gap: 10px; }
.blog-category-button { width: 100%; min-height: 44px; padding: 0 14px; border: 1px solid var(--color-line); border-radius: 14px; background: #f8fafc; color: var(--color-muted); text-align: left; font-weight: 850; }
.blog-category-button.is-active, .blog-category-button:hover { border-color: #003461; background: #003461; color: #ffffff; }
.blog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.blog-toolbar h2 { margin: 6px 0 0; color: var(--color-ink); font-size: clamp(30px, 4vw, 46px); line-height: 1.06; font-weight: 900; }
.blog-toolbar input { width: min(340px, 100%); min-height: 48px; padding: 0 18px; border: 1px solid var(--color-line); border-radius: 999px; background: #ffffff; outline: none; }
.blog-list { display: grid; gap: 22px; }
.blog-list-card { display: grid; grid-template-columns: minmax(280px, 390px) minmax(0, 1fr); min-height: 238px; overflow: hidden; border: 1px solid var(--color-line); border-radius: 24px; background: #ffffff; color: inherit; text-decoration: none; box-shadow: 0 18px 48px rgba(15, 23, 42, .08); transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease; }
.blog-list-card:hover { border-color: rgba(59, 130, 246, .45); box-shadow: 0 24px 60px rgba(15, 23, 42, .12); transform: translateY(-2px); }
.blog-list-cover { position: relative; min-height: 238px; display: flex; align-items: flex-end; padding: 22px; overflow: hidden; color: #ffffff; background: #ffffff; }
.blog-list-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transform: none; transition: none; }
.blog-list-cover::after { content: none; }
.blog-list-cover strong { position: relative; z-index: 1; padding: 6px 11px; border-radius: 999px; background: rgba(7, 21, 39, .88); box-shadow: 0 8px 24px rgba(7, 21, 39, .18); }
.blog-list-card:hover .blog-list-cover img { transform: none; }
.blog-list-body { display: flex; flex-direction: column; justify-content: center; padding: 30px 34px; }
.blog-list-body h2 { margin: 16px 0 12px; color: var(--color-ink); font-size: clamp(22px, 2.2vw, 32px); line-height: 1.13; font-weight: 900; }
.blog-list-body p { max-width: 760px; margin: 0; color: var(--color-muted); line-height: 1.75; }
.blog-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.blog-page-button { min-width: 44px; height: 44px; padding: 0 14px; border: 1px solid var(--color-line); border-radius: 999px; background: #ffffff; color: var(--color-ink); font-weight: 900; transition: background 200ms ease, color 200ms ease, border-color 200ms ease; }
.blog-page-button:hover, .blog-page-button.is-active { border-color: #003461; background: #003461; color: #ffffff; }
.site-footer.footer-reference .footer-top-social-only { justify-content: flex-start; }
.site-footer.footer-reference .footer-grid-service-style { grid-template-columns: minmax(560px, 2.3fr) minmax(170px, .7fr) minmax(170px, .7fr) !important; }
.site-footer.footer-reference .footer-stack-col { gap: 48px; }
.site-footer.footer-reference .footer-stack-col > .footer-compact + .footer-compact {
  padding-top: 40px;
}
@media (max-width: 900px) {
  .case-search-toolbar,
  .blog-layout,
  .blog-list-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-sidebar {
    position: static;
  }

  .blog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-main,
  .blog-list,
  .blog-list-card,
  .blog-list-cover {
    width: 100%;
    min-width: 0;
  }

  .blog-list-card {
    min-height: 0;
  }

  .blog-list-cover {
    aspect-ratio: 2 / 1;
    height: auto;
    min-height: 0;
    padding: 18px 20px;
    background: #ffffff;
  }

  .blog-list-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .blog-list-card:hover .blog-list-cover img {
    transform: none;
  }

  .blog-list-body {
    padding: 22px 24px 24px;
  }

  .site-footer.footer-reference .footer-grid-service-style {
    grid-template-columns: 1fr !important;
  }
}


/* codex 2026-06-18 footer menu hierarchy */
.site-footer.footer-reference .footer-group-title,
.site-footer.footer-reference .footer-col h3,
.site-footer.footer-reference .footer-title-only h3 {
  margin-bottom: 24px;
  padding-bottom: 12px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer.footer-reference .footer-subcol h4 {
  display: flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 13px;
  padding-left: 10px;
  border-left: 3px solid #f7c948;
  color: #0b4a6f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.site-footer.footer-reference .footer-col a,
.site-footer.footer-reference .footer-title-only a,
.site-footer.footer-reference .footer-industries a,
.site-footer.footer-reference .footer-company a {
  color: #475467;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.site-footer.footer-reference .footer-subcol ul {
  padding-left: 13px;
}

.site-footer.footer-reference .footer-col a:hover,
.site-footer.footer-reference .footer-title-only a:hover {
  color: #003461;
}

/* codex hide legacy chrome before shared header takeover */
body > nav:not(.site-header) { visibility: hidden; }
[data-site-header-root] .site-header { visibility: visible; }


/* codex horizontal overflow guard */
html, body { overflow-x: hidden; }
.site-header, .site-footer, .site-main, [data-page-root] { max-width: 100%; }
.case-grid, .blog-grid, .footer-grid-reference { min-width: 0; }
.card, .case-card, .blog-card, .footer-col { min-width: 0; }

/* codex 2026-06-12 content update */
.lead-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

/* codex 2026-06-15 mobile browser QA and image pass */
@media (max-width: 1120px) {
  .site-header .desktop-nav {
    display: none !important;
  }

  .site-header .mobile-toggle {
    display: inline-grid !important;
    place-items: center;
    flex: 0 0 44px;
  }

  .site-header .header-inner {
    max-width: 100vw;
    box-sizing: border-box;
  }

  .mobile-overlay[data-mobile-overlay] {
    z-index: 9998 !important;
    pointer-events: none;
  }

  .mobile-overlay[data-mobile-overlay].is-open {
    pointer-events: auto;
  }

  .mobile-panel[data-mobile-panel] {
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    display: none;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    visibility: hidden;
    transform: none !important;
  }

  .mobile-panel[data-mobile-panel].is-open {
    display: block;
    visibility: visible;
  }
}

@media (max-width: 430px) {
  .site-header .header-inner {
    width: min(100% - 24px, 1280px) !important;
    gap: 10px;
  }

  .site-header .brand-link {
    gap: 9px;
    font-size: 16px;
  }

  .site-header .brand-mark {
    width: 112px;
    height: 46px;
  }

  .site-header .btn.header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .site-header .mobile-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

@media (max-width: 360px) {
  .site-header .btn.header-cta {
    display: none !important;
  }
}

.service-hero-visual {
  position: relative;
  width: min(495.05px, 100%);
  height: 438px;
  min-height: 0;
  justify-self: end;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 90px -48px rgba(17, 24, 39, 0.45);
  background: #111827;
}

.service-hero-visual img,
.case-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* The Case Studies hero artwork has intentional studio whitespace; crop it slightly
   so the dashboard composition fills the same visual frame as the other page heroes. */
.service-hero-visual img[src*="case-studies-growth-hero"] {
  transform: scale(1.36);
  object-position: center center;
}

.page-hero.is-dark .service-hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.case-visual {
  background: #111827;
}

.case-visual.is-contain {
  background: #f4f7fb;
}

.case-visual.is-contain img {
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

@media (max-width: 760px) {
  .service-hero-visual {
    display: block;
    width: 100%;
    height: clamp(240px, 62vw, 340px);
    min-height: 0;
    margin-top: 8px;
    border-radius: 22px;
  }

  .page-hero-inner {
    gap: 34px;
  }
}

.lead-form-copy {
  padding: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, #003461, #111827);
}

.lead-form-copy h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.lead-form-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.lead-form-copy .feature-list {
  margin-top: 26px;
}

.lead-form-copy .feature-list li {
  color: rgba(255, 255, 255, 0.84);
}

.lead-form-panel .form-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.about-service-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.about-service-list div {
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.about-service-list h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 17px;
  font-weight: 900;
}

.about-service-list p {
  margin: 8px 0 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.scenario-grid .card-title,
.feature-card .card-title {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .lead-form-panel,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-copy {
    padding: 30px;
  }
}

.site-header .nav-trigger .icon,
.site-header .mobile-toggle .icon {
  overflow: hidden;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-shadow: none !important;
}

.site-header .nav-trigger .icon::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid #667085;
  border-bottom: 2px solid #667085;
  transform: rotate(45deg);
}

.site-header .mobile-toggle .icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  border-top: 2px solid #111827;
  border-bottom: 2px solid #111827;
  box-shadow: 0 5px 0 #111827;
}

/* codex 2026-07-03 polished unified header */
.site-header[data-header] {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom-color: rgba(226, 232, 240, 0.78) !important;
  backdrop-filter: blur(18px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.18) !important;
  box-shadow: none !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.site-header[data-header] {
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    backdrop-filter 240ms ease !important;
}

.site-header[data-header].is-scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom-color: rgba(226, 232, 240, 0.78) !important;
  backdrop-filter: blur(18px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.18) !important;
  box-shadow: 0 20px 60px -42px rgba(15, 23, 42, 0.42) !important;
}

body.p-home .site-header[data-header]:not(.is-scrolled) {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.site-header[data-header] .header-inner {
  width: min(1360px, calc(100% - 72px)) !important;
  gap: 38px !important;
}

.site-header[data-header] .desktop-nav {
  gap: 10px !important;
}

.site-header[data-header] .nav-link,
.site-header[data-header] .nav-trigger {
  gap: 6px !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border: 1px solid transparent !important;
  color: #111827 !important;
  background: transparent !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease !important;
}

.site-header[data-header] .nav-link:hover,
.site-header[data-header] .nav-trigger:hover,
.site-header[data-header] .nav-link.is-active,
.site-header[data-header] .nav-trigger.is-active {
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: rgba(226, 232, 240, 0.95) !important;
  box-shadow: 0 14px 36px -30px rgba(15, 23, 42, 0.56), inset 0 0 0 1px rgba(255,255,255,.58) !important;
  transform: translateY(-1px);
}

.site-header[data-header] .nav-link::after,
.site-header[data-header] .nav-trigger::after {
  left: 18px !important;
  right: 18px !important;
  bottom: 6px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #fbb531, #0b7cff) !important;
}

.site-header[data-header] .nav-trigger .icon,
.mobile-panel[data-mobile-panel] .mobile-summary .icon {
  overflow: visible !important;
  color: currentColor !important;
  font-size: 20px !important;
  line-height: 1 !important;
  margin-left: 1px !important;
  text-shadow: none !important;
  transition: transform 180ms ease !important;
}

.site-header[data-header] .nav-trigger .icon::before,
.mobile-panel[data-mobile-panel] .mobile-summary .icon::before {
  content: none !important;
}

.site-header[data-header] .nav-item:hover .nav-trigger .icon,
.site-header[data-header] .nav-trigger:focus .icon,
.mobile-panel[data-mobile-panel] details[open] .mobile-summary .icon {
  transform: rotate(180deg);
}

.site-header[data-header] .header-language {
  gap: 4px !important;
  border-color: rgba(226, 232, 240, 0.86) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.5 !important;
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 16px 34px -30px rgba(15,23,42,.46) !important;
}

.site-header[data-header] .header-language button {
  min-width: 44px;
  min-height: 44px;
  line-height: 1.5 !important;
}

.site-header .mobile-toggle {
  width: 44px;
  height: 44px;
}

.site-footer .footer-bottom {
  color: #667085;
}

.site-header[data-header] .header-actions {
  gap: 16px !important;
}

.site-header[data-header] .btn.header-cta {
  gap: 10px !important;
  width: 140px !important;
  height: 49px !important;
  min-height: 0 !important;
  padding: 0 15px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  background: linear-gradient(135deg, #ffd14a 0%, #ffae22 100%) !important;
  box-shadow: 0 13px 29px -18px rgba(255, 176, 32, 0.72) !important;
}

.site-header[data-header] .mega-menu {
  position: fixed !important;
  top: 96px !important;
  left: 50vw !important;
  right: auto !important;
  width: min(1180px, calc(100vw - 72px)) !important;
  max-width: calc(100vw - 72px) !important;
  transform: translate(-50%, 10px) !important;
  border-color: rgba(226, 232, 240, 0.9) !important;
  background: rgba(244, 247, 251, 0.98) !important;
  backdrop-filter: blur(18px) saturate(1.16) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.16) !important;
}

.site-header[data-header] .mega-grid {
  gap: 24px !important;
}

.site-header[data-header] .mega-card {
  border-color: rgba(203, 213, 225, 0.72) !important;
  background: #ffffff !important;
}

.site-header[data-header] .mega-card-promo .mega-title {
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) 44px !important;
  gap: 8px !important;
  align-items: center !important;
}

.site-header[data-header] .mega-card-promo .mega-heading {
  display: contents !important;
}

.site-header[data-header] .mega-card-promo .mega-heading-text {
  padding: 0 !important;
  font-size: 20px !important;
  line-height: 1.1 !important;
  text-align: left !important;
  text-wrap: nowrap !important;
  white-space: nowrap !important;
}

.site-header[data-header] .mega-card-promo .mega-arrow {
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  line-height: 44px !important;
}

.site-header[data-header] .mega-sub {
  gap: 10px 8px !important;
}

.site-header[data-header] .nav-item:hover .mega-menu,
.site-header[data-header] .nav-item:focus-within .mega-menu {
  transform: translate(-50%, 0) !important;
}

.site-header[data-header] .case-menu {
  width: min(520px, calc(100vw - 72px)) !important;
  max-width: calc(100vw - 72px) !important;
}

@media (max-width: 1280px) {
  .site-header[data-header] .header-inner {
    width: min(100% - 48px, 1280px) !important;
  }

  .site-header[data-header] .desktop-nav {
    gap: 10px !important;
  }

  .site-header[data-header] .nav-link,
  .site-header[data-header] .nav-trigger {
    padding: 0 14px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
  }

  .site-header[data-header] .mega-menu {
    width: min(1060px, calc(100vw - 48px)) !important;
    max-width: calc(100vw - 48px) !important;
  }

  .site-header[data-header] .case-menu {
    width: min(520px, calc(100vw - 48px)) !important;
    max-width: calc(100vw - 48px) !important;
  }
}

@media (min-width: 768px) {
  body.p-home .hmban-swip,
  body.p-home .hmban-swip > .swiper-wrapper,
  body.p-home .hmban-swip > .swiper-wrapper > .hmban-item {
    height: 100vh !important;
    min-height: 100vh !important;
  }

  body.p-home .hmban-swip {
    overflow: hidden !important;
  }
}

/* codex 2026-07-08 responsive home hero */
body.p-home .hero {
  min-height: 100vh;
  padding: 122px 0 86px;
  background: linear-gradient(135deg, #07111f 0%, #101827 52%, #25194f 100%);
}

body.p-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 10, 20, 0.88) 0%, rgba(4, 10, 20, 0.64) 44%, rgba(4, 10, 20, 0.22) 100%),
    radial-gradient(circle at 76% 20%, rgba(59, 130, 246, 0.26), transparent 34%);
  transition: background 700ms ease, opacity 700ms ease;
}

body.p-home .hero::after {
  z-index: 0;
  opacity: 0.42;
}

body.p-home .hero.is-hero-lit::before,
body.p-home .hero:hover::before {
  background:
    linear-gradient(90deg, rgba(4, 10, 20, 0.72) 0%, rgba(4, 10, 20, 0.34) 48%, rgba(4, 10, 20, 0.04) 100%),
    radial-gradient(circle at 74% 20%, rgba(59, 130, 246, 0.16), transparent 35%);
}

body.p-home .hero-inner {
  z-index: 2;
  min-height: calc(100vh - 208px);
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.8fr);
}

body.p-home .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-brandline {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.hero-brandline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  z-index: -1;
  height: 0.18em;
  background: #ffc107;
}

body.p-home .hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(44px, 5.8vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

body.p-home .hero p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.home-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #07111f;
  box-shadow: 0 34px 90px -42px rgba(0, 0, 0, 0.82);
}

.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.1), rgba(8, 17, 31, 0.12));
  transition: opacity 700ms ease;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.58) saturate(0.92);
  transform: scale(1.045);
  transition: filter 780ms ease, transform 980ms ease;
}

.home-hero-glow {
  position: absolute;
  inset: auto 8% 8% auto;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 66%);
  filter: blur(4px);
  opacity: 0.7;
}

body.p-home .hero.is-hero-lit .home-hero-image,
body.p-home .hero:hover .home-hero-image {
  filter: brightness(1.02) saturate(1.06);
  transform: scale(1);
}

body.p-home .hero.is-hero-lit .home-hero-media::after,
body.p-home .hero:hover .home-hero-media::after {
  opacity: 0.1;
}

@media (max-width: 760px) {
  body.p-home .hero {
    min-height: 100svh !important;
    padding: 0 !important;
    display: block;
    background: #08111f;
  }

  body.p-home .hero::before {
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(4, 10, 20, 0.1) 0%, rgba(4, 10, 20, 0.18) 42%, rgba(4, 10, 20, 0.78) 100%),
      linear-gradient(90deg, rgba(4, 10, 20, 0.2), transparent 72%);
  }

  body.p-home .hero.is-hero-lit::before,
  body.p-home .hero:hover::before {
    background:
      linear-gradient(180deg, rgba(4, 10, 20, 0) 0%, rgba(4, 10, 20, 0.08) 48%, rgba(4, 10, 20, 0.54) 100%),
      linear-gradient(90deg, rgba(4, 10, 20, 0.06), transparent 76%);
  }

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

  body.p-home .hero-inner {
    width: 100% !important;
    min-height: 100svh !important;
    display: block !important;
    margin: 0;
  }

  body.p-home .hero-visual.home-hero-media {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.p-home .home-hero-image {
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    object-fit: cover;
    object-position: 58% center;
    filter: brightness(0.54) saturate(0.96);
    transform: scale(1.035);
  }

  body.p-home .hero.is-hero-lit .home-hero-image,
  body.p-home .hero:hover .home-hero-image {
    filter: brightness(1.04) saturate(1.08);
    transform: scale(1);
  }

  body.p-home .home-hero-media::after,
  body.p-home .home-hero-glow {
    display: none;
  }

  body.p-home .hero-copy {
    position: absolute;
    left: clamp(22px, 6vw, 30px);
    right: clamp(22px, 6vw, 30px);
    bottom: clamp(50px, 10svh, 86px);
    z-index: 3;
    max-width: 390px;
    opacity: 1 !important;
    transform: none !important;
  }

  body.p-home .hero-brandline {
    margin-bottom: 8px;
    font-size: clamp(30px, 9.6vw, 42px);
    line-height: 1.04;
  }

  body.p-home .hero h1 {
    max-width: 360px;
    font-size: clamp(36px, 11vw, 54px) !important;
    font-weight: 500;
    line-height: 1.02;
  }

  body.p-home .hero p {
    max-width: 360px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(13px, 3.7vw, 16px) !important;
    line-height: 1.5;
  }

  body.p-home .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  body.p-home .hero-actions .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  body.p-home .hero-actions .btn-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
  }
}
