@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

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

:root {
  --orange: #F5820D;
  --orange-light: #FEF3E7;
  --orange-dark: #C4660A;
  --bg: #F7F6F3;
  --surface: #FFFFFF;
  --border: #E7E5E4;
  --text: #1C1917;
  --text-mid: #57534E;
  --text-soft: #A8A29E;
  --green: #16A34A;
  --green-light: #DCFCE7;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-text {
  font-size: 19px; font-weight: 800; letter-spacing: -0.4px;
  color: var(--text);
}
.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }

.nav-cta {
  background: var(--orange); color: #fff !important;
  font-weight: 700 !important; font-size: 14px !important;
  padding: 9px 20px; border-radius: 10px;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  color: var(--text-soft);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo-text {
  font-size: 17px; font-weight: 800; letter-spacing: -0.3px; color: #fff;
}
.footer-logo-text span { color: var(--orange); }
.footer-copy { font-size: 13px; margin-top: 4px; }
.footer-links {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px; color: var(--text-soft);
  text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 15px 32px; border-radius: var(--radius-lg);
  text-decoration: none; transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); text-decoration: none; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); color: var(--text);
  font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  text-decoration: none; transition: border-color 0.15s, transform 0.1s;
}
.btn-secondary:hover { border-color: var(--text-mid); transform: translateY(-1px); text-decoration: none; }

/* ─── BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-light); color: var(--orange-dark);
  font-size: 13px; font-weight: 700;
  padding: 5px 14px; border-radius: 99px;
  letter-spacing: 0.01em;
}
.badge-green {
  background: var(--green-light); color: var(--green);
}

@media (max-width: 700px) {
  .nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links .nav-cta { display: none; }
  footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
