:root {
  --ink: #101624;
  --ink-2: #202a3b;
  --muted: #667084;
  --line: #dde5f0;
  --paper: #ffffff;
  --soft: #f6f9fc;
  --warm: #fff7e8;
  --citrus: #ffb21d;
  --orange: #ff6b2c;
  --green: #0abf7a;
  --teal: #0d8f9a;
  --blue: #185adb;
  --plum: #6f4bd8;
  --shadow: 0 24px 60px rgba(16, 22, 36, 0.12);
  --shadow-soft: 0 16px 44px rgba(16, 22, 36, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 22, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 36, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 72% 8%, rgba(124, 58, 237, 0.22), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(255, 107, 44, 0.22), transparent 34%),
    linear-gradient(180deg, #fffaf2 0, #ffffff 760px);
  background-size: 36px 36px, 36px 36px, 100% 100%, 100% 100%, 100% 100%;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::selection {
  color: #111827;
  background: rgba(255, 178, 29, 0.42);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: min(1240px, calc(100% - 64px));
  min-height: 76px;
  margin: 14px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(221, 229, 240, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(16, 22, 36, 0.11);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  box-shadow: 0 16px 42px rgba(16, 22, 36, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 178px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}

.main-nav a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111827;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.nav-dropdown:hover > button {
  color: #111827;
  background: #fff1d8;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  display: none;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 64px rgba(16, 22, 36, 0.14);
  transform: translateX(-50%);
}

.premium-header {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

.premium-nav {
  gap: 2px;
}

.mega-dropdown {
  position: static;
}

.mega-dropdown > button span {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.mega-dropdown:hover > button span,
.mega-dropdown:focus-within > button span,
.mega-dropdown.mega-open > button span {
  transform: rotate(180deg);
}

.mega-dropdown .mega-panel {
  left: 50%;
  width: min(1120px, calc(100vw - 40px));
  min-width: 0;
  max-height: calc(100vh - 118px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 238, 0.96)),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(16, 22, 36, 0.18);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 107, 44, 0.45) rgba(16, 22, 36, 0.06);
}

.mega-dropdown .mega-panel::-webkit-scrollbar {
  width: 8px;
}

.mega-dropdown .mega-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.45);
}

.mega-dropdown:hover .mega-panel,
.mega-dropdown:focus-within .mega-panel,
.mega-dropdown.mega-open .mega-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(220px, 24vw, 280px);
  gap: 18px;
  animation: megaFade 0.16s ease both;
}

@keyframes megaFade {
  from {
    opacity: 0;
    transform: translate(-50%, 6px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

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

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

.nav-dropdown-panel .mega-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon desc"
    "icon price";
  align-items: start;
  gap: 0 10px;
  min-height: 78px;
  min-width: 0;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  white-space: normal;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-dropdown-panel .mega-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 44, 0.24);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 22, 36, 0.08);
}

.nav-dropdown-panel .mega-item span {
  grid-area: icon;
  position: relative;
  display: grid;
  width: 42px;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff4dc, #eef7ff);
  color: #ff5a22;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54), 0 12px 24px rgba(16, 22, 36, 0.06);
}

.nav-dropdown-panel .mega-item span::before {
  content: "";
  position: absolute;
  inset: 6px 6px auto auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.18;
}

.nav-dropdown-panel .mega-item span::after {
  content: "";
  position: absolute;
  inset: auto auto 7px 7px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.28;
}

.nav-dropdown-panel .mega-item:hover span {
  transform: scale(1.04);
}

.mega-icon-seo,
.mega-icon-local {
  background: linear-gradient(135deg, #e9f7ff, #f3edff) !important;
  color: #246bfe !important;
}

.mega-icon-ads,
.mega-icon-pr {
  background: linear-gradient(135deg, #fff0df, #fff8e8) !important;
  color: #ff6b2c !important;
}

.mega-icon-web,
.mega-icon-care,
.mega-icon-cloud {
  background: linear-gradient(135deg, #e9fff7, #eef7ff) !important;
  color: #0f9f6e !important;
}

.mega-icon-social,
.mega-icon-creator,
.mega-icon-video {
  background: linear-gradient(135deg, #fff0f7, #f1edff) !important;
  color: #d946ef !important;
}

.mega-icon-whatsapp {
  background: linear-gradient(135deg, #eafff3, #f2fff8) !important;
  color: #25d366 !important;
}

.mega-icon-email,
.mega-icon-guides,
.mega-icon-templates {
  background: linear-gradient(135deg, #eff6ff, #fff7ed) !important;
  color: #2563eb !important;
}

.mega-icon-ai,
.mega-icon-brand,
.mega-icon-blog {
  background: linear-gradient(135deg, #f4edff, #fff0f7) !important;
  color: #7c3aed !important;
}

.mega-icon-logo,
.mega-icon-photo,
.mega-icon-listing {
  background: linear-gradient(135deg, #fff7ed, #fff1f2) !important;
  color: #f43f5e !important;
}

.mega-icon-home,
.mega-icon-health,
.mega-icon-realestate,
.mega-icon-commerce,
.mega-icon-edu,
.mega-icon-pro {
  background: linear-gradient(135deg, #f8fafc, #eef2ff) !important;
  color: #0f766e !important;
}

.mega-icon-finance {
  background: linear-gradient(135deg, #fefce8, #fef9c3) !important;
  color: #a16207 !important;
}

.mega-icon-biz {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important;
  color: #15803d !important;
}

.nav-dropdown-panel .mega-item strong {
  grid-area: title;
  display: block;
  width: 100%;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.14;
  overflow-wrap: anywhere;
  white-space: normal;
}

.nav-dropdown-panel .mega-item small {
  grid-area: desc;
  display: block;
  width: 100%;
  min-width: 0;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.nav-dropdown-panel .mega-item em {
  grid-area: price;
  display: block;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  overflow-wrap: anywhere;
  white-space: normal;
}

.nav-dropdown-panel .mega-feature {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 107, 44, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 10%, rgba(111, 75, 216, 0.2), transparent 32%),
    linear-gradient(145deg, #121827, #202a3b);
  color: #ffffff;
  overflow: hidden;
  white-space: normal;
}

.nav-dropdown-panel .mega-feature::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: min(170px, 62%);
  aspect-ratio: 1.2;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 28px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  opacity: 0.92;
}

.nav-dropdown-panel .mega-feature::after {
  content: "AI";
  position: absolute;
  top: 54px;
  right: 26px;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffb21d, #ff5a22 54%, #7c3aed);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 24px 58px rgba(255, 90, 34, 0.32);
}

.nav-dropdown-panel .mega-feature span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffcf71;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: normal;
}

.nav-dropdown-panel .mega-feature strong {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: 18px;
  color: #ffffff;
  font-family: Jost, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.08;
  overflow-wrap: anywhere;
  white-space: normal;
}

.nav-dropdown-panel .mega-feature small {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: normal;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  display: grid;
  gap: 4px;
}

.nav-dropdown-panel a {
  justify-content: flex-start;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  color: #243044;
  white-space: nowrap;
}

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

.header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(16, 22, 36, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(16, 22, 36, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.account-menu {
  position: relative;
}

.account-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(16, 22, 36, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 22, 36, 0.07);
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-avatar {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #064e3b;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.account-avatar.large {
  width: 46px;
  height: 46px;
  font-size: 18px;
}

.account-name {
  display: inline-block;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  display: grid;
  min-width: 280px;
  padding: 12px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 60px rgba(16, 22, 36, 0.16);
}

.account-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 8px 12px;
  border-bottom: 1px solid rgba(16, 22, 36, 0.12);
  margin-bottom: 6px;
}

.account-card-head strong,
.account-card-head small {
  display: block;
}

.account-card-head strong {
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: 19px;
  line-height: 1.1;
}

.account-card-head small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.account-dropdown a,
.account-dropdown button {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111827;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  background: #fff1d8;
}

.menu-button {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.button.primary {
  color: #111827;
  background: linear-gradient(135deg, var(--citrus), #ff7a2f);
  box-shadow: 0 18px 34px rgba(255, 107, 44, 0.24);
}

.strategy-call {
  gap: 8px;
  min-width: 222px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff980f, #ff562f);
}

.button.secondary {
  border-color: rgba(16, 22, 36, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(16, 22, 36, 0.07);
}

.button.outline {
  border: 1px solid rgba(16, 22, 36, 0.28);
  background: transparent;
  color: #101624;
}

.button.outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.button.whatsapp-btn {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.24);
}

.button.whatsapp-btn:hover {
  background: #20ba5a;
  border-color: #20ba5a;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.32);
}

.button.whatsapp-btn svg {
  flex-shrink: 0;
  display: block;
}

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

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Jost, Inter, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.8vw, 86px);
  font-weight: 800;
}

h2,
.h2-style {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
}

h3,
.service-card-title,
.timeline-title {
  display: block;
  font-family: Jost, Inter, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  min-height: calc(100vh - 76px);
  padding: 54px 0 68px;
}

.hero-copy > p {
  max-width: 660px;
  margin-top: 22px;
  color: #566176;
  font-size: clamp(18px, 2vw, 21px);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 580px;
  margin: 38px 0 0;
}

.hero-proof div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(221, 229, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(16, 22, 36, 0.06);
}

.hero-proof div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--orange), var(--green));
}

.hero-proof .proof-dt {
  font-family: Jost, Inter, sans-serif;
  font-size: 31px;
  font-weight: 800;
}

.hero-proof .proof-dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero-note span {
  padding: 7px 10px;
  border: 1px solid rgba(16, 22, 36, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #3a4559;
  font-size: 12px;
  font-weight: 900;
}

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

.growth-orbit {
  position: absolute;
  inset: 54px 20px 60px 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, #ffffff 0 34%, rgba(255, 178, 29, 0.18) 35% 48%, transparent 49%),
    conic-gradient(from 120deg, #ffb21d, #0abf7a, #185adb, #6f4bd8, #ff6b2c, #ffb21d);
  box-shadow: var(--shadow);
}

.growth-orbit::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #fff;
}

.growth-orbit img {
  position: relative;
  width: min(98%, 620px);
  filter: drop-shadow(0 24px 30px rgba(16, 22, 36, 0.13));
}

.metric-card,
.mini-chart,
.signal-card {
  position: absolute;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(16, 22, 36, 0.1);
  backdrop-filter: blur(14px);
}

.metric-card {
  width: 172px;
  padding: 16px;
}

.metric-card span,
.metric-card .small-text {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.metric-card strong {
  display: block;
  margin: 3px 0;
  font-family: Jost, Inter, sans-serif;
  font-size: 36px;
}

.traffic {
  top: 14px;
  left: 6px;
}

.leads {
  right: 0;
  bottom: 74px;
}

.mini-chart {
  left: 48px;
  bottom: 8px;
  display: flex;
  align-items: end;
  gap: 7px;
  width: 194px;
  height: 92px;
  padding: 14px;
}

.mini-chart span {
  flex: 1;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--green), var(--teal));
}

.mini-chart span:nth-child(1) { height: 38%; }
.mini-chart span:nth-child(2) { height: 52%; }
.mini-chart span:nth-child(3) { height: 48%; }
.mini-chart span:nth-child(4) { height: 72%; }
.mini-chart span:nth-child(5) { height: 88%; }

.signal-card {
  top: 108px;
  right: 20px;
  display: grid;
  gap: 4px;
  width: 206px;
  padding: 15px;
}

.signal-card strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 20px;
}

.signal-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.logos-band {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 40px);
  flex-wrap: wrap;
  padding: 22px 18px;
  background:
    linear-gradient(90deg, rgba(255, 178, 29, 0.16), transparent 18%, transparent 82%, rgba(10, 191, 122, 0.16)),
    #101624;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(540px, 1.04fr);
  min-height: calc(100vh - 104px);
  padding: clamp(36px,6vw,88px) 0 58px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(221, 229, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #253044;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 32px rgba(16, 22, 36, 0.06);
}

.hero-eyebrow span {
  color: #ff7a2f;
}

.hero h1 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(52px, 6.4vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #1b35ff, #7c3aed 42%, #ff5b2f 74%, #ff8b21);
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-text.alt {
  background-image: linear-gradient(110deg, #5b21ff, #8b5cf6 42%, #ff4f96 70%, #ff9c4a);
}

.hero-copy > p:not(.hero-eyebrow) {
  max-width: 690px;
  margin-top: 22px;
  color: #596579;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
}

.hero-actions .button {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 16px;
  gap: 10px;
}

.hero-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: #3a4559;
  font-weight: 800;
}

.hero-rating span {
  color: #ff980f;
  letter-spacing: 2px;
}

.hero-rating i {
  width: 1px;
  height: 24px;
  background: rgba(16, 22, 36, 0.13);
}

.hero-trust {
  margin-top: 28px;
}

.hero-trust p {
  color: #3d4658;
  font-size: 14px;
  font-weight: 800;
}

/* brand marquee */
.brand-marquee-wrap {
  overflow: hidden;
  margin-top: 14px;
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.brand-marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: brand-scroll 18s linear infinite;
}

.brand-marquee-wrap:hover .brand-marquee-track {
  animation-play-state: paused;
}

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-trust span {
  color: #626b7c;
  font-family: Jost, Inter, sans-serif;
  font-size: 21px;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.hero-dashboard {
  position: absolute;
  inset: 90px 58px 70px 40px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(221, 229, 240, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 90px rgba(16, 22, 36, 0.17);
}

.dashboard-rail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 22px;
  padding: 22px 0;
  border-right: 1px solid rgba(221, 229, 240, 0.9);
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.dashboard-rail span,
.dashboard-rail i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: #101624;
  color: #ffffff;
  font-weight: 900;
}

.dashboard-rail i {
  width: 18px;
  height: 18px;
  border: 2px solid #101624;
  background: transparent;
  opacity: 0.74;
}

.dashboard-main {
  padding: 22px;
  background:
    linear-gradient(rgba(16, 22, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 36, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 26px 26px;
}

.dashboard-top,
.dashboard-kpis,
.dashboard-widgets {
  position: relative;
  z-index: 1;
}

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

.dashboard-top strong,
.dashboard-widgets strong {
  font-size: 13px;
  font-weight: 900;
}

.dashboard-top span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f5f7fb;
  color: #667084;
  font-size: 11px;
  font-weight: 800;
}

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

.dashboard-kpis article,
.dashboard-widgets article {
  min-width: 0;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(16, 22, 36, 0.06);
}

.dashboard-kpis article {
  padding: 14px;
}

.dashboard-kpis span {
  display: block;
  color: #202a3b;
  font-size: 11px;
  font-weight: 900;
}

.dashboard-kpis strong {
  display: block;
  margin-top: 7px;
  font-size: 24px;
  line-height: 1;
}

.spark {
  display: block;
  height: 34px;
  margin-top: 10px;
  border-radius: 6px;
  background:
    linear-gradient(140deg, transparent 0 22%, currentColor 23% 25%, transparent 26% 42%, currentColor 43% 45%, transparent 46% 64%, currentColor 65% 68%, transparent 69%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(16, 22, 36, 0.03));
}

.spark.green { color: #10b981; }
.spark.purple { color: #6d4cff; }
.spark.orange { color: #ff980f; }
.spark.blue { color: #1e6fff; }

.dashboard-widgets {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.dashboard-widgets article {
  padding: 14px;
}

.trend-card {
  min-height: 166px;
}

.line-chart {
  position: relative;
  height: 110px;
  margin-top: 12px;
  border-bottom: 1px solid rgba(16, 22, 36, 0.12);
  background:
    linear-gradient(rgba(16, 22, 36, 0.06) 1px, transparent 1px);
  background-size: 100% 34px;
}

.line-chart i {
  position: absolute;
  inset: 16px 8px 18px;
  border-bottom: 3px solid currentColor;
  border-radius: 50% 50% 0 0;
  transform: skewY(-13deg);
}

.line-chart i:nth-child(1) { color: #1e6fff; top: 18px; }
.line-chart i:nth-child(2) { color: #ff6b2c; top: 38px; }
.line-chart i:nth-child(3) { color: #7c3aed; top: 28px; transform: skewY(9deg); }

.channel-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  align-items: center;
}

.channel-card strong {
  grid-column: 1 / -1;
}

.donut-chart {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#1e6fff 0 48%, #7c3aed 48% 76%, #ff7a8f 76% 92%, #ff9d3d 92% 100%);
}

.donut-chart span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  line-height: 1.05;
}

.donut-chart small {
  color: #667084;
  font-size: 8px;
}

.channel-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3f4a5f;
  font-size: 11px;
  font-weight: 800;
}

.channel-card li span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 3px;
  background: #1e6fff;
}

.channel-card li:nth-child(2) span { background: #7c3aed; }
.channel-card li:nth-child(3) span { background: #ff9d3d; }

.funnel-card div {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-top: 12px;
}

.funnel-card i {
  display: block;
  height: 24px;
  border-radius: 4px 4px 12px 12px;
}

.funnel-card i:nth-child(1) { width: 120px; background: linear-gradient(90deg, #1e6fff, #74a3ff); }
.funnel-card i:nth-child(2) { width: 94px; background: linear-gradient(90deg, #7c3aed, #c084fc); }
.funnel-card i:nth-child(3) { width: 70px; background: linear-gradient(90deg, #ff8a2a, #ffc06c); }
.funnel-card i:nth-child(4) { width: 46px; background: linear-gradient(90deg, #0abf7a, #8ee9bd); }

.assistant-card p {
  margin-top: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #fff7e8;
  color: #3f4a5f;
  font-size: 11px;
  font-weight: 800;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 138px;
  padding: 16px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(16, 22, 36, 0.13);
}

.floating-badge span {
  color: #10b981;
  font-size: 27px;
}

.floating-badge strong {
  color: #101624;
  font-size: 25px;
  line-height: 1;
}

.floating-badge small {
  color: #667084;
  font-size: 12px;
  font-weight: 800;
}

.leads-badge {
  top: 46px;
  left: -10px;
}

.rank-badge {
  top: 46px;
  right: 10px;
}

.rank-badge span {
  color: #7c3aed;
}

.roas-badge {
  right: 70px;
  bottom: 18px;
}

.roas-badge span {
  color: #ff4f96;
}

.partner-stack {
  position: absolute;
  right: -18px;
  top: 250px;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.partner-stack span {
  display: grid;
  min-width: 148px;
  min-height: 70px;
  align-content: center;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 107, 0, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff9f4 0%, #fff3e8 100%);
  box-shadow: 0 12px 36px rgba(255, 107, 0, 0.12), 0 2px 8px rgba(16, 22, 36, 0.06);
  color: #c94a00;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-stack span::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff6b00, #ffad00);
  border-radius: 3px 0 0 3px;
}

.partner-stack span:hover {
  transform: translateX(-3px);
  box-shadow: 0 18px 48px rgba(255, 107, 0, 0.18), 0 2px 8px rgba(16, 22, 36, 0.08);
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -10px;
  margin-bottom: 42px;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 70px rgba(16, 22, 36, 0.1);
}

.hero-stat-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 28px;
  border-right: 1px solid rgba(16, 22, 36, 0.1);
}

.hero-stat-strip article:last-child {
  border-right: 0;
}

.hero-stat-strip span {
  grid-row: span 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(255, 107, 44, 0.16));
  color: #6d4cff;
  font-size: 26px;
  font-weight: 900;
}

.hero-stat-strip strong {
  color: #101624;
  font-family: Jost, Inter, sans-serif;
  font-size: 31px;
  line-height: 1;
}

.hero-stat-strip small {
  color: #465166;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.ecosystem-section {
  position: relative;
  overflow: hidden;
  margin: 74px 0;
  padding: clamp(64px, 7vw, 96px) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 107, 44, 0.26), transparent 28%),
    radial-gradient(circle at 78% 8%, rgba(111, 75, 216, 0.34), transparent 32%),
    radial-gradient(circle at 84% 78%, rgba(13, 143, 154, 0.16), transparent 34%),
    linear-gradient(135deg, #07162c 0%, #071122 46%, #100c2c 100%);
}

.ecosystem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 92%);
}

.ecosystem-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5.5vw, 78px);
  align-items: start;
}

.ecosystem-copy {
  position: sticky;
  top: 112px;
}

.ecosystem-copy .section-label {
  color: #ff8b4a;
}

.ecosystem-copy h2 {
  max-width: 640px;
  color: #ffffff;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.ecosystem-copy > p:not(.section-label) {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.ecosystem-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.ecosystem-proof article {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.ecosystem-proof span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #ff6b8f;
  font-size: 23px;
}

.ecosystem-proof strong {
  color: #ffffff;
  font-family: Jost, Inter, sans-serif;
  font-size: 19px;
  line-height: 1.16;
}

.ecosystem-proof small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

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

.ecosystem-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ecosystem-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 44, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 107, 44, 0.17), rgba(111, 75, 216, 0.11)),
    rgba(255, 255, 255, 0.07);
}

.ecosystem-grid article > span {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a21, #ff4f8f);
  box-shadow: 0 16px 38px rgba(255, 107, 44, 0.28);
  color: #ffffff;
  font-size: 29px;
  font-weight: 900;
}

.ecosystem-grid article:nth-child(2) > span { background: linear-gradient(135deg, #ff6b2c, #ffba24); }
.ecosystem-grid article:nth-child(3) > span { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.ecosystem-grid article:nth-child(4) > span { background: linear-gradient(135deg, #1e6fff, #7c3aed); }
.ecosystem-grid article:nth-child(5) > span { background: linear-gradient(135deg, #0abf7a, #0d8f9a); }
.ecosystem-grid article:nth-child(6) > span { background: linear-gradient(135deg, #ff8a21, #ff6b2c); }

.ecosystem-grid small {
  display: block;
  color: #ff9b54;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ecosystem-grid strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-family: Jost, Inter, sans-serif;
  font-size: 28px;
  line-height: 1.08;
}

.ecosystem-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.ecosystem-grid a {
  display: inline-flex;
  margin-top: 16px;
  color: #ff8b4a;
  font-weight: 900;
}

.ecosystem-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.ecosystem-cta > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 107, 44, 0.14);
  color: #ff6b8f;
  font-size: 28px;
}

.ecosystem-cta strong {
  display: block;
  color: #ffffff;
  font-family: Jost, Inter, sans-serif;
  font-size: 24px;
}

.ecosystem-cta small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
}

.ecosystem-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 107, 44, 0.72);
  border-radius: 10px;
  background: rgba(255, 107, 44, 0.08);
  color: #ffffff;
  font-weight: 900;
}

.authority-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
  padding: 82px 0 58px;
}

.authority-copy {
  position: sticky;
  top: 104px;
}

.authority-copy h2 {
  font-size: clamp(38px, 5.2vw, 62px);
}

.authority-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

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

.authority-grid article {
  min-height: 0;
  padding: 14px 16px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 178, 29, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.authority-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.authority-grid strong {
  display: block;
  font-family: Jost, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.authority-grid p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
  padding: 12px 0 104px;
}

.platform-copy h2 {
  font-size: clamp(36px, 5vw, 60px);
}

.platform-copy p:not(.section-label) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.platform-console {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 178, 29, 0.2), transparent 28%),
    radial-gradient(circle at 84% 0%, rgba(10, 191, 122, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow);
}

.platform-console::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--blue));
}

.platform-console-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #354157;
  font-weight: 900;
}

.platform-console-top span {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
}

/* ── platform console redesign ── */
.pc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pc-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
}

.pc-pill-search  { background: #fff3e6; color: #c94a00; border: 1px solid rgba(201,74,0,.18); }
.pc-pill-content { background: #eef6ff; color: #1a5ec4; border: 1px solid rgba(26,94,196,.16); }
.pc-pill-ads     { background: #f0faf4; color: #0a6e42; border: 1px solid rgba(10,110,66,.16); }
.pc-pill-cro     { background: #fdf2ff; color: #7c22b8; border: 1px solid rgba(124,34,184,.16); }

.pc-steps {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.pc-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(221,229,240,.95);
  box-shadow: 0 4px 18px rgba(16,22,36,.06);
  position: relative;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.pc-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16,22,36,.10);
}

.pc-step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.pc-icon-diagnose { background: #fff3e6; color: #c94a00; }
.pc-icon-plan     { background: #eef6ff; color: #1a5ec4; }
.pc-icon-execute  { background: #f0faf4; color: #0a6e42; }

.pc-step-body {
  flex: 1;
  min-width: 0;
}

.pc-step-body strong {
  display: block;
  font-family: Jost, Inter, sans-serif;
  font-size: 17px;
  color: #101624;
}

.pc-step-body span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: #5c687d;
  line-height: 1.5;
}

.pc-step-num {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
  color: #c8d0dc;
  align-self: flex-start;
  margin-top: 2px;
}

/* keep old selectors harmless */
.platform-meter, .platform-checks { display: none; }

.split-section,
.narrative,
.quote-section,
.final-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(52px,8vw,108px) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.section-text > p:not(.section-label),
.section-heading p,
.narrative p,
.quote-copy p,
.report-form-wrap > p {
  margin-top: 18px;
  font-size: 17px;
}

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

.check-list li {
  position: relative;
  padding: 15px 16px 15px 44px;
  border: 1px solid rgba(221, 229, 240, 0.92);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 22, 36, 0.05);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.global-panel,
.narrative-image,
.founder-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.global-panel {
  background:
    linear-gradient(135deg, rgba(232, 251, 246, 0.92), rgba(255, 246, 223, 0.9)),
    #fff;
}

.global-panel img {
  width: 100%;
  padding: 24px 24px 4px;
}

.global-copy {
  padding: 0 34px 34px;
}

.global-copy p {
  margin-top: 10px;
}

.about-method {
  padding: 26px 0 108px;
}

.about-method .section-heading {
  max-width: 880px;
}

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

.about-method-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

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

.about-method-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #101624;
  color: #fff;
  font-family: Jost, Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.about-method-grid strong {
  display: block;
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: 23px;
  line-height: 1.08;
}

.about-method-grid p {
  margin-top: 12px;
  color: #526078;
  font-size: 14px;
  font-weight: 700;
}

.narrative {
  padding-top: 28px;
}

.narrative-image {
  padding: 18px;
}

.narrative-image img {
  width: 100%;
}

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

.service-pills span {
  padding: 10px 13px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 22, 36, 0.05);
  font-size: 13px;
  font-weight: 900;
}

.services-section,
.process-section,
.faq-section,
.blog-section,
.ranking-section,
.help-section {
  padding: 106px 0;
}

.services-section {
  position: relative;
}

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

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

.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.service-tabs button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #303949;
  box-shadow: 0 8px 20px rgba(16, 22, 36, 0.04);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.service-tabs button.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.service-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.service-card,
.blog-grid article {
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  column-gap: 10px;
  align-items: flex-start;
  overflow: hidden;
  min-height: 274px;
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.service-grid:not(.service-grid-compact) .service-card {
  min-height: 444px;
}

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

.service-card[hidden] {
  display: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(16, 22, 36, 0.14);
}

.service-card h3,
.service-card .service-card-title {
  grid-column: 1 / -1;
}

.service-card[data-category="traffic"] .service-icon {
  color: #0a8f64;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 24% 74%, rgba(10, 166, 106, 0.2), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(30, 111, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #eefaf5 0%, #fff 58%, #edf7ff 100%);
}

.service-card[data-category="brand"] .service-icon {
  color: #f0441a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at 24% 74%, rgba(255, 178, 29, 0.22), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(240, 68, 26, 0.16), transparent 34%),
    linear-gradient(135deg, #fff7e8 0%, #fff 58%, #fff1ed 100%);
}

.service-card[data-category="conversion"] .service-icon {
  color: #1e6fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at 24% 74%, rgba(30, 111, 255, 0.16), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(10, 166, 106, 0.14), transparent 34%),
    linear-gradient(135deg, #edf7ff 0%, #fff 58%, #eef8f4 100%);
}

.service-card img,
.service-icon {
  width: 100%;
  height: auto;
  min-height: 96px;
  max-height: 140px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 107, 44, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.45)),
    radial-gradient(circle at 22% 76%, rgba(10, 166, 106, 0.15), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(30, 111, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #fff7e8 0%, #fff 58%, #edf7ff 100%);
  box-shadow: 0 16px 35px rgba(255, 107, 44, 0.14);
}

.service-card img {
  object-fit: contain;
}

.service-icon {
  grid-column: 1 / -1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0441a;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.service-icon::before {
  inset: 18px auto auto 20px;
  width: 78px;
  height: 14px;
  border: 1px solid rgba(255, 107, 44, 0.14);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 24px 0 rgba(255, 255, 255, 0.5),
    0 48px 0 rgba(255, 255, 255, 0.42);
}

.service-icon::after {
  right: 24px;
  bottom: 22px;
  width: 92px;
  height: 40px;
  border: 1px solid rgba(30, 111, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 107, 44, 0.28) 0 34%, transparent 34% 42%, rgba(10, 166, 106, 0.28) 42% 70%, transparent 70% 78%, rgba(30, 111, 255, 0.28) 78%),
    rgba(255, 255, 255, 0.62);
  background-size: 72px 5px, auto;
  background-repeat: no-repeat;
  background-position: 10px 24px, center;
}

.service-icon svg {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon svg * {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.service-kicker {
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  grid-column: 1 / -1;
  margin-top: 12px;
  flex: 1 1 auto;
}

.price-chip {
  display: inline-flex;
  grid-column: 1;
  align-self: end;
  width: fit-content;
  max-width: 100%;
  margin-top: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.service-link {
  display: inline-flex;
  grid-column: 2;
  align-self: end;
  justify-self: end;
  margin-top: auto;
  margin-left: 0;
  color: var(--orange);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.service-grid-compact .price-chip {
  padding: 8px 11px;
  border: 1px solid rgba(10, 166, 106, 0.18);
  border-radius: 999px;
  background: #eef8f4;
  color: #067451;
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  white-space: normal;
}

.service-grid-compact .service-link {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 12px;
  margin-left: 0;
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  min-height: calc(88vh - 76px);
  padding: 72px 0 86px;
}

.service-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.1vw, 76px);
  line-height: 1.04;
}

.service-hero > div > p:not(.section-label) {
  max-width: 680px;
  margin-top: 22px;
  color: #566176;
  font-size: clamp(18px, 2vw, 21px);
}

.service-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 610px;
  margin: 38px 0 0;
}

.service-proof div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(221, 229, 240, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 232, 0.58)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(16, 22, 36, 0.08);
  backdrop-filter: blur(10px);
}

.service-proof dt,
.service-proof .proof-dt {
  margin: 0;
  color: #101624;
  font-family: Jost, Inter, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
}

.service-proof dd,
.service-proof .proof-dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 32px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 16%, rgba(124, 58, 237, 0.24), transparent 34%),
    radial-gradient(circle at 16% 72%, rgba(255, 107, 44, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow: 0 34px 88px rgba(16, 22, 36, 0.14);
}

.service-hero-panel::before {
  content: "";
  position: absolute;
  inset: 46px 38px 116px;
  border: 1px solid rgba(221, 229, 240, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(rgba(16, 22, 36, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 36, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.78);
  background-size: 28px 28px;
  box-shadow: 0 24px 64px rgba(16, 22, 36, 0.12);
}

.service-hero-panel img {
  position: relative;
  z-index: 1;
  width: min(78%, 430px);
  margin: 28px auto 0;
  border-radius: 18px;
  filter: drop-shadow(0 24px 32px rgba(16, 22, 36, 0.14));
}

.service-score {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(16, 22, 36, 0.13);
}

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

.service-score strong {
  color: #101624;
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.1;
}

.contact-hero {
  min-height: auto;
  padding: 72px 0 58px;
  align-items: center;
}

.contact-hero h1 {
  max-width: 700px;
  font-size: clamp(44px, 5.2vw, 68px);
}

.contact-hero > div > p:not(.section-label) {
  max-width: 620px;
  font-size: clamp(17px, 1.8vw, 20px);
}

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

.contact-hero .service-proof {
  margin-top: 28px;
}

.contact-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 760px;
  gap: 14px;
}

.contact-proof div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 92px;
  padding: 18px 16px;
}

.contact-proof dt {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-proof dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 900;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-proof dd a {
  color: inherit;
  white-space: nowrap;
}

.contact-hero .service-hero-panel {
  padding: 28px;
}

.contact-hero .service-hero-panel img {
  display: block;
  width: min(100%, 420px);
  max-height: 330px;
  margin-inline: auto;
  object-fit: contain;
}

.contact-direct {
  padding: 58px 0 38px;
}

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

.contact-direct .overview-grid article {
  min-height: 132px;
}

.contact-report {
  margin-bottom: 84px;
  padding-block: 54px;
}

.service-score {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.service-score span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-score strong {
  font-size: 13px;
  text-align: right;
}

.service-strip {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 40px);
  flex-wrap: wrap;
  padding: 22px 18px;
  background: #101624;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-overview,
.service-benefits,
.deliverables-section,
.service-pricing {
  padding: clamp(44px,7vw,96px) 0;
}

.service-payment {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: 18px 0 106px;
}

.payment-copy {
  position: sticky;
  top: 104px;
}

.payment-copy h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.payment-copy p:not(.section-label) {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.payment-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.payment-copy li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.payment-copy li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.payment-card,
.client-login-card,
.dashboard-status {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 178, 29, 0.18), transparent 30%),
    #fff;
  box-shadow: var(--shadow);
}

.auth-method-card {
  gap: 18px;
}

.auth-card-head {
  display: grid;
  gap: 4px;
}

.auth-card-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

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

.auth-method {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.auth-method > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.auth-method-heading {
  display: grid;
  gap: 4px;
}

.auth-method-heading span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff2dc;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-method-heading strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-card > strong,
.dashboard-status > strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 30px;
  line-height: 1.08;
}

.payment-amount {
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: #101624;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.payment-login-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.payment-card label,
.client-login-card label {
  display: grid;
  gap: 7px;
  color: #344157;
  font-size: 13px;
  font-weight: 900;
}

.payment-card input,
.client-login-card input,
.client-login-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #c9d6e8;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.client-auth,
.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  min-height: calc(88vh - 76px);
  padding: 68px 0;
}

.client-auth {
  align-items: start;
  min-height: 0;
  padding-top: 88px;
}

.client-auth h1,
.dashboard-hero h1 {
  max-width: 780px;
  font-size: clamp(46px, 6vw, 78px);
}

.client-auth h1 {
  font-size: clamp(42px, 5vw, 66px);
}

.client-auth-copy > p:not(.section-label),
.dashboard-hero p {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.dashboard-status span {
  color: var(--muted);
  font-weight: 750;
}

.dashboard-workspace {
  padding: 48px 0 96px;
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.86), rgba(255, 255, 255, 0.2) 58%, rgba(255, 255, 255, 0));
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.workspace-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
  padding: 20px 16px;
  border: 1px solid rgba(190, 132, 60, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(87, 58, 22, 0.11);
}

.workspace-sidebar strong {
  color: #141414;
  font-family: Jost, Inter, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.workspace-sidebar nav {
  display: grid;
  gap: 8px;
}

.workspace-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 6px;
  color: #625d56;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.workspace-sidebar a:hover,
.workspace-sidebar a.active {
  background: #07543f;
  color: #fff;
  transform: translateX(2px);
}

.workspace-main {
  display: grid;
  gap: 22px;
}

.workspace-title,
.workspace-card {
  border: 1px solid rgba(190, 132, 60, 0.32);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 60px rgba(70, 48, 18, 0.08);
}

.workspace-title {
  display: grid;
  gap: 10px;
  padding: 26px 26px 24px;
  border-radius: 12px;
}

.workspace-title h1 {
  color: #b86910;
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.workspace-title span {
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b86910, #07543f);
}

.workspace-title p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.workspace-card {
  border-radius: 8px;
}

.workspace-card > span {
  color: #6a645d;
  font-size: 13px;
  font-weight: 900;
}

.account-identity-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(120deg, rgba(255, 248, 236, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 88% 18%, rgba(7, 84, 63, 0.12), transparent 36%);
}

.account-identity-card h2,
.module-card h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.05;
}

.account-identity-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.65;
}

.identity-meta {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(190, 132, 60, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.identity-meta span,
.identity-meta small {
  color: var(--muted);
  font-weight: 850;
}

.identity-meta strong {
  color: #07543f;
  font-family: Jost, Inter, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.workspace-plan p,
.project-note,
.workspace-grid p,
.dashboard-panel-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.65;
}

.workspace-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 18px;
  background:
    linear-gradient(90deg, rgba(255, 246, 232, 0.92), rgba(255, 255, 255, 0.96));
}

.workspace-plan strong,
.workspace-card > strong,
.workspace-section-head h2,
.project-copy h2 {
  color: #171716;
  font-family: Jost, Inter, sans-serif;
  font-weight: 900;
  line-height: 1.1;
}

.workspace-plan strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.project-setup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 24px;
  padding: 44px 56px 30px;
}

.project-copy h2 {
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 46px);
}

.project-note {
  align-self: center;
  justify-self: end;
  max-width: 430px;
  text-align: right;
}

.project-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.project-form label {
  display: grid;
  gap: 8px;
  color: #625d56;
  font-size: 13px;
  font-weight: 900;
}

.project-form input,
.project-form select,
.profile-form input,
.profile-form select,
.profile-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(190, 132, 60, 0.38);
  border-radius: 8px;
  background: #fff;
  color: #151515;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.project-form > input[type="hidden"] {
  display: none;
}

.project-form .project-form-status {
  grid-column: 1 / -1;
  min-height: 22px;
}

.profile-module {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.profile-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: min(100%, 260px);
  padding: 10px 12px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
}

.profile-preview img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(16, 22, 36, 0.1);
  border-radius: 50%;
  background: #fff;
}

.profile-preview strong,
.profile-preview span {
  display: block;
}

.profile-preview strong {
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.profile-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.profile-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.profile-form label {
  display: grid;
  gap: 8px;
  color: #625d56;
  font-size: 13px;
  font-weight: 900;
}

.profile-form textarea {
  min-height: 104px;
  padding: 13px;
  resize: vertical;
}

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

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

.module-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 240px;
  padding: 28px;
}

.module-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(7, 84, 63, 0.16);
  border-radius: 999px;
  background: rgba(7, 84, 63, 0.06);
  color: #07543f;
  font-size: 13px;
  font-weight: 900;
}

.profile-photo-field,
.profile-address-field,
.profile-form-actions {
  grid-column: 1 / -1;
}

.profile-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.profile-form-actions .form-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.workspace-grid .workspace-card,
.dashboard-orders.workspace-card,
.workspace-main > .dashboard-panel-grid .workspace-card {
  display: grid;
  gap: 13px;
  padding: 26px;
}

.workspace-grid strong,
.workspace-main > .dashboard-panel-grid strong {
  display: block;
  font-size: 28px;
}

.workspace-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workspace-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(16, 22, 36, 0.12);
  border-radius: 8px;
  color: #121826;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.workspace-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.workspace-section-head h2 {
  margin-top: 8px;
  font-size: 34px;
}

.workspace-main > .dashboard-panel-grid {
  padding-bottom: 0;
}

.dashboard-menu {
  position: sticky;
  top: 86px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 24px;
}

.dashboard-menu a {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dashboard-menu a:hover {
  border-color: rgba(255, 107, 44, 0.42);
  transform: translateY(-2px);
}

.dashboard-menu span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-menu strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.1;
}

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

.dashboard-overview,
.dashboard-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 32px;
}

.dashboard-overview article,
.dashboard-feature-grid a {
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.dashboard-feature-grid a {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dashboard-feature-grid a:hover {
  border-color: rgba(255, 107, 44, 0.42);
  transform: translateY(-2px);
}

.dashboard-overview span,
.dashboard-feature-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-overview strong,
.dashboard-feature-grid strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.dashboard-overview p,
.dashboard-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.dashboard-actions {
  padding-bottom: 56px;
}

.dashboard-grid article,
.dashboard-order,
.empty-dashboard {
  padding: 22px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.dashboard-grid span,
.dashboard-order span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-grid strong,
.dashboard-order strong,
.empty-dashboard strong {
  display: block;
  font-family: Jost, Inter, sans-serif;
  font-size: 25px;
  line-height: 1.08;
}

.dashboard-grid p,
.dashboard-order p,
.dashboard-order small,
.empty-dashboard p {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 750;
}

.dashboard-orders {
  padding-bottom: 56px;
}

.dashboard-order-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 104px;
}

.dashboard-panel-grid article {
  display: grid;
  gap: 13px;
  padding: 26px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.dashboard-panel-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-panel-grid strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.dashboard-panel-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.dashboard-panel-actions,
.dashboard-settings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.dashboard-settings-list a,
.dashboard-settings-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(16, 22, 36, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.workspace-main > .dashboard-orders.workspace-card {
  padding-bottom: 26px;
}

.workspace-main > .dashboard-panel-grid .workspace-card {
  border-color: rgba(190, 132, 60, 0.32);
  background: rgba(255, 255, 255, 0.95);
}

.compact-footer .footer-shell {
  grid-template-columns: minmax(0, 1fr);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.overview-grid article {
  padding: 22px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.overview-grid strong,
.overview-grid span {
  display: block;
}

.overview-grid strong {
  margin-bottom: 8px;
  font-family: Jost, Inter, sans-serif;
  font-size: 23px;
}

.overview-grid span {
  color: var(--muted);
}

.service-grid-compact .service-card {
  min-height: 252px;
}

.deliverables-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.deliverables-copy {
  position: sticky;
  top: 104px;
}

.deliverables-copy p:not(.section-label) {
  margin-top: 18px;
  font-size: 17px;
}

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

.deliverables-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px 18px;
  padding: 20px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(16, 22, 36, 0.07);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.deliverables-list div:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 44, 0.38);
  box-shadow: 0 24px 56px rgba(16, 22, 36, 0.1);
}

.deliverables-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff1d8;
  color: #8a4c15;
  font-weight: 900;
}

.deliverables-list strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 23px;
}

.deliverables-list p {
  margin: 0;
}

.service-process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
  padding: clamp(36px,6vw,88px) 0;
}

.service-process h2,
.service-process .h2-style,
.service-process p {
  color: #fff;
}

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

.pricing-grid article {
  padding: 28px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.pricing-grid .featured-plan {
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.96), rgba(255, 255, 255, 0.96)),
    #fff;
  border-color: rgba(255, 107, 44, 0.34);
}

.pricing-grid p {
  margin-top: 10px;
}

.average-price {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

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

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pricing-actions .button {
  flex: 1 1 125px;
  padding: 0 12px;
}

.pricing-grid li {
  position: relative;
  padding-left: 22px;
  color: #3f4a5f;
  font-weight: 700;
}

.pricing-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.ethos {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 22, 36, 0.94), rgba(22, 34, 54, 0.86)),
    linear-gradient(90deg, var(--teal), var(--orange));
}

.ethos-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
  padding: clamp(36px,6vw,88px) 0;
}

.ethos h2,
.ethos .h2-style,
.ethos p {
  color: #fff;
}

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

.ethos-list article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.ethos-list strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 24px;
}

.ethos-list span {
  color: rgba(255, 255, 255, 0.78);
}

.trust-section {
  padding: clamp(48px,8vw,104px) 0;
}

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

.trust-grid article {
  min-height: 252px;
  padding: 22px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 8%, rgba(24, 90, 219, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.trust-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #101624;
  color: #fff;
  font-family: Jost, Inter, sans-serif;
  font-weight: 800;
}

.trust-grid strong {
  display: block;
  font-family: Jost, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.08;
}

.trust-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.ranking-grid article {
  min-height: 278px;
  padding: 28px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.ranking-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--citrus), var(--green));
  color: #101624;
  font-weight: 900;
}

.ranking-grid p {
  margin-top: 12px;
}

.help-section {
  padding-top: 20px;
}

.help-card {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.94), rgba(238, 248, 244, 0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.help-card > p:not(.section-label) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 17px;
}

.help-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.help-list div {
  padding: 18px;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.help-list strong,
.help-list span {
  display: block;
}

.help-list strong {
  margin-bottom: 8px;
  font-family: Jost, Inter, sans-serif;
  font-size: 21px;
}

.help-list span {
  color: var(--muted);
  font-size: 14px;
}

.ai-growth-section {
  padding: 36px 0 104px;
}

.ai-growth-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 178, 29, 0.18), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(10, 166, 106, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow: var(--shadow-soft);
}

.ai-growth-panel h2 {
  font-size: clamp(34px, 4.6vw, 58px);
}

.ai-growth-panel p:not(.section-label) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

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

.ai-growth-list span {
  padding: 14px 15px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #253044;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(16, 22, 36, 0.04);
}

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

.timeline article {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: var(--shadow-soft);
}

.timeline article::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 32px;
  width: 42px;
  height: 2px;
  background: var(--line);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.timeline p {
  margin-top: 12px;
}

.timeline .small-text {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff1d8;
  color: #8a4c15;
  font-size: 12px;
  font-weight: 900;
}

.quote-section {
  padding-top: 28px;
}

.seo-tools-hero .service-hero-panel img {
  max-height: 360px;
  object-fit: contain;
}

.seo-tools-section {
  padding: clamp(44px,7vw,96px) 0;
}

.seo-tools-section .section-heading {
  max-width: 860px;
}

.seo-type-grid article {
  min-height: 170px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.tool-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.tool-card-head {
  display: grid;
  gap: 8px;
}

.tool-card-head span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-card-head p {
  font-size: 14px;
  font-weight: 700;
}

.tool-form {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.tool-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #303a4d;
  font-size: 13px;
  font-weight: 900;
}

.tool-form input,
.tool-form textarea,
.tool-form select {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #cbd6e6;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.tool-form textarea {
  min-height: 96px;
  resize: vertical;
}

.checkbox-tool label {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: #3f4a5f;
  font-size: 14px;
}

.checkbox-tool input {
  width: 18px;
  min-height: 18px;
}

.tool-result {
  min-height: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.tool-result:not(:empty) {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-color: rgba(10, 191, 122, 0.22);
  background: linear-gradient(135deg, rgba(10, 191, 122, 0.09), rgba(255, 178, 29, 0.1));
}

.tool-result strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 21px;
}

.tool-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.tool-score span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #101624;
  color: #fff;
  font-family: Jost, Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.tool-score .small-text {
  color: #253044;
  font-weight: 900;
}

.tool-result ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.tool-result li {
  color: #3f4a5f;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.ai-tools-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  padding: 82px 0 68px;
  min-width: 0;
}

.ai-tools-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.6vw, 82px);
}

.ai-tools-hero p {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.ai-command-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(221, 229, 240, 0.96);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 178, 29, 0.24), transparent 31%),
    radial-gradient(circle at 85% 20%, rgba(10, 166, 106, 0.17), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
  box-shadow: var(--shadow);
}

.ai-command-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(221, 229, 240, 0.88);
}

.ai-command-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-command-top strong {
  padding: 9px 13px;
  border-radius: 999px;
  background: #101624;
  color: #fff;
  font-size: 13px;
}

.ai-pulse-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  height: 220px;
  margin: 34px 0;
}

.ai-pulse-chart span {
  display: block;
  min-height: 46px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #ffb21d, #ff5a1f);
  box-shadow: 0 22px 40px rgba(255, 90, 31, 0.2);
}

.ai-pulse-chart span:nth-child(1) { height: 42%; }
.ai-pulse-chart span:nth-child(2) { height: 64%; background: linear-gradient(180deg, #10b981, #0a6b52); }
.ai-pulse-chart span:nth-child(3) { height: 88%; background: linear-gradient(180deg, #185adb, #0f2f83); }
.ai-pulse-chart span:nth-child(4) { height: 56%; background: linear-gradient(180deg, #ffb21d, #0aa66a); }
.ai-pulse-chart span:nth-child(5) { height: 76%; }

.ai-command-panel ul,
.ai-tool-result-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-command-panel li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(221, 229, 240, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #253044;
  font-weight: 800;
}

.ai-command-panel li span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.ai-tool-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 74px;
}

.ai-tool-summary article {
  padding: 22px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.ai-tool-summary strong {
  display: block;
  margin-bottom: 8px;
  font-family: Jost, Inter, sans-serif;
  font-size: 28px;
}

.ai-tool-summary span {
  color: var(--muted);
}

.ai-tools-section {
  padding: 86px 0 96px;
}

.ai-tools-layout {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 34px;
  min-width: 0;
}

.ai-tools-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(221, 229, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.ai-tools-sidebar a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #344157;
  font-size: 13px;
  font-weight: 900;
}

.ai-tools-sidebar a:hover {
  background: #fff2d8;
  color: var(--orange);
}

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

.ai-tool-card {
  display: grid;
  align-content: start;
  min-width: 0;
  max-width: 100%;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(221, 229, 240, 0.96);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 110px;
}

.ai-tool-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #fff2d8;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.ai-tool-card h3 {
  font-size: clamp(24px, 3vw, 32px);
  overflow-wrap: anywhere;
}

.ai-tool-card > p {
  margin-top: 10px;
  color: var(--muted);
}

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

.ai-tool-card .tool-form label {
  min-width: 0;
}

.ai-tool-card .tool-form .button,
.ai-tool-card .tool-result {
  grid-column: 1 / -1;
}

.ai-tool-card .tool-result:not(:empty) {
  display: grid;
  gap: 14px;
  margin-top: 2px;
  background: linear-gradient(135deg, #f8fbff, #fffaf0);
}

.ai-tool-card .tool-result strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 21px;
}

.ai-tool-result-list li {
  padding: 12px 13px;
  border: 1px solid rgba(221, 229, 240, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #344157;
  line-height: 1.5;
}

.ai-tool-copy {
  padding: 14px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: #eef8f4;
  color: #314257;
  font-size: 14px;
  font-weight: 800;
  white-space: pre-line;
}

.ai-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-result-actions .button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 12px;
}

.ai-tools-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 86px;
  padding: 36px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 178, 29, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 244, 0.92));
  box-shadow: var(--shadow-soft);
}

.ai-tools-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.ai-tools-cta p {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
}

blockquote {
  margin: 0;
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.founder-card {
  margin: 0;
}

.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  background: #fff5dc;
  display: block;
}

.founder-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
}

.founder-card .founder-caption > span,
.founder-card figcaption > span {
  display: grid;
  gap: 3px;
}

.founder-card strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 24px;
}

.founder-card .small-text,
.founder-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.founder-card a {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(24, 90, 219, 0.2);
  border-radius: 999px;
  background: #edf4ff;
  color: #185adb;
  font-size: 13px;
  font-weight: 900;
}

.founder-card a:hover {
  background: #185adb;
  color: #fff;
}

.report-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px clamp(18px, 4vw, 54px);
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 243, 216, 0.94), rgba(233, 251, 245, 0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.report-art {
  display: grid;
  place-items: center;
}

.report-art img {
  width: min(100%, 520px);
  max-height: 390px;
  filter: drop-shadow(0 20px 26px rgba(16, 22, 36, 0.1));
}

.report-form-wrap {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 52px rgba(16, 22, 36, 0.08);
}

.lead-form,
.callback-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #303949;
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbd6e6;
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.12);
}

textarea {
  min-height: 116px;
  padding-top: 13px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  color: #05784f;
  font-size: 13px;
  font-weight: 900;
}

.lead-form .form-status.success,
.lead-form .form-status.loading,
.lead-form .form-status.error,
.callback-form .form-status.success,
.callback-form .form-status.loading,
.callback-form .form-status.error {
  min-height: auto;
  border: 1px solid rgba(8, 120, 86, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(11, 185, 129, 0.08);
  color: #05784f;
  line-height: 1.45;
}

.lead-form .form-status.loading,
.callback-form .form-status.loading {
  border-color: rgba(255, 132, 31, 0.24);
  background: rgba(255, 132, 31, 0.08);
  color: #a44904;
}

.lead-form .form-status.error,
.callback-form .form-status.error {
  border-color: rgba(190, 18, 60, 0.22);
  background: rgba(244, 63, 94, 0.08);
  color: #9f1239;
}

.auth-inline-link,
.auth-switch a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

.auth-inline-link {
  width: fit-content;
  margin-top: -4px;
}

.auth-inline-link:hover,
.auth-switch a:hover {
  color: var(--ink);
}

.auth-switch {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.client-login-card button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.auth-card-title {
  font-family: Jost, Inter, sans-serif;
  font-size: 22px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7a8598;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #dde7f3;
}

.phone-auth-panel {
  background: rgba(246, 249, 252, 0.9);
}

#firebase-recaptcha {
  min-height: 78px;
}

.auth-gate {
  display: grid;
  min-height: 58vh;
  align-items: center;
  padding: clamp(40px,7vw,92px) 0;
}

.auth-gate h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
}

.auth-gate p:not(.section-label) {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.locked-content {
  position: relative;
  opacity: 0.36;
  pointer-events: none;
  filter: grayscale(0.2);
}

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

.faq-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  padding: 22px 24px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(16, 22, 36, 0.05);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  color: var(--ink);
  font-weight: 900;
}

.faq-item .faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff1d8;
}

.faq-item .faq-icon::before,
.faq-item .faq-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 2px;
  background: #8a4c15;
}

.faq-item .faq-icon::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item p {
  display: none;
  grid-column: 1 / -1;
  margin-top: 12px;
}

.faq-item.open {
  border-color: rgba(255, 107, 44, 0.32);
}

.faq-item.open p {
  display: block;
}

.faq-item.open .faq-icon::after {
  transform: rotate(0deg);
}

.blog-grid article {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(16, 22, 36, 0.14);
}

.blog-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f8f9fb;
}

.blog-grid article > span {
  display: inline-flex;
  margin: 20px 22px 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef8f4;
  color: #067451;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid h3 {
  padding: 12px 22px 10px;
  font-size: 22px;
  line-height: 1.15;
}

.blog-grid a {
  display: inline-flex;
  margin: 0 22px 24px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.blog-grid article p {
  margin: 0 22px 18px;
  color: #465268;
  font-size: 14px;
  font-weight: 700;
}

.blog-more {
  margin-top: 28px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 34px;
  align-items: end;
  padding: 86px 0 34px;
}

.blog-hero h1 {
  max-width: 920px;
}

.blog-hero p {
  max-width: 780px;
  margin-top: 18px;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.topic-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(16, 22, 36, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #3a4559;
  font-size: 12px;
  font-weight: 900;
}

.blog-hub-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 244, 0.92));
  box-shadow: var(--shadow-soft);
}

.blog-hub-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 22, 36, 0.08);
}

.blog-hub-panel div:last-of-type {
  border-bottom: 0;
}

.blog-hub-panel strong {
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.blog-hub-panel span {
  max-width: 150px;
  color: #3f4a5f;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.blog-hub-panel a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.blog-category-section {
  padding: 34px 0 82px;
}

.blog-category-section .section-heading p:last-child {
  max-width: 720px;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.blog-category-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 178px;
  align-content: start;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.blog-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 44, 0.24);
  box-shadow: 0 30px 70px rgba(16, 22, 36, 0.13);
}

.blog-category-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff7e8;
  color: #9a4b13;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-category-card strong {
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: 26px;
  line-height: 1.05;
}

.blog-category-card .small-text {
  color: #4b576b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.blog-directory {
  padding-top: 0;
  padding-bottom: 90px;
}

.blog-section + .blog-directory {
  margin-top: -34px;
}

.blog-directory .section-heading p:last-child {
  max-width: 780px;
}

.blog-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: 22px;
  align-items: start;
  margin-top: 28px;
}

.blog-hub-main {
  min-width: 0;
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-filter-bar button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(16, 22, 36, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #253044;
  box-shadow: 0 10px 24px rgba(16, 22, 36, 0.05);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.blog-filter-bar button span {
  display: grid;
  min-width: 24px;
  min-height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #344055;
  font-size: 11px;
}

.blog-filter-bar button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.blog-filter-bar button.active span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.blog-directory-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 24px;
}

.blog-directory-tools span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(16, 22, 36, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #303a4d;
  box-shadow: 0 10px 24px rgba(16, 22, 36, 0.05);
  font-size: 12px;
  font-weight: 900;
}

.blog-list {
  display: grid;
  gap: 16px;
}

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

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

.blog-row {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 318px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.blog-row:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 44, 0.24);
  box-shadow: 0 30px 70px rgba(16, 22, 36, 0.13);
}

.blog-row-index {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 107, 44, 0.18);
  border-radius: 50%;
  background: #fff7e8;
  color: #9a4b13;
  font-family: Jost, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.blog-row-content {
  min-width: 0;
}

.blog-row span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-row h3 {
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.14;
}

.blog-row h3 a {
  color: var(--ink);
}

.blog-row h3 a:hover {
  color: var(--orange);
}

.blog-row p {
  margin-top: 8px;
  color: #4b576b;
  font-size: 14px;
  font-weight: 700;
}

.blog-row-action {
  display: grid;
  gap: 14px;
  align-self: end;
}

.blog-row strong {
  justify-self: start;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef8f4;
  color: #067451;
  font-size: 12px;
  line-height: 1.25;
}

.blog-row-action a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.blog-row-action a::after {
  content: "->";
  margin-left: 7px;
}

.blog-index-sidebar,
.blog-sidebar {
  align-self: start;
}

.blog-index-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.blog-index-sidebar section,
.sidebar-snapshot {
  padding: 24px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.blog-index-sidebar h2 {
  font-size: 24px;
}

.blog-index-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.blog-index-sidebar li,
.blog-index-sidebar p {
  color: #3f4a5f;
  font-size: 14px;
  font-weight: 700;
}

.blog-index-sidebar a {
  color: var(--orange);
  font-weight: 900;
}

.post-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: 86px 0 50px;
}

.post-hero h1 {
  max-width: 860px;
}

.post-hero img {
  width: 100%;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.post-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(16, 22, 36, 0.1);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 26px;
  align-items: start;
  padding-bottom: 90px;
}

.post-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.post-content article,
.related-posts,
.blog-sidebar section {
  min-width: 0;
  max-width: 100%;
  padding: 28px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.post-intro-card,
.post-final-card {
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.98), rgba(238, 248, 244, 0.95)),
    #fff;
}

.post-content h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.post-content h3 {
  margin-top: 22px;
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.15;
}

.post-content ul,
.related-posts ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 22px;
}

.post-content p,
.post-content li {
  color: #3f4a5f;
  font-weight: 700;
}

.post-takeaways {
  padding-left: 0 !important;
  list-style: none;
}

.post-takeaways li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(16, 22, 36, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.post-takeaways li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(24, 181, 111, 0.12);
}

.post-steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.post-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: #f8fafc;
}

.post-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: Jost, Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.post-steps strong,
.post-metric-grid strong,
.post-note strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.post-steps p,
.post-metric-grid p {
  margin-top: 5px;
}

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

.post-metric-grid div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: #f8fafc;
}

.post-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: #fff7e8;
  color: #3f4a5f;
  font-weight: 700;
}

.post-table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 18px;
  overflow-x: auto;
}

.post-content table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: #fff;
}

.post-content th,
.post-content td {
  padding: 15px;
  border-bottom: 1px solid rgba(221, 229, 240, 0.95);
  color: #3f4a5f;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
  vertical-align: top;
}

.post-content th {
  background: #101624;
  color: #fff;
  font-weight: 900;
}

.post-content tr:last-child td {
  border-bottom: 0;
}

.post-how-grid,
.post-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.post-how-grid section {
  padding: 18px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: #f8fafc;
}

.post-how-grid h3 {
  margin-top: 0;
  font-size: 22px;
}

.post-faq-list details {
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: #f8fafc;
}

.post-faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.post-faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
}

.post-author-card {
  background:
    linear-gradient(135deg, rgba(16, 22, 36, 0.96), rgba(7, 84, 63, 0.92)),
    #101624 !important;
}

.post-author-card h2,
.post-author-card p,
.post-author-card strong {
  color: #fff;
}

.post-author-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: #ffb21d;
  font-weight: 900;
}

.post-content .button {
  margin-top: 18px;
}

.related-posts a {
  color: var(--orange);
  font-weight: 900;
}

.blog-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.blog-sidebar h2 {
  font-size: 25px;
}

.blog-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.blog-sidebar li,
.blog-sidebar p {
  color: #3f4a5f;
  font-size: 14px;
  font-weight: 700;
}

.blog-sidebar a {
  color: var(--orange);
  font-weight: 900;
}

.sidebar-snapshot div {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.sidebar-snapshot div {
  padding: 12px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(246, 249, 252, 0.82);
}

.sidebar-snapshot .proof-dt {
  color: #657188;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-snapshot .proof-dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.sidebar-toc .article-sections-nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.sidebar-toc a {
  display: block;
  padding: 9px 11px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(246, 249, 252, 0.8);
  color: #253044;
  font-size: 13px;
}

.sidebar-toc a:hover {
  border-color: rgba(255, 107, 44, 0.28);
  color: var(--orange);
}

.sidebar-categories {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.sidebar-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(246, 249, 252, 0.8);
  color: #253044;
}

.sidebar-categories a:hover,
.sidebar-categories a.active {
  border-color: rgba(255, 107, 44, 0.28);
  background: #fff7e8;
  color: #9a4b13;
}

.sidebar-categories .small-text {
  display: grid;
  min-width: 28px;
  min-height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #101624;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.sidebar-cta {
  background:
    linear-gradient(135deg, rgba(255, 178, 29, 0.16), rgba(10, 191, 122, 0.1)),
    #fff !important;
}

.sidebar-cta .button {
  margin-top: 16px;
}

.sidebar-cta.muted {
  background: #101624 !important;
}

.sidebar-cta.muted h2,
.sidebar-cta.muted p {
  color: #fff;
}

.final-cta {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(13, 143, 154, 0.92), rgba(24, 90, 219, 0.86)),
    #101624;
}

.final-inner {
  padding: clamp(40px,7vw,92px) 0;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.callback-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.callback-form input,
.callback-form textarea {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.callback-form input::placeholder,
.callback-form textarea::placeholder {
  color: #7a8499;
}

.callback-form input:focus,
.callback-form textarea:focus {
  background: #fff;
  border-color: var(--citrus);
  box-shadow: 0 0 0 4px rgba(255, 178, 29, 0.22);
}

.site-footer {
  padding: 58px clamp(18px, 4vw, 64px) 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 138, 42, 0.22), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(10, 191, 122, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 178, 29, 0.08), rgba(24, 90, 219, 0.08) 52%, transparent),
    #101624;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(300px, 1.18fr) repeat(3, minmax(160px, 0.72fr)) minmax(240px, 0.9fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-logo img {
  width: 196px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  filter: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-logo:hover img {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.site-footer p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-tagline {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.footer-brand {
  display: grid;
  align-content: start;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.footer-actions a:first-child {
  color: #111827;
  border-color: transparent;
  background: linear-gradient(135deg, var(--citrus), #ff7a2f);
}

.footer-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 0;
}

.footer-proof div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-proof .proof-dt,
.footer-proof dt {
  color: #fff;
  font-family: Jost, Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.footer-proof .proof-dd,
.footer-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

address,
.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
  font-style: normal;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.68);
}

address strong,
.footer-contact strong {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links strong,
.footer-contact strong {
  color: #fff;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 4px;
  font-family: Jost, Inter, sans-serif;
  font-size: 18px;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.25;
  font-size: 14px;
  font-weight: 750;
}

.footer-service-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-service-strip a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.04);
}

.footer-service-strip a:hover {
  border-color: rgba(255, 107, 44, 0.5);
  color: #fff;
  background: rgba(255, 107, 44, 0.18);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom .footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom a:hover {
  color: var(--orange);
}

.reference-footer {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(18px, 4vw, 64px) 20px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 107, 44, 0.14), transparent 26%),
    radial-gradient(circle at 82% 0%, rgba(24, 90, 219, 0.16), transparent 30%),
    linear-gradient(180deg, #07182f 0%, #071327 54%, #050b16 100%);
  border-top: 1px solid rgba(41, 144, 255, 0.5);
}

.reference-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.reference-footer-shell {
  position: relative;
  grid-template-columns: minmax(260px, 1.1fr) minmax(128px, 0.62fr) minmax(190px, 0.78fr) minmax(190px, 0.78fr) minmax(250px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1180px;
}

.reference-footer .footer-logo img {
  width: 205px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: none;
}

.reference-footer .footer-logo:hover img {
  box-shadow: none;
}

.reference-footer .footer-tagline {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.reference-footer .footer-actions {
  gap: 10px;
  margin-top: 18px;
}

.reference-footer .footer-actions a {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-size: 12px;
  box-shadow: none;
}

.reference-footer .footer-actions a:first-child {
  background: linear-gradient(135deg, #ffba24, #ff7a22);
  color: #111827;
}

.reference-footer .footer-whatsapp-link {
  gap: 8px;
}

.reference-footer .footer-whatsapp-link svg {
  width: 17px;
  height: 17px;
  fill: #25d366;
}

.footer-partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 350px;
  margin-top: 14px;
}

.footer-partners span {
  display: grid;
  min-height: 48px;
  align-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-partners strong {
  color: #ffffff;
  font-family: Jost, Inter, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.footer-partners small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.reference-footer .footer-links,
.reference-footer .footer-contact {
  gap: 12px;
}

.reference-footer .footer-links strong,
.reference-footer .footer-contact strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
}

.reference-footer .footer-links a,
.reference-footer .footer-contact a,
.reference-footer .footer-contact span {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.reference-footer .footer-service-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.reference-footer .footer-service-links strong {
  grid-column: 1 / -1;
}

.reference-footer .footer-service-links a {
  font-size: 12.5px;
}

.reference-footer .footer-links a:hover,
.reference-footer .footer-contact a:hover {
  color: #ff9a2f;
}

.reference-contact {
  padding-left: clamp(0px, 2vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.reference-footer .footer-socials {
  display: flex;
  gap: 12px;
  margin: 16px 0 0;
}

.reference-footer .social-link {
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-newsletter {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-copy > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  color: #185adb;
  font-size: 20px;
}

.newsletter-copy strong,
.newsletter-copy small {
  display: block;
}

.newsletter-copy strong {
  color: #ffffff;
  font-size: 14px;
}

.newsletter-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 650;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px;
  align-items: center;
}

.newsletter-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.newsletter-form button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #3b82f6, #185adb);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.newsletter-form .form-status {
  grid-column: 1 / -1;
  min-height: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.reference-footer .footer-bottom {
  margin-top: 0;
  padding-top: 20px;
  border-top: 0;
}

.reference-footer .footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 44px);
}

.reference-footer .footer-bottom span,
.reference-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.legal-hero {
  padding: 86px 0 34px;
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 920px;
  padding-bottom: 90px;
}

.legal-content article {
  padding: 28px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p,
.legal-content li {
  color: #3f4a5f;
  font-weight: 700;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px,7vw,96px) 0 64px;
}

.hub-hero > div > p:not(.hero-eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: #566176;
  font-size: clamp(18px, 2vw, 21px);
}

.case-dashboard,
.industry-map,
.resource-console {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 26px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 8%, rgba(111, 75, 216, 0.22), transparent 32%),
    radial-gradient(circle at 100% 70%, rgba(255, 107, 44, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.case-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-content: start;
}

.case-dashboard article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(16, 22, 36, 0.08);
}

.case-dashboard article span,
.case-dashboard article small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.case-dashboard article strong {
  display: block;
  margin-top: 10px;
  font-family: Jost, Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.case-dashboard article i {
  display: block;
  height: 30px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, transparent 20%, #0abf7a 22% 28%, transparent 30% 42%, #185adb 44% 52%, transparent 54% 64%, #ff6b2c 66% 72%, transparent 74%);
}

.case-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 14px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.case-chart span {
  flex: 1;
  min-height: 38px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #6f4bd8, #185adb);
}

.case-chart span:nth-child(2) { height: 74px; background: linear-gradient(180deg, #ffb21d, #ff6b2c); }
.case-chart span:nth-child(3) { height: 110px; background: linear-gradient(180deg, #0abf7a, #0d8f9a); }
.case-chart span:nth-child(4) { height: 92px; }
.case-chart span:nth-child(5) { height: 140px; background: linear-gradient(180deg, #ffb21d, #ff6b2c); }
.case-chart span:nth-child(6) { height: 158px; background: linear-gradient(180deg, #0abf7a, #185adb); }

.portfolio-section,
.industry-section,
.resource-section {
  padding: 54px 0 86px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 34px;
}

.portfolio-filters a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #243044;
  font-size: 13px;
  font-weight: 900;
}

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

.portfolio-grid article,
.industry-grid article,
.resource-grid article,
.industry-detail article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.portfolio-grid article::before,
.industry-grid article::before,
.resource-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--blue));
}

.portfolio-grid article > span,
.resource-grid article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-grid h3,
.industry-grid h3,
.resource-grid h3 {
  margin-top: 12px;
  font-size: 30px;
}

.portfolio-grid p,
.industry-grid p,
.resource-grid p {
  margin-top: 12px;
}

.portfolio-grid dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.portfolio-grid dl div {
  padding: 12px;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: 12px;
  background: #fffaf2;
}

.portfolio-grid dt {
  font-family: Jost, Inter, sans-serif;
  font-size: 27px;
  font-weight: 900;
}

.portfolio-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.portfolio-grid blockquote {
  margin: 0;
  padding: 16px;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  background: rgba(255, 178, 29, 0.12);
  color: #263247;
  font-weight: 800;
}

.roi-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 88px;
  padding: 34px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 222, 0.82));
  box-shadow: var(--shadow-soft);
}

.industry-map,
.resource-console {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 18px;
}

.industry-map strong,
.resource-console strong {
  grid-column: 1 / -1;
  display: grid;
  width: min(250px, 100%);
  height: 120px;
  place-items: center;
  border-radius: 22px;
  background: #121827;
  color: #fff;
  text-align: center;
  font-family: Jost, Inter, sans-serif;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 24px 50px rgba(16, 22, 36, 0.18);
}

.industry-map span,
.resource-console span {
  display: grid;
  width: 118px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: #263247;
  font-weight: 900;
}

.industry-visual {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 100px;
}

.industry-visual span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff4dc, #edf7ff);
  color: var(--orange);
  font-family: Jost, Inter, sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.industry-visual i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.industry-visual i:last-child {
  width: 72%;
  background: linear-gradient(90deg, var(--orange), var(--citrus));
}

.industry-grid strong {
  display: block;
  margin-top: 18px;
  color: #263247;
  font-size: 13px;
  line-height: 1.5;
}

.industry-grid a,
.resource-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
}

.industry-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 32px 0 68px;
}

.industry-detail h2 {
  margin-top: 12px;
  font-size: 34px;
}

.industry-detail ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #3f4a5f;
  font-weight: 750;
}

/* ── WhatsApp FAB ── */
.zc-wa-fab {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 41;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.zc-wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.55);
}

.zc-wa-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

@media (max-width: 620px) {
  .zc-wa-fab {
    right: 16px;
    bottom: 90px;
    padding: 8px;
    gap: 0;
  }
  .zc-wa-label { display: none; }
}

.zc-chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  font-family: var(--body);
}

.zc-chatbot-launcher {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 91, 39, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, #101827, #1f2457 54%, #ff5b27);
  color: #fff;
  box-shadow: 0 20px 50px rgba(16, 22, 36, 0.25);
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zc-chatbot-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 62px rgba(16, 22, 36, 0.32);
}

.zc-chatbot-launcher span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb21d, #ff5b27 55%, #7c3cff);
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
}

.zc-chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: grid;
  overflow: hidden;
  width: min(430px, calc(100vw - 28px));
  height: min(680px, calc(100vh - 120px));
  grid-template-rows: auto 1fr auto auto;
  border: 1px solid rgba(210, 220, 238, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(124, 60, 255, 0.09), transparent 30%),
    radial-gradient(circle at 100% 18%, rgba(255, 178, 29, 0.10), transparent 34%),
    #ffffff;
  box-shadow: 0 34px 90px rgba(16, 22, 36, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.zc-chatbot-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.zc-chatbot-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(135deg, #101827, #20295d);
  color: #fff;
}

.zc-chatbot-panel header span {
  display: block;
  color: #ffcf8a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zc-chatbot-panel header strong {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 22px;
}

.zc-chatbot-panel header button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
}

.zc-chatbot-messages {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 18px;
}

.zc-chatbot-message {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.zc-chatbot-message.bot {
  justify-self: start;
  border: 1px solid rgba(210, 220, 238, 0.9);
  background: #fff;
  color: #29344a;
}

.zc-chatbot-message.user {
  justify-self: end;
  background: linear-gradient(135deg, #ff9f1c, #ff5b27);
  color: #fff;
}

.zc-chatbot-message p {
  margin: 0;
}

.zc-chatbot-quick {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 18px 14px;
}

.zc-chatbot-quick button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 91, 39, 0.2);
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.zc-chatbot-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(210, 220, 238, 0.9);
  background: rgba(255, 255, 255, 0.94);
}

.zc-chatbot-input input {
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(194, 207, 227, 0.95);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.zc-chatbot-input button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #101827, #ff5b27);
  color: #fff;
  cursor: pointer;
  font-weight: 950;
}

@media (prefers-reduced-motion: no-preference) {
  .growth-orbit {
    animation: breathe 5s ease-in-out infinite;
  }

  .metric-card,
  .signal-card {
    animation: float 4.5s ease-in-out infinite;
  }

  .leads {
    animation-delay: -1.4s;
  }

  .signal-card {
    animation-delay: -2.3s;
  }
}

@keyframes breathe {
  50% { transform: scale(1.025); }
}

@keyframes float {
  50% { transform: translateY(-10px); }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-dashboard {
    inset: 96px 18px 74px 18px;
  }

  .partner-stack {
    right: 0;
    top: auto;
    bottom: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-stack span {
    min-height: 54px;
  }

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

  .hero-stat-strip article:nth-child(2) {
    border-right: 0;
  }

  .ecosystem-inner {
    grid-template-columns: 1fr;
  }

  .ecosystem-copy {
    position: static;
  }

  .hub-hero {
    grid-template-columns: 1fr;
  }

  .case-dashboard,
  .industry-map,
  .resource-console {
    min-height: 360px;
  }

  .industry-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .site-header {
    width: min(100% - 28px, 1200px);
    gap: 10px;
    padding: 10px 12px;
  }

  .brand img {
    width: 164px;
  }

  .main-nav {
    font-size: 12px;
  }

  .main-nav a,
  .nav-dropdown > button {
    min-height: 40px;
    padding: 0 9px;
  }

  .header-login,
  .header-auth-actions .header-cta {
    min-height: 44px;
    padding-inline: 15px;
  }

  .strategy-call {
    min-width: 206px;
  }

  .mega-dropdown .mega-panel {
    width: min(1040px, calc(100vw - 32px));
    padding: 14px;
  }

  .mega-dropdown:hover .mega-panel,
  .mega-dropdown:focus-within .mega-panel,
  .mega-dropdown.mega-open .mega-panel {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 12px;
  }

  .mega-grid {
    gap: 7px;
  }

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

  .nav-dropdown-panel .mega-item {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 78px;
    padding: 10px;
    gap: 0 10px;
  }

  .nav-dropdown-panel .mega-item span {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 9px;
  }

  .nav-dropdown-panel .mega-item strong {
    font-size: 13px;
  }

  .nav-dropdown-panel .mega-item small {
    font-size: 11px;
  }

  .nav-dropdown-panel .mega-feature {
    padding: 16px;
  }

  .nav-dropdown-panel .mega-feature strong {
    font-size: 20px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    width: min(100% - 28px, 1180px);
    top: 10px;
    padding: 10px 12px;
  }

  .brand img {
    width: 160px;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    left: 18px;
    right: 18px;
    display: none;
    grid-auto-flow: row;
    gap: 4px;
    max-height: calc(100dvh - 108px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a,
  .nav-dropdown > button {
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    text-align: left;
  }

  .nav-dropdown-panel {
    position: static;
    display: grid;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 8px;
    box-shadow: none;
    transform: none;
  }

  .mega-dropdown .mega-panel {
    position: static;
    display: none;
    width: 100%;
    max-height: min(70vh, 640px);
    overflow: auto;
    margin: 0 0 10px;
    padding: 10px;
    border-radius: 14px;
    transform: none;
  }

  .mega-dropdown:hover .mega-panel,
  .mega-dropdown:focus-within .mega-panel {
    display: none;
  }

  .mega-dropdown.mega-open .mega-panel {
    display: grid;
    grid-template-columns: 1fr;
    animation: none;
    transform: none;
  }

  .mega-grid,
  .mega-grid.compact {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-panel .mega-feature {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .header-auth-actions {
    gap: 6px;
  }

  .account-name {
    display: none;
  }

  .account-menu summary {
    min-height: 40px;
    padding: 0 8px;
  }

  .account-dropdown {
    right: -58px;
    min-width: min(300px, calc(100vw - 28px));
  }

  .header-login,
  .header-auth-actions .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .strategy-call {
    min-width: 0;
  }

  .strategy-call span {
    display: none;
  }

  .split-section,
  .narrative,
  .report-section,
  .quote-section,
  .final-inner,
  .ethos-inner,
  .authority-section,
  .platform-section,
  .ai-growth-panel,
  .service-hero,
  .service-payment,
  .client-auth,
  .dashboard-hero,
  .ai-tools-hero,
  .blog-hero,
  .blog-hub-layout,
  .post-hero,
  .post-layout,
  .deliverables-section,
  .service-process {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 0;
    padding-top: 58px;
  }

  .service-hero-panel {
    min-height: 430px;
  }

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

  .blog-index-sidebar,
  .blog-sidebar {
    position: static;
  }

  .service-grid,
  .blog-grid,
  .blog-card-list,
  .blog-category-grid,
  .about-method-grid,
  .post-metric-grid,
  .timeline,
  .ranking-grid,
  .authority-grid,
  .trust-grid,
  .help-list,
  .overview-grid,
  .pricing-grid,
  .dashboard-grid,
  .dashboard-order-list,
  .ai-tool-summary,
  .ai-tool-grid,
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .ai-tools-layout {
    grid-template-columns: 1fr;
  }

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

  .deliverables-copy {
    position: static;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    position: static;
  }

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

  .account-identity-card,
  .dashboard-module-stack {
    grid-template-columns: 1fr;
  }

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

  .project-setup {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .project-note {
    justify-self: start;
    text-align: left;
  }

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

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

  .profile-preview {
    width: 100%;
  }

  .authority-copy {
    position: static;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    padding: 58px 0 50px;
  }

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

  .blog-row strong {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    width: calc(100% - 18px);
    min-height: 62px;
    margin-top: 8px;
    padding: 8px;
    border-radius: 14px;
  }

  .brand img {
    width: 142px;
  }

  .header-auth-actions .strategy-call {
    display: none;
  }

  .header-login {
    min-height: 40px;
    padding: 0 12px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    top: 76px;
    left: 9px;
    right: 9px;
    max-height: calc(100vh - 92px);
    overflow: auto;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 128px;
  }
  .header-login {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }
  .menu-button {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 980px) {
  .seo-tools-section {
    padding-top: 76px;
  }

  .tool-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tool-card {
    padding: 22px;
  }

  .tool-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .tool-form label:has(textarea),
  .tool-form label:has(select),
  .checkbox-tool label,
  .tool-form .button {
    grid-column: 1 / -1;
  }

  .tool-result {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%, 100% 100%;
  }

  .section-shell {
    width: calc(100% - 32px);
  }

  .site-header {
    top: 8px;
    width: min(100% - 24px, 100%);
    padding-inline: 8px;
    grid-template-columns: auto 1fr auto auto;
  }

  .brand img {
    width: 136px;
  }

  .header-auth-actions {
    grid-column: auto;
    justify-self: end;
  }

  .header-auth-actions .strategy-call {
    display: none;
  }

  .header-login {
    flex: initial;
  }

  .main-nav {
    top: 76px;
    left: 12px;
    right: 12px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 58px);
  }

  .hero {
    padding-top: 36px;
    overflow: hidden;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(41px, 11.2vw, 48px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-height: 46px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero-rating {
    align-items: flex-start;
    gap: 8px 12px;
  }

  .hero-rating i {
    display: none;
  }

  .hero-trust span {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 2px;
  }

  .hero-dashboard {
    inset: 56px 8px 108px 8px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .dashboard-main {
    padding: 12px;
  }

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

  .dashboard-widgets,
  .channel-card {
    grid-template-columns: 1fr;
  }

  .dashboard-kpis article,
  .dashboard-widgets article {
    padding: 10px;
  }

  .dashboard-kpis strong {
    font-size: 18px;
  }

  .dashboard-widgets article:nth-child(n + 3) {
    display: none;
  }

  .trend-card {
    min-height: 128px;
  }

  .line-chart {
    height: 74px;
  }

  .floating-badge {
    display: none;
  }

  .roas-badge {
    display: none;
  }

  .partner-stack {
    right: 8px;
    left: 8px;
    bottom: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .partner-stack span {
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 11px;
  }

  .partner-stack span::before {
    display: none;
  }

  .hero-stat-strip {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .hero-stat-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 22, 36, 0.1);
    padding: 22px;
  }

  .hero-stat-strip article:last-child {
    border-bottom: 0;
  }

  .ecosystem-section {
    margin: 52px 0;
    padding: 54px 0;
  }

  .ecosystem-copy h2 {
    font-size: clamp(37px, 10vw, 46px);
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid article {
    min-height: 0;
    padding: 22px;
  }

  .ecosystem-cta {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .ecosystem-cta a {
    width: 100%;
  }

  .ai-tools-hero {
    padding: 42px 0 54px;
    overflow: hidden;
  }

  .ai-tools-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .ai-tools-hero p {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .ai-command-panel {
    padding: 20px;
  }

  .ai-command-top {
    align-items: flex-start;
  }

  .ai-pulse-chart {
    height: 150px;
    gap: 8px;
  }

  .ai-tool-summary {
    padding-bottom: 54px;
  }

  .ai-tools-section {
    padding: 64px 0 68px;
  }

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

  .ai-tool-card .tool-form {
    grid-template-columns: 1fr;
  }

  .ai-tools-cta {
    display: grid;
    margin-bottom: 56px;
    padding: 24px;
  }

  .hero-proof,
  .service-proof,
  .service-grid,
  .blog-grid,
  .blog-card-list,
  .blog-category-grid,
  .about-method-grid,
  .post-metric-grid,
  .timeline,
  .ranking-grid,
  .authority-grid,
  .trust-grid,
  .platform-checks,
  .help-list,
  .overview-grid,
  .pricing-grid,
  .dashboard-menu,
  .dashboard-grid,
  .dashboard-overview,
  .dashboard-feature-grid,
  .dashboard-panel-grid,
  .dashboard-order-list,
  .ai-tool-summary,
  .ai-tool-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-workspace {
    padding: 28px 0 72px;
  }

  .workspace-title {
    padding: 22px;
  }

  .workspace-title h1 {
    font-size: 44px;
  }

  .workspace-sidebar nav,
  .workspace-grid,
  .dashboard-overview-grid,
  .dashboard-module-stack,
  .project-form {
    grid-template-columns: 1fr;
  }

  .workspace-plan,
  .workspace-section-head {
    display: grid;
    justify-items: start;
  }

  .project-setup,
  .account-identity-card,
  .module-card,
  .profile-module,
  .workspace-grid .workspace-card,
  .dashboard-orders.workspace-card,
  .workspace-main > .dashboard-panel-grid .workspace-card {
    padding: 22px;
  }

  .hero-visual {
    min-height: 760px;
    overflow: hidden;
  }

  .growth-orbit {
    inset: 64px 0 34px;
  }

  .growth-orbit img {
    width: min(78%, 320px);
  }

  .metric-card {
    width: 132px;
    padding: 13px;
  }

  .metric-card strong {
    font-size: 29px;
  }

  .traffic {
    top: 8px;
  }

  .leads {
    right: -6px;
    bottom: 22px;
  }

  .signal-card {
    display: none;
  }

  .mini-chart {
    display: none;
  }

  .split-section,
  .narrative,
  .authority-section,
  .platform-section,
  .about-method,
  .services-section,
  .process-section,
  .faq-section,
  .blog-section,
  .ranking-section,
  .trust-section,
  .help-section,
  .service-overview,
  .service-benefits,
  .deliverables-section,
  .service-payment,
  .client-auth,
  .dashboard-hero,
  .service-pricing,
  .seo-tools-section,
  .quote-section,
  .final-inner {
    padding: 72px 0;
  }

  .service-hero h1 {
    font-size: clamp(36px, 10vw, 46px);
    overflow-wrap: anywhere;
  }

  .service-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .service-proof div {
    min-height: 0;
  }

  .service-hero-panel {
    min-height: 360px;
    padding: 18px;
    border-radius: 18px;
  }

  .service-hero-panel::before {
    inset: 28px 18px 112px;
  }

  .service-hero-panel img {
    width: min(88%, 320px);
    margin-top: 28px;
  }

  .service-score {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .authority-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .authority-grid {
    gap: 8px;
  }

  .authority-grid article {
    min-height: 0;
    padding: 12px 14px;
  }

  .platform-section {
    padding: 8px 0 56px;
  }

  .platform-console {
    padding: 22px;
  }

  .platform-meter .platform-bar {
    height: 38px;
  }

  .platform-checks article,
  .trust-grid article {
    min-height: 0;
  }

  .payment-copy {
    position: static;
  }

  .payment-card,
  .client-login-card,
  .dashboard-status {
    padding: 22px;
  }

  .auth-row {
    align-items: stretch;
  }

  .auth-row .button {
    width: 100%;
  }

  .ai-growth-section {
    padding: 16px 0 72px;
  }

  .ai-growth-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ai-growth-panel h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .ai-growth-list {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 0;
    padding: 44px 0 66px;
  }

  .contact-hero {
    padding: 42px 0 54px;
  }

  .contact-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.06;
  }

  .contact-hero .service-proof {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .contact-direct {
    padding: 50px 0 28px;
  }

  .contact-report {
    margin-bottom: 56px;
    padding: 28px 18px;
  }

  .service-score {
    position: static;
    display: grid;
    margin-top: 18px;
  }

  .service-score strong {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .seo-tools-hero .service-hero-panel {
    padding: 18px;
  }

  .seo-tools-hero h1 {
    font-size: clamp(34px, 9.8vw, 40px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .seo-tools-hero > div > p:not(.section-label) {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .seo-tools-hero .service-hero-panel img {
    max-height: 260px;
  }

  .tool-card {
    padding: 18px;
  }

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

  .tool-form .button {
    width: 100%;
  }

  .tool-result:not(:empty) {
    padding: 14px;
  }

  .tool-score span {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .report-section {
    padding: 58px 20px;
  }

  .report-form-wrap {
    padding: 20px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-service-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom .footer-legal-nav {
    display: grid;
    gap: 9px;
  }

  .ethos-list article,
  .founder-card .founder-caption {
    grid-template-columns: 1fr;
    display: grid;
  }

  .zc-chatbot {
    right: 16px;
    bottom: 16px;
  }

  .zc-chatbot-launcher strong {
    display: none;
  }

  .zc-chatbot-launcher {
    min-height: 56px;
    padding: 9px;
  }

  .zc-chatbot-panel {
    right: -2px;
    bottom: 70px;
    width: calc(100vw - 24px);
    height: min(640px, calc(100vh - 94px));
    border-radius: 20px;
  }

  .zc-chatbot-message {
    max-width: 96%;
    font-size: 13px;
  }
}

/* Custom Socials & YouTube CTA Optimizations (Eliminating Inline Styles) */
.footer-socials {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--citrus, #ffb21d);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 178, 29, 0.3);
}

.social-link.yt:hover {
  background: #ff0000;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
  border-color: #ff0000;
}

.social-link.x:hover {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.youtube-subscribe-cta {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 8px;
  background: rgba(255, 0, 0, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px dashed rgba(255, 0, 0, 0.3);
  display: inline-block;
}

/* Custom 404 Page Styling */
.error-section {
  padding: 100px 0;
  text-align: center;
  display: grid;
  place-items: center;
  min-height: 55vh;
}

.error-card {
  max-width: 580px;
  padding: 48px 24px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 178, 29, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.error-code {
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(88px, 12vw, 110px);
  font-weight: 900;
  color: var(--citrus);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--citrus), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  font-family: Jost, Inter, sans-serif;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}

.error-desc {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.error-footer {
  font-size: 13.5px;
  color: var(--muted);
}

.error-footer a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.error-footer a:hover {
  color: var(--citrus);
}

@media (max-width: 1080px) {
  .reference-footer-shell {
    grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(160px, 0.72fr));
  }

  .reference-contact {
    padding-left: 0;
    border-left: 0;
  }

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

  .reference-footer .footer-service-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .reference-footer {
    padding: 34px 18px 18px;
  }

  .reference-footer-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .reference-footer .footer-logo img {
    width: 186px;
  }

  .reference-footer .footer-tagline,
  .footer-partners {
    max-width: none;
  }

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

  .footer-newsletter {
    padding: 20px 0;
  }

  .newsletter-copy {
    align-items: flex-start;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reference-footer .footer-bottom {
    display: grid;
    gap: 14px;
  }

  .reference-footer .footer-bottom nav {
    display: grid;
    gap: 10px;
  }
}


/* 2026 responsive polish: container, hero, menu motion, and brand-color footer icons */

h1 {
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.05;
}

h2,
.h2-style {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
}

.hero.section-shell {
  isolation: isolate;
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: 22px;
  padding:
    clamp(56px, 7vw, 92px)
    max(20px, calc((100vw - 1280px) / 2))
    clamp(58px, 6vw, 82px);
  background:
    linear-gradient(rgba(24, 90, 219, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 90, 219, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 74% 14%, rgba(124, 58, 237, 0.18), transparent 28%),
    radial-gradient(circle at 92% 34%, rgba(255, 107, 44, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f7fbff 54%, #ffffff 100%);
  background-size: 34px 34px, 34px 34px, 100% 100%, 100% 100%, 100% 100%;
  overflow: hidden;
}

.hero.section-shell::before,
.hero.section-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.72;
}

.hero.section-shell::before {
  width: 360px;
  height: 360px;
  right: max(20px, calc((100vw - 1280px) / 2));
  top: 42px;
  background: radial-gradient(circle, rgba(255, 178, 29, 0.22), transparent 66%);
  animation: heroGlowDrift 9s ease-in-out infinite;
}

.hero.section-shell::after {
  width: 280px;
  height: 280px;
  left: max(18px, calc((100vw - 1280px) / 2));
  bottom: 18px;
  background: radial-gradient(circle, rgba(10, 191, 122, 0.16), transparent 66%);
  animation: heroGlowDrift 11s ease-in-out infinite reverse;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1.05;
}

@keyframes heroGlowDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -12px, 0) scale(1.04);
  }
}

@media (min-width: 1121px) {
  .nav-dropdown-panel {
    display: grid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 12px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease,
      transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .mega-dropdown .mega-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(220px, 24vw, 280px);
    gap: 18px;
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel,
  .nav-dropdown.mega-open .nav-dropdown-panel,
  .mega-dropdown:hover .mega-panel,
  .mega-dropdown:focus-within .mega-panel,
  .mega-dropdown.mega-open .mega-panel {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
    animation: none;
  }

  .nav-dropdown-panel .mega-feature {
    position: relative;
    transform: translateY(0);
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.28s ease,
      border-color 0.28s ease,
      background 0.28s ease;
  }

  .nav-dropdown-panel .mega-feature::after {
    content: "AI";
    position: absolute;
    inset: 54px 26px auto auto;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffb21d, #ff5a22 54%, #7c3aed);
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.02em;
    pointer-events: none;
    box-shadow: 0 24px 58px rgba(255, 90, 34, 0.32);
    transform: translateY(0) scale(1);
    transition: transform 0.32s ease;
  }

  .nav-dropdown-panel .mega-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 178, 29, 0.42);
    box-shadow: 0 28px 72px rgba(16, 22, 36, 0.2);
  }

  .nav-dropdown-panel .mega-feature:hover::after {
    transform: translateY(-3px) scale(1.04);
  }
}

@media (max-width: 1180px) and (min-width: 1121px) {
  .mega-dropdown:hover .mega-panel,
  .mega-dropdown:focus-within .mega-panel,
  .mega-dropdown.mega-open .mega-panel {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .nav-dropdown-panel .mega-feature {
    display: none;
  }
}

.reference-footer-shell {
  max-width: 1400px;
  width: min(1400px, 100%);
}

.reference-footer .footer-socials {
  align-items: center;
}

.reference-footer .social-link,
.social-link {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.reference-footer .social-link svg,
.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.reference-footer .social-link:hover,
.social-link:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 16px 32px rgba(9, 20, 44, 0.26);
}

.social-link[aria-label="LinkedIn"] {
  color: #0a66c2;
}

.social-link[aria-label="Instagram"] {
  color: #d6249f;
  background:
    radial-gradient(circle at 30% 110%, rgba(253, 244, 151, 0.22) 0 15%, rgba(253, 89, 73, 0.16) 42%, rgba(214, 36, 159, 0.16) 68%, rgba(40, 90, 235, 0.16) 100%),
    rgba(255, 255, 255, 0.08);
}

.social-link[aria-label="Facebook"] {
  color: #1877f2;
}

.social-link[aria-label="YouTube"],
.social-link.yt {
  color: #ff0000;
}

.reference-footer .footer-whatsapp-link {
  border-color: rgba(37, 211, 102, 0.34);
}

.reference-footer .footer-whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.55);
}

.client-workspace {
  padding-top: 56px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 178, 29, 0.16), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(124, 58, 237, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.9), rgba(255, 255, 255, 0.98) 58%);
}

.client-workspace-shell {
  width: min(100% - 48px, 1280px);
  grid-template-columns: 250px minmax(0, 1fr);
}

.client-workspace .workspace-sidebar {
  padding: 18px;
  border-color: rgba(221, 229, 240, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(16, 22, 36, 0.11);
  backdrop-filter: blur(18px);
}

.client-workspace .workspace-sidebar nav {
  gap: 10px;
}

.client-workspace .workspace-sidebar a {
  display: grid;
  align-items: center;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  line-height: 1.2;
}

.client-workspace .workspace-sidebar a span {
  color: inherit;
  font-size: 15px;
}

.client-workspace .workspace-sidebar a small {
  color: currentColor;
  font-size: 12px;
  font-weight: 750;
  opacity: 0.72;
}

.client-workspace .workspace-sidebar a:hover,
.client-workspace .workspace-sidebar a.active {
  background: linear-gradient(135deg, #101827, #07543f);
  border-color: rgba(255, 178, 29, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

.client-workspace-hero {
  grid-template-columns: minmax(0, 0.74fr) minmax(430px, 1fr);
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.9)),
    radial-gradient(circle at 92% 10%, rgba(255, 90, 34, 0.16), transparent 34%);
}

.client-workspace-hero::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 130, 31, 0.16), transparent 62%),
    radial-gradient(circle at 35% 35%, rgba(12, 92, 68, 0.1), transparent 42%);
  pointer-events: none;
}

.client-workspace-hero h1 {
  max-width: 8.4ch;
  font-size: clamp(40px, 4.4vw, 56px);
}

.workspace-hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.workspace-hero-panel a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon count"
    "icon title"
    "copy copy";
  align-items: start;
  gap: 8px 14px;
  min-height: 148px;
  padding: 20px;
  border: 1px solid rgba(221, 229, 240, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.78)),
    radial-gradient(circle at 88% 10%, rgba(255, 130, 31, 0.12), transparent 34%);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(16, 22, 36, 0.09);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.workspace-hero-panel a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #0c6b4f, #2563eb);
}

.workspace-hero-panel a::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 116px;
  height: 116px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.44);
  transform: rotate(18deg);
}

.workspace-hero-panel a:hover {
  border-color: rgba(255, 90, 34, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 232, 0.9)),
    radial-gradient(circle at 88% 10%, rgba(255, 130, 31, 0.16), transparent 34%);
  box-shadow: 0 24px 54px rgba(16, 22, 36, 0.14);
  transform: translateY(-4px);
}

.workspace-hero-panel i {
  grid-area: icon;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fff8ef;
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 132, 31, 0.14), 0 16px 28px rgba(16, 22, 36, 0.08);
}

.workspace-hero-panel span {
  grid-area: count;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workspace-hero-panel strong {
  grid-area: title;
  font-family: Jost, Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
}

.workspace-hero-panel small {
  grid-area: copy;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
  max-width: 24ch;
  position: relative;
  z-index: 1;
}

.workspace-hero-panel .tile-profile i {
  background: #ecfdf5;
  color: #047857;
}

.workspace-hero-panel .tile-orders i {
  background: #eff6ff;
  color: #2563eb;
}

.workspace-hero-panel .tile-billing i {
  background: #fff7ed;
  color: #ea580c;
}

.workspace-hero-panel .tile-support i {
  background: #f5f3ff;
  color: #7c3aed;
}

.client-identity-card {
  border-radius: 16px;
}

.client-workspace .workspace-card {
  border-radius: 16px;
  scroll-margin-top: 122px;
}

.compact-project-setup {
  grid-template-columns: minmax(220px, 0.64fr) minmax(260px, 1fr);
  padding: 26px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 251, 247, 0.94), rgba(255, 255, 255, 0.98));
}

.compact-project-setup .project-copy h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.client-workspace .billing-module,
.client-workspace .support-module {
  display: grid;
  gap: 20px;
  padding: 30px;
}

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

.billing-grid article,
.support-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 208px;
  padding: 22px;
  border: 1px solid rgba(221, 229, 240, 0.95);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 241, 0.9));
}

.billing-grid span,
.support-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.billing-grid strong,
.support-grid strong {
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
}

.billing-grid p,
.support-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.62;
}

.billing-grid a:not(.button),
.support-grid a:not(.button) {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .client-workspace-shell,
  .client-workspace-hero,
  .compact-project-setup {
    grid-template-columns: 1fr;
  }

  .client-workspace .workspace-sidebar {
    position: static;
  }

  .client-workspace .workspace-sidebar nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .client-workspace {
    padding-top: 28px;
  }

  .client-workspace-shell {
    width: min(100% - 28px, 100%);
  }

  .client-workspace .workspace-sidebar nav,
  .workspace-hero-panel,
  .billing-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .client-workspace .workspace-sidebar a {
    min-height: 58px;
  }

  .client-workspace-hero {
    padding: 22px;
  }

  .workspace-hero-panel a {
    min-height: auto;
  }

  .compact-project-setup,
  .client-workspace .billing-module,
  .client-workspace .support-module {
    padding: 22px;
  }
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 178, 29, 0.16), transparent 30%),
    radial-gradient(circle at 86% 0%, rgba(124, 58, 237, 0.15), transparent 34%),
    linear-gradient(135deg, #fff8ef, #ffffff 48%, #f7fbff);
}

.admin-shell {
  width: min(100% - 36px, 1440px);
  margin: 0 auto;
  padding: 28px 0 80px;
}

.admin-login-card {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin: 8vh auto 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(221, 229, 240, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 90px rgba(16, 22, 36, 0.14);
  backdrop-filter: blur(18px);
}

.admin-brand img {
  width: 190px;
  height: auto;
}

.admin-login-card h1,
.admin-topbar h2 {
  margin: 0;
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
}

.admin-login-card p:not(.section-label),
.admin-topbar p,
.admin-stat-grid small,
.admin-table small {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.admin-login-form,
.admin-form {
  display: grid;
  gap: 14px;
}

.admin-login-form label,
.admin-form label {
  display: grid;
  gap: 8px;
  color: #575d6c;
  font-size: 13px;
  font-weight: 900;
}

.admin-login-form input,
.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-panel-head input,
.admin-panel-head select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(221, 229, 240, 0.96);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.admin-form textarea {
  min-height: 96px;
  padding: 13px;
  resize: vertical;
}

.admin-app {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-app[hidden],
.admin-login-card[hidden] {
  display: none;
}

.admin-sidebar,
.admin-panel,
.admin-topbar,
.admin-stat-grid article {
  border: 1px solid rgba(221, 229, 240, 0.96);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(16, 22, 36, 0.1);
  backdrop-filter: blur(18px);
}

.admin-sidebar {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.admin-sidebar nav a:hover {
  background: #101827;
  color: #fff;
}

.admin-main {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 24px;
}

.admin-live-pill {
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 16px;
  border: 1px solid rgba(7, 84, 63, 0.14);
  border-radius: 16px;
  background: rgba(7, 84, 63, 0.06);
}

.admin-live-pill span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.13);
}

.admin-live-pill strong,
.admin-stat-grid strong,
.admin-panel h2,
.admin-table strong {
  color: var(--ink);
  font-family: Jost, Inter, sans-serif;
  font-weight: 900;
}

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

.admin-stat-grid article {
  display: grid;
  gap: 7px;
  padding: 22px;
  border-radius: 18px;
}

.admin-stat-grid span,
.admin-table th {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stat-grid strong {
  font-size: 34px;
  line-height: 1;
}

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

.admin-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border-radius: 22px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-panel h2 {
  margin: 5px 0 0;
  font-size: 30px;
  line-height: 1.05;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(221, 229, 240, 0.86);
  color: #1f2937;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.admin-table strong,
.admin-table small {
  display: block;
}

.admin-table button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: #101827;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 178, 29, 0.16);
  color: #a44a0b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.admin-wide,
.admin-form button,
.admin-form .form-status {
  grid-column: 1 / -1;
}

@media (max-width: 1120px) {
  .admin-app,
  .admin-grid,
  .admin-editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

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

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

@media (max-width: 720px) {
  .admin-shell {
    width: min(100% - 24px, 100%);
    padding-top: 16px;
  }

  .admin-topbar,
  .admin-panel-head {
    display: grid;
    justify-items: start;
  }

  .admin-sidebar nav,
  .admin-stat-grid,
  .admin-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.section-shell::before,
  .hero.section-shell::after {
    animation: none;
  }

  .nav-dropdown-panel,
  .nav-dropdown-panel .mega-feature,
  .nav-dropdown-panel .mega-feature::after {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .section-shell {
    width: min(100% - 32px, 100%);
  }

  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .hero.section-shell {
    margin-top: 14px;
    padding-inline: 18px;
    padding-top: 54px;
  }
}

@media (max-width: 720px) {
  h1,
  .hero h1 {
    font-size: clamp(38px, 11.2vw, 48px);
  }

  h2,
  .h2-style {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero.section-shell {
    width: 100%;
    padding: 38px 16px 52px;
    border-radius: 0;
  }

  .nav-dropdown-panel .mega-feature::before {
    width: 112px;
    opacity: 0.54;
  }

  .nav-dropdown-panel .mega-feature::after {
    top: 20px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 16px;
  }

  .reference-footer-shell {
    width: 100%;
  }
}

main > section:not(.hero):not(.service-hero):not(.post-hero):not(.blog-hero):not(.hub-hero):not(.legal-hero):not(.ai-tools-hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}
