:root {
  --ink: #10242c;
  --muted: #60737b;
  --line: #d8e4e7;
  --paper: #f7fbfb;
  --white: #ffffff;
  --teal: #13b8b1;
  --teal-dark: #087c83;
  --mint: #dff7f3;
  --navy: #183a4a;
  --coral: #f26d5b;
  --amber: #f5b84b;
  --shadow: 0 24px 70px rgba(13, 64, 72, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(247, 251, 251, .92);
  border-bottom: 1px solid rgba(216, 228, 231, .85);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 198px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  background: var(--teal);
  color: #062e35;
  box-shadow: 0 12px 28px rgba(19, 184, 177, .22);
}

.secondary-button {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.hero {
  min-height: calc(92vh - 75px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(26px, 4vw, 48px) clamp(18px, 5vw, 72px) 32px;
  overflow: hidden;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.logo-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -28px 7% 18% -8%;
  background: linear-gradient(135deg, var(--mint), rgba(245, 184, 75, .22));
  border-radius: 28px;
  transform: rotate(-2deg);
}

.marketplace-board {
  position: relative;
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(16, 36, 44, .12);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.board-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.board-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 20px 0 0 var(--amber), 40px 0 0 var(--coral);
}

.board-top small,
.channel-stack small,
.flow-row span,
.erp-sync span {
  color: var(--muted);
}

.channel-stack {
  display: grid;
  gap: 12px;
}

.channel-stack article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfc;
}

.channel-stack strong,
.channel-stack small {
  display: block;
}

.channel-stack b {
  color: var(--teal-dark);
  font-size: 13px;
}

.channel-dot {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--teal);
}

.channel-dot.amber {
  background: var(--amber);
}

.channel-dot.coral {
  background: var(--coral);
}

.channel-dot.navy {
  background: var(--navy);
}

.flow-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.flow-row div {
  padding: 16px;
  border-radius: 8px;
  background: var(--mint);
}

.flow-row strong,
.flow-row span {
  display: block;
}

.flow-row strong {
  font-size: 26px;
  line-height: 1.1;
}

.erp-sync {
  display: grid;
  gap: 8px;
}

.erp-sync div {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: #e6eef0;
}

.erp-sync i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.intro-band,
.metrics,
.section,
.integration-section,
.routing-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  background: var(--navy);
  color: var(--white);
}

.intro-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.intro-band .section-kicker {
  color: var(--amber);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--white);
}

.metrics div {
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: #f4faf9;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 6px;
  font-size: 24px;
}

.metrics span,
.section-heading p:not(.section-kicker),
.feature-card p,
.process-grid p,
.routing-copy p:not(.section-kicker) {
  color: var(--muted);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker),
.routing-copy p:not(.section-kicker) {
  font-size: 17px;
}

.section-heading.compact {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-grid div {
  min-height: 250px;
  padding: 24px;
  border-top: 3px solid var(--coral);
  background: var(--white);
}

.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 900;
}

.integration-section {
  background: #eaf5f4;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-cloud span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 36, 44, .05);
}

.feature-section {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 280px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(16, 36, 44, .06);
}

.icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.feature-card:nth-child(3n+2) .icon {
  background: #fff3d8;
  color: #9b6500;
}

.feature-card:nth-child(3n) .icon {
  background: #ffe8e3;
  color: #b64131;
}

.routing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #f8fcfc 0%, #e5f5f2 100%);
}

.routing-copy {
  max-width: 760px;
}

.routing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: #0e222b;
  color: rgba(255, 255, 255, .72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, .5fr) minmax(220px, .7fr);
  gap: 28px;
}

.site-footer img {
  width: 188px;
  margin-bottom: 16px;
}

.site-footer .footer-logo {
  width: 170px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.footer-links,
.legal-info {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 600;
}

.footer-line,
.legal-info span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-line {
  margin-bottom: 10px;
}

.footer-address-line {
  display: inline-block;
  margin-top: 2px;
}

.footer-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(19, 184, 177, .28);
  border-radius: 6px;
  background: rgba(19, 184, 177, .1);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1120px) {
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .intro-band,
  .routing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .feature-grid,
  .metrics,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .routing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 160px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-actions,
  .hero-actions a,
  .routing-actions,
  .routing-actions a {
    width: 100%;
  }

  .feature-grid,
  .metrics,
  .footer-main,
  .flow-row {
    grid-template-columns: 1fr;
  }

  .board-top {
    grid-template-columns: 1fr;
  }

  .channel-stack article {
    grid-template-columns: auto 1fr;
  }

  .channel-stack b {
    grid-column: 2;
  }
}
.legal-page { max-width: 920px; margin: 0 auto; padding: 48px 20px 80px; } .legal-page header { margin-bottom: 34px; } .legal-page a { color: var(--teal-dark); font-weight: 800; } .legal-page section { padding: 24px 0; border-top: 1px solid var(--line); } .legal-page h3 { margin-top: 22px; } .legal-list { margin: 0 0 18px; padding-left: 22px; color: var(--muted); } .legal-list li { margin-bottom: 8px; }
.integration-map { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; width: 100%; padding: clamp(18px, 3vw, 28px); border: 1px solid rgba(16, 36, 44, .12); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); } .integration-map::before { content: ""; position: absolute; inset: 50% 12% auto 12%; height: 2px; background: linear-gradient(90deg, rgba(19, 184, 177, .15), rgba(242, 109, 91, .34), rgba(245, 184, 75, .22)); } .app-node, .map-group { position: relative; z-index: 1; display: grid; gap: 10px; min-height: 190px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #f8fcfc; } .app-node { align-content: center; justify-items: start; background: linear-gradient(135deg, #ffffff 0%, #eaf8f6 100%); } .app-node img { width: 188px; margin-bottom: 8px; } .app-node strong, .map-group strong { color: var(--navy); font-size: 18px; line-height: 1.2; } .app-node span { color: var(--muted); font-weight: 700; } .map-group span { display: inline-flex; width: fit-content; min-height: 34px; align-items: center; border-radius: 999px; padding: 6px 12px; background: var(--white); border: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 800; } .map-group.marketplaces { border-top: 4px solid var(--teal); } .map-group.erp { border-top: 4px solid var(--coral); } .map-group.logistics { border-top: 4px solid var(--amber); } @media (max-width: 640px) { .integration-map { grid-template-columns: 1fr; } .integration-map::before { display: none; } .app-node, .map-group { min-height: auto; } }
.integration-map .app-node { grid-column: 1 / -1; min-height: 180px; justify-items: center; text-align: center; } .integration-map .app-node img { width: min(320px, 82%); margin: 0 auto 14px; } .integration-map .app-node strong { max-width: 620px; font-size: clamp(24px, 3vw, 34px); line-height: 1.12; } .integration-map .map-group { min-height: 210px; align-content: start; } .integration-map .map-group span { white-space: normal; } @media (max-width: 980px) { .integration-map .app-node img { width: min(280px, 82%); } }
.integration-map { grid-template-columns: repeat(3, minmax(0, 1fr)); } @media (max-width: 820px) { .integration-map { grid-template-columns: repeat(2, minmax(0, 1fr)); } } @media (max-width: 640px) { .integration-map { grid-template-columns: 1fr; } }
.site-header { position: relative; padding: 32px clamp(28px, 5vw, 72px) 18px; background: rgba(247, 251, 251, .72); border-bottom: 0; backdrop-filter: none; } .brand img { width: clamp(210px, 20vw, 292px); } .nav-links { gap: clamp(28px, 4vw, 52px); color: #1d2b45; font-size: 16px; font-weight: 800; margin-left: auto; } .nav-links a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; } .nav-links a.has-menu::after { content: "⌄"; color: var(--navy); font-size: 17px; line-height: 1; transform: translateY(-1px); } .header-cta { min-height: 56px; padding: 0 28px; border-radius: 8px; color: var(--white); background: linear-gradient(180deg, #12b9b4 0%, #049ba4 100%); box-shadow: 0 12px 26px rgba(4, 155, 164, .22); font-size: 16px; } .hero { padding-top: clamp(30px, 3.5vw, 54px); } @media (max-width: 980px) { .site-header { padding-top: 18px; } .brand img { width: 190px; } } @media (max-width: 640px) { .site-header { align-items: center; padding: 14px 18px; } .brand img { width: 164px; } .header-cta { min-height: 42px; padding: 0 13px; font-size: 13px; } }

/* Marketplace landing body inspired by the provided responsive mockup. */
.landing-shell {
  --landing-ink: #0c1734;
  --landing-muted: #657189;
  --landing-teal: #00a6a6;
  --landing-teal-dark: #008c91;
  --landing-teal-soft: #e7fbfa;
  --landing-gold: #eca820;
  --landing-line: #dfe8ee;
  --landing-shadow: 0 24px 70px rgba(10, 36, 62, .11);
  width: min(100%, 1520px);
  margin: 0 auto;
  padding: 34px clamp(18px, 5vw, 76px) 44px;
  position: relative;
  overflow: hidden;
  color: var(--landing-ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 166, 166, .12), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, .96), rgba(245, 252, 253, .92));
}

.landing-shell::before,
.landing-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(0, 150, 157, .12);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.landing-shell::before {
  width: 720px;
  height: 230px;
  right: -155px;
  top: 92px;
}

.landing-shell::after {
  width: 520px;
  height: 170px;
  right: 70px;
  top: 152px;
}

.landing-shell svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(450px, .85fr) 1fr;
  gap: 58px;
  align-items: center;
  padding-top: 48px;
}

.landing-eyebrow,
.landing-kicker {
  margin: 0 0 12px;
  color: var(--landing-teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 4.3vw, 70px);
  line-height: 1.13;
  letter-spacing: 0;
  font-weight: 900;
}

.landing-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--landing-muted);
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.45;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 46px;
}

.landing-btn {
  display: inline-flex;
  min-width: 230px;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  padding: 0 28px;
  font-weight: 900;
  transition: .2s ease;
}

.landing-btn-primary,
.landing-strip-cta {
  color: #fff;
  background: linear-gradient(135deg, #00aaa9, #008b91);
  box-shadow: 0 14px 34px rgba(0, 150, 157, .24);
}

.landing-btn-primary:hover,
.landing-strip-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 150, 157, .3);
}

.landing-btn-outline {
  border: 2px solid var(--landing-teal-dark);
  color: var(--landing-teal-dark);
  background: #fff;
}

.landing-btn-outline:hover {
  background: var(--landing-teal-soft);
}

.landing-trust {
  display: flex;
  align-items: center;
  gap: 34px;
}

.landing-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--landing-ink);
  font-size: 16px;
  font-weight: 800;
}

.landing-trust-item:not(:last-child) {
  padding-right: 34px;
  border-right: 1px solid var(--landing-line);
}

.landing-trust-item svg {
  width: 40px;
  height: 40px;
  color: var(--landing-teal-dark);
}

.landing-visual {
  min-height: 470px;
  position: relative;
}

.landing-dashboard {
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  margin: auto;
  width: min(640px, 100%);
  height: 340px;
  display: grid;
  grid-template-columns: 76px 1fr;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(222, 235, 241, .9);
  border-radius: 0 18px 18px 10px;
  box-shadow: var(--landing-shadow);
  transform: perspective(1100px) rotateY(-8deg) rotateX(2deg);
  backdrop-filter: blur(10px);
}

.landing-dash-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-radius: 10px 0 0 10px;
  background: #092b48;
  color: #8ff4ef;
}

.landing-dash-rail span:first-child {
  font-weight: 900;
}

.landing-dash-rail span:not(:first-child) {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: .85;
}

.landing-dash-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 34px 34px 30px;
}

.landing-metric-card,
.landing-chart-card {
  border: 1px solid #e8eef2;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 25px rgba(20, 42, 70, .08);
}

.landing-metric-card {
  padding: 18px;
}

.landing-metric-card small,
.landing-chart-card small {
  display: block;
  color: #23324b;
  font-size: 12px;
  font-weight: 900;
}

.landing-metric-card strong {
  display: block;
  margin: 12px 0 6px;
  font-size: 20px;
}

.landing-metric-card em {
  color: var(--landing-teal-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.landing-chart-card {
  padding: 18px;
}

.landing-line-card {
  grid-column: span 2;
}

.landing-line-card svg {
  width: 100%;
  height: 120px;
  stroke-width: 3;
}

.landing-gridline {
  stroke: #dfe7ec;
  stroke-width: 1;
}

.landing-line {
  fill: none;
  stroke: var(--landing-teal);
}

.landing-donut-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.landing-donut {
  width: 96px;
  height: 96px;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--landing-teal) 0 45%, #0e3556 45% 68%, #a6bac7 68% 84%, #e5eaee 84% 100%);
}

.landing-donut::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: #fff;
}

.landing-donut-wrap ul {
  margin: 0;
  padding: 0;
  color: #667388;
  font-size: 11px;
  font-weight: 800;
  line-height: 2;
  list-style: none;
}

.landing-donut-wrap li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--landing-teal);
}

.landing-donut-wrap li:nth-child(2)::before { background: #0e3556; }
.landing-donut-wrap li:nth-child(3)::before { background: #a6bac7; }
.landing-donut-wrap li:nth-child(4)::before { background: #e5eaee; }

.landing-device-base {
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: 42px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #edf4f7, #dce8ed);
  filter: blur(.3px);
  box-shadow: 0 18px 30px rgba(16, 55, 80, .11);
}

.landing-dot-grid {
  position: absolute;
  left: 80px;
  top: 8px;
  width: 120px;
  height: 110px;
  background-image: radial-gradient(rgba(0, 166, 166, .26) 2px, transparent 2px);
  background-size: 18px 18px;
}

.landing-orbit {
  position: absolute;
  border: 1px solid rgba(0, 166, 166, .13);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.landing-orbit-a {
  right: -60px;
  top: 20px;
  width: 460px;
  height: 180px;
}

.landing-orbit-b {
  right: -130px;
  top: 96px;
  width: 640px;
  height: 230px;
}

.landing-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--landing-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 38px rgba(18, 45, 71, .05);
}

.landing-summary h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.landing-summary p:last-child {
  margin: 0;
  color: var(--landing-muted);
  font-size: 18px;
}

.anchor-offset {
  display: block;
  position: relative;
  top: -20px;
}

.landing-feature-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.1fr;
  gap: 32px;
  margin-top: 26px;
}

.landing-feature-card {
  padding: 28px 26px;
  border: 1px solid var(--landing-line);
  border-top: 2px solid var(--landing-teal);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 45px rgba(18, 45, 71, .06);
  backdrop-filter: blur(8px);
}

.landing-feature-card.accent-gold {
  border-top-color: var(--landing-gold);
}

.landing-feature-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.landing-feature-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #20c5be, #00858d);
  box-shadow: 0 12px 24px rgba(0, 150, 157, .22);
}

.landing-feature-icon.gold {
  background: linear-gradient(135deg, #ffc75b, #dfa019);
  box-shadow: 0 12px 24px rgba(223, 160, 25, .22);
}

.landing-feature-head h2 {
  margin: 0;
  position: relative;
  font-size: 25px;
  line-height: 1.15;
}

.landing-feature-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 36px;
  height: 2px;
  background: var(--landing-teal);
}

.accent-gold .landing-feature-head h2::after {
  background: var(--landing-gold);
}

.landing-pill-list,
.landing-market-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-pill-list li,
.landing-market-list li {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid #e4ebef;
  border-radius: 11px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 22px rgba(10, 32, 50, .05);
  font-size: 16px;
  font-weight: 750;
}

.landing-pill-list span {
  width: 20px;
  height: 20px;
  position: relative;
  border: 2px solid var(--landing-teal-dark);
  border-radius: 3px;
}

.landing-pill-list span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--landing-teal-dark);
}

.landing-market-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mp {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mp-tr,
.mp-te,
.mp-hb { background: #ff6b18; }
.mp-cs { background: #fff; color: #db2a21; font-size: 20px; }
.mp-n11 { background: #5d30b5; }
.mp-pz { border: 3px solid #ff2b7a; background: #fff; color: #6b2ef4; font-size: 22px; }

.landing-operation-list li {
  gap: 14px;
}

.landing-operation-list li svg {
  width: 24px;
  height: 24px;
  color: #0b1734;
  flex: 0 0 auto;
}

.landing-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.landing-benefits div {
  padding: 22px;
  border-left: 4px solid var(--landing-teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 10px 28px rgba(18, 45, 71, .05);
}

.landing-benefits strong,
.landing-benefits span {
  display: block;
}

.landing-benefits strong {
  margin-bottom: 8px;
  color: var(--landing-ink);
  font-size: 22px;
}

.landing-benefits span {
  color: var(--landing-muted);
}

.landing-bottom-strip {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  padding: 18px 28px;
  border: 1px solid var(--landing-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 12px 38px rgba(18, 45, 71, .05);
}

.landing-bottom-strip div {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 18px;
}

.landing-bottom-strip svg {
  width: 38px;
  height: 38px;
  color: var(--landing-teal-dark);
}

.landing-bottom-strip > span {
  width: 1px;
  height: 36px;
  background: var(--landing-line);
}

.landing-bottom-strip p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 18px;
}

.landing-strip-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .landing-shell { padding: 28px 34px 38px; }
  .landing-hero { grid-template-columns: 1fr; padding-top: 48px; }
  .landing-visual { order: -1; min-height: 420px; }
  .landing-dashboard { top: 44px; }
  .landing-feature-grid { grid-template-columns: 1fr 1fr; }
  .landing-feature-card.accent-gold { grid-column: 1 / -1; }
  .landing-bottom-strip { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 820px) {
  .landing-shell { padding: 24px 18px 34px; }
  .landing-hero { gap: 24px; padding-top: 34px; }
  .landing-copy h1 { font-size: 42px; }
  .landing-copy p { font-size: 19px; }
  .landing-actions { gap: 14px; margin-bottom: 34px; }
  .landing-btn { width: 100%; min-width: 0; }
  .landing-trust { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .landing-trust-item { border-right: 0 !important; padding-right: 0 !important; }
  .landing-visual { min-height: 330px; }
  .landing-dashboard { width: 92%; height: auto; grid-template-columns: 48px 1fr; top: 26px; transform: perspective(900px) rotateY(-5deg); }
  .landing-dash-rail { padding: 14px 0; gap: 16px; }
  .landing-dash-rail span:not(:first-child) { width: 12px; height: 12px; }
  .landing-dash-content { grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px; }
  .landing-metric-card { padding: 12px; }
  .landing-metric-card:nth-child(3),
  .landing-line-card,
  .landing-donut-card { grid-column: 1 / -1; }
  .landing-donut-wrap { justify-content: space-between; }
  .landing-dot-grid,
  .landing-orbit { display: none; }
  .landing-device-base { bottom: 18px; }
  .landing-summary,
  .landing-feature-grid,
  .landing-benefits { grid-template-columns: 1fr; }
  .landing-summary { padding: 24px 20px; }
  .landing-feature-grid { gap: 18px; }
  .landing-feature-card { padding: 22px 18px; }
  .landing-feature-head { gap: 16px; }
  .landing-feature-icon { width: 58px; height: 58px; }
  .landing-feature-head h2 { font-size: 22px; }
  .landing-market-list { grid-template-columns: 1fr; }
  .landing-bottom-strip { align-items: flex-start; justify-content: flex-start; }
  .landing-bottom-strip div,
  .landing-bottom-strip p { font-size: 16px; }
  .landing-bottom-strip > span { display: none; }
}

@media (max-width: 480px) {
  .landing-shell { padding: 18px 14px 28px; }
  .landing-copy h1 { font-size: 34px; }
  .landing-copy p { font-size: 17px; }
  .landing-visual { min-height: 285px; }
  .landing-dashboard { width: 96%; grid-template-columns: 38px 1fr; }
  .landing-dash-content { padding: 12px; }
  .landing-metric-card strong { font-size: 17px; }
  .landing-line-card svg { height: 88px; }
  .landing-donut { width: 76px; height: 76px; }
  .landing-donut::after { inset: 20px; }
  .landing-pill-list li,
  .landing-market-list li { padding: 0 14px; font-size: 15px; }
  .landing-bottom-strip { padding: 16px; }
}

.landing-screen-shot {
  position: absolute;
  left: 0;
  right: 0;
  top: 54px;
  width: min(680px, 100%);
  margin: auto;
  padding: 12px;
  border: 1px solid rgba(222, 235, 241, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--landing-shadow);
  transform: perspective(1100px) rotateY(-7deg) rotateX(2deg);
  backdrop-filter: blur(10px);
}

.landing-screen-shot img {
  width: 100%;
  aspect-ratio: 537 / 411;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(12, 23, 52, .08);
  background: #fff;
}

@media (max-width: 1200px) {
  .landing-screen-shot { top: 40px; }
}

@media (max-width: 820px) {
  .landing-screen-shot {
    top: 24px;
    width: 94%;
    padding: 8px;
    transform: perspective(900px) rotateY(-4deg);
  }
}

@media (max-width: 480px) {
  .landing-screen-shot {
    width: 98%;
    padding: 6px;
  }
}
.landing-screen-shot img { aspect-ratio: 1672 / 941; object-fit: cover; }
.landing-bottom-strip { justify-content: space-between; } .landing-bottom-strip div:first-child { max-width: 820px; } .landing-strip-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; } .landing-strip-link { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 1px solid var(--landing-line); border-radius: 8px; padding: 0 18px; background: #fff; color: var(--landing-teal-dark); font-weight: 900; white-space: nowrap; } @media (max-width: 820px) { .landing-bottom-strip { align-items: stretch; } .landing-strip-actions, .landing-strip-actions a { width: 100%; } }
.landing-screen-shot { padding: 0; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; } .landing-screen-shot img { border: 0; background: transparent; }
.landing-eyebrow, .landing-kicker, .eyebrow, .section-kicker { text-transform: none; }
.landing-summary h2 { max-width: 680px; font-size: clamp(26px, 2.55vw, 38px); line-height: 1.16; } .landing-summary p:last-child { max-width: 760px; font-size: clamp(16px, 1.15vw, 18px); line-height: 1.72; } @media (max-width: 820px) { .landing-summary h2 { font-size: 28px; } } @media (max-width: 480px) { .landing-summary h2 { font-size: 24px; } .landing-summary p:last-child { font-size: 16px; } }

.landing-summary {
  grid-template-columns: minmax(320px, .95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(0, 166, 166, .22);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(232,249,248,.7));
}

.landing-summary > div,
.landing-summary > p:last-child {
  position: relative;
  z-index: 1;
}

.landing-summary > div {
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.18)),
    radial-gradient(circle at 10% 10%, rgba(0,166,166,.14), transparent 34%);
}

.landing-summary > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--landing-teal), var(--landing-gold));
}

.landing-summary .landing-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 13px;
  border: 1px solid rgba(0, 166, 166, .24);
  border-radius: 999px;
  background: rgba(231, 251, 250, .85);
  color: var(--landing-teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.landing-summary h2 {
  max-width: 620px;
  font-size: clamp(28px, 3.05vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.landing-summary > p:last-child {
  display: flex;
  align-items: center;
  margin: 18px;
  padding: clamp(24px, 3.5vw, 40px);
  border: 1px solid rgba(223, 232, 238, .94);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  color: var(--landing-muted);
  box-shadow: 0 16px 44px rgba(18, 45, 71, .06);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
}

.landing-summary > p:last-child::before {
  content: "";
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin-right: 18px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0,166,166,.16), rgba(236,168,32,.16)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 24 24' fill='none' stroke='%23008c91' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3Cpath d='M8 5v14M16 5v14'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

@media (max-width: 980px) {
  .landing-summary {
    grid-template-columns: 1fr;
  }

  .landing-summary > p:last-child {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .landing-summary > div {
    padding: 26px 22px;
  }

  .landing-summary h2 {
    font-size: 25px;
  }

  .landing-summary > p:last-child {
    display: block;
    margin: 0 14px 14px;
    padding: 22px;
  }

  .landing-summary > p:last-child::before {
    display: block;
    margin: 0 0 16px;
  }
}
.landing-summary > p:last-child br { display: block; content: ""; margin-top: 10px; }
.landing-trust-item span { min-width: 120px; } .landing-trust-item span br { display: block; } .landing-trust-item span { white-space: nowrap; } @media (max-width: 820px) { .landing-trust-item span { min-width: 0; } }

.logo-market-list li {
  justify-content: center;
  min-height: 58px;
  padding: 10px 16px;
}

.logo-market-list img {
  width: 100%;
  max-width: 138px;
  max-height: 34px;
  object-fit: contain;
}

.logo-market-list li:nth-child(2) img {
  max-height: 26px;
}

@media (max-width: 820px) {
  .logo-market-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .logo-market-list {
    grid-template-columns: 1fr;
  }

  .logo-market-list img {
    max-width: 150px;
  }
}

/* Keep the page chrome aligned with the centered landing content on wide screens. */
.site-header,
.site-footer {
  width: min(100%, 1520px);
  margin-left: auto;
  margin-right: auto;
}



/* Main nav clarity */
.main-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(207, 226, 232, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(15, 48, 68, 0.05);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 7px;
  color: #17384b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #007b83;
  background: #e7fbfa;
  outline: none;
}

.main-nav a[aria-current="page"] {
  color: #062e35;
  background: #18b9b4;
}

@media (max-width: 980px) {
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .main-nav {
    gap: 6px;
    padding: 5px;
  }

  .main-nav a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }
}


/* SEO solution pages */
.seo-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #64748b;
  font-size: 0.92rem;
}

.seo-breadcrumb a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 700;
}

.seo-breadcrumb strong {
  color: #17384b;
}

.seo-hero {
  display: grid;
  gap: 22px;
  padding: 56px 0 42px;
  border-bottom: 1px solid #dce8ee;
}

.seo-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #0f3044;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.seo-hero > p:not(.landing-eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #496375;
  font-size: 1.18rem;
  line-height: 1.72;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.seo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
}

.seo-pills li {
  padding: 9px 12px;
  border: 1px solid #cfe2e8;
  border-radius: 999px;
  color: #17384b;
  background: #f8fbfc;
  font-weight: 800;
  font-size: 0.92rem;
}

.seo-section {
  padding: 56px 0 0;
}

.seo-section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.seo-section-heading h2 {
  margin: 8px 0 0;
  color: #0f3044;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 48, 68, 0.07);
}

.seo-card h2 {
  margin: 0 0 12px;
  color: #0f3044;
  font-size: 1.25rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.seo-card p {
  margin: 0;
  color: #496375;
  line-height: 1.68;
}

.seo-flow ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seo-flow li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: #f8fbfc;
}

.seo-flow span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #18b9b4;
  color: #083443;
  font-weight: 900;
}

.seo-flow p {
  margin: 0;
  color: #17384b;
  font-weight: 750;
  line-height: 1.55;
}

.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.seo-related-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  color: #0f3044;
  background: #ffffff;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.28;
}

.seo-related-grid a:hover {
  border-color: #18b9b4;
  color: #007b83;
}

.solution-directory {
  padding: 72px 0 0;
}

.solution-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.solution-directory-grid a {
  padding: 18px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  color: #17384b;
  background: #ffffff;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(15, 48, 68, 0.06);
}

.solution-directory-grid a:hover {
  border-color: #18b9b4;
  color: #007b83;
}

@media (max-width: 900px) {
  .seo-card-grid,
  .seo-related-grid,
  .solution-directory-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .seo-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 22px;
  }

  .seo-hero {
    padding: 38px 0 34px;
  }

  .seo-card-grid,
  .seo-related-grid,
  .solution-directory-grid {
    grid-template-columns: 1fr;
  }

  .seo-flow li {
    grid-template-columns: 40px 1fr;
    padding: 15px;
  }

  .seo-flow span {
    width: 40px;
    height: 40px;
  }
}


/* Clickable marketplace logos */
.logo-market-list a {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
}

.logo-market-list li:hover {
  border-color: #18b9b4;
  box-shadow: 0 14px 30px rgba(15, 48, 68, 0.08);
}

.logo-market-list a:focus-visible {
  outline: 3px solid rgba(24, 185, 180, 0.32);
  outline-offset: 3px;
}


/* Anchor target spacing */
#ekosistem,
#urunler,
#iletisim,
#cozum-rehberi {
  scroll-margin-top: 128px;
}

@media (max-width: 980px) {
  #ekosistem,
  #urunler,
  #iletisim,
  #cozum-rehberi {
    scroll-margin-top: 172px;
  }
}


/* SEO resource cards */
.seo-section-heading > p:not(.landing-eyebrow) {
  margin: 12px 0 0;
  color: #496375;
  line-height: 1.68;
}

.seo-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-resource-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 26px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 18px 38px rgba(15, 48, 68, 0.07);
}

.seo-resource-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #007b83;
  background: #e7fbfa;
  font-size: 0.82rem;
  font-weight: 900;
}

.seo-resource-card h3 {
  margin: 0;
  color: #0f3044;
  font-size: 1.35rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.seo-resource-card p {
  margin: 0;
  color: #496375;
  line-height: 1.68;
}

.seo-resource-card a {
  margin-top: auto;
}

@media (max-width: 760px) {
  .seo-resource-grid {
    grid-template-columns: 1fr;
  }
}


.footer-trademark-note {
  margin: -2px auto 0;
  padding-top: 12px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
}


/* Linked ERP pills */
.landing-pill-list a {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.landing-pill-list li:has(a):hover {
  border-color: #18b9b4;
  box-shadow: 0 14px 30px rgba(15, 48, 68, 0.08);
}

.landing-pill-list a:focus-visible {
  outline: 3px solid rgba(24, 185, 180, 0.32);
  outline-offset: 3px;
  border-radius: 8px;
}

.seo-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-note-grid article {
  padding: 24px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: #f8fbfc;
}

.seo-note-grid h3 {
  margin: 0 0 10px;
  color: #0f3044;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.seo-note-grid p {
  margin: 0;
  color: #496375;
  line-height: 1.68;
}

.seo-card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seo-check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: #ffffff;
  color: #17384b;
  font-weight: 750;
  line-height: 1.55;
}

.seo-check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 12px;
  height: 7px;
  border-left: 3px solid #18b9b4;
  border-bottom: 3px solid #18b9b4;
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .seo-card-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .seo-note-grid,
  .seo-check-list,
  .seo-card-grid-four {
    grid-template-columns: 1fr;
  }
}


/* Back to top button */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: #18b9b4;
  color: #062e35;
  box-shadow: 0 16px 34px rgba(4, 155, 164, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top span {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #0aa0a6;
  outline: none;
}

@media (max-width: 640px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}


/* SEO visual feature section */
.seo-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.seo-visual-card {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 14px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 48, 68, 0.07);
}

.seo-visual-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  border: 1px solid #e4ebef;
  background: #f8fbfc;
}

.seo-visual-card figcaption {
  color: #496375;
  font-size: 0.95rem;
  line-height: 1.55;
}

.seo-compact-cards .seo-card {
  min-height: 178px;
}

@media (max-width: 980px) {
  .seo-visual-grid {
    grid-template-columns: 1fr;
  }
}


/* SEO differentiator sections */
.seo-differentiator .seo-card {
  min-height: 188px;
}

.seo-use-case-list {
  margin-top: 18px;
}


/* SEO depth sections */
.seo-depth-section .seo-note-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}


/* SEO implementation note */
.seo-implementation-note {
  padding-top: 42px;
}

.seo-implementation-note .seo-section-heading {
  max-width: none;
  width: 100%;
  padding: 24px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: #f8fbfc;
}


.seo-inline-note {
  margin: 24px 0 0;
  color: #496375;
  line-height: 1.68;
}


.seo-visual-grid-single {
  grid-template-columns: 1fr;
}

.seo-visual-grid-single .seo-visual-card img {
  aspect-ratio: 16 / 8.5;
  object-fit: contain;
  background: #eef3f6;
}

.seo-visual-grid-contained .seo-visual-card img { aspect-ratio: 16 / 8.7; object-fit: contain; background: #eef3f6; }

.seo-visual-grid-compact {
  grid-template-columns: minmax(280px, 520px);
  justify-content: start;
}

.seo-visual-grid-compact .seo-visual-card img {
  aspect-ratio: auto;
  max-height: 520px;
  object-fit: contain;
  background: #eef3f6;
}

.seo-visual-grid-short .seo-visual-card img {
  aspect-ratio: 1345 / 391;
  object-fit: contain;
  background: #eef3f6;
}

.seo-side-visual-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.seo-side-copy {
  padding: 24px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: #f8fbfc;
}

.seo-side-copy h3 {
  margin: 0 0 10px;
  color: #0f3044;
  font-size: 1.28rem;
}

.seo-side-copy p {
  margin: 0;
  color: #496375;
  line-height: 1.68;
}

.seo-side-visual-card img {
  width: min(300px, 100%);
  height: auto;
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  background: #eef3f6;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .seo-side-visual-row { grid-template-columns: 1fr; }
}

.seo-depth-section .seo-actions {
  margin-top: 18px;
}

/* Mobile header usability */
@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px 10px;
    gap: 10px;
  }

  .brand img {
    width: clamp(142px, 42vw, 164px);
  }

  .header-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
    white-space: nowrap;
  }

  .main-nav {
    padding: 4px;
    border-radius: 8px;
    gap: 5px;
  }

  .main-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
}
/* AI answer and FAQ blocks */
.seo-answer-block .seo-section-heading,
.seo-faq .seo-section-heading {
  max-width: 900px;
}

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

.seo-faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: #fff;
}

.seo-faq-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.32;
}

.seo-faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

@media (max-width: 760px) {
  .seo-faq-grid {
    grid-template-columns: 1fr;
  }
}