:root {
  --bg: #fff8f2;
  --surface: #ffffff;
  --surface-soft: #fff1e6;
  --text: #2f2f2f;
  --muted: #777777;
  --primary: #ff7a1a;
  --primary-dark: #e76406;
  --dark: #2d2d2d;
  --border: #f0dfd2;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff8f2 0%, #fffdfb 100%);
  color: var(--text);
  font-family: "Fredoka", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 223, 210, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
}

.logo-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--primary);
}

.brand-name {
  font-size: 28px;
  color: var(--primary);
  letter-spacing: 0.3px;
  font-weight: 700;
}

.brand-tagline {
  font-size: 12px;
  color: var(--muted);
  margin-top: -4px;
}

.top-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: #4f4f4f;
  font-weight: 500;
}

.top-nav a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 80px;
  min-height: calc(100vh - 88px);
  text-align: center;
  display: flex;
  justify-content: center;
}

.hero-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-watermark svg {
  width: min(520px, 70vw);
  height: auto;
  fill: var(--primary);
  opacity: 0.06;
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 1;
  margin: 40px auto 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 22px 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  color: var(--text);
  font-weight: 700;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 22px;
  line-height: 1.7;
  color: #5f5f5f;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.hero-buttons a {
  width: 340px;
  text-align: center;
}

.btn {
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 22px rgba(255, 122, 26, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.how-it-works,
.about-contact {
  padding: 40px 24px 80px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 42px;
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step-card,
.info-box {
  background: var(--surface);
  border: 1px solid rgba(240, 223, 210, 0.8);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0 auto 16px;
  font-size: 20px;
}

.step-card h3,
.info-box h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.step-card p,
.info-box p {
  margin: 0;
  color: #5f5f5f;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
}

.about-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 20px;
}

.site-footer {
  text-align: center;
  padding: 30px 20px 40px;
  color: var(--muted);
  border-top: 1px solid rgba(240, 223, 210, 0.8);
  background: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: #555;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .steps,
  .about-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-name {
    font-size: 24px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p,
  .step-card p,
  .info-box p {
    font-size: 18px;
  }

  .section-header h2,
  .step-card h3,
  .info-box h2 {
    font-size: 30px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 340px;
  }
}