/* ==========================================================================
   AGADA LANDING PAGES — Redesigned CSS
   Mobile-first, RTL Hebrew, Conversion-optimized
   Brand: Navy #0C1E3C, Gold #C4904A, Ivory #F9F6F1, Cream #F1EAE0
   Fonts: Frank Ruhl Libre (display), Heebo (body)
   ========================================================================== */

/* --- Reset & Variables --- */
:root {
  --navy: #0C1E3C;
  --navy-light: #182E50;
  --navy-deep: #081628;
  --gold: #C4904A;
  --gold-dark: #A07238;
  --gold-light: #D4A562;
  --ivory: #F9F6F1;
  --cream: #F1EAE0;
  --text-muted: #4A6A8A;
  --border-light: #E5DDD2;
  --font-display: 'Frank Ruhl Libre', Georgia, 'Times New Roman', serif;
  --font-body: 'Heebo', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 24px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.15);
  --radius: 14px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.gold-text { color: var(--gold); }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   1. STICKY BAR
   ========================================================================== */
.landing-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--navy-deep);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.landing-sticky-bar.visible {
  transform: translateY(0);
}

.sticky-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-text strong { color: var(--gold-light); }

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

.sticky-cta {
  display: inline-block;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.sticky-cta:hover {
  background: var(--gold-dark);
  transform: scale(1.03);
}

.sticky-phone {
  font-size: 0.8rem;
  color: var(--gold-light);
  white-space: nowrap;
  font-weight: 500;
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.landing-hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, #1A3358 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 72px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 144, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(196, 144, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.landing-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--navy-deep), transparent);
  pointer-events: none;
}

.landing-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 144, 74, 0.12);
  border: 1px solid rgba(196, 144, 74, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.landing-hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.landing-hero h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.landing-hero .subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 36px;
  line-height: 1.7;
}

.landing-hero .subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(196, 144, 74, 0.4);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 144, 74, 0.5);
}

.hero-btn:active {
  transform: translateY(0);
}

.hero-btn .btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.hero-btn:hover .btn-arrow {
  transform: translateX(-4px);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.hero-phone:hover { color: var(--gold-light); }

.hero-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   3. SOCIAL PROOF BAR
   ========================================================================== */
.landing-proof {
  background: var(--navy-deep);
  padding: 28px 20px;
}

.landing-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.landing-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.landing-proof-item .proof-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}

.landing-proof-item .proof-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
}

.landing-proof-divider {
  width: 36px;
  height: 1px;
  background: rgba(196, 144, 74, 0.2);
}

/* ==========================================================================
   4. URGENCY LINE
   ========================================================================== */
.landing-urgency {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 12px 20px;
  text-align: center;
}

.landing-urgency p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.landing-urgency strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   5. PROCESS STEPS
   ========================================================================== */
.landing-process {
  background: #fff;
  padding: 64px 20px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin: 0 0 8px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 40px;
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
  max-width: 320px;
  position: relative;
}

.process-step .step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(196, 144, 74, 0.12);
  line-height: 1;
  margin-bottom: -12px;
  position: relative;
  z-index: 0;
}

.process-step .step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(196, 144, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.process-step .step-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), rgba(196, 144, 74, 0.2));
  border-radius: 2px;
}

/* ==========================================================================
   6. BENEFITS
   ========================================================================== */
.landing-benefits {
  background: var(--ivory);
  padding: 64px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

.benefit-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-card .benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(196, 144, 74, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-card .benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   7. MID-PAGE CTA
   ========================================================================== */
.landing-mid-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 56px 20px;
  text-align: center;
}

.mid-cta-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}

.mid-cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
}

.mid-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-wa-large svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.btn-phone-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-phone-large:hover { color: var(--gold-light); }

.btn-phone-large svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   8. FORM SECTION
   ========================================================================== */
.landing-form-section {
  background: var(--cream);
  padding: 56px 20px;
}

.landing-form-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-lg);
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
}

.form-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 8px;
}

.form-header .form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.form-header .form-subtitle strong {
  color: var(--gold-dark);
}

.landing-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.landing-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.landing-form .form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.landing-form .form-group input,
.landing-form .form-group select,
.landing-form .form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.landing-form .form-group input:focus,
.landing-form .form-group select:focus,
.landing-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 144, 74, 0.15);
  background: #fff;
}

.landing-form .form-group input.error,
.landing-form .form-group select.error {
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.landing-form .form-group input::placeholder,
.landing-form .form-group textarea::placeholder {
  color: #9AABBF;
}

.landing-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6A8A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

.landing-form .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.landing-form .field-error {
  font-size: 0.8rem;
  color: #d32f2f;
  min-height: 1.2em;
}

/* Form CTA Button */
.landing-form .btn-gold-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(196, 144, 74, 0.3);
}

.landing-form .btn-gold-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 144, 74, 0.45);
}

.landing-form .btn-gold-cta:active { transform: translateY(0); }
.landing-form .btn-gold-cta:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.landing-form .btn-gold-cta .btn-loading { display: none; }
.landing-form .btn-gold-cta.loading .btn-text { display: none; }
.landing-form .btn-gold-cta.loading .btn-loading { display: inline; }

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-security svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ==========================================================================
   9. FAQ ACCORDION
   ========================================================================== */
.landing-faq {
  background: #fff;
  padding: 64px 20px;
}

.faq-list {
  max-width: 680px;
  margin: 36px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold-dark); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.faq-answer strong {
  color: var(--navy);
}

/* ==========================================================================
   10. FINAL CTA
   ========================================================================== */
.landing-final-cta {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196, 144, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.landing-final-cta .container { position: relative; z-index: 1; }

.landing-final-cta h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 12px;
}

.landing-final-cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 32px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   11. PROPERTY TYPES (seekers page)
   ========================================================================== */
.landing-types-section {
  background: var(--ivory);
  padding: 56px 20px;
}

.landing-types {
  max-width: 720px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.landing-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.landing-type-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.landing-type-card .type-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 144, 74, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.landing-type-card .type-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
}

.landing-type-card .type-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* ==========================================================================
   12. TRUST SIGNALS
   ========================================================================== */
.landing-trust {
  background: var(--ivory);
  padding: 36px 20px;
  text-align: center;
}

.landing-trust-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.landing-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.landing-trust-item .trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 144, 74, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.landing-trust-item .trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ==========================================================================
   13. WHATSAPP FLOATING CTA
   ========================================================================== */
.landing-wa-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9997;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3s ease-in-out infinite;
}

.landing-wa-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

.landing-wa-cta svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

/* ==========================================================================
   14. THANK YOU OVERLAY
   ========================================================================== */
.landing-thankyou {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 22, 40, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.landing-thankyou.active { display: flex; }

.landing-thankyou-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: thankyou-in 0.4s ease-out;
  position: relative;
}

@keyframes thankyou-in {
  from { opacity: 0; transform: translateY(24px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.landing-thankyou-card .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(196, 144, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-thankyou-card .success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  animation: check-draw 0.5s ease-out 0.3s both;
}

@keyframes check-draw {
  from { stroke-dasharray: 30; stroke-dashoffset: 30; }
  to { stroke-dashoffset: 0; }
}

.landing-thankyou-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 10px;
}

.landing-thankyou-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.6;
}

.landing-thankyou-card .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.landing-thankyou-card .btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.landing-thankyou-card .btn-wa svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.thankyou-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ivory);
  transition: background 0.2s;
}

.thankyou-close:hover { background: var(--cream); }

.thankyou-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.landing-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.85rem;
}

.landing-footer a {
  color: var(--gold-light);
  transition: color 0.2s;
}

.landing-footer a:hover { color: #fff; }

.landing-footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.landing-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.landing-footer-legal a { color: rgba(255, 255, 255, 0.35); }
.landing-footer-legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   16. RESPONSIVE — Tablet (min-width: 640px)
   ========================================================================== */
@media (min-width: 640px) {
  .landing-hero { padding: 110px 24px 80px; }
  .landing-hero h1 { font-size: 2.6rem; }

  .landing-proof-inner {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .landing-proof-divider {
    width: 1px;
    height: 40px;
  }

  .landing-form .form-row { grid-template-columns: 1fr 1fr; }
  .landing-form-card { padding: 40px 32px; }

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

  .process-grid { flex-direction: row; }
  .process-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(to left, var(--gold), rgba(196, 144, 74, 0.2));
    align-self: center;
    margin-top: -24px;
  }

  .mid-cta-actions { flex-direction: row; gap: 16px; }

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

  .final-cta-actions { flex-direction: row; justify-content: center; }

  .landing-types { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   17. RESPONSIVE — Desktop (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
  .landing-hero { padding: 130px 40px 90px; }
  .landing-hero h1 { font-size: 3rem; }
  .landing-hero .subtitle { font-size: 1.15rem; }

  .landing-form-section { padding: 72px 40px; }
  .landing-form-card { padding: 48px 40px; }

  .section-heading { font-size: 1.85rem; }

  .landing-process { padding: 80px 40px; }
  .landing-benefits { padding: 80px 40px; }
  .landing-faq { padding: 80px 40px; }

  .landing-wa-cta { bottom: 32px; left: 32px; }

  .sticky-text { font-size: 0.9rem; }
}

/* ==========================================================================
   18. RESPONSIVE — Large Desktop (min-width: 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .landing-hero h1 { font-size: 3.5rem; }

  .landing-form-card { padding: 56px 48px; }
  .form-header h2 { font-size: 1.75rem; }

  .landing-final-cta h2 { font-size: 2.2rem; }

  .benefits-grid { gap: 20px; }
}

/* ==========================================================================
   19. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .landing-wa-cta { animation: none; }
  .landing-sticky-bar { transition: none; }
  @keyframes pulse-glow { 0%, 100% { opacity: 1; transform: scale(1); } }
}
