* {
  box-sizing: border-box;
}

:root {
  --bg: #fcfbf8;
  --surface: #ffffff;
  --soft: #f4efe6;
  --text: #1d241f;
  --muted: #68706b;
  --line: #e5ddd1;
  --green: #153126;
  --green-soft: #214437;
  --gold: #b69158;
  --gold-dark: #9d7b46;
  --shadow: 0 16px 40px rgba(17, 35, 27, 0.08);
  --radius: 22px;
  --container: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin-top: 0;
  color: var(--text);
}

p {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(252, 251, 248, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--green);
  font-weight: 700;
}

.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--line);
  background: white;
  color: var(--green);
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.header-cta {
  white-space: nowrap;
}

.full {
  width: 100%;
}

.hero {
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  margin-bottom: 20px;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card {
  background: linear-gradient(180deg, var(--green), var(--green-soft));
  border-radius: 28px;
  color: white;
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}

.hero-card h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #f0e2c5;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-list {
  margin: 0;
  padding-left: 18px;
  color: #e6ece9;
}

.trust-bar {
  padding: 0 0 52px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.trust-item strong {
  display: block;
  color: var(--green);
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--green);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
}

.section-head.light h2,
.section-head.light p {
  color: white;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.benefit-box,
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.info-card h3,
.benefit-box h3,
.side-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.info-card p,
.benefit-box p,
.side-card p,
.side-card li {
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.price-card {
  background: rgba(255,255,255,0.97);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  transform: translateY(-8px);
  border: 2px solid rgba(182,145,88,0.45);
}

.price-label {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.price-card h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 6px;
}

.price-sub {
  color: var(--muted);
  margin-bottom: 20px;
}

.price-card ul {
  padding-left: 18px;
  color: var(--muted);
  flex: 1;
}

.price-card li {
  margin-bottom: 8px;
}

.pricing-note {
  margin-top: 28px;
  color: #d9e2dd;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.about-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.about-box p {
  color: var(--muted);
}

.about-side {
  display: grid;
  gap: 18px;
}

.legal-note {
  background: var(--soft);
}

.side-card ul {
  padding-left: 18px;
  margin: 0;
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.cta-copy p {
  color: var(--muted);
}

.contact-form {
  display: grid;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(182,145,88,0.18);
  border-color: var(--gold);
}

.site-footer {
  padding: 34px 0 46px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--green);
}

.simple-page {
  padding: 70px 0 90px;
}

.simple-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.simple-box h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.simple-box h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.simple-box p,
.simple-box li {
  color: var(--muted);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 56px;
  }

  .cards-grid,
  .benefits-grid,
  .pricing-grid,
  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 66px 0;
  }

  .cta-box,
  .about-box,
  .simple-box {
    padding: 24px;
  }
}
