/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F5F3EE;
  --bg-alt: #EDEAE2;
  --surface: #FFFFFF;
  --fg: #1A1A1A;
  --fg-muted: #5A5A5A;
  --fg-faint: #9A9A9A;
  --accent: #C8973B;
  --accent-dark: #A87B28;
  --teal: #1B4D4F;
  --teal-light: #2A6B6F;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Syne', system-ui, sans-serif; font-weight: 700; line-height: 1.1; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,243,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem;
  color: var(--fg); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo-k { color: var(--accent); }
.nav-tagline {
  font-size: 0.8rem; color: var(--fg-muted); font-weight: 500;
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 140px 32px 80px;
  max-width: 1200px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.hero-grid-accent {
  position: absolute; top: 100px; right: -40px;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,151,59,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; top: 80px; right: 0; bottom: 0; left: 50%;
  background-image:
    linear-gradient(rgba(26,26,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 400px 300px at 80% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 400px 300px at 80% 50%, black 0%, transparent 100%);
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  position: relative; z-index: 1; margin-bottom: 64px;
}
.hero-left {}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--fg); margin-bottom: 24px; letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.15rem; color: var(--fg-muted); line-height: 1.7; max-width: 520px;
}
.hero-right { padding-top: 8px; }
.hero-badge-stack { display: flex; flex-direction: column; gap: 16px; }
.badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid rgba(26,26,26,0.1);
  border-radius: 8px; padding: 14px 18px;
  font-size: 0.9rem; font-weight: 500;
  box-shadow: 0 2px 8px rgba(26,26,26,0.06);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--teal); border-radius: 16px; padding: 36px 48px;
  position: relative; z-index: 1;
}
.stat { padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2.2rem; color: #FFFFFF; letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.4;
}
.stat-divider {
  width: 1px; background: rgba(255,255,255,0.15);
  height: 60px; align-self: center;
}

/* === SECTION SHARED === */
.section-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em; color: var(--fg);
}

/* === SERVICES === */
.services {
  background: var(--surface);
  padding: 100px 32px;
}
.services-header {
  max-width: 1200px; margin: 0 auto 64px;
}
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg); padding: 48px 40px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.service-card:hover { border-left-color: var(--teal); }
.service-card-accent { background: var(--bg-alt); }
.service-icon { margin-bottom: 24px; color: var(--teal); }
.service-title {
  font-size: 1.2rem; margin-bottom: 16px; color: var(--fg);
}
.service-desc {
  font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7;
}

/* === WHO FOR IT === */
.whoforit { padding: 100px 32px; background: var(--bg); }
.whoforit-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.whoforit-body {
  margin-top: 20px; font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7;
  max-width: 440px;
}
.audience-list { display: flex; flex-direction: column; gap: 24px; }
.audience-item {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--surface); padding: 24px 28px;
  border-radius: 12px; border: 1px solid rgba(26,26,26,0.07);
  box-shadow: 0 2px 8px rgba(26,26,26,0.04);
}
.audience-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.audience-name { font-weight: 600; font-size: 1rem; margin-bottom: 4px; color: var(--fg); }
.audience-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.5; }

/* === TRUST === */
.trust {
  background: var(--teal); padding: 80px 32px;
}
.trust-inner { max-width: 1200px; margin: 0 auto; }
.trust-headline {
  font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700;
  color: #FFFFFF; margin-bottom: 48px; letter-spacing: -0.02em;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.trust-item {
  padding: 0 48px 0 0;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.trust-item:last-child { border-right: none; padding-right: 0; }
.trust-value {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 3.5rem;
  color: var(--accent); letter-spacing: -0.04em; margin-bottom: 12px;
}
.trust-label {
  font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5;
}

/* === CLOSING === */
.closing { padding: 100px 32px; background: var(--bg-alt); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-quote {
  font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600; color: var(--fg); line-height: 1.4;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.closing-attr {
  font-size: 0.85rem; color: var(--fg-faint); margin-bottom: 40px;
  font-style: italic;
}
.closing-body {
  font-size: 1.05rem; color: var(--fg-muted); line-height: 1.8;
}

/* === FOOTER === */
.footer {
  background: var(--fg); padding: 48px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: #FFFFFF; letter-spacing: -0.02em;
}
.footer-logo-k { color: var(--accent); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-info p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { padding-top: 0; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 32px 32px; }
  .stat { padding: 0; text-align: center; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .whoforit-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 32px; }
  .trust-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 20px 60px; }
  .services { padding: 80px 20px; }
  .whoforit { padding: 80px 20px; }
  .trust { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .service-card { padding: 32px 24px; }
}