@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@700&display=swap');

:root {
  --font-body: 'Inter', sans-serif;
  --font-headings: 'Sora', sans-serif;
  --color-primary: #504000;
  --color-primary-dark: #443600;
  --color-accent: #f0d0f0;
  --color-text: #1a1a2e;
  --color-text-muted: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f3f4f6;
  --color-border: #e5e7eb;
  --radius-card: 16px;
  --radius-btn: 10px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.14);
  --transition: 220ms ease;
}

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

h1, h2, h3 {
  font-family: var(--font-headings);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 60ch;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  height: 72px;
  display: flex;
  align-items: center;
}

.logo {
  max-height: 50px;
}





.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background var(--transition);
}

nav a:hover {
  background: var(--color-bg-alt);
}

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
  color: #fff;
}

.hero h1 {
  color: #fff;
  max-width: 820px;
  margin: 0 auto 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

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

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

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

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

.btn-dark:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

section.bg-alt {
  background: var(--color-bg-alt);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.testimonial-card {
  border-left: 4px solid var(--color-primary);
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-card);
}

.proof-bar {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 24px;
  text-align: center;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-headings);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.cta-banner {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 96px 24px;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

footer {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
  padding: 64px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

footer h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 10px;
}

footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .proof-stats {
    gap: 32px;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    gap: 16px;
  }
}

.nav-logo-img, .header-logo img, .header-logo-img, .logo-img, header img, header .logo img { height: 40px; max-height: 40px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.footer-logo, .footer-logo-img, .footer-logo img, footer img, footer .logo img { height: 36px; max-height: 36px; width: auto; max-width: 180px; object-fit: contain; }
