:root {
  color-scheme: only light;
  --bg: #f8fafc;
  --paper: #ffffff;
  --paper-soft: #f3f7fb;
  --ink: #071225;
  --muted: #667085;
  --line: #e5ebf2;
  --orange: #ff5a1f;
  --orange-2: #ff8a00;
  --green: #14b86a;
  --navy: #07111f;
  --navy-2: #0b1a2c;
  --shadow: 0 18px 48px rgba(7, 18, 37, 0.1);
  --shadow-strong: 0 28px 70px rgba(7, 18, 37, 0.16);
  --container: 1180px;
}

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

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(249, 251, 254, 0.9), #fff 28rem),
    #fff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

p,
li,
a,
span,
strong {
  overflow-wrap: break-word;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: calc(100% - 56px);
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 235, 242, 0.8);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.header-shell {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.brand-logo-image {
  display: block;
  width: 196px;
  max-height: 48px;
  object-fit: contain;
}

.brand-glyph {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  transform: skew(-8deg);
}

.brand strong {
  letter-spacing: 0;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #162437;
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-item {
  position: relative;
}

.has-mega {
  position: static;
}

.nav-link {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
}

.main-nav a,
.footer-grid a {
  transition: color 160ms ease;
}

.mega-menu,
.mini-menu {
  position: absolute;
  top: calc(100% - 2px);
  z-index: 70;
  border: 1px solid rgba(229, 235, 242, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(7, 18, 37, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
  backdrop-filter: blur(18px);
}

.mega-menu {
  left: 50%;
  width: min(1040px, calc(100vw - 56px));
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  transform: translate(-50%, 10px);
}

.mini-menu {
  left: 50%;
  width: min(310px, calc(100vw - 48px));
  padding: 10px;
  transform: translate(-50%, 10px);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.has-dropdown:hover .mini-menu,
.has-dropdown:focus-within .mini-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-columns {
  display: grid;
  grid-template-columns: 1.08fr 1fr 0.88fr;
  gap: 12px;
}

.service-mega {
  width: min(1060px, calc(100vw - 40px));
  grid-template-columns: 1fr;
  gap: 0;
  padding: 14px;
}

.service-mega .mega-columns {
  grid-template-columns: 1.12fr 1.08fr 0.96fr 0.92fr;
  gap: 12px;
  align-items: start;
}

.mega-group {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 2px;
}

.service-mega .mega-columns h3 {
  margin: 2px 8px 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(229, 235, 242, 0.95);
}

.service-mega .mega-columns a {
  position: relative;
  min-height: 48px;
  padding: 8px 8px 8px 26px;
  background: transparent;
}

.service-mega .mega-columns a::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.1);
}

.service-mega .mega-columns a:hover,
.service-mega .mega-columns a:focus-visible {
  background: #fff7f2;
}

.service-mega .mega-columns strong {
  font-size: 0.78rem;
}

.service-mega .mega-columns span {
  font-size: 0.66rem;
  line-height: 1.34;
}

.mega-columns h3 {
  margin: 4px 8px 8px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-columns a,
.mini-menu a {
  display: block;
  padding: 9px 8px;
  border-radius: 8px;
  color: var(--ink);
}

.mega-columns a:hover,
.mega-columns a:focus-visible,
.mini-menu a:hover,
.mini-menu a:focus-visible {
  background: #f6f8fb;
  color: var(--ink);
}

.mega-columns strong,
.mini-menu strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
}

.mega-columns span,
.mini-menu span {
  display: block;
  margin-top: 4px;
  color: #67768a;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.42;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--orange);
  outline: none;
}

.main-nav .mega-columns a:hover,
.main-nav .mega-columns a:focus-visible,
.main-nav .mini-menu a:hover,
.main-nav .mini-menu a:focus-visible {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.nav-cta {
  border: 1px solid rgba(255, 90, 31, 0.35);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.28);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(229, 235, 242, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(7, 18, 37, 0.05);
}

.lang-option {
  min-width: 38px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #7a8798;
  font-size: 0.72rem;
  font-weight: 900;
}

.lang-option.is-active {
  background: var(--ink);
  color: #fff;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 90, 31, 0.28);
}

.button-soft {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(7, 18, 37, 0.05);
}

.button-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(7, 18, 37, 0.12);
}

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

.menu-check,
.menu-toggle,
.menu-scrim {
  display: none;
}

.pill {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label {
  color: var(--orange);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: 999px;
  background: #fff5ef;
}

.section-label.center,
.section-heading.center {
  text-align: center;
}

.section {
  padding: 96px 0;
}

section[id],
.reference-block[id] {
  scroll-margin-top: 92px;
}

.hero {
  padding: 58px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: 4.35rem;
  font-weight: 900;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--orange);
}

.hero-text {
  max-width: 530px;
  margin-top: 24px;
  color: #526174;
  font-size: 1rem;
}

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

.proof-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 445px;
  margin-top: 29px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.avatar-stack span,
.avatar-stack b {
  width: 35px;
  height: 35px;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 999px;
  background-color: #d7dde6;
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 18px rgba(7, 18, 37, 0.1);
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-photo-1 {
  background-image: radial-gradient(circle at 35% 30%, #f8d8b3, #e57a2d 42%, #152236 43%, #152236 100%);
}

.avatar-photo-2 {
  background-image: radial-gradient(circle at 35% 30%, #f7c7d9, #9159f1 42%, #17243a 43%, #17243a 100%);
}

.avatar-photo-3 {
  background-image: radial-gradient(circle at 35% 30%, #c9f4ff, #19a9c8 42%, #142439 43%, #142439 100%);
}

.avatar-photo-4 {
  background-image: radial-gradient(circle at 35% 30%, #ffe1aa, #f0a51f 42%, #16243a 43%, #16243a 100%);
}

.avatar-stack b {
  display: inline-grid;
  place-items: center;
  color: #253246;
  background: #f2f5f9;
  font-size: 1rem;
  font-weight: 800;
}

.proof-row p,
.cta-proof p {
  color: #38475d;
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-row strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 545px;
  padding-bottom: 118px;
}

.hero-photo {
  width: 100%;
  height: 410px;
  overflow: hidden;
  border: 1px solid #e7edf4;
  border-radius: 8px;
  background: #edf2f7;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.metric-row {
  position: absolute;
  left: 33px;
  right: 33px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.metric-card {
  min-height: 158px;
  padding: 21px;
  border: 1px solid rgba(229, 235, 242, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(7, 18, 37, 0.12);
}

.metric-icon {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

.metric-roas .metric-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.metric-cpa .metric-icon {
  background: #2457e6;
}

.metric-lead .metric-icon {
  background: #1aa36f;
}

.metric-card strong {
  display: block;
  color: #111936;
  font-size: 2rem;
  font-weight: 900;
}

.metric-card p {
  margin-top: 5px;
  color: #1b283b;
  font-size: 0.78rem;
  font-weight: 900;
}

.metric-card small {
  display: block;
  margin-top: 2px;
  color: #8b96a6;
  font-size: 0.69rem;
  font-weight: 700;
}

.platforms {
  position: relative;
  overflow: hidden;
  padding: 58px 0 66px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 106, 19, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.92));
}

.platforms::before {
  content: "";
  position: absolute;
  inset: 16px auto auto 50%;
  width: min(820px, 82vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 106, 19, 0.36), transparent);
}

.platform-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.platform-head .section-label {
  margin: 0;
  font-size: 0.96rem;
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.platform-card {
  position: relative;
  display: flex;
  min-height: 96px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 12px;
  border: 1px solid rgba(17, 25, 54, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    #fff;
  box-shadow: 0 18px 44px rgba(17, 25, 54, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 19, 0.9), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.platform-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(255, 106, 19, 0.08);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 19, 0.28);
  box-shadow: 0 24px 54px rgba(17, 25, 54, 0.11);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card img {
  position: relative;
  z-index: 1;
  width: min(162px, 96%);
  height: 50px;
  object-fit: contain;
}

.legacy-tiktok i::before {
  content: "♪";
  position: absolute;
  inset: -3px 0 0;
  color: #111827;
  font-size: 2.25rem;
  font-weight: 900;
  text-shadow: -3px 0 #25f4ee, 3px 0 #fe2c55;
}

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

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 110px;
  align-items: start;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 650px;
  margin-top: 10px;
  color: var(--ink);
  font-size: 2.42rem;
  font-weight: 900;
}

.section-heading.center h2 {
  max-width: 760px;
  margin-inline: auto;
}

.section-heading.center > p:not(.section-label) {
  max-width: 690px;
  margin: 14px auto 0;
  color: #5f6e82;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.7;
}

.heading-copy {
  padding-top: 34px;
}

.heading-copy p {
  color: #56667b;
  font-size: 0.96rem;
}

.heading-copy a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 900;
}

.services {
  padding-top: 104px;
}

.services .container {
  max-width: var(--container);
}

.service-heading {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.service-heading h2 {
  max-width: 900px;
  font-size: 2.86rem;
  line-height: 1.03;
}

.service-heading > p:not(.section-label) {
  max-width: 760px;
  font-size: 1.12rem;
}

.service-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 438px 326px;
  gap: 16px;
}

.service-card {
  --service-accent-rgb: 255, 90, 31;
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 235, 242, 0.92);
  border-radius: 8px;
  background: #07111f;
  box-shadow: 0 18px 46px rgba(7, 18, 37, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--service-accent, #ff5a1f) 46%, rgba(255, 255, 255, 0.35));
  box-shadow:
    0 28px 68px rgba(7, 18, 37, 0.15),
    0 0 0 1px color-mix(in srgb, var(--service-accent, #ff5a1f) 24%, transparent);
  transform: translateY(-4px);
}

.service-card:hover > img {
  transform: scale(1.035);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.service-content {
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 2;
  max-width: calc(100% - 40px);
  padding: 18px 18px 18px 20px;
  border-left: 3px solid var(--service-accent, #ff5a1f);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: #fff;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.78),
    0 1px 2px rgba(0, 0, 0, 0.72);
}

.service-content::before {
  content: "";
  position: absolute;
  inset: -18px -22px -18px -16px;
  z-index: -1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0 18%, rgba(var(--service-accent-rgb, 255, 90, 31), 0.18), transparent 32%),
    linear-gradient(90deg, rgba(3, 10, 22, 0.46), rgba(3, 10, 22, 0.22) 58%, rgba(3, 10, 22, 0));
  opacity: 0.86;
}

.service-content h3 {
  max-width: 350px;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.service-content p {
  max-width: 340px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.service-tags span,
.service-list li {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border: 1px solid color-mix(in srgb, var(--service-accent, #ff5a1f) 54%, rgba(255, 255, 255, 0.28));
  border-radius: 8px;
  background: color-mix(in srgb, var(--service-accent, #ff5a1f) 42%, rgba(255, 255, 255, 0.14));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}

.service-tags.light span {
  border-color: color-mix(in srgb, var(--service-accent, #0f766e) 30%, rgba(7, 18, 37, 0.1));
  background: color-mix(in srgb, var(--service-accent, #0f766e) 14%, #ffffff);
  color: #0d2338;
}

.service-tags.compact span {
  min-width: 68px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.service-detail {
  width: max-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--service-accent, #ff5a1f) 32%, rgba(255, 255, 255, 0.58));
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow:
    0 14px 28px rgba(7, 18, 37, 0.13),
    inset 3px 0 0 var(--service-accent, #ff5a1f);
}

.service-detail span {
  color: var(--service-accent, var(--orange));
}

.performance-card {
  --service-accent: #ff5a1f;
  --service-accent-rgb: 255, 90, 31;
  grid-column: span 2;
}

.performance-card::after {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 90, 31, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(3, 10, 22, 0.02), rgba(3, 10, 22, 0.08) 34%, rgba(3, 10, 22, 0.36) 88%);
}

.performance-card .service-content h3 {
  font-size: 1.5rem;
}

.media-card {
  --service-accent: #a855f7;
  --service-accent-rgb: 168, 85, 247;
}

.media-card::after {
  background:
    radial-gradient(circle at 78% 14%, rgba(168, 85, 247, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(3, 12, 26, 0.02), rgba(3, 12, 26, 0.08) 38%, rgba(3, 12, 26, 0.38) 88%);
}

.product-card {
  --service-accent: #0f766e;
  --service-accent-rgb: 15, 118, 110;
  background: #f5f6f8;
}

.product-card::after {
  background:
    radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 18%, rgba(255, 255, 255, 0.26) 52%, rgba(255, 255, 255, 0.82) 88%);
}

.product-card .service-content {
  border-left-color: var(--service-accent);
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  text-shadow: none;
}

.product-card .service-content::before {
  background:
    radial-gradient(circle at 0 18%, rgba(20, 184, 166, 0.18), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32) 64%, rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.product-card .service-content p {
  color: #536276;
}

.product-card .service-detail {
  border-color: rgba(15, 118, 110, 0.2);
}

.social-card::after,
.brand-card::after,
.health-card::after {
  background:
    radial-gradient(circle at 16% 18%, rgba(var(--service-accent-rgb, 255, 90, 31), 0.18), transparent 30%),
    linear-gradient(180deg, rgba(3, 10, 22, 0.02), rgba(3, 10, 22, 0.1) 45%, rgba(3, 10, 22, 0.38) 90%);
}

.seo-card {
  --service-accent: #7c3aed;
  --service-accent-rgb: 124, 58, 237;
  grid-column: auto;
}

.seo-card::after {
  background:
    radial-gradient(circle at 74% 40%, rgba(132, 71, 255, 0.22), transparent 36%),
    linear-gradient(90deg, rgba(3, 10, 22, 0.36), rgba(3, 10, 22, 0.16) 54%, rgba(3, 10, 22, 0.02));
}

.seo-card .service-content {
  max-width: 360px;
}

.compact-card .service-content h3 {
  font-size: 1.2rem;
}

.compact-card .service-content p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.brand-card {
  --service-accent: #f59e0b;
  --service-accent-rgb: 245, 158, 11;
  background:
    radial-gradient(circle at 70% 18%, rgba(245, 158, 11, 0.16), transparent 38%),
    #07111f;
}

.social-card {
  --service-accent: #2563eb;
  --service-accent-rgb: 37, 99, 235;
}

.health-card {
  --service-accent: #e11d48;
  --service-accent-rgb: 225, 29, 72;
}

.brand-card > img,
.health-card > img {
  opacity: 0.92;
  object-fit: cover;
  padding: 0;
}

.performance-card > img {
  object-position: center;
}

.product-card > img,
.social-card > img,
.seo-card > img,
.health-card > img {
  object-position: center right;
}

.reference-block {
  position: relative;
  margin-top: 106px;
  padding-top: 58px;
  border-top: 1px solid rgba(17, 25, 54, 0.08);
}

.reference-head {
  margin-bottom: 34px;
  text-align: center;
}

.reference-head .section-label {
  margin: 0;
  font-size: 0.9rem;
}

.reference-head h2 {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 10px;
  color: var(--ink);
  font-size: 2.26rem;
  font-weight: 900;
}

.reference-head p:not(.section-label) {
  max-width: 650px;
  margin: 14px auto 0;
  color: #5f6e82;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.7;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(17, 25, 54, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 106, 19, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 253, 0.88));
  box-shadow: 0 30px 80px rgba(17, 25, 54, 0.08);
}

.reference-logo {
  position: relative;
  display: grid;
  min-height: 94px;
  place-items: center;
  overflow: hidden;
  padding: 20px 18px;
  border: 1px solid rgba(17, 25, 54, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(17, 25, 54, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reference-logo::after {
  content: none;
}

.reference-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 19, 0.22);
  box-shadow: 0 18px 44px rgba(17, 25, 54, 0.09);
}

.reference-logo span {
  position: relative;
  z-index: 1;
  color: #7a8494;
  font-size: 1.04rem;
  font-weight: 900;
}

.reference-logo img {
  position: relative;
  z-index: 1;
  width: min(154px, 94%);
  height: 50px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.reference-logo:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.reference-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  margin: 32px auto 0;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(255, 106, 19, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.mobile-home-link {
  display: none;
}

.reference-more:hover {
  transform: translateY(-2px);
  background: #f04f16;
  box-shadow: 0 22px 46px rgba(255, 106, 19, 0.28);
}

.play-badge,
.card-link {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(7, 18, 37, 0.12);
}

.play-badge {
  margin-bottom: 78px;
}

.card-link {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
  width: 36px;
  height: 36px;
  color: var(--orange);
  font-weight: 900;
}

.performance-card .card-link,
.media-card .card-link {
  left: auto;
  right: 18px;
}

.compact-card .card-link,
.product-card .card-link,
.social-card .card-link {
  left: auto;
  top: 18px;
  right: 18px;
  bottom: auto;
}

.system {
  padding-top: 42px;
  padding-bottom: 106px;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 0.93fr;
  gap: 96px;
  align-items: center;
}

.system-photo {
  position: relative;
  overflow: hidden;
  height: 445px;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 18, 37, 0.12);
}

.system-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-photo figcaption {
  position: absolute;
  top: 46%;
  left: 50%;
  display: inline-grid;
  place-items: center;
  width: 160px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.system-photo figcaption img {
  width: 132px;
  max-height: 34px;
  object-fit: contain;
}

.system-copy h2 {
  max-width: 560px;
  margin-top: 10px;
  font-size: 2.48rem;
  font-weight: 900;
}

.system-copy > p:not(.section-label) {
  max-width: 585px;
  margin-top: 18px;
  color: #536278;
  font-size: 0.96rem;
}

.step-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  align-items: start;
}

.step-list b {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.step-list div {
  position: relative;
  padding-left: 17px;
  border-left: 2px solid #ffd6c7;
}

.step-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.step-list span {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 0.84rem;
  font-weight: 600;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.sector-grid article {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 18, 37, 0.05), rgba(7, 18, 37, 0.82)),
    var(--sector-bg) center / cover no-repeat;
  box-shadow: 0 16px 34px rgba(7, 18, 37, 0.1);
}

.sector-health-tourism {
  --sector-bg: url("../sector-health-tourism.webp");
}

.sector-beauty-salon {
  --sector-bg: url("../sector-beauty-salon.webp");
}

.sector-real-estate {
  --sector-bg: url("../sector-real-estate.webp");
}

.sector-ecommerce {
  --sector-bg: url("../sector-ecommerce.webp");
}

.sector-restaurant {
  --sector-bg: url("../sector-restaurant.webp");
}

.sector-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 1.35rem;
}

.sector-grid h3 {
  max-width: 210px;
  font-size: 1.02rem;
  font-weight: 900;
}

.sector-grid a {
  display: inline-flex;
  gap: 6px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
}

.process {
  padding: 58px 0 88px;
}

.process-shell {
  padding: 44px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.08), transparent 32%),
    linear-gradient(135deg, var(--navy), #071a2c);
  color: #fff;
  box-shadow: 0 20px 50px rgba(7, 18, 37, 0.17);
}

.process-shell h2 {
  max-width: 690px;
  margin: 8px auto 30px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
}

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

.process-grid article {
  position: relative;
  min-height: 138px;
  padding: 24px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.process-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -16px;
  color: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.process-grid span {
  float: left;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-right: 16px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  font-size: 1.25rem;
}

.process-grid b {
  display: block;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.process-grid h3 {
  margin-top: 2px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.process-grid p {
  clear: both;
  margin-top: 15px;
  color: #b8c6d8;
  font-size: 0.78rem;
  font-weight: 600;
}

.process {
  padding: 72px 0 96px;
}

.process-shell {
  position: relative;
  overflow: hidden;
  padding: 52px;
  background:
    radial-gradient(circle at 15% 0, rgba(255, 106, 19, 0.22), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(55, 196, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #07111f, #081b30 58%, #06101d);
  box-shadow: 0 28px 70px rgba(7, 18, 37, 0.22);
}

.process-shell::before {
  content: "";
  position: absolute;
  inset: 24px 28px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.process-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.process-top .section-label {
  margin: 0;
}

.process-top h2 {
  max-width: 720px;
  margin: 10px 0 0;
  text-align: left;
  font-size: 2.46rem;
  font-weight: 900;
}

.process-top > p {
  margin: 0;
  color: #c4d1e2;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.75;
}

.process-grid {
  position: relative;
  z-index: 1;
  gap: 14px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 19, 0.12), rgba(255, 106, 19, 0.72), rgba(255, 106, 19, 0.12));
}

.process-grid article {
  min-height: 286px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.process-grid article:nth-child(2),
.process-grid article:nth-child(4) {
  margin-top: 22px;
}

.process-grid article:not(:last-child)::after {
  display: none;
}

.process-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 19, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 106, 19, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
}

.process-number {
  display: inline-grid;
  grid-template-columns: 48px auto;
  gap: 12px;
  align-items: center;
}

.process-number span {
  float: none;
  display: grid;
  width: 48px;
  height: 48px;
  margin-right: 0;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(255, 106, 19, 0.26);
}

.process-number b {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid h3 {
  max-width: 220px;
  margin-top: 28px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.process-grid p {
  clear: none;
  margin-top: 12px;
  color: #c4d1e2;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.65;
}

.process-grid ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.process-grid li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #ecf3fb;
  font-size: 0.78rem;
  font-weight: 800;
}

.process-grid li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
}

.process-output {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.process-output span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 106, 19, 0.16);
  color: #ffb18f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-output p {
  margin: 0;
  color: #d8e2ef;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.6;
}

.cases {
  padding-top: 48px;
}

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

.case-card {
  position: relative;
  min-height: 198px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 18, 37, 0.08);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.02));
  pointer-events: none;
  z-index: 1;
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: 198px;
  object-fit: cover;
}

.case-content {
  position: relative;
  z-index: 2;
  padding: 26px 24px;
}

.case-content p {
  color: #69778a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.case-metrics strong {
  display: block;
  color: #079568;
  font-size: 1.65rem;
  font-weight: 900;
}

.case-metrics small {
  display: block;
  margin-top: 5px;
  color: #59697d;
  font-size: 0.72rem;
  font-weight: 700;
}

.case-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.blog-section {
  padding: 0 0 86px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.blog-section .section-heading {
  margin-bottom: 34px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-auto-rows: minmax(248px, auto);
  gap: 18px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 248px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 44px rgba(7, 18, 37, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(255, 90, 31, 0.7);
  background:
    linear-gradient(120deg, rgba(255, 90, 31, 0.08), transparent 38%),
    linear-gradient(180deg, transparent, rgba(7, 18, 37, 0.03));
  pointer-events: none;
}

.blog-card > * {
  position: relative;
  z-index: 1;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.26);
  box-shadow: 0 22px 52px rgba(7, 18, 37, 0.12);
}

.blog-card-featured {
  grid-row: span 2;
  min-height: 514px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.16), transparent 34%),
    linear-gradient(145deg, #07111f, #0b2036 58%, #08131f);
  box-shadow: 0 28px 64px rgba(7, 18, 37, 0.18);
}

.blog-card-featured::before {
  border-top-color: var(--orange);
  background:
    linear-gradient(120deg, rgba(255, 90, 31, 0.18), transparent 44%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
}

.blog-card-wide {
  grid-column: span 2;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: #7a8798;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-meta time {
  color: #9aa6b5;
  font: inherit;
  text-transform: none;
}

.blog-card h3 {
  max-width: 540px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.12;
}

.blog-card-featured h3 {
  max-width: 560px;
  color: #fff;
  font-size: 2.12rem;
}

.blog-card p {
  max-width: 560px;
  margin-top: 14px;
  color: #526176;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.72;
}

.blog-card-featured p {
  color: #c8d5e5;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.blog-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 999px;
  background: #fff7f2;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
}

.blog-card-featured .blog-tags span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.blog-card a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-card-featured a {
  border-color: rgba(255, 255, 255, 0.2);
  background: #fff;
  color: var(--ink);
}

.blog-card a:hover,
.blog-card a:focus-visible {
  color: var(--orange);
  outline: none;
}

.subpage-main {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.94), #fff 360px),
    #fff;
}

.page-hero {
  padding: 72px 0 56px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: stretch;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #748399;
  font-size: 0.76rem;
  font-weight: 850;
}

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

.page-kicker {
  display: inline-flex;
  width: max-content;
  margin-top: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: 999px;
  background: #fff5ef;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 3.62rem;
  font-weight: 900;
  line-height: 0.98;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-lead {
  max-width: 720px;
  margin-top: 22px;
  color: #526174;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.72;
}

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

.page-hero-panel {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(229, 235, 242, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 18, 37, 0.1), rgba(7, 18, 37, 0.86)),
    var(--page-image, url("../roasvia-system-meeting.webp")) center / cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.page-hero-panel h2 {
  max-width: 310px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.page-hero-panel p {
  max-width: 320px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.6;
}

.subpage-section {
  padding: 72px 0;
}

.subpage-section.tight {
  padding-top: 28px;
}

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

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

.info-card,
.contact-card,
.article-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 18, 37, 0.07);
}

.info-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.info-card .card-number {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.info-card h2,
.info-card h3,
.contact-card h3,
.article-card h3 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
}

.info-card p,
.contact-card p,
.article-card p {
  margin-top: 12px;
  color: #5c6b7f;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.68;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat-tile {
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(229, 235, 242, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(7, 18, 37, 0.06);
}

.stat-tile strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.stat-tile span {
  display: block;
  margin-top: 6px;
  color: #657487;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.feature-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #edf2f7;
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy h2 {
  max-width: 620px;
  color: var(--ink);
  font-size: 2.36rem;
  font-weight: 900;
}

.feature-copy p {
  max-width: 640px;
  margin-top: 16px;
  color: #56667b;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #253246;
  font-size: 0.9rem;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.full-reference-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

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

.contact-card {
  min-height: 190px;
}

.contact-card a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-page-hero {
  padding: 34px 0 14px;
}

.contact-page-hero h1 {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(2.35rem, 5vw, 3.55rem);
}

.contact-page-hero .page-lead {
  margin-top: 16px;
}

.contact-page-hero + .subpage-section.tight {
  padding-top: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 14px;
}

.contact-info-panel,
.contact-form-card,
.contact-map-card,
.contact-note-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 18, 37, 0.07);
}

.contact-info-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  color: var(--ink);
}

.contact-info-panel::before,
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.contact-label {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-panel h2,
.contact-form-head h2,
.map-details h2 {
  margin-top: 12px;
  color: inherit;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.15;
}

.contact-info-panel p {
  margin-top: 14px;
  color: #5b6a7e;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.72;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-method {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(229, 235, 242, 0.95);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

a.contact-method:hover,
a.contact-method:focus-visible {
  border-color: rgba(255, 90, 31, 0.28);
  background: #fff7f2;
  transform: translateY(-2px);
  outline: none;
}

.contact-method span {
  color: #7a8798;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
}

.contact-form-card {
  padding: 28px;
}

.contact-form-head span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form-head h2 {
  color: var(--ink);
}

.contact-form-head p,
.map-details p {
  max-width: 620px;
  margin-top: 10px;
  color: #5b6a7e;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.68;
}

.contact-form {
  margin-top: 24px;
}

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

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

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

.form-field span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(213, 221, 232, 0.98);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  outline: none;
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 138px;
  padding-top: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 90, 31, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.1);
}

.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.contact-submit-row p {
  margin: 0;
  color: #7a8798;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-note-card {
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 106, 19, 0.16), transparent 36%),
    #fff;
}

.contact-note-card span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-note-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
}

.contact-note-card p {
  margin-top: 10px;
  color: #5b6a7e;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.62;
}

.contact-map-section {
  padding-top: 0;
}

.contact-map-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.map-visual {
  position: relative;
  min-height: 240px;
  background:
    linear-gradient(rgba(7, 18, 37, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 37, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 54% 48%, rgba(255, 90, 31, 0.2), transparent 9%),
    linear-gradient(135deg, #f8fafc, #eef3f9);
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  inset: 28% 10%;
  border-top: 2px solid rgba(255, 90, 31, 0.34);
  transform: rotate(-8deg);
}

.map-visual::after {
  inset: 55% 4%;
  border-color: rgba(7, 18, 37, 0.14);
  transform: rotate(10deg);
}

.map-pin {
  position: absolute;
  left: 54%;
  top: 48%;
  width: 42px;
  height: 42px;
  border: 9px solid #fff;
  border-radius: 999px 999px 999px 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 34px rgba(255, 90, 31, 0.32);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-details {
  padding: 30px;
}

.map-details h2 {
  color: var(--ink);
}

.map-details .button {
  margin-top: 22px;
}

.contact-page-hero {
  padding: 52px 0 38px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.contact-hero-copy .breadcrumb {
  margin-bottom: 26px;
}

.contact-page-hero h1 {
  max-width: 640px;
  margin-top: 0;
  font-size: clamp(3rem, 5.3vw, 4.9rem);
  line-height: 0.98;
}

.contact-page-hero h1 span {
  display: block;
  color: var(--orange);
}

.contact-page-hero .page-lead {
  max-width: 600px;
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.72;
}

.contact-hero-visual {
  position: relative;
  min-height: 300px;
  border-radius: 8px;
}

.contact-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12px 42px 18px 76px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 106, 19, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.82));
  box-shadow: 0 26px 80px rgba(17, 25, 54, 0.1);
  transform: rotate(7deg);
}

.contact-float {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 235, 242, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 50px rgba(7, 18, 37, 0.12);
}

.contact-float::before {
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.float-mail {
  left: 42%;
  top: 34%;
  width: 96px;
  height: 96px;
}

.float-mail::before {
  content: "@";
}

.float-chat {
  right: 20%;
  top: 3%;
  width: 104px;
  height: 88px;
  border-color: rgba(255, 106, 19, 0.22);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  transform: rotate(-5deg);
}

.float-chat::before {
  content: "...";
  color: #fff;
  letter-spacing: 4px;
}

.float-phone {
  left: 18%;
  bottom: 22%;
  width: 72px;
  height: 72px;
}

.float-phone::before {
  content: "☎";
  font-size: 1.6rem;
}

.float-pin {
  right: 13%;
  bottom: 19%;
  width: 78px;
  height: 78px;
}

.float-pin::before {
  content: "•";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 7px solid var(--ink);
  border-radius: 999px;
  color: transparent;
}

.contact-dash {
  position: absolute;
  z-index: 0;
  width: 88px;
  height: 70px;
  border: 2px dashed rgba(255, 106, 19, 0.55);
  border-color: rgba(255, 106, 19, 0.55) transparent transparent transparent;
  border-radius: 60% 40% 0 0;
}

.dash-one {
  left: 12%;
  top: 22%;
  transform: rotate(22deg);
}

.dash-two {
  right: 0;
  top: 32%;
  transform: rotate(-46deg);
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.contact-form-card,
.contact-info-panel,
.contact-note-card,
.contact-map-card {
  border-color: rgba(221, 229, 239, 0.94);
  box-shadow: 0 24px 70px rgba(17, 25, 54, 0.08);
}

.contact-form-card,
.contact-info-panel {
  padding: 34px;
}

.contact-form-card::before,
.contact-info-panel::before {
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.contact-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.34rem;
  font-weight: 900;
}

.contact-title-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #fff1e8;
}

.contact-title-icon::before {
  content: "@";
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
}

.contact-form-head > span {
  display: none;
}

.contact-form-head p,
.contact-info-panel p {
  margin-top: 14px;
  color: #627086;
  font-size: 0.93rem;
  line-height: 1.65;
}

.contact-form {
  margin-top: 28px;
}

.form-field span {
  color: var(--ink);
  font-size: 0.78rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 56px;
  border-color: rgba(216, 225, 236, 0.96);
  background: #f9fbfd;
  box-shadow: inset 0 1px 0 rgba(7, 18, 37, 0.02);
}

.form-field textarea {
  min-height: 132px;
}

.contact-submit-row {
  justify-content: space-between;
}

.contact-submit-row .button {
  min-width: 168px;
}

.contact-submit-row p {
  position: relative;
  max-width: 330px;
  padding-left: 24px;
}

.contact-submit-row p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 2px solid #8b98aa;
  border-radius: 4px;
}

.contact-method {
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 2px 16px;
  min-height: 84px;
  padding: 14px 16px;
}

.contact-method::before {
  content: "@";
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff3eb;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
}

.method-phone::before {
  content: "☎";
}

.method-pin::before {
  content: "•";
  font-size: 1.7rem;
}

.method-time::before {
  content: "◷";
}

.contact-method span,
.contact-method strong {
  grid-column: 2;
}

.contact-note-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 18px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 106, 19, 0.14), transparent 42%),
    #fff;
}

.contact-note-card::before {
  content: "↗";
  grid-row: 1 / span 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff0e7;
  color: var(--orange);
  font-size: 1.28rem;
  font-weight: 900;
}

.contact-note-card span,
.contact-note-card strong,
.contact-note-card p {
  grid-column: 2;
}

.contact-map-card {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
}

.map-visual {
  min-height: 300px;
  background:
    radial-gradient(circle at 51% 43%, rgba(255, 106, 19, 0.2), transparent 5%),
    linear-gradient(rgba(7, 18, 37, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 37, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #f8fafc, #edf2f7);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.map-pin {
  left: 51%;
  top: 43%;
  width: 46px;
  height: 46px;
}

.map-details {
  display: grid;
  align-content: center;
  padding: 34px;
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(145deg, #071225, #111827);
  color: #fff;
}

.map-details h2 {
  max-width: 360px;
  color: #fff;
}

.map-details p:not(.contact-label) {
  color: rgba(255, 255, 255, 0.72);
}

.map-details .button {
  width: max-content;
  border-color: rgba(255, 106, 19, 0.42);
  background: rgba(255, 106, 19, 0.08);
  color: #fff;
}

.references-page {
  background:
    radial-gradient(circle at 82% 5%, rgba(255, 106, 19, 0.08), transparent 26%),
    linear-gradient(180deg, #fff 0, #f9fbfd 520px, #fff 100%);
}

.references-hero {
  padding: 62px 0 52px;
}

.references-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  gap: 70px;
  align-items: center;
}

.references-hero-copy .breadcrumb {
  margin-bottom: 52px;
}

.references-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
}

.references-hero p {
  max-width: 530px;
  margin-top: 30px;
  color: #5b6a7e;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.82;
}

.references-world {
  position: relative;
  min-height: 330px;
}

.world-dotmap {
  position: absolute;
  inset: 10px 20px 10px 0;
  border-radius: 48% 52% 54% 46%;
  opacity: 0.62;
  background:
    radial-gradient(circle, rgba(125, 139, 156, 0.42) 1.2px, transparent 1.6px) 0 0 / 11px 11px,
    radial-gradient(circle at 72% 55%, rgba(255, 106, 19, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.62);
  clip-path: ellipse(43% 46% at 52% 50%);
}

.world-orbit {
  position: absolute;
  border: 2px dashed rgba(255, 106, 19, 0.36);
  border-radius: 999px;
}

.orbit-one {
  inset: 8px 24px 48px 24px;
  transform: rotate(12deg);
}

.orbit-two {
  inset: 56px 0 70px 74px;
  transform: rotate(-14deg);
}

.world-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 106, 19, 0.12);
}

.node-one {
  left: 12%;
  top: 62%;
}

.node-two {
  left: 42%;
  top: 8%;
}

.node-three {
  right: 18%;
  top: 42%;
}

.node-four {
  right: 10%;
  bottom: 24%;
}

.reference-logo-section {
  padding: 38px 0 58px;
}

.references-page .reference-grid-50 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.references-page .reference-logo {
  min-height: 132px;
  padding: 22px 18px;
  border: 1px solid rgba(229, 235, 242, 0.78);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.95), transparent 38%),
    #fff;
  box-shadow: 0 18px 52px rgba(17, 25, 54, 0.055);
}

.references-page .reference-logo img {
  width: min(154px, 92%);
  height: 58px;
}

.reference-sector-section {
  padding: 10px 0 44px;
}

.reference-sector-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 2fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(229, 235, 242, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 64px rgba(17, 25, 54, 0.06);
}

.reference-sector-strip h2 {
  max-width: 330px;
  margin: 0;
  color: var(--ink);
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.32;
}

.reference-sector-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reference-sector-items div {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 86px;
  align-content: center;
  border-left: 1px solid rgba(229, 235, 242, 0.95);
}

.reference-sector-items span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff1e9;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
}

.reference-sector-items strong {
  color: #536276;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.reference-sector-photo-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
}

.reference-sector-photo-items div {
  flex: 1 1 88px;
  max-width: 116px;
  min-height: 122px;
  padding: 14px 8px 12px;
  border: 1px solid rgba(229, 235, 242, 0.95);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 25, 54, 0.045);
}

.reference-sector-photo-items span {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 3px solid #fff;
  background: #eef3f8;
  box-shadow: 0 10px 24px rgba(17, 25, 54, 0.12), 0 0 0 1px rgba(255, 106, 19, 0.18);
}

.reference-sector-photo-items span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reference-cta-section {
  padding: 0 0 46px;
}

.reference-cta-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 132px;
  padding: 28px 54px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #071225, #0d2038);
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 18, 37, 0.18);
}

.reference-cta-mark {
  position: relative;
  width: 72px;
  height: 58px;
}

.reference-cta-mark span {
  position: absolute;
  bottom: 2px;
  width: 12px;
  height: 52px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(32deg);
}

.reference-cta-mark span:first-child {
  left: 16px;
}

.reference-cta-mark span:last-child {
  left: 44px;
  height: 34px;
}

.reference-cta-band h2 {
  max-width: 420px;
  margin: 0;
  color: #fff;
  font-size: 1.54rem;
  font-weight: 900;
  line-height: 1.34;
}

.reference-cta-band .button {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.blog-index-page {
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 106, 19, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0, #f8fafc 560px, #fff 100%);
}

.blog-modern-hero {
  padding: 62px 0 56px;
}

.blog-modern-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.blog-modern-copy .breadcrumb {
  margin-bottom: 34px;
}

.blog-eyebrow {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 106, 19, 0.18);
  border-radius: 999px;
  background: #fff3ec;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-modern-copy h1 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(3rem, 5.4vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
}

.blog-modern-copy > p:not(.blog-eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: #526176;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.78;
}

.blog-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.blog-topic-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(229, 235, 242, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #536276;
  font-size: 0.78rem;
  font-weight: 900;
}

.blog-hero-feature {
  position: relative;
  min-height: 460px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(229, 235, 242, 0.86);
  border-radius: 8px;
  background: #071225;
  box-shadow: 0 28px 78px rgba(7, 18, 37, 0.14);
}

.blog-hero-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 260ms ease;
}

.blog-hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 106, 19, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(7, 18, 37, 0.04), rgba(7, 18, 37, 0.88));
}

.blog-hero-feature > div {
  position: relative;
  z-index: 1;
}

.blog-hero-feature span {
  color: #ffb38a;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-hero-feature h2 {
  max-width: 420px;
  margin-top: 12px;
  color: #fff;
  font-size: 1.82rem;
  font-weight: 900;
  line-height: 1.18;
}

.blog-hero-feature p {
  max-width: 390px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.62;
}

.blog-hero-feature:hover img,
.blog-hero-feature:focus-visible img {
  transform: scale(1.04);
}

.blog-index-section {
  padding: 18px 0 74px;
}

.blog-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.blog-section-head .section-label {
  margin: 0;
}

.blog-section-head h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.blog-section-head > a {
  display: inline-flex;
  gap: 8px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

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

.blog-index-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(229, 235, 242, 0.88);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 25, 54, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-index-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 19, 0.24);
  box-shadow: 0 26px 72px rgba(17, 25, 54, 0.11);
}

.blog-card-media {
  display: block;
  height: 178px;
  overflow: hidden;
  background: #eef3f8;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.blog-index-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.blog-card-body .blog-meta {
  font-size: 0.72rem;
}

.blog-card-body h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.28;
}

.blog-card-body p {
  margin-top: 12px;
  color: #5b6a7e;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.62;
}

.blog-read-link {
  width: max-content;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
}

.blog-soft-cta {
  padding: 0 0 78px;
}

.blog-soft-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(229, 235, 242, 0.88);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 106, 19, 0.12), transparent 28%),
    #fff;
  box-shadow: 0 22px 64px rgba(17, 25, 54, 0.07);
}

.blog-soft-cta-shell h2 {
  max-width: 660px;
  margin-top: 8px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.blog-soft-cta-shell p:not(.section-label) {
  max-width: 620px;
  margin-top: 12px;
  color: #5b6a7e;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.68;
}

.about-page {
  background:
    radial-gradient(circle at 80% 4%, rgba(255, 106, 19, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0, #f8fafc 620px, #fff 100%);
}

.about-hero {
  padding: 62px 0 70px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.about-hero-copy .breadcrumb {
  margin-bottom: 30px;
}

.about-eyebrow {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 106, 19, 0.18);
  border-radius: 999px;
  background: #fff3ec;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(3rem, 5.4vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
}

.about-hero-copy > p:not(.about-eyebrow) {
  max-width: 640px;
  margin-top: 24px;
  color: #526176;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.78;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.about-kpi-row div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(229, 235, 242, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 46px rgba(17, 25, 54, 0.06);
}

.about-kpi-row strong {
  display: block;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 900;
}

.about-kpi-row span {
  display: block;
  margin-top: 6px;
  color: #667589;
  font-size: 0.78rem;
  font-weight: 850;
}

.about-hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(229, 235, 242, 0.84);
  border-radius: 8px;
  background: #071225;
  box-shadow: 0 30px 86px rgba(7, 18, 37, 0.16);
}

.about-hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.82;
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 106, 19, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(7, 18, 37, 0.08), rgba(7, 18, 37, 0.8));
}

.about-control-card,
.about-mini-metric {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 18, 37, 0.78);
  color: #fff;
  backdrop-filter: blur(14px);
}

.about-control-card {
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
}

.about-control-card span,
.about-mini-metric strong {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-control-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.52rem;
  font-weight: 900;
}

.about-control-card p {
  max-width: 420px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.58;
}

.about-mini-metric {
  top: 24px;
  right: 24px;
  width: 190px;
  padding: 16px;
}

.about-mini-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-focus-section,
.about-split-section,
.about-workflow-section {
  padding: 72px 0;
}

.about-section-head {
  margin-bottom: 30px;
}

.about-section-head.center {
  text-align: center;
}

.about-section-head .section-label {
  margin: 0;
}

.about-section-head h2 {
  max-width: 760px;
  margin-top: 10px;
  color: var(--ink);
  font-size: 2.34rem;
  font-weight: 900;
  line-height: 1.12;
}

.about-section-head.center h2 {
  margin-inline: auto;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-card-grid article,
.about-proof-stack article,
.about-workflow-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 235, 242, 0.88);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 25, 54, 0.07);
}

.about-card-grid article {
  min-height: 270px;
  padding: 24px;
}

.about-card-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.about-card-grid span,
.about-proof-stack span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.about-card-grid h3,
.about-proof-stack h3,
.about-workflow-grid h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 900;
}

.about-card-grid p,
.about-proof-stack p,
.about-workflow-grid p {
  margin-top: 12px;
  color: #5b6a7e;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.68;
}

.about-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 22px;
  align-items: stretch;
}

.about-dark-panel {
  overflow: hidden;
  padding: 38px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 106, 19, 0.2), transparent 34%),
    linear-gradient(145deg, #071225, #111827);
  box-shadow: 0 26px 76px rgba(7, 18, 37, 0.18);
}

.about-dark-panel .section-label {
  color: #ffb38a;
}

.about-dark-panel h2 {
  max-width: 620px;
  margin-top: 12px;
  color: #fff;
  font-size: 2.22rem;
  font-weight: 900;
  line-height: 1.12;
}

.about-dark-panel p {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.74;
}

.about-dark-panel ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-dark-panel li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

.about-dark-panel li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.about-proof-stack {
  display: grid;
  gap: 14px;
}

.about-proof-stack article {
  padding: 24px;
}

.about-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-workflow-grid article {
  min-height: 220px;
  padding: 24px;
}

.about-workflow-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff1e9;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
}

.about-cta-section {
  padding: 0 0 78px;
}

.about-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 38px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #071225, #0d2038);
  box-shadow: 0 24px 70px rgba(7, 18, 37, 0.18);
}

.about-cta-band h2 {
  max-width: 720px;
  margin-top: 8px;
  color: #fff;
  font-size: 2.18rem;
  font-weight: 900;
  line-height: 1.12;
}

.about-cta-band p:not(.section-label) {
  max-width: 640px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.68;
}

.about-cta-band .section-label {
  color: #ffb38a;
}

.reference-extra-section {
  padding: 0 0 76px;
}

.reference-extra-head {
  margin-bottom: 24px;
  text-align: center;
}

.reference-extra-head .section-label {
  margin: 0;
  font-size: 0.84rem;
}

.reference-extra-head h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.78rem;
  font-weight: 900;
}

.reference-extra-section .reference-logo {
  min-height: 112px;
}

.reference-extra-section .reference-logo img {
  height: 50px;
}

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

.article-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.article-card .blog-meta {
  position: relative;
  z-index: 1;
}

.article-card h3 {
  font-size: 1.56rem;
}

.article-card a {
  width: max-content;
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
}

.article-body {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 18, 37, 0.06);
}

.article-body h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 1.72rem;
  font-weight: 900;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  margin-top: 16px;
  color: #536276;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.82;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article-body li {
  color: #2a384d;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.62;
}

.article-body li::before {
  content: "•";
  margin-right: 8px;
  color: var(--orange);
  font-weight: 900;
}

.article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 18, 37, 0.06);
}

.aside-card h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.aside-card p,
.aside-card a {
  margin-top: 10px;
  color: #5d6c7f;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.58;
}

.aside-card a {
  display: inline-flex;
  color: var(--orange);
  font-weight: 900;
}

.cta {
  padding: 52px 0 0;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 38px 72px;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
}

.cta-shell h2 {
  max-width: 555px;
  font-size: 2.35rem;
  font-weight: 900;
}

.cta-shell p {
  max-width: 600px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
}

.cta-proof {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto 150px;
  gap: 14px;
  align-items: center;
}

.cta-proof p {
  margin-top: 0;
  color: #fff;
  font-size: 0.78rem;
}

.site-footer {
  margin-top: 0;
  padding: 0 0 28px;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 90, 31, 0.16), transparent 32%),
    linear-gradient(145deg, #07111f, #08192b 58%, #050b14);
  color: #dbe5f1;
}

.footer-shell {
  padding-top: 46px;
}

.footer-topline {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 320px;
  gap: 34px;
  align-items: stretch;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  color: #fff;
}

.footer-logo .brand-logo-image {
  width: 196px;
  max-height: 48px;
}

.footer-brand p {
  max-width: 410px;
  margin-top: 17px;
  color: #aab8ca;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.72;
}

.footer-partners {
  display: grid;
  align-content: center;
  justify-self: end;
  width: 100%;
  max-width: 320px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.15), rgba(255, 255, 255, 0.035) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.footer-partner-grid figure {
  min-height: 48px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.footer-partner-grid img {
  width: 100%;
  max-width: 92px;
  max-height: 29px;
  object-fit: contain;
}

.footer-partner-grid figure:nth-child(1) img {
  max-width: 74px;
}

.footer-partner-grid figure:nth-child(2) img {
  max-width: 88px;
}

.footer-partner-grid figure:nth-child(3) img {
  max-width: 86px;
}

.footer-partner-grid figure:nth-child(4) img {
  max-width: 78px;
}

.footer-stack-list {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.footer-stack-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dbe5f1;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-stack-list b {
  color: #ff9b70;
  font-size: 0.72rem;
  font-weight: 900;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 10px;
  color: #aab8ca;
  font-size: 0.84rem;
  font-weight: 600;
}

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

.socials a {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
}

.socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp {
  width: max-content;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 4px !important;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink) !important;
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #91a0b3;
  font-size: 0.76rem;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .container {
    width: calc(100% - 40px);
  }

  .header-shell {
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
  }

  .menu-toggle {
    grid-column: 4;
    grid-row: 1;
    position: relative;
    z-index: 110;
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 160ms ease;
    transform-origin: center;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 100;
    width: min(88vw, 380px);
    height: 100dvh;
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 88px 18px 24px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    box-shadow: -28px 0 70px rgba(7, 18, 37, 0.18);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(105%);
    transition: opacity 180ms ease, transform 220ms ease, visibility 220ms ease;
    visibility: hidden;
  }

  .menu-scrim {
    position: fixed;
    inset: 0 min(88vw, 380px) 0 0;
    z-index: 90;
    display: block;
    background: rgba(7, 18, 37, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .menu-check:checked + .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-check:checked + .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-link {
    min-height: auto;
  }

  .main-nav > .nav-item,
  .main-nav > .nav-link,
  .main-nav > .nav-item > .nav-link {
    width: 100%;
  }

  .main-nav a {
    min-height: 52px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    border: 1px solid rgba(229, 235, 242, 0.95);
    border-radius: 8px;
    background: #f8fafc;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 900;
  }

  .main-nav > .nav-link[href="#contact"],
  .main-nav > .nav-link[href="/iletisim.html"] {
    margin-top: 6px;
    border-color: rgba(255, 90, 31, 0.28);
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    box-shadow: 0 16px 34px rgba(255, 90, 31, 0.22);
  }

  .nav-item {
    position: static;
  }

  .mega-menu,
  .mini-menu {
    display: none;
  }

  .service-menu-item .service-mega {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .service-mega .mega-columns {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mega-group {
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .service-mega .mega-columns h3 {
    margin: 8px 4px 2px;
    padding-bottom: 0;
    border-bottom: 0;
    color: #8b9ab0;
    font-size: 0.68rem;
  }

  .service-mega .mega-columns a {
    min-height: 42px;
    padding: 8px 10px 8px 28px;
    border-color: rgba(229, 235, 242, 0.95);
    background: #fff;
  }

  .service-mega .mega-columns a::before {
    top: 17px;
    left: 12px;
    width: 6px;
    height: 6px;
    box-shadow: none;
  }

  .service-mega .mega-columns span {
    display: none;
  }

  .menu-check:checked ~ .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .menu-check:checked ~ .menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .hero-grid,
  .system-grid,
  .section-heading.split,
  .page-hero-grid,
  .feature-split,
  .article-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .page-hero-panel {
    min-height: 320px;
  }

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

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

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

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

  .hero h1 {
    font-size: 3.4rem;
  }

  .heading-copy {
    padding-top: 0;
  }

  .service-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(360px, auto);
    gap: 22px;
  }

  .performance-card,
  .media-card,
  .product-card,
  .social-card,
  .brand-card,
  .health-card {
    grid-column: auto;
  }

  .seo-card {
    grid-column: auto;
  }

  .process-top {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .process-shell {
    padding: 38px;
  }

  .process-grid article {
    min-height: 218px;
    padding: 20px;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid article:nth-child(2),
  .process-grid article:nth-child(4) {
    margin-top: 0;
  }

  .process-output {
    grid-template-columns: 1fr;
  }

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

  .platform-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .platform-card {
    flex: 0 1 158px;
    max-width: 176px;
  }

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

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

  .blog-card-featured,
  .blog-card-wide {
    grid-column: 1 / -1;
  }

  .blog-card-featured {
    grid-row: auto;
    min-height: 360px;
  }

  .process-grid article:not(:last-child)::after {
    display: none;
  }

  .case-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-topline {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    align-items: center;
    gap: 24px;
  }

  .footer-partners {
    justify-self: end;
  }

  .cta-shell {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .cta-proof {
    grid-column: auto;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .hero {
    padding: 54px 0 78px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 38px;
    align-items: center;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-text {
    max-width: 440px;
  }

  .hero-visual {
    min-height: 430px;
    padding-bottom: 92px;
  }

  .hero-photo {
    height: 330px;
  }

  .metric-row {
    left: 20px;
    right: 20px;
    bottom: 14px;
    gap: 14px;
  }

  .metric-card {
    min-height: 118px;
    padding: 15px;
  }

  .metric-icon {
    width: 27px;
    height: 27px;
    margin-bottom: 10px;
  }

  .metric-card strong {
    font-size: 1.45rem;
  }

  .metric-card p {
    font-size: 0.68rem;
  }
}

@media (min-width: 721px) and (max-width: 1080px) {
  .platform-card {
    flex: 0 0 calc((100% - 28px) / 3);
    max-width: none;
  }

  .platform-card img {
    width: min(152px, 78%);
  }
}

@media (max-width: 900px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-hero-visual {
    width: min(420px, 100%);
    min-height: 230px;
    margin-inline: auto;
  }

  .contact-layout,
  .contact-map-card {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 16px;
  }

  .contact-info-panel {
    position: relative;
    top: auto;
  }

  .contact-form-card {
    order: -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 28px);
  }

  section[id],
  .reference-block[id] {
    scroll-margin-top: 78px;
  }

  .header-shell {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo-image {
    width: 138px;
    max-height: 38px;
  }

  .brand-glyph {
    width: 28px;
    height: 28px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .lang-switch {
    min-height: 36px;
    padding: 2px;
  }

  .lang-option {
    min-width: 34px;
    min-height: 28px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    top: 0;
    left: auto;
    right: 0;
    padding-top: 82px;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 48px 0 44px;
  }

  .page-kicker {
    margin-inline: auto;
  }

  .page-hero h1,
  .page-lead {
    margin-inline: auto;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 2.28rem;
  }

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

  .page-hero-panel {
    min-height: 260px;
    text-align: center;
  }

  .page-hero-panel h2,
  .page-hero-panel p {
    margin-inline: auto;
  }

  .subpage-section {
    padding: 54px 0;
  }

  .contact-page-hero + .subpage-section.tight {
    padding-top: 16px;
  }

  .subpage-grid,
  .subpage-grid.two,
  .article-list {
    grid-template-columns: 1fr;
  }

  .stat-band,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-tile,
  .contact-card,
  .info-card,
  .article-card {
    padding: 20px;
  }

  .feature-copy {
    text-align: center;
  }

  .feature-copy h2 {
    margin-inline: auto;
    font-size: 1.82rem;
  }

  .feature-media {
    min-height: 270px;
  }

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

  .article-body {
    padding: 24px;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .contact-page-hero {
    text-align: center;
  }

  .contact-page-hero h1 {
    font-size: 2rem;
  }

  .contact-hero-copy .breadcrumb {
    justify-content: center;
    margin-bottom: 18px;
  }

  .contact-hero-visual {
    display: none;
  }

  .contact-form-card,
  .contact-info-panel,
  .contact-note-card,
  .map-details {
    padding: 22px;
  }

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

  .contact-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit-row p {
    text-align: center;
  }

  .map-visual {
    min-height: 230px;
  }

  .blog-section {
    padding: 0 0 66px;
  }

  .hero {
    padding: 38px 0 70px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy,
  .proof-row {
    text-align: center;
  }

  .pill,
  .hero h1,
  .hero-text,
  .proof-row {
    margin-inline: auto;
  }

  .hero h1 {
    font-size: 2.72rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-actions,
  .proof-row {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .proof-row p {
    max-width: 34rem;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-photo {
    height: 290px;
  }

  .metric-row {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .metric-card {
    min-height: 104px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    align-items: center;
    padding: 11px 8px;
    text-align: center;
  }

  .metric-icon {
    width: 25px;
    height: 25px;
    margin-bottom: 0;
    font-size: 0.78rem;
  }

  .metric-card strong {
    font-size: 1.34rem;
    line-height: 1;
  }

  .metric-card p {
    margin-top: 0;
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .platforms {
    padding: 34px 0 44px;
  }

  .platform-strip {
    gap: 12px;
    margin-top: 22px;
  }

  .platform-card {
    flex: 0 1 calc((100% - 36px) / 4);
    max-width: 150px;
    min-height: 90px;
    padding: 16px 10px;
  }

  .platform-card img {
    width: min(142px, 94%);
    height: 42px;
  }

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

  .section-heading h2,
  .system-copy h2,
  .process-shell h2,
  .cta-shell h2 {
    font-size: 2rem;
  }

  .service-board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .service-card {
    min-height: 335px;
  }

  .seo-card {
    grid-column: auto;
  }

  .reference-block {
    margin-top: 72px;
    padding-top: 42px;
  }

  .reference-head h2 {
    font-size: 1.7rem;
  }

  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px;
  }

  .reference-logo {
    min-height: 82px;
    padding: 16px 12px;
  }

  .reference-logo img {
    width: min(136px, 94%);
    height: 44px;
  }

  .performance-card {
    min-height: 455px;
  }

  .media-card {
    min-height: 385px;
  }

  .product-card,
  .social-card,
  .compact-card {
    min-height: 345px;
  }

  .service-content {
    inset: auto 20px 22px 20px;
  }

  .service-content h3 {
    font-size: 1.18rem;
  }

  .performance-card .service-content h3 {
    font-size: 1.35rem;
  }

  .performance-card .service-content p,
  .media-card .service-content p {
    max-width: 290px;
  }

  .system-photo {
    height: 310px;
  }

  .sector-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .process {
    padding: 44px 0 58px;
  }

  .process-shell {
    padding: 24px 14px;
  }

  .process-top {
    gap: 14px;
    margin-bottom: 22px;
    text-align: center;
  }

  .process-top h2 {
    margin-inline: auto;
    text-align: center;
    font-size: 1.72rem;
  }

  .process-top > p {
    max-width: 560px;
    margin-inline: auto;
    font-size: 0.84rem;
    line-height: 1.58;
  }

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

  .process-grid article {
    min-height: 176px;
    padding: 14px;
  }

  .process-number {
    display: flex;
    gap: 8px;
  }

  .process-number span {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }

  .process-number b {
    font-size: 0.64rem;
  }

  .process-grid h3 {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .process-grid p {
    margin-top: 8px;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .footer-topline {
    grid-template-columns: minmax(0, 1fr) minmax(146px, 0.86fr);
    gap: 16px;
    align-items: center;
  }

  .footer-logo .brand-logo-image {
    width: 148px;
    max-height: 38px;
  }

  .footer-partners {
    max-width: 220px;
    padding: 6px;
  }

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

  .footer-grid h3 {
    margin-bottom: 10px;
  }

  .footer-grid a,
  .footer-grid span {
    margin-top: 8px;
    font-size: 0.8rem;
  }

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

  .blog-card,
  .blog-card-featured {
    min-height: auto;
    padding: 22px;
  }

  .blog-card-featured h3 {
    font-size: 1.72rem;
  }

  .blog-card h3 {
    font-size: 1.22rem;
  }

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

  .case-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0.08));
  }

  .case-card img {
    grid-row: 1;
    height: 168px;
    min-height: 168px;
  }

  .case-content {
    grid-row: 1;
    min-height: 260px;
  }

  .case-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .cta-shell {
    padding: 28px 20px;
  }

  .cta-proof {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 2.34rem;
  }

  .section-heading h2,
  .system-copy h2,
  .process-shell h2,
  .cta-shell h2,
  .page-hero h1 {
    font-size: 1.72rem;
  }

  .platform-strip {
    gap: 12px;
  }

  .platform-card {
    flex-basis: calc((100% - 12px) / 2);
    max-width: 168px;
  }

  .platform-card img {
    width: min(124px, 92%);
  }

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

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .services .container {
    max-width: none;
  }

  .service-heading {
    max-width: none;
  }

  .service-heading h2 {
    max-width: none;
    font-size: 1.72rem;
    line-height: 1.08;
  }

  .service-heading > p:not(.section-label) {
    max-width: none;
    font-size: 0.9rem;
  }

  .service-content h3 {
    max-width: none;
    font-size: 1.08rem;
    line-height: 1.12;
  }

  .service-content p {
    max-width: none;
    font-size: 0.88rem;
  }

  .cta-shell,
  .process-shell,
  .service-card,
  .case-card {
    overflow: hidden;
  }

  .cta-shell h2 {
    max-width: 300px;
  }

  .hero h1 {
    font-size: clamp(1.86rem, 8.2vw, 2.06rem);
    line-height: 1.04;
  }

  .hero-text,
  .proof-row p {
    max-width: 100%;
  }

  .lang-switch {
    min-width: 76px;
  }

  .lang-option {
    min-width: 34px;
  }

  .reference-block {
    padding-top: 38px;
  }

  .reference-head h2 {
    font-size: 1.42rem;
  }

  .reference-logo {
    min-height: 76px;
    padding: 14px 10px;
  }

  .reference-logo img {
    width: min(126px, 94%);
    height: 40px;
  }

  .platform-strip {
    gap: 12px;
  }

  .platform-card {
    flex-basis: calc((100% - 12px) / 2);
    max-width: 170px;
  }

  .platform-card img {
    width: min(130px, 92%);
  }

  .section-heading h2,
  .system-copy h2,
  .process-shell h2,
  .cta-shell h2,
  .page-hero h1 {
    font-size: 1.58rem;
  }

  .stat-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: auto;
    grid-template-columns: 32px 58px 1fr;
    justify-items: start;
    gap: 10px;
    padding: 12px;
    text-align: left;
  }

  .metric-icon {
    width: 28px;
    height: 28px;
  }

  .metric-card strong {
    font-size: 1.28rem;
  }

  .metric-card p {
    font-size: 0.7rem;
  }

  .process-grid,
  .footer-topline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: auto;
    padding: 16px;
  }

  .process-grid p {
    font-size: 0.78rem;
  }

  .footer-partners {
    justify-self: stretch;
    max-width: none;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 1080px) {
  .blog-modern-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-hero-feature {
    min-height: 360px;
  }

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

  .blog-soft-cta-shell {
    grid-template-columns: 1fr;
  }

  .references-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 40px;
  }

  .references-world {
    min-height: 280px;
  }

  .references-page .reference-grid-50 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reference-sector-strip {
    grid-template-columns: 1fr;
  }

  .reference-sector-items div:first-child {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .blog-modern-hero {
    padding: 44px 0 34px;
  }

  .blog-modern-hero-grid {
    text-align: center;
  }

  .blog-modern-copy .breadcrumb,
  .blog-topic-strip {
    justify-content: center;
  }

  .blog-modern-copy .breadcrumb {
    margin-bottom: 24px;
  }

  .blog-eyebrow {
    margin-inline: auto;
  }

  .blog-modern-copy h1 {
    margin-inline: auto;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .blog-modern-copy > p:not(.blog-eyebrow) {
    margin-inline: auto;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .blog-hero-feature {
    min-height: 320px;
    padding: 22px;
    text-align: left;
  }

  .blog-hero-feature h2 {
    font-size: 1.42rem;
  }

  .blog-index-section {
    padding: 8px 0 54px;
  }

  .blog-section-head {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .blog-section-head h2 {
    font-size: 1.52rem;
  }

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

  .blog-card-media {
    height: 190px;
  }

  .blog-soft-cta {
    padding-bottom: 52px;
  }

  .blog-soft-cta-shell {
    justify-items: center;
    padding: 24px;
    text-align: center;
  }

  .blog-soft-cta-shell h2 {
    font-size: 1.42rem;
  }

  .references-hero {
    padding: 44px 0 34px;
  }

  .references-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .references-hero-copy .breadcrumb {
    justify-content: center;
    margin-bottom: 28px;
  }

  .references-hero h1 {
    margin-inline: auto;
    font-size: clamp(2.18rem, 10vw, 3rem);
  }

  .references-hero p {
    margin-inline: auto;
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .references-world {
    display: none;
  }

  .reference-logo-section {
    padding: 20px 0 36px;
  }

  .references-page .reference-grid-50 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .references-page .reference-logo {
    min-height: 104px;
    padding: 18px 12px;
  }

  .references-page .reference-logo img {
    width: min(138px, 94%);
    height: 48px;
  }

  .reference-sector-section {
    padding-bottom: 34px;
  }

  .reference-sector-strip {
    padding: 22px;
    text-align: center;
  }

  .reference-sector-strip h2 {
    margin-inline: auto;
    font-size: 1.12rem;
  }

  .reference-sector-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .reference-sector-items div {
    border: 1px solid rgba(229, 235, 242, 0.95);
    border-radius: 8px;
  }

  .reference-sector-photo-items div:last-child:nth-child(odd) {
    width: calc(50% - 6px);
    flex: 0 1 calc(50% - 6px);
    max-width: none;
    grid-column: 1 / -1;
    justify-self: center;
  }

  .reference-cta-section {
    padding-bottom: 48px;
  }

  .reference-cta-band {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    min-height: auto;
    padding: 28px 22px;
    text-align: center;
  }

  .reference-cta-band h2 {
    font-size: 1.28rem;
  }
}

@media (max-width: 1080px) and (min-width: 721px) {
  .reference-sector-photo-items div {
    flex-basis: 150px;
    max-width: 180px;
  }
}

@media (max-width: 1080px) {
  .about-hero-grid,
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero-visual {
    min-height: 420px;
  }

  .about-hero-visual > img {
    min-height: 420px;
  }

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

  .about-cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding: 44px 0 38px;
  }

  .about-hero-grid {
    gap: 26px;
    text-align: center;
  }

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

  .about-hero-copy .breadcrumb {
    margin-bottom: 24px;
  }

  .about-eyebrow {
    margin-inline: auto;
  }

  .about-hero h1 {
    margin-inline: auto;
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.03;
  }

  .about-hero-copy > p:not(.about-eyebrow) {
    margin-inline: auto;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .about-kpi-row {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .about-hero-visual {
    min-height: 320px;
  }

  .about-hero-visual > img {
    min-height: 320px;
  }

  .about-control-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    text-align: left;
  }

  .about-control-card strong {
    font-size: 1.18rem;
  }

  .about-control-card p {
    font-size: 0.82rem;
  }

  .about-mini-metric {
    display: none;
  }

  .about-focus-section,
  .about-split-section,
  .about-workflow-section {
    padding: 54px 0;
  }

  .about-section-head,
  .about-section-head.center {
    text-align: center;
  }

  .about-section-head h2,
  .about-dark-panel h2,
  .about-cta-band h2 {
    margin-inline: auto;
    font-size: 1.72rem;
  }

  .about-card-grid,
  .about-workflow-grid {
    grid-template-columns: 1fr;
  }

  .about-card-grid article,
  .about-workflow-grid article,
  .about-proof-stack article {
    min-height: auto;
    padding: 22px;
  }

  .about-dark-panel,
  .about-cta-band {
    padding: 26px 22px;
    text-align: center;
  }

  .about-dark-panel li {
    text-align: left;
  }

  .about-cta-band {
    justify-items: center;
  }
}

.ad-service-page {
  background:
    linear-gradient(180deg, #071225 0, #071225 620px, #f7fafc 620px, #fff 100%);
}

.ad-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 78px;
  background:
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--channel, #ff5a1f) 28%, transparent), transparent 32%),
    radial-gradient(circle at 14% 88%, rgba(255, 106, 19, 0.16), transparent 30%),
    linear-gradient(135deg, #071225 0%, #08223a 58%, #071225 100%);
  color: #fff;
}

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

.ad-service-page[data-channel="google"] {
  --channel: #4285f4;
  --channel-2: #ff5a1f;
}

.ad-service-page[data-channel="facebook"] {
  --channel: #1877f2;
  --channel-2: #ff5a1f;
}

.ad-service-page[data-channel="instagram"] {
  --channel: #e1306c;
  --channel-2: #f77737;
}

.ad-service-page[data-channel="linkedin"] {
  --channel: #0a66c2;
  --channel-2: #ff5a1f;
}

.ad-service-page[data-channel="x"] {
  --channel: #111827;
  --channel-2: #ff5a1f;
}

.ad-service-page[data-channel="tiktok"] {
  --channel: #00f2ea;
  --channel-2: #ff0050;
}

.ad-service-page[data-channel="yandex"] {
  --channel: #fc3f1d;
  --channel-2: #ffcc00;
}

.ad-service-page[data-channel="amazon"] {
  --channel: #ff9900;
  --channel-2: #146eb4;
}

.ad-service-page[data-channel="programmatic"] {
  --channel: #f97316;
  --channel-2: #0ea5e9;
}

.ad-service-page[data-channel="performance"] {
  --channel: #ff5a1f;
  --channel-2: #ff8a00;
}

.ad-service-page[data-channel="seo"] {
  --channel: #14b86a;
  --channel-2: #4285f4;
}

.ad-service-page[data-channel="geo"] {
  --channel: #8b5cf6;
  --channel-2: #00d4ff;
}

.ad-service-page[data-channel="aso"] {
  --channel: #0ea5e9;
  --channel-2: #22c55e;
}

.ad-service-page[data-channel="web-analytics"] {
  --channel: #22c55e;
  --channel-2: #0ea5e9;
}

.ad-service-page[data-channel="mobile-analytics"] {
  --channel: #06b6d4;
  --channel-2: #8b5cf6;
}

.ad-service-page[data-channel="video"] {
  --channel: #ef4444;
  --channel-2: #f97316;
}

.ad-service-page[data-channel="social"] {
  --channel: #e1306c;
  --channel-2: #8b5cf6;
}

.ad-service-page[data-channel="web"] {
  --channel: #0ea5e9;
  --channel-2: #ff5a1f;
}

.ad-service-page[data-channel="brand"] {
  --channel: #111827;
  --channel-2: #ff5a1f;
}

.ad-service-page[data-channel="training"] {
  --channel: #14b86a;
  --channel-2: #ff5a1f;
}

.ad-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  gap: 56px;
  align-items: center;
  min-height: 640px;
}

.ad-hero .breadcrumb {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
}

.ad-hero .breadcrumb a {
  color: #ffb38a;
}

.ad-kicker {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--channel, #ff5a1f) 42%, rgba(255, 255, 255, 0.2));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.ad-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.ad-hero h1 span {
  color: color-mix(in srgb, var(--channel, #ff5a1f) 66%, #fff);
}

.ad-hero-copy > p:not(.ad-kicker) {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.76;
}

.ad-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ad-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.ad-proof-row div {
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.ad-proof-row strong {
  display: block;
  color: #fff;
  font-size: 1.72rem;
  font-weight: 900;
}

.ad-proof-row span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
}

.ad-stream-shell {
  position: relative;
  height: 640px;
  overflow: hidden;
  border-radius: 8px;
  mask-image: linear-gradient(180deg, transparent, #000 11%, #000 89%, transparent);
}

.ad-stream-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.05));
}

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

.ad-stream-column {
  min-width: 0;
}

.ad-stream-track {
  display: grid;
  gap: 16px;
  will-change: transform;
}

.ad-stream-track.up {
  animation: adStreamUp 30s linear infinite;
}

.ad-stream-track.down {
  transform: translateY(-50%);
  animation: adStreamDown 34s linear infinite;
}

.ad-stream-shell:hover .ad-stream-track,
.ad-stream-shell:focus-within .ad-stream-track {
  animation-play-state: paused;
}

.ad-stream-card {
  min-height: 176px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--channel, #ff5a1f) 22%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.ad-stream-card:nth-child(2n) {
  background:
    radial-gradient(circle at 8% 12%, color-mix(in srgb, var(--channel-2, #ff5a1f) 18%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.07);
}

.ad-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.ad-card-top span,
.ad-stream-card small {
  color: color-mix(in srgb, var(--channel, #ff5a1f) 64%, #fff);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-card-top img {
  width: 76px;
  height: 34px;
  object-fit: contain;
  padding: 5px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
}

.ad-card-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: #071225;
  font-size: 1.04rem;
  font-weight: 900;
}

.ad-stream-card strong {
  display: block;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.18;
}

.ad-stream-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.52;
}

@keyframes adStreamUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes adStreamDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.ad-section {
  padding: 76px 0;
  background: #fff;
}

.ad-section.muted {
  background: #f7fafc;
}

.ad-section.dark {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 106, 19, 0.14), transparent 30%),
    #071225;
  color: #fff;
}

.ad-section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.ad-section-head.center {
  margin-inline: auto;
  text-align: center;
}

.ad-section-head h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 2.36rem;
  font-weight: 900;
  line-height: 1.12;
}

.ad-section.dark .ad-section-head h2 {
  color: #fff;
}

.ad-section-head p:not(.section-label) {
  margin-top: 12px;
  color: #5b6a7e;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.72;
}

.ad-section.dark .ad-section-head p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.ad-process-grid,
.ad-model-grid,
.ad-faq-grid {
  display: grid;
  gap: 16px;
}

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

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

.ad-process-grid article,
.ad-model-grid article,
.ad-faq-grid details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 235, 242, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(17, 25, 54, 0.07);
}

.ad-process-grid article {
  min-height: 244px;
  padding: 24px;
}

.ad-process-grid article::before,
.ad-model-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--channel, #ff5a1f), var(--channel-2, #ff8a00));
}

.ad-process-grid span,
.ad-model-grid span {
  color: var(--channel, #ff5a1f);
  font-size: 0.78rem;
  font-weight: 900;
}

.ad-process-grid h3,
.ad-model-grid h3 {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.ad-process-grid p,
.ad-model-grid p {
  margin-top: 12px;
  color: #5b6a7e;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.64;
}

.ad-model-grid article {
  min-height: 238px;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--channel, #ff5a1f) 9%, transparent), transparent 32%),
    #fff;
}

.ad-proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(229, 235, 242, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 25, 54, 0.07);
}

.ad-proof-band h2 {
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.ad-proof-band p {
  margin-top: 12px;
  color: #5b6a7e;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.68;
}

.ad-mini-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ad-mini-logo-grid figure {
  min-height: 86px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(229, 235, 242, 0.9);
  border-radius: 8px;
  background: #f8fafc;
}

.ad-mini-logo-grid img {
  width: min(118px, 94%);
  height: 42px;
  object-fit: contain;
}

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

.ad-faq-grid details {
  padding: 20px 22px;
}

.ad-faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.ad-faq-grid p {
  margin-top: 12px;
  color: #5b6a7e;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.66;
}

.ad-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--channel, #ff5a1f) 22%, transparent), transparent 28%),
    linear-gradient(135deg, #071225, #0d2038);
  box-shadow: 0 24px 70px rgba(7, 18, 37, 0.18);
}

.ad-cta-band h2 {
  max-width: 720px;
  color: #fff;
  font-size: 2.16rem;
  font-weight: 900;
}

.ad-cta-band p {
  max-width: 640px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.68;
}

@media (max-width: 1080px) {
  .ad-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .ad-stream-shell {
    height: 430px;
  }

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

  .ad-proof-band,
  .ad-cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ad-hero {
    padding: 44px 0 52px;
  }

  .ad-hero-grid,
  .ad-hero-copy {
    text-align: center;
  }

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

  .ad-kicker,
  .ad-hero h1,
  .ad-hero-copy > p:not(.ad-kicker) {
    margin-inline: auto;
  }

  .ad-hero h1 {
    font-size: clamp(2.12rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .ad-hero-copy > p:not(.ad-kicker) {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .ad-proof-row,
  .ad-process-grid,
  .ad-model-grid,
  .ad-faq-grid {
    grid-template-columns: 1fr;
  }

  .ad-proof-row {
    max-width: 360px;
    margin-inline: auto;
  }

  .ad-stream-shell {
    height: 330px;
    margin-top: 8px;
  }

  .ad-stream-columns {
    grid-template-columns: 1fr;
  }

  .ad-stream-column:nth-child(2) {
    display: none;
  }

  .ad-stream-card {
    min-height: 142px;
    padding: 18px;
    text-align: left;
  }

  .ad-card-top img {
    width: 68px;
    height: 32px;
  }

  .ad-section {
    padding: 54px 0;
  }

  .ad-section-head,
  .ad-section-head.center {
    text-align: center;
  }

  .ad-section-head h2,
  .ad-proof-band h2,
  .ad-cta-band h2 {
    font-size: 1.68rem;
  }

  .ad-process-grid article,
  .ad-model-grid article {
    min-height: auto;
    padding: 22px;
  }

  .ad-proof-band,
  .ad-cta-band {
    padding: 24px;
    text-align: center;
  }

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

  .ad-cta-band {
    justify-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ad-stream-track,
  .ad-stream-track.up,
  .ad-stream-track.down {
    animation: none !important;
    transform: none !important;
  }

  .ad-stream-shell {
    height: auto;
    overflow: visible;
    mask-image: none;
  }

  .ad-stream-track .ad-stream-card[aria-hidden="true"] {
    display: none;
  }
}

/* 2026-05 site polish: shared typography, nav, footer and mobile refinements */
.hero h1 {
  font-size: clamp(2.75rem, 4.6vw, 3.95rem);
  line-height: 1.05;
}

.page-hero h1,
.contact-page-hero h1,
.references-hero h1,
.blog-modern-copy h1,
.about-hero h1,
.ad-hero h1 {
  font-size: clamp(2.35rem, 4.25vw, 3.55rem);
  line-height: 1.06;
}

.section-heading h2,
.system-copy h2,
.process-shell h2,
.service-heading h2,
.page-section-head h2,
.blog-section-head h2,
.about-section-head h2,
.ad-section-head h2 {
  font-size: clamp(1.72rem, 3vw, 2.42rem);
  line-height: 1.12;
}

.about-dark-panel h2,
.about-cta-band h2,
.blog-soft-cta-shell h2,
.ad-proof-band h2,
.ad-cta-band h2 {
  font-size: clamp(1.72rem, 3vw, 2.34rem);
  line-height: 1.12;
}

.lang-switch {
  gap: 2px;
  min-height: 38px;
  padding: 2px;
  border: 1px solid #d8e0ea;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.lang-option {
  min-width: 38px;
  min-height: 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: #7a8798;
}

.lang-option.is-active {
  border-color: rgba(255, 90, 31, 0.48);
  background: #fff;
  color: var(--ink);
}

.site-footer .footer-brand {
  display: grid;
  gap: 14px;
}

.site-footer .footer-brand p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.62;
}

.site-footer .footer-grid {
  align-items: start;
}

.site-footer .footer-grid > div {
  min-width: 0;
}

.site-footer .footer-grid a,
.site-footer .footer-grid span {
  line-height: 1.45;
}

.about-refined-page .about-clarity-head {
  max-width: 900px;
}

.about-refined-page .about-clarity-head > p:not(.section-label) {
  max-width: 760px;
  margin-top: 12px;
  color: #5b6a7e;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.72;
}

.about-refined-page .about-service-map article {
  min-height: 250px;
}

.about-refined-page .about-proof-stack article {
  display: grid;
  align-content: center;
  min-height: 172px;
}

.blog-refined-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 90, 31, 0.1), transparent 26%),
    linear-gradient(180deg, #fff, #f8fafc 74%, #fff);
}

.blog-refined-hero .blog-hero-feature {
  border-color: rgba(229, 235, 242, 0.92);
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 18, 37, 0.1);
}

.blog-refined-hero .blog-hero-feature::after {
  opacity: 0.7;
}

.blog-editorial-strip {
  padding: 0 0 26px;
}

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

.blog-editorial-shell div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(229, 235, 242, 0.94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 18, 37, 0.06);
}

.blog-editorial-shell strong {
  color: var(--ink);
  font-size: 1.62rem;
  font-weight: 900;
}

.blog-editorial-shell span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-refined-list .blog-index-card {
  border-color: rgba(229, 235, 242, 0.94);
  background: #fff;
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

@media (max-width: 1080px) {
  .header-shell {
    min-height: 68px;
    gap: 14px;
  }

  .brand-logo-image {
    width: 158px;
    max-height: 40px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(7, 18, 37, 0.08);
  }

  .main-nav {
    width: min(94vw, 420px);
    padding: 82px 18px 28px;
    gap: 9px;
    border-left: 1px solid rgba(229, 235, 242, 0.96);
    border-radius: 18px 0 0 18px;
    background:
      linear-gradient(180deg, #fff, #f8fafc);
    box-shadow: -28px 0 74px rgba(7, 18, 37, 0.22);
  }

  .main-nav::before {
    content: "Menü";
    display: block;
    margin: -42px 2px 12px;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
  }

  .menu-scrim {
    inset: 0 min(94vw, 420px) 0 0;
    background: rgba(7, 18, 37, 0.54);
    backdrop-filter: blur(4px);
  }

  .main-nav a {
    min-height: 48px;
    padding: 0 14px;
    border-color: rgba(229, 235, 242, 0.94);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(7, 18, 37, 0.04);
  }

  .service-menu-item > .nav-link {
    border-color: rgba(7, 18, 37, 0.12);
    background: var(--ink);
    color: #fff;
  }

  .service-mega .mega-columns {
    gap: 10px;
  }

  .service-mega .mega-columns h3 {
    margin: 12px 4px 5px;
    color: var(--orange);
    font-size: 0.7rem;
  }

  .service-mega .mega-columns a {
    min-height: 43px;
    padding: 8px 10px 8px 28px;
    border-radius: 11px;
    background: #fff;
  }

  .service-mega .mega-columns strong {
    font-size: 0.78rem;
  }

  .main-nav > .nav-link[href="/iletisim.html"] {
    min-height: 50px;
    margin-top: 6px;
    border-color: rgba(255, 90, 31, 0.38);
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    box-shadow: 0 16px 34px rgba(255, 90, 31, 0.22);
  }

  .footer-topline {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr);
  }

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

  .ad-stream-shell,
  .about-hero-visual,
  .blog-hero-feature {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero h1,
  .page-hero h1,
  .contact-page-hero h1,
  .references-hero h1,
  .blog-modern-copy h1,
  .about-hero h1,
  .ad-hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.48rem);
    line-height: 1.08;
  }

  .section-heading h2,
  .system-copy h2,
  .process-shell h2,
  .service-heading h2,
  .page-section-head h2,
  .blog-section-head h2,
  .about-section-head h2,
  .ad-section-head h2,
  .about-dark-panel h2,
  .about-cta-band h2,
  .blog-soft-cta-shell h2,
  .ad-proof-band h2,
  .ad-cta-band h2 {
    font-size: clamp(1.42rem, 6vw, 1.78rem);
    line-height: 1.14;
  }

  .about-kpi-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 8px;
  }

  .about-kpi-row div {
    min-height: 76px;
    padding: 12px 8px;
  }

  .about-kpi-row strong {
    font-size: 1.25rem;
  }

  .about-kpi-row span {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .blog-editorial-shell {
    grid-template-columns: 1fr;
  }

  .blog-editorial-shell div {
    min-height: auto;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
  }

  .blog-editorial-shell strong {
    font-size: 1.42rem;
  }

  .footer-topline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }

  .footer-partners {
    max-width: none;
  }

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

@media (max-width: 420px) {
  .brand-logo-image {
    width: 142px;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-switch {
    min-width: 68px;
  }

  .lang-option {
    min-width: 30px;
    font-size: 0.66rem;
  }

  .main-nav {
    width: min(94vw, 360px);
    padding-inline: 14px;
  }

  .menu-scrim {
    inset: 0 min(94vw, 360px) 0 0;
  }

  .footer-grid a,
  .footer-grid span {
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .about-kpi-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .menu-check:checked ~ .main-nav,
  .header-shell:has(.menu-check:checked) .main-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
    transition: none !important;
  }

  .menu-check:checked ~ .menu-scrim,
  .header-shell:has(.menu-check:checked) .menu-scrim {
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none !important;
  }
}

/* Final display-scale pass: calmer, more premium headline rhythm */
.hero h1 {
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  font-weight: 850;
  line-height: 1.07;
}

.page-hero h1,
.contact-page-hero h1,
.references-hero h1,
.blog-modern-copy h1,
.about-hero h1,
.ad-hero h1 {
  font-size: clamp(2.1rem, 3.5vw, 3.18rem);
  font-weight: 850;
  line-height: 1.08;
}

.section-heading h2,
.system-copy h2,
.process-shell h2,
.service-heading h2,
.page-section-head h2,
.blog-section-head h2,
.about-section-head h2,
.ad-section-head h2,
.about-dark-panel h2,
.about-cta-band h2,
.blog-soft-cta-shell h2,
.ad-proof-band h2,
.ad-cta-band h2 {
  font-weight: 850;
}

@media (max-width: 720px) {
  .hero h1,
  .page-hero h1,
  .contact-page-hero h1,
  .references-hero h1,
  .blog-modern-copy h1,
  .about-hero h1,
  .ad-hero h1 {
    font-size: clamp(1.72rem, 6.6vw, 2.05rem);
    line-height: 1.1;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .page-hero h1,
  .contact-page-hero h1,
  .references-hero h1,
  .blog-modern-copy h1,
  .about-hero h1,
  .ad-hero h1 {
    font-size: clamp(1.62rem, 6.4vw, 1.95rem);
  }
}

/* Premium category pages and 21st-style static components */
.premium-index-page {
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 42%, #ffffff 100%);
  overflow: hidden;
}

.premium-hero {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0 clamp(54px, 7vw, 96px);
  border-bottom: 1px solid rgba(12, 28, 46, 0.08);
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 90, 31, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(10, 28, 46, 0.035) 0 1px, transparent 1px 78px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
}

.premium-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.premium-hero-copy {
  max-width: 720px;
}

.premium-kicker {
  display: inline-flex;
  margin: 22px 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
}

.premium-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.07;
  font-weight: 850;
  letter-spacing: 0;
}

.premium-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.72;
}

.premium-hero-actions,
.premium-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.premium-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.premium-section-head {
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.premium-section-head h2 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.72rem, 3vw, 2.55rem);
  line-height: 1.13;
  font-weight: 850;
}

.premium-section-head p:not(.section-label) {
  max-width: 440px;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.premium-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 380px;
  padding: 22px;
  border: 1px solid rgba(12, 28, 46, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, #0b1b31 0%, #102542 52%, #07111f 100%);
  box-shadow: 0 30px 90px rgba(9, 27, 49, 0.2);
  overflow: hidden;
}

.premium-orbit::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.orbit-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  backdrop-filter: blur(10px);
}

.orbit-card.is-main {
  grid-row: span 2;
  min-height: 314px;
  background:
    linear-gradient(155deg, rgba(255, 90, 31, 0.9), rgba(255, 123, 36, 0.42)),
    rgba(255, 255, 255, 0.06);
}

.orbit-card strong {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 900;
}

.orbit-card span {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.orbit-line {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 52%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  animation: premium-scan 4.8s ease-in-out infinite;
}

.growth-map-panel {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(12, 28, 46, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 90, 31, 0.24), transparent 34%),
    radial-gradient(circle at 86% 74%, rgba(37, 99, 235, 0.18), transparent 36%),
    linear-gradient(145deg, #0b1b31 0%, #102542 52%, #07111f 100%);
  box-shadow: 0 30px 90px rgba(9, 27, 49, 0.2);
  overflow: hidden;
}

.growth-map-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.growth-map-core,
.growth-map-node {
  position: relative;
  z-index: 1;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.growth-map-core {
  grid-row: span 2;
  min-height: 284px;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(155deg, rgba(255, 90, 31, 0.88), rgba(255, 123, 36, 0.38)),
    rgba(255, 255, 255, 0.06);
}

.visibility-map .growth-map-core {
  background:
    linear-gradient(155deg, rgba(124, 58, 237, 0.86), rgba(37, 99, 235, 0.38)),
    rgba(255, 255, 255, 0.06);
}

.growth-map-core span,
.growth-map-node span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
}

.growth-map-core strong {
  display: block;
  max-width: 100%;
  color: #fff;
  font-size: clamp(1.22rem, 2.05vw, 1.72rem);
  line-height: 1.08;
  font-weight: 900;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.growth-map-node strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.16;
  font-weight: 850;
}

.premium-segment-row {
  position: sticky;
  top: 78px;
  z-index: 5;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: max-content;
  max-width: 100%;
  margin: 0 auto clamp(34px, 5vw, 58px);
  padding: 8px;
  border: 1px solid rgba(12, 28, 46, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(10, 28, 46, 0.08);
  backdrop-filter: blur(14px);
}

.premium-segment-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.premium-segment-row a:hover,
.premium-segment-row a:focus-visible {
  background: var(--ink);
  color: #fff;
}

.premium-group-block {
  padding: clamp(28px, 4vw, 42px) 0;
}

.premium-group-head {
  display: grid;
  grid-template-columns: auto minmax(0, 0.72fr) minmax(320px, 0.48fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.premium-group-head > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
}

.premium-group-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.12;
  font-weight: 850;
}

.premium-group-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.premium-bento-grid,
.platform-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

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

.premium-service-card {
  position: relative;
  isolation: isolate;
  min-height: 214px;
  padding: 20px;
  border: 1px solid rgba(12, 28, 46, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(10, 28, 46, 0.08);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.premium-service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.2), rgba(10, 28, 46, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 90, 31, 0.08));
  transition: opacity 0.28s ease;
}

.premium-service-card:hover,
.premium-service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.24);
  box-shadow: 0 26px 70px rgba(10, 28, 46, 0.13);
}

.premium-service-card:hover::before,
.premium-service-card:focus-visible::before {
  opacity: 1;
}

.premium-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid rgba(12, 28, 46, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(10, 28, 46, 0.08);
}

.premium-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.premium-card-icon span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.premium-service-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
}

.premium-service-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.22;
  font-weight: 850;
}

.premium-service-card p {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.premium-service-card em {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 850;
}

.premium-stack-section {
  padding: clamp(62px, 8vw, 112px) 0;
  background:
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.service-stack-section {
  border-top: 1px solid rgba(12, 28, 46, 0.08);
  border-bottom: 1px solid rgba(12, 28, 46, 0.08);
}

.premium-stack-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.premium-stack-copy {
  position: sticky;
  top: 112px;
}

.premium-stack-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.72rem, 3vw, 2.52rem);
  line-height: 1.12;
  font-weight: 850;
}

.premium-stack-copy p:not(.section-label) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.72;
}

.premium-stack-list {
  display: grid;
  gap: 16px;
}

.premium-stack-card {
  position: sticky;
  top: calc(98px + (var(--i) * 18px));
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(12, 28, 46, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(10, 28, 46, 0.12);
}

.premium-stack-card:nth-child(2) {
  background: #fff8f4;
}

.premium-stack-card:nth-child(3) {
  background: #f5f8ff;
}

.premium-stack-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
}

.premium-stack-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.24;
}

.premium-stack-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.premium-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.94), rgba(255, 122, 36, 0.78)),
    #0b1b31;
  color: #fff;
  box-shadow: 0 28px 86px rgba(255, 90, 31, 0.2);
}

.premium-cta-band h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.58rem, 3vw, 2.28rem);
  line-height: 1.16;
}

.premium-cta-band p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.64;
}

.premium-cta-band .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.platform-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.platform-bubble {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 16px 10px;
  border: 1px solid rgba(12, 28, 46, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: 0 22px 58px rgba(10, 28, 46, 0.08);
  transform: translateY(calc((var(--i) % 3) * 8px));
  animation: premium-float 5.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.42s);
}

.platform-bubble img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.platform-bubble > span:first-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange);
  font-weight: 900;
}

.platform-bubble > span:last-child {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
  text-align: center;
}

.visibility-model {
  display: grid;
  gap: 16px;
}

.visibility-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(12, 28, 46, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 64px rgba(10, 28, 46, 0.08);
  transform: translateX(calc(var(--i) * 20px));
}

.visibility-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.visibility-card strong {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: 850;
}

.visibility-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-hours-section {
  padding-top: 28px;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 20px;
  align-items: stretch;
}

.contact-location-card,
.working-hours-card {
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(12, 28, 46, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(10, 28, 46, 0.08);
}

.contact-location-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.1);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
}

.contact-location-card h2,
.working-hours-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.86rem);
  line-height: 1.18;
  font-weight: 850;
}

.contact-location-card p {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.68;
}

.working-hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.working-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(12, 28, 46, 0.08);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 0.9rem;
}

.working-hours-list strong {
  color: var(--ink);
  font-size: 0.88rem;
  white-space: nowrap;
}

@keyframes premium-scan {
  0%, 100% { transform: translateX(-18%); opacity: 0.46; }
  50% { transform: translateX(18%); opacity: 0.9; }
}

@keyframes premium-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (max-width: 1080px) {
  .premium-hero-grid,
  .premium-stack-grid,
  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .premium-orbit,
  .platform-cloud,
  .visibility-model {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .premium-bento-grid,
  .platform-card-grid,
  .platform-card-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-group-head {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .premium-group-head p {
    grid-column: 2;
  }

  .premium-stack-copy {
    position: static;
  }

  .premium-stack-card {
    top: calc(88px + (var(--i) * 14px));
  }

  .visibility-card {
    transform: none;
  }
}

@media (max-width: 720px) {
  .premium-hero {
    padding: 56px 0 42px;
  }

  .premium-hero h1 {
    font-size: clamp(1.78rem, 7vw, 2.18rem);
    line-height: 1.1;
  }

  .premium-hero p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .premium-hero-actions {
    align-items: stretch;
  }

  .premium-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .premium-orbit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: auto;
    padding: 14px;
    border-radius: 22px;
  }

  .orbit-card,
  .orbit-card.is-main {
    grid-row: auto;
    min-height: 112px;
    padding: 14px;
  }

  .orbit-card strong {
    font-size: 1.42rem;
  }

  .orbit-card span {
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .premium-segment-row {
    position: relative;
    top: auto;
    justify-content: center;
    width: 100%;
    border-radius: 22px;
  }

  .premium-segment-row a {
    flex: 1 1 calc(50% - 8px);
    min-width: 128px;
  }

  .premium-group-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .premium-group-head p {
    grid-column: auto;
  }

  .premium-bento-grid,
  .platform-card-grid,
  .platform-card-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .premium-service-card {
    min-height: 206px;
    padding: 16px;
    border-radius: 18px;
  }

  .premium-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .premium-service-card strong {
    font-size: 0.94rem;
  }

  .premium-service-card p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .premium-service-card em {
    left: 16px;
    right: 16px;
    font-size: 0.76rem;
  }

  .premium-stack-card {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 18px;
  }

  .premium-cta-band {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .platform-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .platform-bubble {
    min-height: 104px;
    animation: none;
    transform: none;
  }

  .working-hours-list li {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.84rem;
  }
}

@media (max-width: 360px) {
  .premium-orbit,
  .premium-bento-grid,
  .platform-card-grid,
  .platform-card-grid.compact,
  .platform-cloud {
    grid-template-columns: 1fr;
  }

  .premium-segment-row a {
    flex-basis: 100%;
  }

  .premium-service-card {
    min-height: 176px;
  }

  .working-hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-line,
  .platform-bubble {
    animation: none !important;
  }

  .premium-service-card,
  .platform-bubble {
    transition: none !important;
    transform: none !important;
  }
}

/* Final shared navigation and mobile polish */
.service-mega-grid {
  grid-template-columns: minmax(230px, 1.18fr) minmax(230px, 1.12fr) minmax(210px, 0.95fr) minmax(210px, 0.95fr);
}

.lang-switch {
  border: 1px solid rgba(12, 28, 46, 0.16);
  background: #fff;
  box-shadow: none;
}

.lang-option {
  border: 1px solid transparent;
  background: transparent;
}

.lang-option.is-active {
  border-color: rgba(12, 28, 46, 0.24);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.premium-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: 8px 32px;
  align-items: end;
}

.premium-section-head .section-label {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1080px) {
  .site-header:has(.menu-check:checked) {
    z-index: 1000;
    backdrop-filter: none;
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(90vw, 390px) !important;
    height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 84px 16px 28px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
    background:
      linear-gradient(180deg, rgba(8, 18, 32, 0.98), rgba(6, 13, 24, 0.98)) !important;
    box-shadow: -30px 0 90px rgba(6, 13, 24, 0.34) !important;
    overflow-y: auto !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(102%) !important;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease !important;
  }

  .menu-check:checked ~ .main-nav,
  .header-shell:has(.menu-check:checked) .main-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
    transition: transform 0.28s ease, opacity 0.28s ease !important;
  }

  .menu-scrim {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(3, 8, 16, 0.58) !important;
    backdrop-filter: blur(8px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.24s ease !important;
  }

  .menu-check:checked ~ .menu-scrim,
  .header-shell:has(.menu-check:checked) .menu-scrim {
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: opacity 0.24s ease !important;
  }

  .main-nav > .nav-link,
  .main-nav > .nav-item > .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    font-size: 0.94rem !important;
    font-weight: 850 !important;
  }

  .main-nav > .nav-link[href="/iletisim.html"] {
    border-color: rgba(255, 90, 31, 0.46) !important;
    background: linear-gradient(135deg, var(--orange), var(--orange-2)) !important;
    box-shadow: 0 16px 36px rgba(255, 90, 31, 0.22) !important;
  }

  .service-menu-item {
    display: grid !important;
    gap: 10px !important;
  }

  .service-menu-item .service-mega {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .service-mega-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .service-mega .mega-group {
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.055) !important;
  }

  .service-mega .mega-group h3 {
    margin: 0 0 8px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.72rem !important;
  }

  .service-mega .mega-group a {
    display: grid !important;
    gap: 3px !important;
    min-height: 44px !important;
    padding: 10px 10px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: transparent !important;
    color: #fff !important;
  }

  .service-mega .mega-group a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .service-mega .mega-group a strong {
    color: #fff !important;
    font-size: 0.86rem !important;
  }

  .service-mega .mega-group a span {
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 0.76rem !important;
    line-height: 1.32 !important;
  }
}

@media (max-width: 720px) {
  .premium-section-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  .contact-side,
  .contact-form-card {
    min-width: 0;
  }
}

/* Clean shared footer */
.site-footer.simple-footer {
  padding-bottom: 24px;
  background:
    radial-gradient(circle at 12% 0, rgba(255, 90, 31, 0.12), transparent 30%),
    linear-gradient(145deg, #07111f, #071827 58%, #050b14);
}

.simple-footer .footer-shell {
  padding-top: 38px;
}

.simple-footer .footer-topline {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
  gap: 28px;
  align-items: center;
  padding-bottom: 26px;
}

.simple-footer .footer-brand {
  gap: 12px;
}

.simple-footer .footer-brand p {
  max-width: 640px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.62;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.footer-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 850;
}

.footer-cta-mini {
  display: grid;
  gap: 12px;
  justify-self: end;
  width: 100%;
  max-width: 310px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-cta-mini > span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-cta-mini a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.footer-cta-mini a span {
  color: var(--orange);
}

.footer-social-links,
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-cta-mini .footer-social-links {
  padding-top: 2px;
}

.footer-cta-mini .footer-social-links a,
.contact-social-links a {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.footer-cta-mini .footer-social-links a:hover,
.footer-cta-mini .footer-social-links a:focus-visible,
.contact-social-links a:hover,
.contact-social-links a:focus-visible {
  border-color: rgba(255, 107, 0, 0.65);
  background: rgba(255, 107, 0, 0.18);
  color: #fff;
}

.footer-social-links svg,
.contact-social-links svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.form-success {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 184, 116, 0.42);
  border-radius: 8px;
  background: rgba(20, 184, 116, 0.12);
  color: #dfffee;
  font-weight: 800;
}

.simple-footer .footer-grid {
  grid-template-columns: minmax(260px, 1.18fr) minmax(180px, 0.72fr) minmax(240px, 0.96fr);
  gap: 28px;
  padding-top: 28px;
}

.simple-footer .footer-grid h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.simple-footer .footer-grid a,
.simple-footer .footer-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.84rem;
  line-height: 1.48;
}

.simple-footer .footer-grid a:hover,
.simple-footer .footer-grid a:focus-visible {
  color: #fff;
}

.simple-footer .footer-contact span {
  max-width: 310px;
}

.simple-footer .footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
}

@media (max-width: 1080px) {
  .simple-footer .footer-topline {
    grid-template-columns: 1fr;
  }

  .footer-cta-mini {
    justify-self: stretch;
    max-width: none;
  }

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

@media (max-width: 720px) {
  .simple-footer .footer-shell {
    padding-top: 30px;
  }

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

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

  .simple-footer .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .simple-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .simple-footer .footer-contact {
    grid-column: auto;
  }

  .footer-badges {
    gap: 7px;
  }

  .footer-badges span {
    font-size: 0.68rem;
  }
}

/* 2026-05 final sizing and card rhythm pass */
.hero h1,
.page-hero h1,
.contact-page-hero h1,
.references-hero h1,
.blog-modern-copy h1,
.about-hero h1,
.ad-hero h1,
.premium-hero h1 {
  font-size: clamp(1.58rem, 2.05vw, 2.08rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading h2,
.system-copy h2,
.process-shell h2,
.service-heading h2,
.page-section-head h2,
.blog-section-head h2,
.about-section-head h2,
.ad-section-head h2,
.premium-section-head h2,
.premium-group-head h2,
.premium-stack-copy h2,
.process-top h2,
.reference-head h2,
.reference-extra-head h2,
.page-hero-panel h2,
.info-card h2,
.feature-copy h2,
.blog-hero-feature h2,
.about-dark-panel h2,
.about-cta-band h2,
.blog-soft-cta-shell h2,
.ad-proof-band h2,
.ad-cta-band h2,
.premium-cta-band h2,
.cta-shell h2,
.contact-location-card h2,
.working-hours-card h2,
.reference-sector-strip h2,
.reference-cta-band h2,
.article-body h2 {
  font-size: clamp(1.08rem, 1.38vw, 1.38rem);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: 0;
}

.ad-proof-row {
  gap: 8px;
  max-width: 590px;
  margin-top: 24px;
}

.ad-proof-row div {
  min-height: 74px;
  padding: 12px;
  border-radius: 10px;
}

.ad-proof-row strong {
  font-size: 0.84rem;
  line-height: 1.16;
}

.ad-proof-row span {
  margin-top: 5px;
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 750;
}

.premium-index-page .premium-service-card {
  min-height: 176px;
  padding: 20px;
  border-radius: 18px;
}

.premium-service-card .premium-card-icon {
  display: none;
}

.premium-index-page .premium-service-card small {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin-bottom: 12px;
  padding: 0 9px;
  border: 1px solid rgba(255, 90, 31, 0.16);
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.08);
  color: #d94b16;
  font-size: 0.68rem;
}

.premium-index-page .premium-service-card strong {
  font-size: 0.95rem;
  line-height: 1.18;
}

.premium-index-page .premium-service-card p {
  font-size: 0.86rem;
  line-height: 1.55;
}

.premium-stack-card {
  position: relative;
  top: auto;
  min-height: 0;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 16px 46px rgba(10, 28, 46, 0.08);
}

.premium-stack-card > span {
  display: none;
}

.premium-stack-card h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.premium-stack-card p {
  font-size: 0.88rem;
  line-height: 1.56;
}

.contact-info-panel h2,
.contact-form-head h2,
.map-details h2,
.contact-card-title h2 {
  font-size: clamp(1.1rem, 1.55vw, 1.42rem);
  line-height: 1.18;
}

.contact-service-shortcuts .platform-card-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.contact-service-shortcuts .premium-service-card {
  min-height: 260px;
  padding: 20px;
}

.contact-service-shortcuts .premium-service-card strong {
  font-size: 1.02rem;
}

.contact-service-shortcuts .premium-service-card p {
  font-size: 0.88rem;
}

.service-stack-section .premium-stack-copy {
  position: static;
}

.service-stack-section .premium-stack-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.service-stack-section .premium-stack-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-stack-section .premium-stack-card {
  position: relative;
  top: auto;
  min-height: 0;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(10, 28, 46, 0.08);
}

.service-stack-section .premium-stack-card span {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 10px;
}

.service-stack-section .premium-stack-card h3 {
  font-size: 1.08rem;
}

.service-stack-section .premium-stack-card p {
  font-size: 0.88rem;
  line-height: 1.56;
}

@media (max-width: 1080px) {
  .service-stack-section .premium-stack-grid {
    grid-template-columns: 1fr;
  }

  .contact-service-shortcuts .platform-card-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-service-shortcuts .premium-service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, 360px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .hero h1,
  .page-hero h1,
  .contact-page-hero h1,
  .references-hero h1,
  .blog-modern-copy h1,
  .about-hero h1,
  .ad-hero h1,
  .premium-hero h1 {
    font-size: clamp(1.24rem, 4.45vw, 1.48rem);
    line-height: 1.13;
  }

  .section-heading h2,
  .system-copy h2,
  .process-shell h2,
  .service-heading h2,
  .page-section-head h2,
  .blog-section-head h2,
  .about-section-head h2,
  .ad-section-head h2,
  .premium-section-head h2,
  .premium-group-head h2,
  .premium-stack-copy h2,
  .process-top h2,
  .reference-head h2,
  .reference-extra-head h2,
  .page-hero-panel h2,
  .info-card h2,
  .feature-copy h2,
  .blog-hero-feature h2,
  .about-dark-panel h2,
  .about-cta-band h2,
  .blog-soft-cta-shell h2,
  .ad-proof-band h2,
  .ad-cta-band h2,
  .premium-cta-band h2,
  .cta-shell h2,
  .contact-location-card h2,
  .working-hours-card h2,
  .reference-sector-strip h2,
  .reference-cta-band h2,
  .article-body h2 {
    font-size: clamp(1rem, 3.75vw, 1.18rem);
    line-height: 1.2;
  }

  .growth-map-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 20px;
  }

  .growth-map-core,
  .growth-map-node {
    min-height: 98px;
    padding: 15px;
    border-radius: 14px;
  }

  .growth-map-core {
    grid-row: auto;
    min-height: 118px;
  }

  .growth-map-core strong {
    font-size: 1.45rem;
  }

  .ad-proof-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .ad-proof-row div {
    min-height: 0;
    padding: 11px 12px;
  }

  .ad-proof-row strong {
    font-size: 0.9rem;
  }

  .premium-index-page .premium-service-card {
    min-height: 0;
    padding: 18px;
  }

  .service-stack-section .premium-stack-list {
    grid-template-columns: 1fr;
  }

  .contact-service-shortcuts .platform-card-grid.compact {
    grid-template-columns: 1fr;
  }

  .contact-service-shortcuts .premium-service-card:last-child:nth-child(odd) {
    width: 100%;
  }

  .service-content {
    inset: auto 14px 14px 14px;
    max-width: calc(100% - 28px);
    padding: 15px;
  }
}

/* 2026-05 final polish: cleaner nav, legal pages and compact service visuals */
.header-actions .nav-cta {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: none;
}

.header-actions .nav-cta span {
  margin-left: 3px;
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(2rem, 4.15vw, 3.35rem);
  line-height: 1.02;
  font-weight: 900;
}

.page-hero h1,
.contact-page-hero h1,
.references-hero h1,
.blog-modern-copy h1,
.about-hero h1,
.ad-hero h1,
.premium-hero h1,
.legal-hero h1 {
  font-size: clamp(1.45rem, 1.9vw, 1.95rem);
  line-height: 1.14;
}

.metric-card {
  min-height: 134px;
  padding: 17px;
}

.metric-icon {
  width: 27px;
  height: 27px;
  margin-bottom: 13px;
  font-size: 0.82rem;
}

.metric-card strong {
  font-size: 1.42rem;
}

.metric-card p {
  font-size: 0.74rem;
  line-height: 1.25;
}

.service-mega .mega-group {
  border: 0;
}

.service-mega .mega-group summary {
  list-style: none;
  margin-bottom: 14px;
  color: #8a96a8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: default;
}

.service-mega .mega-group summary::-webkit-details-marker {
  display: none;
}

.ad-card-top img {
  width: auto;
  max-width: 58px;
  height: 32px;
  padding: 5px 7px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.ad-card-top img[src*="icon-"],
.ad-card-top img[src*="platform-facebook"],
.ad-card-top img[src*="platform-instagram"],
.ad-card-top img[src*="platform-tiktok"],
.ad-card-top img[src*="platform-x"],
.ad-card-top img[src*="platform-amazon"] {
  width: 34px;
  max-width: 34px;
  height: 34px;
  padding: 7px;
}

.ad-card-top img[src*="platform-yandex"] {
  max-width: 66px;
  height: 28px;
  padding: 5px 8px;
}

.premium-index-page .premium-stack-section .premium-stack-grid {
  align-items: stretch;
}

.premium-index-page .premium-stack-section .premium-stack-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.premium-index-page .premium-stack-section .premium-stack-card {
  display: grid;
  gap: 9px;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fff, #f8fbff),
    radial-gradient(circle at 12% 12%, rgba(255, 90, 31, 0.1), transparent 38%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.premium-index-page .premium-stack-section .premium-stack-card::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffb36a);
}

.premium-index-page .premium-stack-section .premium-stack-card h3 {
  font-size: 0.98rem;
}

.premium-index-page .premium-stack-section .premium-stack-card p {
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  border-color: rgba(255, 90, 31, 0.5);
  color: #fff;
}

.legal-page {
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 90, 31, 0.08), transparent 34%),
    linear-gradient(180deg, #fff, #f7fafc 72%, #fff);
}

.legal-hero {
  padding: 90px 0 44px;
}

.legal-hero .container {
  max-width: 900px;
}

.legal-hero h1 {
  margin-top: 26px;
  color: var(--ink);
}

.legal-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: #566478;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.75;
}

.legal-section {
  padding: 28px 0 70px;
}

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

.legal-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.legal-card h2 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.legal-card p {
  margin-top: 12px;
  color: #5c6879;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.68;
}

.legal-cta {
  padding: 0 0 76px;
}

.legal-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 20px;
  background: #071827;
  color: #fff;
}

.legal-cta-shell h2 {
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.2;
}

.legal-cta-shell p {
  max-width: 620px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .header-actions .nav-cta {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .main-nav {
    width: min(92vw, 410px) !important;
    gap: 9px !important;
    padding: 78px 18px 26px !important;
    border-left: 1px solid rgba(226, 232, 240, 0.95) !important;
    background: #fff !important;
    box-shadow: -28px 0 68px rgba(15, 23, 42, 0.18) !important;
  }

  .menu-scrim {
    background: rgba(9, 16, 28, 0.44) !important;
    backdrop-filter: blur(6px) !important;
  }

  .menu-toggle {
    background: #fff !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16) !important;
  }

  .menu-toggle span {
    background: #0f172a !important;
  }

  .main-nav > .nav-link,
  .main-nav > .nav-item > .nav-link {
    min-height: 44px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 0.9rem !important;
    box-shadow: none !important;
  }

  .main-nav > .nav-link[href="/iletisim.html"] {
    border-color: rgba(255, 90, 31, 0.28) !important;
    background: #fff6ef !important;
    color: #d94b16 !important;
    box-shadow: none !important;
  }

  .service-menu-item {
    gap: 8px !important;
  }

  .service-mega .mega-group {
    padding: 0 !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    overflow: hidden;
  }

  .service-mega .mega-group summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    margin: 0 !important;
    padding: 0 13px !important;
    color: #374151 !important;
    font-size: 0.73rem !important;
    letter-spacing: 0.08em;
    cursor: pointer;
  }

  .service-mega .mega-group summary::after {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    color: #d94b16;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .service-mega .mega-group[open] summary::after {
    content: "-";
  }

  .service-mega .mega-group a {
    min-height: 38px !important;
    padding: 9px 13px !important;
    border-radius: 0 !important;
    border-top: 1px solid rgba(226, 232, 240, 0.84) !important;
    color: #111827 !important;
  }

  .service-mega .mega-group a::before {
    display: none !important;
  }

  .service-mega .mega-group a strong {
    color: #111827 !important;
    font-size: 0.84rem !important;
    line-height: 1.25 !important;
  }

  .service-mega .mega-group a span {
    display: none !important;
  }

  .premium-index-page .premium-stack-section .premium-stack-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-cta-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(1.72rem, 8.4vw, 2.22rem);
    line-height: 1.04;
  }

  .page-hero h1,
  .contact-page-hero h1,
  .references-hero h1,
  .blog-modern-copy h1,
  .about-hero h1,
  .ad-hero h1,
  .premium-hero h1,
  .legal-hero h1 {
    font-size: clamp(1.18rem, 4.15vw, 1.38rem);
    line-height: 1.16;
  }

  .metric-card {
    padding: 12px 8px;
  }

  .metric-card strong {
    font-size: 1.12rem;
  }

  .metric-card p {
    font-size: 0.66rem;
  }

  .premium-index-page .premium-stack-section .premium-stack-list {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding: 58px 0 28px;
  }

  .legal-card {
    min-height: 0;
    padding: 20px;
  }

  .footer-legal-links {
    gap: 7px;
  }

.footer-legal-links a {
    min-height: 27px;
    padding: 0 8px;
    font-size: 0.6rem;
  }
}

/* 2026-05-14 small requested refinements */
.reference-block .reference-more {
  width: fit-content;
  min-width: 92px;
  min-height: 36px;
  margin-top: 22px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 0.8rem;
  box-shadow: 0 10px 22px rgba(255, 106, 19, 0.16);
}

.reference-block .reference-more:hover {
  box-shadow: 0 14px 28px rgba(255, 106, 19, 0.2);
}

@media (max-width: 1080px) {
  .main-nav > .mobile-home-link {
    display: flex !important;
  }
}

@media (min-width: 1081px) {
  .main-nav > .mobile-home-link {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  /* Roasvia WP 1.3.3: keep the closed mobile drawer out of page width calculations. */
  .main-nav {
    display: none !important;
    transform: none !important;
  }

  .menu-check:checked ~ .main-nav,
  .header-shell:has(.menu-check:checked) .main-nav {
    display: flex !important;
    transform: none !important;
  }
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0;
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.24);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #128c3c;
  color: #fff;
}

.floating-whatsapp__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(920px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.cookie-consent p {
  margin: 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-consent button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-consent__primary {
  border: 1px solid #ff6a13;
  background: #ff6a13;
  color: #fff;
}

.cookie-consent__secondary {
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: #fff;
  color: #0f172a;
}

@media (max-width: 720px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 16px;
    min-height: 44px;
    padding: 0 12px 0 9px;
    font-size: 0.78rem;
  }

  .floating-whatsapp__icon {
    width: 26px;
    height: 26px;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    bottom: 74px;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent button {
    flex: 1 1 0;
    padding: 0 10px;
    font-size: 0.75rem;
  }
}
.cookie-consent__option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  color: #4b5563;
  font-size: .9rem;
  line-height: 1.35;
}

.cookie-consent__option input {
  margin-top: 2px;
  accent-color: #ff6a00;
}

.roasvia-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #18b65b;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(24, 182, 91, .28);
}
@media (max-width: 720px) {
  .roasvia-whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 52px;
    width: 52px;
    height: 52px;
    padding: 0;
    font-size: 0;
  }
  .roasvia-whatsapp-float::before {
    content: "WA";
    font-size: 13px;
    letter-spacing: 0;
  }
}
.lang-switch ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lang-switch li {
  margin: 0;
}
.lang-switch a,
.lang-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.roasvia-cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, .92);
  border-radius: 18px;
  color: #102033;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 80px rgba(15, 23, 42, .18);
  backdrop-filter: blur(16px);
}
.roasvia-cookie-banner[hidden] {
  display: none;
}
.roasvia-cookie-banner p {
  margin: 6px 0 10px;
  max-width: 720px;
  color: #5e6b7e;
  font-size: 14px;
}
.roasvia-cookie-banner label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 700;
}
.roasvia-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.roasvia-cookie-actions button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #dde5ef;
  border-radius: 999px;
  color: #071225;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.roasvia-cookie-actions button:last-child {
  color: #fff;
  border-color: #ff5a1f;
  background: #ff5a1f;
}
@media (max-width: 720px) {
  .roasvia-cookie-banner {
    grid-template-columns: 1fr;
    bottom: 76px;
    padding: 14px;
  }
  .roasvia-cookie-actions {
    justify-content: stretch;
  }
  .roasvia-cookie-actions button {
    flex: 1 1 auto;
  }
}

/* WordPress exact-page compatibility fixes */
.premium-index-page .platform-card-grid,
.premium-index-page .platform-card-grid.compact {
  display: grid !important;
  align-items: stretch;
  grid-auto-rows: auto;
}

.premium-index-page .platform-card-grid > .premium-service-card {
  display: flex !important;
  flex-direction: column;
  min-width: 0;
  min-height: 188px;
  height: auto;
  overflow: hidden;
}

.premium-index-page .platform-card-grid > .premium-service-card p {
  margin-bottom: 18px;
}

.premium-index-page .platform-card-grid > .premium-service-card em {
  position: static !important;
  inset: auto !important;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(12, 28, 46, 0.08);
}

.service-card.is-clickable {
  cursor: pointer;
}

.service-card.is-clickable:focus-visible {
  outline: 3px solid rgba(255, 90, 31, 0.55);
  outline-offset: 4px;
}

/* Roasvia WP 1.3.0: keep long Turkish labels from exploding in compact hero cards. */
.growth-map-core strong {
  font-size: clamp(1.02rem, 1.45vw, 1.34rem) !important;
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.performance-map .growth-map-core strong,
.visibility-map .growth-map-core strong {
  max-width: 9.5ch;
}

.premium-index-page .platform-card-grid > .premium-service-card {
  text-decoration: none;
}

.premium-index-page .platform-card-grid > .premium-service-card strong {
  font-size: clamp(0.86rem, 1.05vw, 0.98rem);
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .growth-map-panel {
    min-height: 0;
    padding: 16px;
    gap: 10px;
  }

  .growth-map-core,
  .growth-map-node {
    min-height: 108px;
    padding: 14px;
  }

  .growth-map-core {
    min-height: 218px;
  }
}

@media (max-width: 1080px) {
  .premium-index-page .platform-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .premium-index-page .platform-card-grid,
  .premium-index-page .platform-card-grid.compact {
    grid-template-columns: 1fr !important;
  }
}

/* 2026-05-15 category hero fix: compact map cards and no mobile overflow */
@media (max-width: 720px) {
  .container.header-shell {
    width: calc(100% - 20px) !important;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 8px !important;
  }

  .brand-logo-image {
    width: min(142px, 38vw) !important;
  }

  .header-actions {
    grid-column: 2 !important;
    min-width: 0 !important;
    gap: 5px !important;
  }

  .lang-switch {
    min-height: 34px !important;
    padding: 2px !important;
  }

  .lang-option {
    min-width: 30px !important;
    min-height: 26px !important;
    font-size: 0.64rem !important;
  }

  .menu-toggle {
    grid-column: 3 !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
  }

  .premium-index-page,
  .premium-index-page .premium-hero {
    max-width: 100%;
    min-width: 0;
  }

  .premium-index-page .premium-hero-grid,
  .premium-index-page .premium-hero-copy,
  .premium-index-page .growth-map-panel {
    max-width: 100%;
    min-width: 0;
  }

  .premium-index-page .growth-map-panel {
    width: 100%;
  }

  .premium-index-page .premium-hero h1,
  .premium-index-page .premium-hero p {
    max-width: 100%;
    text-wrap: auto;
  }

  .premium-index-page .growth-map-core strong {
    font-size: clamp(1.24rem, 5.4vw, 1.46rem);
    line-height: 1.1;
  }
}

/* Roasvia WP 1.3.2: keep compact hero labels readable inside the card. */
.growth-map-core strong,
.performance-map .growth-map-core strong,
.visibility-map .growth-map-core strong,
.premium-index-page .growth-map-core strong {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
  font-size: clamp(1.04rem, 2.05vw, 1.56rem) !important;
  line-height: 1.1 !important;
}

.performance-map .growth-map-core strong,
.visibility-map .growth-map-core strong {
  font-size: clamp(1.02rem, 1.85vw, 1.42rem) !important;
}

@media (max-width: 640px) {
  .growth-map-core strong,
  .performance-map .growth-map-core strong,
  .visibility-map .growth-map-core strong,
  .premium-index-page .growth-map-core strong {
    font-size: clamp(1.08rem, 4.8vw, 1.48rem) !important;
  }
}

@media (max-width: 380px) {
  .growth-map-core strong,
  .performance-map .growth-map-core strong,
  .visibility-map .growth-map-core strong,
  .premium-index-page .growth-map-core strong {
    font-size: clamp(1.02rem, 4.55vw, 1.34rem) !important;
  }
}

.premium-index-page .platform-card-grid > .premium-service-card,
.premium-index-page .platform-card-grid > .premium-service-card * {
  min-width: 0;
}

.premium-index-page .platform-card-grid > .premium-service-card strong,
.premium-index-page .platform-card-grid > .premium-service-card h3,
.premium-index-page .platform-card-grid > .premium-service-card p {
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}

/* Final live guard: compact hub map labels must never overflow their tiles. */
.growth-map-core {
  overflow: hidden !important;
}

.performance-map .growth-map-core strong,
.visibility-map .growth-map-core strong,
.premium-index-page.dijital-pazarlama-performans-reklamlari .growth-map-core strong,
.premium-index-page.seo-geo .growth-map-core strong {
  max-width: 100% !important;
  font-size: 1.12rem !important;
  line-height: 1.12 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto !important;
  text-wrap: balance;
}

@media (max-width: 720px) {
  .performance-map .growth-map-core strong,
  .visibility-map .growth-map-core strong,
  .premium-index-page.dijital-pazarlama-performans-reklamlari .growth-map-core strong,
  .premium-index-page.seo-geo .growth-map-core strong {
    font-size: 1rem !important;
  }
}
