:root {
  --bg: #f7fbfa;
  --panel: #ffffff;
  --text: #203633;
  --muted: #6f817d;
  --line: #dfe9e6;
  --accent: #1e8f7c;
  --accent-strong: #176f61;
  --blue: #2563eb;
  --gold: #c9942e;
  --shadow: 0 24px 70px rgba(28, 48, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
}

.seo-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(247, 251, 250, 0.84);
  border-bottom: 1px solid rgba(223, 233, 230, 0.72);
  backdrop-filter: blur(18px);
}

.seo-brand,
.seo-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.seo-brand {
  text-decoration: none;
  font-weight: 900;
}

.seo-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.seo-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.seo-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.seo-nav .seo-open-app {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.seo-hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 76px) 64px;
  background-image:
    linear-gradient(90deg, rgba(247, 251, 250, 0.96) 0%, rgba(247, 251, 250, 0.88) 42%, rgba(247, 251, 250, 0.42) 100%),
    url("image.png");
  background-position: center;
  background-size: cover;
}

.seo-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.seo-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.seo-eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.seo-hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #40524f;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.75;
  font-weight: 700;
}

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

.seo-primary,
.seo-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
}

.seo-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--blue));
}

.seo-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.seo-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0;
}

.seo-section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.seo-section-copy {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.seo-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(28, 48, 44, 0.08);
}

.seo-card span {
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-card h3 {
  margin: 18px 0 0;
  font-size: 1.25rem;
}

.seo-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.seo-band {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.seo-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #41534f;
  font-weight: 800;
}

.seo-faq {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.seo-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(28, 48, 44, 0.06);
}

.seo-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
}

.seo-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.75;
}

.seo-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px clamp(20px, 6vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

.seo-footer a {
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 820px) {
  .seo-header {
    position: static;
  }

  .seo-nav a:not(.seo-open-app) {
    display: none;
  }

  .seo-hero {
    min-height: 78vh;
    padding-top: 62px;
    background-image:
      linear-gradient(180deg, rgba(247, 251, 250, 0.98) 0%, rgba(247, 251, 250, 0.86) 62%, rgba(247, 251, 250, 0.7) 100%),
      url("image.png");
  }

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