:root {
  --ink: #14120f;
  --muted: #5d5a55;
  --accent: #3959da;
  --accent-rgb: 57, 89, 218;
  --accent-2: #d15a3b;
  --panel: #ffffff;
  --bg: #f7f5f0;
  --border: rgba(20, 18, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f2f3f6 0%, #ffffff 100%);
}

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

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

.page {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand h1 {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 26px;
  margin: 0;
  letter-spacing: 0.4px;
}

.brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(20, 18, 15, 0.06);
}

.hero {
  padding: 48px 0 36px;
  display: grid;
  gap: 28px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 22px 50px rgba(21, 25, 19, 0.08);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 30px -30px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(209, 90, 59, 0.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero h2 {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 26px rgba(var(--accent-rgb), 0.22);
}

.btn-outline {
  border-color: var(--border);
  background: #fff;
}

.btn-accent {
  background: var(--accent-2);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.quick-actions {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.action-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  display: grid;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.action-card h3 {
  margin: 0;
  font-size: 18px;
}

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

.action-card.is-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f5fbfc 100%);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 18px 30px rgba(var(--accent-rgb), 0.15);
}

.action-card.is-highlight h3 {
  color: var(--accent);
}

.action-card.is-highlight span {
  color: #364247;
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgba(20, 18, 15, 0.12);
}

.section {
  padding: 28px 0;
}

.section h3 {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.services {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  text-align: center;
  justify-items: center;
}

.service h4 {
  margin: 0;
  font-size: 18px;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service img {
  width: 72px;
  height: 72px;
}

.grid-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.card h4 {
  margin: 0;
  font-size: 18px;
}

.card p,
.card ul,
.card ol {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 18px;
}

.card ul,
.card ol {
  margin-top: 6px;
}

.faq {
  display: grid;
  gap: 12px;
}

.accordion {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.accordion button {
  width: 100%;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.accordion button span {
  color: var(--accent);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.panel p,
.panel ul,
.panel ol {
  margin: 12px 0 0;
  padding-left: 18px;
}

.footer {
  padding: 32px 0 48px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.footer-logo img {
  width: min(260px, 70vw);
  height: auto;
}

.footer a {
  color: var(--accent);
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.page--info .hero {
  padding: 42px 0 24px;
}

.page--info .hero h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.page--info .section {
  padding: 24px 0;
}

.page--info .section h3 {
  font-size: 26px;
}

@media (max-width: 720px) {
  .brand h1 {
    font-size: 22px;
  }

  .hero-card {
    padding: 26px;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
