@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
  --ink: #1b262c;
  --ink-muted: #45525a;
  --paper: #f8f2ea;
  --paper-strong: #f2e7da;
  --accent: #0a7b6f;
  --accent-2: #e0862e;
  --accent-3: #0b3b5b;
  --border: #e5d8c9;
  --shadow: 0 20px 50px rgba(27, 38, 44, 0.18);
}

* {
  box-sizing: border-box;
}

.seo-body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top left, #fef6e8 0%, #f6efe4 45%, #f3e9db 100%);
}

.seo-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.seo-shell::before,
.seo-shell::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}

.seo-shell::before {
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(10, 123, 111, 0.6), transparent 70%);
}

.seo-shell::after {
  bottom: -220px;
  left: -120px;
  background: radial-gradient(circle, rgba(224, 134, 46, 0.55), transparent 70%);
}

.seo-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.seo-skip {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  z-index: 3;
}

.seo-skip:focus {
  transform: translateY(52px);
}

.seo-header {
  padding: 28px 0 10px;
}

.seo-header .seo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.seo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.seo-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(10, 123, 111, 0.2);
}

.seo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.seo-nav a {
  text-decoration: none;
  color: var(--ink-muted);
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.seo-nav a:hover,
.seo-nav a:focus {
  color: var(--ink);
  background: rgba(10, 123, 111, 0.12);
}

.seo-hero {
  padding: 40px 0 30px;
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.seo-hero h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.seo-hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 16px;
}

.seo-hero-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.seo-hero-image {
  width: min(260px, 70%);
  margin: 0 auto;
  display: block;
  border-radius: 28px;
  background: #ffffff;
  padding: 16px;
}

.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.seo-button.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(10, 123, 111, 0.25);
}

.seo-button.secondary {
  background: #ffffff;
  color: var(--accent-3);
  border: 1px solid var(--border);
}

.seo-section {
  padding: 34px 0;
}

.seo-section h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin: 0 0 10px;
}

.seo-section p.lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.seo-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(229, 216, 201, 0.7);
  box-shadow: 0 10px 30px rgba(27, 38, 44, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.seo-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.seo-card:hover,
a.seo-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(27, 38, 44, 0.12);
}

.seo-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.seo-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}

.seo-media {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media (min-width: 640px) {
  .seo-media {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  
  .seo-media-text {
    flex: 1;
  }

  .seo-figure {
    flex: 0 0 240px;
  }
}



.seo-media-text {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(229, 216, 201, 0.7);
  box-shadow: 0 10px 26px rgba(27, 38, 44, 0.08);
}

.seo-media-text h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.seo-media-text p {
  margin: 0 0 10px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.seo-media-text p:last-child {
  margin-bottom: 0;
}

.seo-figure {
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.seo-figure img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(229, 216, 201, 0.8);
  box-shadow: 0 14px 35px rgba(27, 38, 44, 0.12);
  background: #ffffff;
  padding: 10px;
}

.seo-figure figcaption {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  max-width: 260px;
}

.seo-figure.small img {
  max-width: 200px;
}

.seo-figure.small figcaption {
  max-width: 200px;
}

.seo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(224, 134, 46, 0.15);
  color: #7a4a10;
  font-size: 0.85rem;
  font-weight: 600;
}

.seo-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(229, 216, 201, 0.7);
}

.seo-lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.seo-lang {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(229, 216, 201, 0.7);
}

.seo-lang h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.seo-lang p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}

.seo-cta-banner {
  background: linear-gradient(120deg, rgba(10, 123, 111, 0.9), rgba(11, 59, 91, 0.9));
  color: #ffffff;
  border-radius: 26px;
  padding: 26px;
  display: grid;
  gap: 12px;
}

.seo-cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.seo-footer {
  margin-top: auto;
  padding: 30px 0 50px;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.seo-download {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 10px;
}

.seo-download .seo-button {
  font-size: 0.95rem;
}

.seo-footer a {
  color: var(--ink);
  text-decoration: none;
}

.seo-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 12px;
}

.seo-animate {
  animation: rise 0.7s ease both;
}

.seo-delay-1 {
  animation-delay: 0.1s;
}

.seo-delay-2 {
  animation-delay: 0.2s;
}

.seo-delay-3 {
  animation-delay: 0.3s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .seo-header .seo-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .seo-nav {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-animate,
  .seo-delay-1,
  .seo-delay-2,
  .seo-delay-3 {
    animation: none;
  }
}
