@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg: #FAF8F5;
  --fg: #2D2421;
  --primary: #D4735A;
  --primary-dark: #bf6047;
  --primary-light: rgba(212,115,90,0.1);
  --secondary: #8B9A86;
  --secondary-light: rgba(139,154,134,0.15);
  --muted: #F2EDE6;
  --muted-fg: #6B5E58;
  --border: #E5DDD3;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 2px 16px rgba(45,36,33,0.08);
  --shadow-lg: 0 8px 40px rgba(45,36,33,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
}

.serif {
  font-family: 'Playfair Display', serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  display: block;
}

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

.container-sm {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

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

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

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

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-primary-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 28px;
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
}

.hero {
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--secondary-light);
  color: var(--secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted-fg);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-badge-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  display: block;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--primary-light);
  border-color: var(--white);
}

.avatar-stack span:nth-child(2) {
  background: var(--secondary-light);
}

.avatar-stack span:nth-child(3) {
  background: var(--muted);
}

.hero-badge-float p {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
}

section {
  padding: 80px 0;
}

.section-muted {
  background: rgba(242,237,230,0.4);
}

.section-center {
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid rgba(229,221,211,0.6);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.card-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.process-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 32px;
}

.process-item h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.process-item p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.65;
  padding-left: 42px;
}

.quote-banner {
  padding: 48px 0;
  background: rgba(242,237,230,0.3);
}

.quote-banner-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/7;
}

@media (max-width: 640px) {
  .quote-banner-img {
    aspect-ratio: 16/9;
  }
}

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

.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.quote-banner-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  max-width: 640px;
  line-height: 1.3;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 1px 6px rgba(45,36,33,0.05);
  cursor: pointer;
}

.faq-item summary {
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s;
}

details[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 16px;
}

.lead-section {
  background: rgba(212,115,90,0.05);
}

.lead-box {
  background: var(--white);
  border: 1px solid rgba(212,115,90,0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .lead-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }
}

.lead-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.lead-box .lead-desc {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.lead-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--fg);
}

.lead-perks li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

.form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fg);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B5E58' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,115,90,0.12);
}

.form-group input::placeholder {
  color: #a8978f;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 1rem;
}

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

.form-note a {
  text-decoration: underline;
}

footer {
  border-top: 1px solid var(--border);
  background: rgba(242,237,230,0.35);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.footer-list a {
  color: var(--muted-fg);
  transition: color 0.2s;
}

.footer-list a:hover {
  color: var(--fg);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-fg);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  box-shadow: 0 -4px 24px rgba(45,36,33,0.08);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.cookie-text a {
  text-decoration: underline;
  color: var(--muted-fg);
}

.cookie-text a:hover {
  color: var(--fg);
}

.legal-page {
  padding: 60px 0 80px;
}

.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.legal-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-page ul {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.75;
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-page ul li {
  margin-bottom: 6px;
}

.legal-date {
  color: var(--muted-fg);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 80px 24px;
}

.success-inner {
  text-align: center;
  max-width: 440px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 2rem;
  color: var(--secondary);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.success-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.success-inner p {
  color: var(--muted-fg);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.success-note {
  background: rgba(242,237,230,0.5);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.success-note p {
  margin: 0;
  font-size: 0.875rem;
}

.success-note strong {
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 64px;
  }

  section {
    padding: 56px 0;
  }

  .form-wrap {
    padding: 24px 20px;
  }
}
