:root {
  --primary: #ff6b4a;
  --primary-dark: #e85a3a;
  --secondary: #00a699;
  --gradient: linear-gradient(135deg, #ff6b4a 0%, #ffb347 35%, #4ecdc4 65%, #00a699 100%);
  --text: #222222;
  --muted: #6f6f6f;
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --bg-cream: #fff9f8;
  --border: #ececec;
  --shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.logo span {
  font-size: 21px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 52px;
}

.breadcrumb {
  font-size: 13px;
  color: #8b8b8b;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: #6b6b6b;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero p {
  color: var(--muted);
  max-width: 760px;
  font-size: 18px;
}

.main {
  padding: 56px 0;
}

.section {
  margin-bottom: 42px;
}

.section h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

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

.list {
  padding-left: 20px;
  color: var(--muted);
}

.list li {
  margin: 8px 0;
}

.cta {
  background: var(--gradient);
  border-radius: 22px;
  padding: 32px 24px;
  color: white;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
}

.btn.white {
  background: #fff;
  color: var(--primary);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.inline-links a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.inline-links a:hover {
  text-decoration: underline;
}

footer {
  background: #222;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 52px;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

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

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.keep-mobile) {
    display: none;
  }
}
