/* ================================
   Cours de conversation en hébreu
   French landing page
   ================================ */

:root {
  --cream: #fbf6ee;
  --beige: #f1e5d2;
  --beige-light: #fffaf2;
  --green: #173f35;
  --green-soft: #245c4f;
  --navy: #172033;
  --gold: #c49a4a;
  --text: #24302d;
  --muted: #6f7773;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 63, 53, 0.12);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: linear-gradient(135deg, var(--beige-light), var(--beige));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 246, 238, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 63, 53, 0.08);
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  color: var(--navy);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
}

.nav-cta:hover {
  color: var(--white) !important;
  background: var(--green-soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
  transition: 0.2s ease;
}

/* Hero */

.hero {
  padding-top: 110px;
  background:
    radial-gradient(circle at top left, rgba(196, 154, 74, 0.16), transparent 38%),
    linear-gradient(180deg, var(--cream), #fffaf2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--green);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  color: var(--navy);
  max-width: 720px;
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23, 63, 53, 0.22);
}

.btn-primary:hover {
  background: var(--green-soft);
}

.btn-secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(23, 63, 53, 0.14);
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--green);
  font-weight: 700;
}

.hero-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(23, 63, 53, 0.08);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(196, 154, 74, 0.18);
  top: -70px;
  right: -70px;
}

.card-badge {
  display: inline-block;
  padding: 8px 14px;
  background: var(--beige);
  color: var(--green);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 28px;
}

.price-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--green);
  color: var(--white);
  padding: 18px 20px;
  border-radius: 18px;
}

.price-mini strong {
  font-size: 2rem;
}

/* Content */

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.payment-card,
.step,
details {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 63, 53, 0.09);
  box-shadow: 0 12px 36px rgba(23, 63, 53, 0.07);
}

.info-card {
  border-radius: 18px;
  padding: 22px;
  font-weight: 800;
  color: var(--green);
  min-height: 96px;
  display: flex;
  align-items: center;
}

.two-columns {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.two-columns p {
  color: var(--muted);
}

.check-list,
.question-list {
  display: grid;
  gap: 14px;
}

.check-list div,
.question-list li {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 16px 18px 16px 48px;
  position: relative;
  border: 1px solid rgba(23, 63, 53, 0.08);
}

.check-list div::before,
.question-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--gold);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step {
  border-radius: 20px;
  padding: 22px;
}

.step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 16px;
}

.step p {
  color: var(--navy);
  font-weight: 600;
}

.pricing-card {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.pricing-card h2,
.pricing-card .eyebrow {
  color: var(--white);
}

.pricing-card p {
  color: rgba(255, 255, 255, 0.8);
}

.price-block {
  text-align: right;
}

.price-block strong {
  display: block;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
}

.price-block span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.payment-note,
.small-note {
  color: var(--muted);
  text-align: center;
  margin-top: 22px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.payment-card {
  border-radius: var(--radius);
  padding: 30px;
}

.payment-subtitle {
  color: var(--muted);
  margin-bottom: 18px;
}

.payment-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.payment-card li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
}

.payment-card li::before {
  content: "•";
  position: absolute;
  left: 7px;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  border-radius: 16px;
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--green);
}

details p {
  color: var(--muted);
  margin-top: 12px;
}

.final-cta {
  text-align: center;
  background: var(--green);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  background: var(--cream);
}

.floating-cta {
  display: none;
}

/* Responsive */

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .two-columns,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .price-block {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cards-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .payment-card,
  .pricing-card {
    padding: 24px;
  }

  .floating-cta {
    display: inline-flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    background: var(--green);
    color: var(--white);
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(23, 63, 53, 0.28);
  }

  .site-footer {
    padding-bottom: 88px;
  }
}
