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

:root {
  --green: #3ddc5c;
  --green-dark: #2bc44a;
  --black: #111111;
  --white: #ffffff;
  --off-white: #f9f9f7;
  --border: #e8e8e4;
  --text: #1c1c1c;
  --text-mid: #555555;
  --text-light: #888888;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); font-size: 15px; line-height: 1.6; }

/* ── NAV ── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img { height: 48px; display: block; border-radius: 6px; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: #444; text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); font-weight: 600; }
.nav-cta { background: var(--green) !important; color: var(--black) !important; padding: 7px 18px; border-radius: 100px; font-weight: 700 !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; }
.nav-mobile { display: none; flex-direction: column; gap: 16px; padding: 20px 24px; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 64px; z-index: 99; }
.nav-mobile a { color: #444; text-decoration: none; font-size: 15px; font-weight: 500; }
.nav-mobile .nav-cta { text-align: center; padding: 11px; border-radius: 100px; color: var(--black) !important; }

/* ── SECTIONS ── */
.sec { padding: 56px 40px; }
.sec-alt { background: var(--off-white); }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.sec-h { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4vw, 40px); letter-spacing: 0.02em; color: var(--black); margin-bottom: 10px; line-height: 1; }
.sec-sub { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; max-width: 560px; line-height: 1.6; }

/* ── BUTTONS ── */
.btn-primary { background: var(--green); color: var(--black); padding: 12px 26px; border-radius: 100px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-block; transition: background .2s, transform .2s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--black); padding: 11px 24px; border-radius: 100px; font-size: 15px; font-weight: 500; text-decoration: none; border: 1.5px solid #ccc; display: inline-block; transition: border-color .2s; }
.btn-secondary:hover { border-color: #999; }
.btn-dark { background: var(--black); color: var(--white); padding: 12px 26px; border-radius: 100px; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-block; transition: background .2s; }
.btn-dark:hover { background: #333; }

/* ── FOOTER ── */
footer { background: var(--black); padding: 40px 40px 24px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.foot-brand span { font-weight: 700; font-size: 15px; color: var(--white); display: block; margin-bottom: 10px; }
.foot-brand p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 260px; }
.foot-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 8px; }
.foot-col ul li a, .foot-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color .2s; }
.foot-col ul li a:hover, .foot-col a:hover { color: var(--green); }
.foot-col p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.foot-bottom { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; justify-content: space-between; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .sec { padding: 44px 20px; }
  footer { padding: 32px 20px 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 24px; margin-bottom: 16px; }
  .foot-bottom { flex-direction: column; gap: 4px; }
}

/* Prevent horizontal scroll */
body { overflow-x: hidden; }
