/* ============================================================
   חרדים לישראל – Landing Page Stylesheet
   RTL | Mobile-First | WCAG 2.1
   Colors: Navy #1A2E6E | Sky Blue #00AEEF | Gold #D4A017 | White #FFFFFF
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #1A2E6E;
  --navy-dark:  #0F1E4F;
  --navy-mid:   #243787;
  --sky:        #00AEEF;
  --sky-dark:   #0090CA;
  --gold:       #D4A017;
  --gold-light: #F0C040;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --gray-light: #E8ECF4;
  --gray:       #8894A8;
  --text:       #1F2D4E;
  --text-light: #5A6880;
  --border:     #D0D8E8;
  --success:    #16a34a;
  --error:      #DC2626;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(26, 46, 110, 0.10);
  --shadow-lg:  0 8px 40px rgba(26, 46, 110, 0.16);
  --transition: 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Heebo', 'Arial Hebrew', Arial, sans-serif;
  direction: rtl;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--sky); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--sky-dark); text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: var(--radius-sm); }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.3; color: var(--navy); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border-color: transparent;
  font-weight: 700;
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy-dark); }

.btn-nav {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
}
.btn-nav:hover { background: var(--gold-light); color: var(--navy-dark); }

.btn-lg { padding: 0.9rem 2.5rem; font-size: 1.1rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: rgba(15, 30, 79, 0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}
.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.navbar-logo-divider {
  width: 2px;
  height: 52px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  margin: 0 6px;
}
.navbar-logo {
  height: 56px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  transition: transform var(--transition);
}
/* Merit logo – אותו גודל בדיוק כמו לוגו חרדים לישראל */
.navbar-logo-merit {
  height: 56px;
  width: 140px;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition);
  display: block;
  flex-shrink: 0;
}
.navbar-logo-merit:hover {
  transform: scale(1.05);
}
.navbar-brand:hover .navbar-logo { transform: scale(1.05); }
.navbar-tagline {
  flex: 1;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
}

/* ---------- Deadline Box ---------- */
.deadline-box {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  animation: pulse-border 2.5s ease-in-out infinite;
}
.deadline-box i {
  font-size: 1.5rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.deadline-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}
.deadline-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.deadline-date {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
}
.deadline-hebrew {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.0); }
  50%       { box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.18); }
}
@media (max-width: 480px) {
  .deadline-box { padding: 0.65rem 1.25rem; border-radius: 16px; }
  .deadline-date { font-size: 1.05rem; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

/* Decorative background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--sky);
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: -120px; }
.shape-2 { width: 350px; height: 350px; bottom: -80px; left: -80px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 10%; background: var(--gold); opacity: 0.06; }

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(0, 174, 239, 0.2);
  border: 1px solid rgba(0, 174, 239, 0.45);
  color: var(--sky);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-title .highlight {
  color: var(--sky);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Hero values strip */
.hero-values {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-value-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 174, 239, 0.18);
  border: 2px solid rgba(0, 174, 239, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--sky);
  transition: all var(--transition);
}
.hero-value-item:hover .hero-value-icon {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}
.hero-value-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-value-sep {
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
  align-self: center;
  line-height: 1;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.hero-wave svg { width: 100%; height: 50px; display: block; }

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  background: var(--gray-light);
  color: var(--sky-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ---------- ABOUT ---------- */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 3fr 2fr; }
}
.about-text .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about-text p { margin-bottom: 1rem; color: var(--text); }
.about-domains {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.about-domains li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--text);
}
.about-domains li i { color: var(--sky); font-size: 1rem; }

.about-quote-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-quote-card::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0,174,239,0.12);
}
.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.about-quote-card blockquote p {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--white);
}
.about-quote-card blockquote cite {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-style: normal;
}

/* ---------- PILLARS ---------- */
.pillars-section { background: var(--off-white); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--sky);
}
.pillar-card:hover, .pillar-card:focus {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  outline: none;
}
.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}
.pillar-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.pillar-card p { color: var(--text-light); font-size: 0.95rem; }

/* ---------- AUDIENCE ---------- */
.audience-section { background: var(--white); }
.audience-lead {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--text);
  line-height: 1.75;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-right: 4px solid var(--gold);
}
.criteria-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.criteria-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.criteria-item p { font-size: 0.9rem; color: var(--text-light); }

/* ---------- HOW ---------- */
.how-section { background: var(--navy-dark); color: var(--white); }
.how-section .section-label { background: rgba(255,255,255,0.1); color: var(--sky); }
.how-section h2 { color: var(--white); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { color: var(--gold-light); margin-bottom: 0.35rem; font-size: 1rem; }
.step-content p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

.how-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(0, 174, 239, 0.12);
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.how-note i { color: var(--sky); margin-top: 3px; flex-shrink: 0; }
.how-note a { color: var(--gold-light); }
.how-note a:hover { color: var(--gold); }

.how-selection {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

/* ---------- FORM ---------- */
.form-section { background: var(--off-white); }

.success-message {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 2px solid #86efac;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeIn 0.4s ease;
}
.success-icon { font-size: 3rem; color: var(--success); margin-bottom: 0.75rem; }
.success-message h3 { color: #166534; font-size: 1.5rem; margin-bottom: 0.5rem; }
.success-message p { color: #166534; }

.app-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

fieldset {
  border: none;
  margin-bottom: 2.5rem;
}
legend {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-light);
  width: 100%;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.required { color: var(--error); }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}
input.invalid, textarea.invalid { border-color: var(--error); }

textarea { resize: vertical; min-height: 120px; }

.char-count {
  text-align: left;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.2rem;
}

.field-error {
  font-size: 0.82rem;
  color: var(--error);
  min-height: 1rem;
}

/* Upload Zone */
.upload-note { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.25rem; }

.upload-zone {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--sky);
  background: rgba(0,174,239,0.04);
}
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.75rem 1rem;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.upload-label i { font-size: 2rem; color: var(--sky); }
.upload-main-text { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.upload-sub-text { font-size: 0.8rem; color: var(--gray); }

.file-preview {
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: var(--success);
  font-weight: 500;
}

/* Form Footer */
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.privacy-note {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.privacy-note i { color: var(--sky); }

.btn-submit { min-width: 220px; justify-content: center; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.footer-logo-merit {
  height: 62px;
  width: auto;
  max-width: 180px;
  border-radius: 10px;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 500;
}
.footer-contact h4,
.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.footer-contact i { color: var(--sky); }
.footer-contact .fa-whatsapp { color: #25D366; }
.footer-contact a,
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-contact a:hover,
.footer-links a:hover { color: var(--gold-light); }
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- Docs Instruction Box ---------- */
.docs-instruction {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
  border: 1.5px solid #b8d9f5;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.docs-instruction > i {
  font-size: 2rem;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.docs-instruction p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.docs-email {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--sky);
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
  transition: all var(--transition);
}
.docs-email:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  text-decoration: none;
}
.docs-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.docs-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.docs-list li i { color: var(--success); font-size: 0.78rem; }

/* ---------- Upload Grid ---------- */
.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .upload-grid { grid-template-columns: 1fr; }
}
.file-ok { color: var(--success); font-size: 0.88rem; font-weight: 500; }
.file-err { color: var(--error); font-size: 0.88rem; font-weight: 500; }

/* ---------- WhatsApp Submit Button ---------- */
.btn-submit-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.95rem 2.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  min-width: 260px;
}
.btn-submit-wa:hover:not(:disabled) {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.btn-submit-wa:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-submit-wa i { font-size: 1.3rem; }

/* ---------- Email Submit Button ---------- */
.btn-submit-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.95rem 2.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(26, 46, 110, 0.35);
  min-width: 240px;
  font-family: inherit;
}
.btn-submit-email:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--navy-mid), var(--sky-dark));
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(26, 46, 110, 0.45);
  color: #fff;
}
.btn-submit-email:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-submit-email i { font-size: 1.1rem; }
.btn-loading { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ---------- Footer Logo Divider ---------- */
.footer-logo-divider {
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,0.2);
  border-radius: 1px;
}

/* ---------- WhatsApp Docs Box ---------- */
.whatsapp-fieldset { margin-bottom: 2rem; }

.whatsapp-docs-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.wa-docs-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.wa-docs-text h4 { font-size: 1.05rem; color: #166534; margin-bottom: 0.5rem; }
.wa-docs-text p  { font-size: 0.92rem; color: #166534; margin-bottom: 0.75rem; }
.wa-docs-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.wa-docs-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #15803d;
  font-weight: 500;
}
.wa-docs-list li i { color: #16a34a; font-size: 0.8rem; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  width: 100%;
  margin-bottom: 0.75rem;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  text-decoration: none;
}
.btn-whatsapp i { font-size: 1.2rem; }

.btn-whatsapp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  min-width: 280px;
}
.btn-whatsapp-submit:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.btn-whatsapp-submit i { font-size: 1.3rem; }

.wa-note {
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.wa-note i { color: var(--sky); }

.wa-docs-label {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.wa-docs-label i { color: var(--sky); }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  text-decoration: none;
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.5);
  color: var(--navy-dark);
  text-decoration: none;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Accessibility: Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--sky);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .hero { padding: 4rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .app-form { padding: 1.5rem 1.25rem; }
  .navbar-tagline { display: none; }
  .hero-values { gap: 0.75rem; }
  .hero-value-sep { display: none; }
  .btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }
}
@media (min-width: 900px) {
  .how-steps { grid-template-columns: repeat(4, 1fr); }
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}
