:root {
  --cream: #ece3da;
  --cream-light: #f7f1e8;
  --gold-light: #f5e3cf;
  --gold-soft: #c9a86a;
  --bronze: #a4825d;
  --bronze-dark: #8a6b4a;
  --charcoal: #2c2924;
  --ink: #3a352e;
  --muted: #6f675d;
  --white: #ffffff;
  --line: #e2d9cc;
  --shadow-sm: 0 1px 3px rgba(44, 41, 36, 0.08);
  --shadow-md: 0 8px 24px rgba(44, 41, 36, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 41, 36, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.6;
  filter: saturate(2);
}

img {
  max-width: 100%;
  display: block;
  filter: saturate(0.5);
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 50%, var(--cream-light) 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  transition: padding 0.3s ease;
}

.brand__logo {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 50%;
  transition: height 0.3s ease, width 0.3s ease;
}

.header--scrolled .header__inner {
  padding: 10px 24px;
}

.header--scrolled .brand__logo {
  height: 56px;
  width: 56px;
}

.header--scrolled:hover .header__inner {
  padding: 20px 24px;
}

.header--scrolled:hover .brand__logo {
  height: 120px;
  width: 120px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bronze);
  transition: color 0.2s ease;
}

.phone:hover {
  color: var(--bronze-dark);
}

.phone svg {
  width: 26px;
  height: 26px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  padding: 96px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero .accent {
  color: var(--bronze);
}

.hero__sub {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero__note {
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--primary {
  background: var(--bronze);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--bronze-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn--submit {
  position: relative;
  display: block;
  width: 70%;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
}

.btn--submit__img {
  display: block;
  width: 100%;
  height: auto;
}

.btn--submit__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* Stats */
.stats {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  padding: 64px 0;
}

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

.stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.stat__value {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--bronze);
}

.stat__unit {
  font-size: 1.4rem;
  color: var(--bronze);
  margin-left: 4px;
}

.stat__label {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 500;
}

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  border-color: var(--bronze);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__icon--zoom {
  transform: scale(1.13);
}

.card h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

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

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  position: relative;
  background: var(--white);
  padding: 40px 28px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.step__num {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.step__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

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

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq__item:hover {
  border-color: var(--bronze);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 24px 20px;
  color: var(--muted);
}

/* Form */
.form-wrap {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

.form-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(164, 130, 93, 0.25);
}

.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-status {
  display: none;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  background: #e9f6ee;
  color: #1e7a3c;
}

.form-status--error {
  background: #fdeceb;
  color: #b3261e;
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 56px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__links div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--gold-soft);
}

.footer__links svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__brand .brand__logo {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__brand p {
  color: var(--cream);
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
  .form-card {
    padding: 28px 20px;
  }
}
