/* ============================================================
   Hero Section — V1 (stacked classic)
   Desktop max ~1280, mobile breakpoint at 768px
   ============================================================ */

.hero-artboard {
  width: 100%;
  background: var(--gt-cream);
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
  direction: rtl;
  padding: 0 64px 56px;
  min-height: 900px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Decorative blobs */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.deco-blob--a {
  width: 520px;
  height: 520px;
  background: var(--gt-pink);
  top: -120px;
  right: -180px;
}
.deco-blob--b {
  width: 380px;
  height: 380px;
  background: var(--gt-pink-soft);
  bottom: 80px;
  left: -120px;
  opacity: 0.7;
}

/* Logo header */
.hero-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.hero-logo-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.hero-logo-header img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Copy block */
.hero-copy {
  text-align: center;
  padding-top: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gt-burgundy);
  background: white;
  border: 1px solid var(--gt-pink);
  padding: 8px 14px 7px;
  border-radius: 999px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gt-burgundy);
}

.hero-headline {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--gt-ink);
  margin: 18px 0 22px;
  text-wrap: balance;
}
.hero-headline em {
  font-style: normal;
  color: var(--gt-burgundy);
  white-space: nowrap;
}
.hero-headline .price-pop {
  font-style: normal;
  display: inline-block;
  background: var(--gt-burgundy);
  color: white;
  padding: 0 14px;
  border-radius: 8px;
  transform: rotate(-1.5deg);
  margin: 0 4px;
}

.hero-desc {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 24px;
  line-height: 1.55;
  color: var(--gt-body);
  text-wrap: pretty;
  font-weight: 400;
}
.hero-desc strong { color: var(--gt-burgundy-ink); }

/* Split: photo + form */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* Photo */
.hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #1a0d14;
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(110, 28, 64, 0.22);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(45,18,30,0.55) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Form column */
.hero-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-form {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 20px 50px rgba(184, 51, 106, 0.14),
    0 2px 8px rgba(110, 28, 64, 0.04);
  border: 1px solid var(--gt-line);
}

.hero-form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gt-ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
  direction: ltr;
  line-height: 1.3;
}
.hero-form-title .ft-text { direction: rtl; }
.hero-form-title .ft-emoji { font-size: 24px; }

.hero-form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1.5px solid var(--gt-line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  background: var(--gt-cream);
  color: var(--gt-ink);
  outline: none;
  transition: border-color var(--dur-base) var(--ease-warm),
              background var(--dur-base) var(--ease-warm),
              box-shadow var(--dur-base) var(--ease-warm);
  text-align: right;
  direction: rtl;
}
.hero-input::placeholder {
  color: var(--gt-muted);
  font-weight: 400;
}
.hero-input:focus {
  border-color: var(--gt-burgundy);
  background: white;
  box-shadow: 0 0 0 4px rgba(184, 51, 106, 0.1);
}
.hero-input.is-valid {
  border-color: var(--gt-success);
}
.hero-input.is-error {
  border-color: var(--gt-danger);
  background: #fff5f5;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}
.field-error {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gt-danger);
  margin-top: 4px;
  padding-right: 2px;
  direction: rtl;
  text-align: right;
}

/* Pre-filled returning-user note */
.prefill-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--gt-body);
  direction: rtl;
  text-align: right;
  padding: 2px 0 4px;
}
.prefill-reset {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--gt-burgundy);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Consent checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--gt-body);
  line-height: 1.45;
  direction: rtl;
  text-align: right;
}
.form-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  accent-color: var(--gt-burgundy);
  cursor: pointer;
  margin-top: 1px;
}
.form-consent a {
  color: var(--gt-burgundy);
  text-decoration: underline;
}
.form-consent.is-error {
  color: var(--gt-danger);
}
.form-consent.is-error a {
  color: var(--gt-danger);
}

.hero-cta {
  width: 100%;
  height: 64px;
  border: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, var(--gt-burgundy) 0%, var(--gt-burgundy-deep) 100%);
  color: white;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
  transition: transform 220ms var(--ease-warm),
              box-shadow 220ms var(--ease-warm),
              filter 220ms var(--ease-warm);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 10px 24px rgba(184, 51, 106, 0.32),
    0 2px 6px rgba(110, 28, 64, 0.2);
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(120%);
  transition: transform 700ms var(--ease-warm);
  pointer-events: none;
}
.hero-cta:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 16px 36px rgba(184, 51, 106, 0.42),
    0 2px 6px rgba(110, 28, 64, 0.22);
}
.hero-cta:hover:not(:disabled)::before { transform: translateX(-120%); }
.hero-cta:active:not(:disabled) { transform: translateY(0) scale(0.99); }
.hero-cta:disabled { cursor: default; }

.hero-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  transition: transform 280ms var(--ease-warm);
}
.hero-cta:hover:not(:disabled) .hero-cta-arrow { transform: translateX(-6px); }

.hero-form-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  color: var(--gt-muted);
  margin-top: 14px;
  text-align: center;
  font-weight: 500;
}
.hero-form-footnote .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gt-burgundy);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

/* ============================================================
   Mobile (≤768px) — single column, smaller type, full-width form
   Mirrors HeroMobileV1
   ============================================================ */
@media (max-width: 768px) {
  .hero-artboard {
    padding: 0 20px 32px;
    min-height: auto;
  }

  .deco-blob--a {
    width: 240px;
    height: 240px;
    top: -60px;
    right: -80px;
    opacity: 0.5;
  }
  .deco-blob--b { display: none; }

  .hero-logo-row { padding-top: 14px; padding-bottom: 0; }
  .hero-logo-header img { height: 65px; }

  .hero-copy { padding-top: 8px; }
  .hero-eyebrow { font-size: 15px; padding: 6px 12px 5px; }

  .hero-headline {
    font-size: 32px;
    margin: 21px 0 21px;
  }
  .hero-headline .price-pop {
    padding: 0 10px;
    border-radius: 6px;
    margin: 8px 2px 0;
    display: inline-block;
  }

  .hero-desc {
    font-size: 18px;
    margin: 0 0 18px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-photo {
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 16px;
  }

  .hero-form {
    padding: 18px;
    border-radius: 18px;
  }
  .hero-form-title { font-size: 22px; gap: 6px; margin-bottom: 12px; }
  .hero-form-title .ft-emoji { font-size: 22px; }
  .hero-form-footnote { font-size: 14px; margin-top: 10px; }
}

.submit-error {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--gt-danger);
  text-align: center;
  line-height: 1.5;
}
