/* ============================================
   לראות פנימה — Brand Stylesheet
   Colors: #7E8F7C | #A8B5A2 | #F5F2EC | #EAE3D8 | #D8CBB8
   Fonts: Frank Ruhl Libre (headings) | Assistant (body)
============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-deep:    #7E8F7C;
  --terracotta:    #A8B5A2;
  --cream:         #F5F2EC;
  --brown-mid:     #D8CBB8;
  --olive:         #A8B5A2;
  --cream-dark:    #EAE3D8;
  --text-dark:     #4F4F4F;
  --text-mid:      #6F6F6F;
  --text-light:    #BFBFBF;
  --white:         #FFFFFF;

  --font-heading:  'Frank Ruhl Libre', serif;
  --font-body:     'Assistant', sans-serif;

  --radius:        12px;
  --radius-lg:     24px;
  --shadow:        0 4px 24px rgba(126, 143, 124, 0.10);
  --shadow-lg:     0 8px 48px rgba(126, 143, 124, 0.15);
  --transition:    0.3s ease;

  --max-width:     1140px;
  --section-gap:   80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--brown-deep);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

p { color: var(--text-mid); font-size: 1.05rem; }

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

.section__title {
  margin-bottom: 20px;
}

.section__lead {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-mid);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--brown-deep);
  color: var(--white);
  border-color: var(--brown-deep);
}
.btn--primary:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--brown-deep);
  border-color: var(--brown-deep);
}
.btn--ghost:hover {
  background: var(--brown-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }
.btn--large { padding: 18px 40px; font-size: 1.1rem; }

/* ===== INPUT ===== */
.input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
  direction: rtl;
}
.input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(168, 181, 162, 0.2);
}
.input::placeholder { color: var(--text-light); }

textarea.input { resize: vertical; }

/* ===== SECTION ===== */
.section {
  padding: var(--section-gap) 0;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brown-deep);
  font-weight: 500;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}

.header__nav a {
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: var(--transition);
}
.header__nav a:hover { color: var(--brown-deep); }
.header__nav a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__member-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  border: 1px solid var(--brown-mid);
  border-radius: 20px;
  padding: 6px 16px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header__member-link:hover {
  color: var(--brown-deep);
  border-color: var(--brown-deep);
  background: var(--cream-dark);
}

.header__cta { flex-shrink: 0; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: auto;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, var(--cream) 60%, var(--cream-dark) 100%);
  position: relative;
}

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

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--olive);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--brown-deep);
  margin-bottom: 0;
  line-height: 1.1;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--terracotta);
  font-weight: 300;
  margin-bottom: 28px;
  margin-top: 8px;
}

.hero__body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__scroll-hint {
  text-align: center;
  margin-top: 48px;
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-left: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: rotate(-45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(6px); }
}

/* ===== FOR WHOM ===== */
.for-whom {
  background: var(--white);
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 36px;
}

.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__icon { font-size: 2rem; margin-bottom: 16px; }

.card__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--brown-deep);
  margin-bottom: 14px;
  line-height: 1.5;
}

.card__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.for-whom__cta-text {
  font-size: 1.1rem;
  color: var(--brown-deep);
  font-weight: 600;
  font-family: var(--font-heading);
}

/* ===== ABOUT TAMARA ===== */
.about-tamara {
  background: var(--cream);
}

.about-tamara__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.about-tamara__photo-wrap {
  position: relative;
}

.about-tamara__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.about-tamara__badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-deep);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  white-space: nowrap;
  font-weight: 600;
}

.about-tamara__content p {
  margin-bottom: 18px;
}

.about-tamara__highlight {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brown-deep);
  border-right: 3px solid var(--terracotta);
  padding-right: 20px;
  margin: 28px 0;
  line-height: 1.8;
}

.about-tamara__methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.method-tag {
  background: var(--cream-dark);
  color: var(--brown-deep);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== ABOUT CLUB ===== */
.about-club {
  background: var(--white);
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.feature {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: right;
  transition: var(--transition);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--terracotta);
  opacity: 0.6;
  margin-bottom: 12px;
  line-height: 1;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--brown-deep);
}

.feature p {
  font-size: 0.95rem;
}

/* ===== FREE TASTE ===== */
.free-taste {
  background: var(--cream-dark);
}

.free-taste__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.free-taste__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.free-taste__step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--brown-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.free-taste__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.free-taste__note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

.free-taste__quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brown-deep);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

cite {
  color: var(--terracotta);
  font-style: normal;
  font-weight: 600;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--cream);
  text-align: center;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--cream-dark);
  position: relative;
  transition: var(--transition);
}

.pricing-card--main {
  border-color: var(--brown-deep);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-deep);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--brown-deep);
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.pricing-card__features {
  text-align: right;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__features li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-right: 20px;
  position: relative;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--olive);
  font-weight: 700;
}

.pricing-card__note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ===== JOIN ===== */
.join {
  background: var(--white);
}

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

.join__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.join__list li {
  font-size: 1rem;
  color: var(--text-mid);
  padding-right: 24px;
  position: relative;
}
.join__list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--olive);
  font-weight: 700;
}

.join__form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.join__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.join__form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.join__secure {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--brown-deep);
  color: var(--white);
}

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

.newsletter .section__eyebrow { color: var(--terracotta); }
.newsletter .section__title { color: var(--white); }
.newsletter p { color: rgba(255,255,255,0.8); }

.newsletter__promise {
  font-weight: 700;
  color: var(--terracotta) !important;
  margin-top: 8px;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter__form .input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.newsletter__form .input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form .input:focus { border-color: var(--terracotta); }

.newsletter__form .btn--primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.newsletter__form .btn--primary:hover { background: var(--cream); color: var(--brown-deep); }

.newsletter__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5) !important;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream-dark);
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: right;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.testimonial:hover { transform: translateY(-4px); }

.testimonial__text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown-deep);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial__author {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq .section__title { margin-bottom: 48px; }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
}
.faq__item[open] { border-color: var(--terracotta); }

.faq__item summary {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--terracotta);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: '−'; }

.faq__item p {
  padding: 0 24px 20px;
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact { background: var(--cream-dark); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.contact__link {
  font-size: 1rem;
  color: var(--brown-deep);
  font-weight: 600;
  transition: var(--transition);
}
.contact__link:hover { color: var(--terracotta); }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer__logo {
  height: 80px;
  width: 80px;
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

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

.footer__links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--terracotta); }

.footer__legal {
  max-width: 300px;
}
.footer__legal p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
  }
  .header__nav.open { display: flex; }
  .header__actions { display: none; }
  .header__burger { display: flex; }
  .nav__member-link {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--brown-mid);
    color: var(--text-mid) !important;
    font-size: 0.9rem;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .hero__circle { width: 340px; height: 340px; }
  .about-tamara__inner { grid-template-columns: 300px 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-gap: 60px; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__visual { order: -1; }
  .hero__circle { width: 260px; height: 260px; }
  .hero__actions { justify-content: center; }

  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .pricing__cards { grid-template-columns: 1fr; }
  .pricing-card--main { transform: none; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .about-tamara__inner,
  .free-taste__inner,
  .join__inner,
  .newsletter__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-tamara__photo { aspect-ratio: 4/3; }
  .about-tamara__badge { left: 50%; }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root { --section-gap: 48px; }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  .features { grid-template-columns: 1fr; }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .join__form-wrap,
  .contact__form,
  .free-taste__quote {
    padding: 28px 20px;
  }
}

/* ===== UX IMPROVEMENTS ===== */

/* Hero CTA hierarchy */
.btn--hero-main {
  font-size: 1.05rem;
  padding: 16px 36px;
}
.btn--hero-secondary {
  font-size: 0.92rem;
  padding: 13px 28px;
  opacity: 0.85;
}

/* Hero social proof */
.hero__social-proof {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 14px;
  text-align: center;
}
@media (min-width: 901px) {
  .hero__social-proof { text-align: right; }
}

/* Feature cards (3-up) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); }
.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Features more */
.features-more {
  margin-top: 24px;
  text-align: center;
}
.features-more summary {
  display: inline-block;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 8px 16px;
  border: 1px solid var(--brown-mid);
  border-radius: 20px;
  list-style: none;
  transition: all 0.2s;
}
.features-more summary::-webkit-details-marker { display: none; }
.features-more summary:hover {
  color: var(--brown-deep);
  border-color: var(--brown-deep);
}
.features-more p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* Form hint */
.form-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}

/* Form social proof */
.form-social-proof {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}

/* Form success state */
.form-success {
  display: none;
  background: var(--cream-dark);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.form-success__main {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.form-success a {
  color: var(--brown-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Newsletter upsell inside success */
.taste-upsell {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--brown-mid);
}
.taste-upsell p {
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.btn--small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* Feature cards responsive */
@media (max-width: 900px) {
  .feature-cards { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
}
