/* ==========================================================================
   Buttons, cards, steps, locations, pricing, FAQ, CTA
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 15.5px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(198, 118, 83, 0.28);
}
.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(198, 118, 83, 0.35);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface-soft);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.btn-cream {
  background: #fff;
  color: var(--accent-strong);
}
.btn-cream:hover {
  background: var(--surface-soft);
  transform: translateY(-1px);
}

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-strong);
}
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--muted);
  font-size: 14.5px;
}
.feature-meta {
  display: inline-flex;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  color: var(--accent-strong);
  font-size: 12.5px;
  font-weight: 600;
}

/* Steps 01/02/03 */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 14.5px;
}

/* Locations grid */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.loc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.loc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}
.loc-flag {
  font-size: 34px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.loc-name {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.loc-city {
  color: var(--muted);
  font-size: 13.5px;
}
.loc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
}
.loc-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(111, 168, 68, 0.18);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.plan-featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #fffdf8 0%, #fdf3e8 100%);
  box-shadow: 0 12px 32px rgba(198, 118, 83, 0.12);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(198, 118, 83, 0.35);
}
.plan-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.plan-desc {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 22px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}
.plan-price .from { color: var(--muted); font-size: 14px; }
.plan-price .amount {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.plan-price .period { color: var(--muted); font-size: 15px; }
.plan-features {
  list-style: none;
  margin-bottom: 26px;
}
.plan-features li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px dashed var(--border-soft);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .hint { color: var(--muted); font-size: 13px; }
.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(111, 168, 68, 0.15);
  color: #4e6b34;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s, border-color 0.2s;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: var(--accent);
}
.faq-item summary:hover { color: var(--accent-strong); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #c67653 0%, #a3593a 100%);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 55%);
  pointer-events: none;
}
.cta-section > * { position: relative; }
.cta-section h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
