/* palette: indigo-coral */
@property --bar {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

:root {
  --primary-color: #1A237E;
  --secondary-color: #283593;
  --accent-color: #C04060;
  --background-color: #F4F4FF;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --main-font: 'Playfair Display', sans-serif;
  --alt-font: 'Noto Sans', sans-serif;
}

/* NATURE-SOFT Preset CSS Rules (Copied Literally) */
section{padding:60px 16px;margin:0} @media(min-width:1024px){section{padding:72px 24px}} body{background:#F5F2ED;color:#2A2218;line-height:1.8} section:nth-child(even){background:#EDE8DF} .card{background:#FBF8F4;border-radius:20px;box-shadow:0 2px 24px rgba(42,34,24,0.08);border:none} .btn{border-radius:99px;background:var(--primary-color);color:#fff;font-weight:600} h1,h2{color:var(--primary-color);font-weight:700} hr{border:none;border-top:1px solid rgba(42,34,24,0.12);margin:28px 0}

/* Global Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
  font-family: var(--alt-font);
}
h1, h2, h3 {
  font-family: var(--main-font);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Touch Targets */
a, button, input, textarea, label {
  min-height: 44px;
}

/* Typography Scale */
h1 {
  font-size: clamp(32px, 6vw, 64px);
}
h2 {
  font-size: clamp(24px, 4vw, 42px);
}
h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  margin-bottom: 12px;
}
p {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
}

/* Header & CSS-only Burger */
header {
  background: #FBF8F4;
  border-bottom: 1px solid rgba(42,34,24,0.08);
  padding: 16px;
  position: relative;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  max-height: 40px;
  width: auto;
}
.burger-btn {
display: flex;
    flex-direction: column;
    justify-content: center;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1000;
    gap: 6px;
}
.burger-btn .bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  z-index: 999;
  padding: 24px;
}
.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-nav a {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
#menu-toggle:checked ~ .site-nav {
  display: block;
}
#menu-toggle:checked ~ .burger-btn .bar:first-child {
  transform: translateY(7px) rotate(45deg);
}
#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .burger-btn .bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    padding: 0;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 32px;
  }
  .site-nav a {
    color: var(--primary-color);
  }
}

/* Animations */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

.card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(42,34,24,0.12);
}

.btn {
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
}

/* Cascade Cards Animation Delay */
.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: .12s; }
.card:nth-child(3) { animation-delay: .24s; }
.card:nth-child(4) { animation-delay: .36s; }

/* Hero Section (editorial-bleed) */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #F5F2ED;
  padding: 60px 16px;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--accent-color);
}
.hero-divider {
  border-top: 2px solid var(--dark-color);
  margin-bottom: 32px;
}
.hero-meta {
  display: block;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .hero-meta {
    columns: 2;
    gap: 48px;
  }
}
.hero-sub {
  color: var(--text-color);
  margin-bottom: 16px;
}
.btn-hero {
  padding: 12px 32px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* How It Works Section */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
}
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step-card {
  padding: 28px;
  position: relative;
}
.step-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 12px;
}
.how-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.how-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Timeline Section */
.timeline-container {
  position: relative;
  padding-left: 24px;
}
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 3px;
  background: var(--accent-color);
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding: 24px;
}
.timeline-badge {
  position: absolute;
  left: -32px;
  top: 24px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .timeline-container {
    padding-left: 0;
  }
  .timeline-container::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-item {
    width: 45%;
  }
  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }
  .timeline-item:nth-child(even) {
    left: 55%;
  }
  .timeline-badge {
    left: auto;
  }
  .timeline-item:nth-child(odd) .timeline-badge {
    right: -12.5%;
  }
  .timeline-item:nth-child(even) .timeline-badge {
    left: -12.5%;
  }
}

/* Progress Bars Section */
.progress-container {
  max-width: 800px;
  margin: 0 auto;
}
.progress-item {
  margin-bottom: 24px;
}
.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
}
.bar-track {
  background: rgba(42,34,24,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  width: calc(var(--bar) * 1%);
  animation: fill-bar 1.5s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 50%;
  background: var(--accent-color);
  height: 12px;
  border-radius: 999px;
}
@keyframes fill-bar {
  from { --bar: 0; }
  to { --bar: var(--pct); }
}

/* Dense Icon Grid Section */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .icon-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.icon-card {
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.icon-card h3 {
  font-size: 1rem;
  font-family: var(--alt-font);
  font-weight: 600;
  margin: 0;
}

/* CTA Banner Section */
.cta-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 24px;
  color: #fff;
}
.cta-container {
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 32px;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
}

/* Contact + FAQ Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.20fr;
  }
}
.contact-form {
  padding: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(42,34,24,0.15);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--alt-font);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-group input {
  margin-top: 6px;
}
.checkbox-group label {
  font-size: 0.85rem;
  font-weight: normal;
}
.btn-submit {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* FAQ Styling */
.faq-container {
  margin-top: 56px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.faq-item {
  padding: 24px;
}
.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* Footer Section */
footer {
  background: var(--primary-color);
  color: #F5F5F5;
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
footer img[alt="logo"] {
  filter: brightness(0) invert(1);
  max-height: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}