/*
Theme Name: Sugar Wellness Theme
Author: Claude
Description: תבנית דף נחיתה wellness - כחול, RTL, עברית
Version: 3.0
Text Domain: sugar-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800;900&display=swap');

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

:root {
  --blue:        #4a9fd4;
  --blue-dark:   #2d7ab0;
  --blue-light:  #e8f4fc;
  --blue-mid:    #b8ddf0;
  --navy:        #1e3a5f;
  --navy-dark:   #122540;
  --white:       #ffffff;
  --off-white:   #f5faff;
  --gray-light:  #f0f6fb;
  --gray:        #6b7a8d;
  --text:        #1e2d3d;
  --gold:        #f5a623;
  --green:       #4caf7d;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow:      0 2px 16px rgba(74,159,212,.12);
  --shadow-card: 0 2px 12px rgba(30,58,95,.08);
  --font:        'Heebo', Arial, sans-serif;
  --max-w:       1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  direction: rtl;
  text-align: right;
}

a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-weight: 800; line-height: 1.25; color: var(--text); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-align: center;
  line-height: 1.3;
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74,159,212,.35);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,159,212,.5);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,58,95,.3);
}
.btn-navy:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(76,175,125,.35);
}
.btn-green:hover { background: #3d9469; color: var(--white); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; display: block; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--blue-mid);
  padding: .875rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(74,159,212,.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
}

.site-logo svg, .site-logo img { width: 44px; height: 44px; }

.header-cta .btn { padding: .6rem 1.4rem; font-size: .9rem; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(170deg, var(--off-white) 0%, var(--blue-light) 60%, #d0eaf8 100%);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.hero-icon { font-size: 2.5rem; margin-bottom: .75rem; }

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}

.hero-dates-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--blue-mid);
  border-radius: 50px;
  padding: .6rem 1.75rem;
  margin-bottom: 1.75rem;
  font-size: .9rem;
  color: var(--gray);
  box-shadow: var(--shadow-card);
}

.hero-dates-bar strong { color: var(--navy); }

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PROBLEM SECTION ===== */
.section { padding: 3.5rem 0; }
.section-bg   { background: var(--gray-light); }
.section-navy { background: var(--navy); }
.section-navy h2,
.section-navy p,
.section-navy li { color: var(--white); }

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 900;
  margin-bottom: .5rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 2.25rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .97rem;
  padding: .6rem .85rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.check-list li .icon-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
}

.dot-red   { background: #fee2e2; color: #dc2626; }
.dot-green { background: #dcfce7; color: #16a34a; }

.col-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  color: var(--gray);
}

/* ===== DARK BANNER ===== */
.dark-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.dark-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #2d6096 100%);
  z-index: 0;
}

.dark-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  position: absolute;
  inset: 0;
}

.dark-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 3rem 1.5rem;
}

.dark-banner-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: .75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.dark-banner-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--blue-light);
  transition: transform .2s, box-shadow .2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74,159,212,.18);
}

.feature-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .85rem;
  font-size: 1.5rem;
}

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.feature-card p  { font-size: .88rem; color: var(--gray); margin: 0; }

/* ===== BIO ===== */
.bio-card {
  background: var(--blue-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.bio-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(74,159,212,.25);
}

.bio-avatar-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  flex-shrink: 0;
  border: 4px solid var(--white);
}

.bio-body h2 { margin-bottom: .5rem; font-size: 1.5rem; }
.bio-body p  { color: var(--gray); font-size: .97rem; }

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .75rem 0 1rem;
}

.bio-tags span {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid var(--blue-mid);
  border-radius: 50px;
  padding: .25rem .85rem;
  font-size: .82rem;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--blue-light);
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: 2px; }

.testimonial-card p {
  font-size: .93rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.testimonial-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue-dark);
}

/* ===== REGISTRATION (CTA + FORM) ===== */
.reg-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.reg-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 32px rgba(74,159,212,.15);
  border: 1px solid var(--blue-mid);
}

.reg-form-box h3 { margin-bottom: 1.25rem; font-size: 1.3rem; }

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .97rem;
  color: var(--text);
  background: var(--off-white);
  direction: rtl;
  transition: border-color .2s;
}

.form-field input:focus,
.form-field select:focus { outline: none; border-color: var(--blue); }

.price-card {
  background: linear-gradient(160deg, var(--navy) 0%, #2d6096 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(30,58,95,.3);
  position: sticky;
  top: 90px;
}

.price-card .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50px;
  padding: .3rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: .25rem;
}

.price-amount sup { font-size: 1.5rem; vertical-align: super; }
.price-sub { font-size: .9rem; opacity: .75; margin-bottom: 1.5rem; }

.price-includes {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.price-includes li {
  font-size: .9rem;
  opacity: .9;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.price-includes li::before { content: '✓'; color: var(--gold); font-weight: 900; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--blue-mid);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
  gap: 1rem;
}

.faq-q .arr { color: var(--blue); font-size: 1rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .arr { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 1.4rem 1.1rem;
  font-size: .93rem;
  color: var(--gray);
  border-top: 1px solid var(--blue-light);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ===== BOTTOM BANNER ===== */
.bottom-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a5080 100%);
  padding: 3.5rem 0;
  text-align: center;
}

.bottom-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 1rem;
}

.bottom-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 2rem 0;
  font-size: .85rem;
}

.site-footer a { color: var(--blue-mid); }

/* ===== MOBILE STICKY CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; right: 0; left: 0;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: .9rem;
  font-weight: 800;
  font-size: 1rem;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(74,159,212,.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .two-col,
  .features-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .reg-wrap { grid-template-columns: 1fr; }
  .price-card { position: static; }

  .bio-card { flex-direction: column; align-items: center; text-align: center; }
  .bio-tags { justify-content: center; }

  .dark-banner { min-height: 200px; }

  .sticky-cta { display: block; }
  body { padding-bottom: 56px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
