/* =============================================
   Aroma Terapi Spa — style.css
   Brand: relax-lavender
   Primary:#a67c52 Accent:#d4c5e2 Bg:#f5f1fa
   ============================================= */

:root {
  --primary: #a67c52;
  --primary-dark: #8a6241;
  --primary-light: #b8935c;
  --accent: #d4c5e2;
  --accent-light: #e8dff3;
  --bg: #f5f1fa;
  --bg-white: #faf9fc;
  --text: #3d2817;
  --text-light: #6b5847;
  --text-muted: #9b8c7f;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(166,124,82,0.12);
  --shadow-md: 0 4px 24px rgba(166,124,82,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  padding-top: 40px;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── DEMO BAR ── */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.03em;
}
.demo-bar a { color: var(--accent-light); text-decoration: underline; }
.demo-bar a:hover { color: var(--white); }

/* ── CHECKBOX HACK NAV ── */
#nav-toggle { display: none; }

header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 40px;
  z-index: 1000;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--primary);
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu li a {
  display: block;
  padding: 8px 14px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  border-radius: 6px;
}
.nav-menu li a:hover {
  background: var(--bg);
  color: var(--primary);
  text-decoration: none;
}
.nav-menu li a.active {
  background: var(--accent);
  color: var(--primary);
}
.nav-menu .nav-cta {
  background: var(--primary);
  color: var(--white);
  margin-left: 8px;
}
.nav-menu .nav-cta:hover {
  background: var(--primary-dark);
  text-decoration: none;
}
.nav-menu .nav-cta.active {
  background: var(--primary);
}

/* ── HAMBURGER ── */
.hamburger-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger-label span {
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
#nav-toggle:checked ~ header .hamburger-label span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
#nav-toggle:checked ~ header .hamburger-label span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ header .hamburger-label span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
#nav-toggle:checked ~ header .nav-menu {
  max-height: 300px;
  opacity: 1;
}

/* ── RESPONSIVE NAV ── */
@media (max-width: 768px) {
  .hamburger-label { display: flex; }
  .nav-menu {
    position: absolute;
    top: 62px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--bg);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
    gap: 0;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu li a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--bg);
  }
  .nav-menu .nav-cta {
    margin-left: 0;
    border-radius: 0;
  }
}

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  margin-top: -40px;
  padding-top: 120px;
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.hero-icon-wrap {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  opacity: 0.95;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.badge {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  text-decoration: none;
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--bg);
  text-decoration: none;
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
}

/* ── SECTION & TYPOGRAPHY ── */
.section {
  padding: 60px 20px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 12px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto;
  border-radius: 2px;
}

/* ── STATS ── */
.stats {
  background: var(--primary);
  color: var(--white);
  padding: 40px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}
.stat-item span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.card p {
  color: var(--text-light);
  margin-bottom: 16px;
  flex: 1;
  font-size: 0.95rem;
}
.card-price {
  display: inline-block;
  background: var(--bg);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  margin-top: -40px;
  padding-top: 100px;
}
.page-header h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.benefit-item {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.benefit-item:hover {
  transform: translateY(-4px);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-item h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.benefit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin: 40px 0;
}
.step {
  display: flex;
  gap: 18px;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}
.step-body h4 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
}
.step-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── TESTIMONIAL ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testi-card .stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.testi-quote {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.testi-card p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
}
.testi-name {
  font-weight: 600;
  color: var(--text);
}
.testi-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}
.cta-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.95;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: var(--white);
  padding: 48px 20px 20px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-col a:hover {
  color: var(--white);
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ── SERVICES ── */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px 0;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.service-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-header h3 {
  color: var(--primary);
  font-size: 1.2rem;
}
.service-card p {
  color: var(--text-light);
  margin-bottom: 16px;
}
.service-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.service-details .detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.pricing-header h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.pricing-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.pricing-price {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.price-duration {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.pricing-list {
  list-style: none;
  margin: 24px 0;
}
.pricing-list li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--bg);
}
.pricing-list li:last-child {
  border-bottom: none;
}

/* ── MEMBERSHIP ── */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.membership-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s;
  border: 2px solid var(--bg);
}
.membership-card.featured {
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.membership-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.membership-header h4 {
  font-size: 1.3rem;
  color: var(--primary);
}
.membership-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 12px;
}
.membership-duration {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.membership-list {
  list-style: none;
  margin: 20px 0;
}
.membership-list li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}
.membership-list li:before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 700;
}

/* ── GIFT CARD ── */
.giftcard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.giftcard-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.giftcard-item h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.giftcard-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.giftcard-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 40px auto;
}
.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h4 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── ABOUT ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-stats-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat {
  background: var(--accent);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}
.about-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.about-stat span {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-card h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.team-member {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-avatar {
  margin-bottom: 16px;
}
.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto;
}
.team-member h4 {
  color: var(--primary);
  margin-bottom: 4px;
}
.team-role {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.team-bio {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── COMMITMENT ── */
.commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.commitment-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
}
.commitment-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}
.commitment-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
}
.commitment-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── CERT ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.cert-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.cert-badge {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}
.cert-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
}
.cert-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── CONTACT LAYOUT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h2,
.contact-form h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg);
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item h4 {
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}
.contact-item a {
  color: var(--primary);
}

/* ── FORM ── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(166,124,82,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── PROMOS ── */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid var(--accent);
}
.promo-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}
.promo-card h4 {
  color: var(--primary);
  margin-top: 8px;
  margin-bottom: 8px;
}
.promo-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .hero h1 { font-size: 1.8rem; }
  .page-header h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-content,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pricing-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured,
  .membership-card.featured {
    transform: scale(1);
  }
  .services-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-list { grid-template-columns: 1fr; }
  .giftcard-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 40px 16px; }
  .hero { padding: 60px 16px; padding-top: 80px; }
  .hero h1 { font-size: 1.5rem; }
  .page-header { padding: 40px 16px; padding-top: 80px; }
  .hero-badges { gap: 8px; }
  .badge { padding: 6px 12px; font-size: 0.8rem; }
  .hero-btns { gap: 8px; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }
  .hero-btns { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .cards-grid { gap: 16px; }
  .contact-layout { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
