:root {
  --bg: #050914;
  --bg-soft: #09111f;
  --panel: rgba(10, 24, 45, 0.72);
  --panel-strong: rgba(14, 35, 68, 0.86);
  --text: #f7fbff;
  --muted: #aebdd2;
  --line: rgba(143, 204, 255, 0.18);
  --blue: #38bdf8;
  --blue-strong: #0ea5e9;
  --white-blue: #eaf7ff;
  --shadow: 0 24px 80px rgba(14, 165, 233, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(14, 165, 233, 0.12), transparent 24rem),
    linear-gradient(135deg, #030712 0%, var(--bg) 48%, #071827 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(20px);
}

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

.brand {
  gap: 11px;
  font-weight: 800;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(143, 204, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(2, 8, 18, 0.76);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 18px 45px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(56, 189, 248, 0.18);
}

.brand-logo {
  display: block;
  width: clamp(300px, 25vw, 440px);
  height: auto;
  filter:
    brightness(1.8)
    contrast(1.28)
    saturate(1.32)
    drop-shadow(0 0 20px rgba(56, 189, 248, 0.48));
}

.nav {
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(143, 204, 255, 0.16);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.58);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.nav a {
  color: var(--white-blue);
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: 180ms ease;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(143, 204, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(255, 255, 255, 0.055));
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.16);
}

.hero,
.section,
.split-section,
.contact {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 70px 0 96px;
}

.compact-hero {
  min-height: 72vh;
}

.image-hero {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 0.78fr);
  min-height: calc(100vh - 82px);
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 88px clamp(22px, 6vw, 96px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.96) 0%, rgba(3, 7, 18, 0.82) 34%, rgba(3, 7, 18, 0.28) 68%, rgba(3, 7, 18, 0.12) 100%),
    url("assets/hero-webstudio-ai.png") center right / cover no-repeat;
  box-shadow: 0 30px 90px rgba(14, 165, 233, 0.2);
}

.image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 38%, rgba(56, 189, 248, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(3, 7, 18, 0.08), rgba(3, 7, 18, 0.72));
}

.image-hero .hero-content {
  max-width: 860px;
}

.page-hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 90px 0 52px;
}

.page-hero .hero-content {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.hero-subtitle {
  max-width: 840px;
  margin-bottom: 18px;
  color: var(--white-blue);
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  font-weight: 700;
  line-height: 1.42;
}

.hero-text,
.section-heading p,
.glass-box p,
.contact p,
article p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 720px;
  font-size: 1.08rem;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 10px 12px;
  color: var(--white-blue);
  font-size: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1160px, calc(100% - 40px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
}

.trust-item {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(143, 204, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.16), rgba(255, 255, 255, 0.035) 44%, rgba(6, 18, 36, 0.86)),
    rgba(3, 12, 26, 0.84);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(56, 189, 248, 0.12);
  backdrop-filter: blur(18px);
}

.trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.28), transparent 4.8rem);
}

.trust-item span,
.trust-item strong {
  position: relative;
}

.trust-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(143, 204, 255, 0.28);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
}

.trust-item strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #03111e;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fdff, var(--blue));
  box-shadow: 0 16px 42px rgba(56, 189, 248, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(56, 189, 248, 0.34);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(4, 10, 23, 0.78));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), transparent 42%);
}

.panel-top,
.score-card,
.signal-list {
  position: relative;
}

.panel-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.score-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.score-card p,
.score-card span {
  color: var(--muted);
}

.score-card strong {
  display: block;
  margin: 8px 0;
  color: var(--text);
  font-size: 5rem;
  letter-spacing: -0.07em;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.signal-list span {
  padding: 14px 16px;
  color: var(--white-blue);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.07);
}

.section,
.split-section {
  padding: 92px 0;
}

.image-hero + .section,
.trust-strip + .section {
  position: relative;
}

.image-hero + .section::before,
.trust-strip + .section::before {
  content: "";
  position: absolute;
  inset: 0 50% auto 50%;
  z-index: -1;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(3, 7, 18, 0.24), transparent 70%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid,
.services,
.steps,
.comparison-grid,
.topic-grid {
  display: grid;
  gap: 18px;
}

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

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

.steps {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}

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

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

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

article,
.glass-box,
.contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

article {
  padding: 26px;
}

.topic-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.1), transparent 42%),
    rgba(6, 18, 36, 0.76);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 204, 255, 0.36);
  box-shadow: 0 26px 76px rgba(14, 165, 233, 0.16);
}

.topic-card .button {
  width: 100%;
  margin-top: auto;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 8% 50% auto 50%;
  z-index: -1;
  width: 100vw;
  height: 82%;
  margin-left: -50vw;
  background:
    radial-gradient(circle at 22% 20%, rgba(56, 189, 248, 0.16), transparent 23rem),
    radial-gradient(circle at 78% 56%, rgba(14, 165, 233, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(8, 19, 38, 0.56), rgba(3, 7, 18, 0));
}

.about-heading {
  max-width: 860px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

.about-copy {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(143, 204, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.14), transparent 44%),
    rgba(5, 16, 33, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.22), transparent 8rem);
}

.about-copy p {
  position: relative;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

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

.about-card {
  min-height: 210px;
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.12), rgba(255, 255, 255, 0.035) 48%, rgba(6, 18, 36, 0.78)),
    rgba(7, 20, 39, 0.78);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 204, 255, 0.38);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(56, 189, 248, 0.16);
}

.about-card h3 {
  color: var(--text);
}

.about-card p {
  margin-bottom: 0;
}

.premium-check-section {
  position: relative;
  padding-top: 34px;
}

.premium-check-section::before {
  content: "";
  position: absolute;
  inset: 0 50% auto 50%;
  z-index: -1;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  background:
    radial-gradient(circle at 18% 28%, rgba(56, 189, 248, 0.24), transparent 28rem),
    radial-gradient(circle at 82% 50%, rgba(14, 165, 233, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(8, 20, 39, 0.7), rgba(3, 7, 18, 0));
}

.premium-check-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(143, 204, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(255, 255, 255, 0.045) 42%, rgba(2, 8, 18, 0.88)),
    rgba(4, 13, 29, 0.9);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.46),
    0 0 80px rgba(56, 189, 248, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
}

.premium-check-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent 26%),
    radial-gradient(circle at 76% 12%, rgba(56, 189, 248, 0.36), transparent 10rem);
}

.premium-check-heading,
.check-card-grid,
.check-cta {
  position: relative;
}

.premium-check-heading {
  max-width: 870px;
}

.premium-check-heading h2 {
  max-width: 800px;
}

.premium-check-heading p {
  max-width: 760px;
  font-size: 1.08rem;
}

.check-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.check-card {
  grid-column: span 2;
  min-height: 238px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.16), rgba(255, 255, 255, 0.045) 44%, rgba(4, 16, 34, 0.76)),
    rgba(6, 18, 36, 0.84);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.check-card:nth-child(4),
.check-card:nth-child(5) {
  grid-column: span 3;
}

.check-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 204, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.22), rgba(255, 255, 255, 0.055) 48%, rgba(5, 18, 39, 0.88)),
    rgba(6, 18, 36, 0.9);
  box-shadow:
    0 32px 82px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(56, 189, 248, 0.2);
}

.check-card h3 {
  color: var(--text);
  font-size: 1.18rem;
}

.check-card p {
  margin-bottom: 0;
}

.check-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(143, 204, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(234, 247, 255, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(255, 255, 255, 0.045) 48%, rgba(2, 10, 22, 0.78));
  box-shadow: 0 20px 64px rgba(14, 165, 233, 0.16);
}

.check-cta h3 {
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  letter-spacing: -0.03em;
}

.check-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.check-cta .button {
  flex: 0 0 auto;
}

article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.glass-box {
  padding: 34px;
}

.glass-box p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--white-blue);
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--white-blue), var(--blue));
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.34);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.showcase-section {
  align-items: stretch;
}

.before-after-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.11), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
}

.comparison-labels,
.comparison-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.comparison-labels span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-preview > div {
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.old-preview {
  display: grid;
  align-content: start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.old-preview span,
.new-preview span {
  display: block;
  height: 16px;
  border-radius: 999px;
}

.old-preview span {
  background: rgba(174, 189, 210, 0.28);
}

.old-preview span:nth-child(1) {
  width: 70%;
}

.old-preview span:nth-child(2) {
  width: 92%;
}

.old-preview span:nth-child(3) {
  width: 58%;
}

.new-preview {
  display: grid;
  align-content: end;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 12%, rgba(56, 189, 248, 0.34), transparent 7rem),
    rgba(56, 189, 248, 0.08);
}

.new-preview strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.new-preview span {
  background: linear-gradient(90deg, var(--white-blue), var(--blue));
}

.new-preview span:nth-child(2) {
  width: 88%;
}

.new-preview span:nth-child(3) {
  width: 64%;
}

.before-after-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.customer-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.project-meta span {
  padding: 10px 12px;
  color: var(--white-blue);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
}

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

.mini-list li {
  color: var(--white-blue);
  line-height: 1.5;
}

.mini-list li::before {
  content: "+";
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  place-items: center;
  color: #02111f;
  font-weight: 900;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--white-blue), var(--blue));
}

.decision-steps article {
  min-height: 220px;
}

.contact {
  margin-bottom: 80px;
  padding: 56px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.12), transparent 45%),
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.26), transparent 24rem),
    var(--panel-strong);
}

.contact p {
  max-width: 680px;
  margin: 0 auto 28px;
}

.legal-hero {
  padding-bottom: 22px;
}

.legal-section {
  padding-top: 34px;
}

.legal-card {
  max-width: 880px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.legal-card h2 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card a {
  color: var(--white-blue);
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.55);
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

.site-footer a {
  color: var(--white-blue);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .brand-logo {
    width: min(360px, 78vw);
  }

  .nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .image-hero {
    min-height: 680px;
    padding: 64px 20px;
    background:
      linear-gradient(180deg, rgba(3, 7, 18, 0.96) 0%, rgba(3, 7, 18, 0.72) 54%, rgba(3, 7, 18, 0.42) 100%),
      url("assets/hero-webstudio-ai.png") center / cover no-repeat;
  }

  .feature-grid,
  .audience-grid,
  .services,
  .steps,
  .comparison-grid,
  .project-link-grid,
  .topic-grid,
  .trust-strip,
  .about-layout,
  .about-card-grid,
  .check-card-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .check-card,
  .check-card:nth-child(4),
  .check-card:nth-child(5) {
    grid-column: span 1;
  }

  .check-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .section,
  .split-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .split-section,
  .trust-strip,
  .contact,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  h1 {
    font-size: 2.72rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel,
  article,
  .glass-box,
  .contact {
    padding: 20px;
  }

  .score-card strong {
    font-size: 4rem;
  }

  .comparison-labels,
  .comparison-preview {
    grid-template-columns: 1fr;
  }
}
