/* ====================================================
   שכולו טוב - שירות ניווט להורים | Styles
   ==================================================== */

/* --- Variables --- */
:root {
  --color-primary: #F4B942;
  --color-primary-dark: #d9a030;
  --color-secondary: #1B3A5C;
  --color-accent: #E07856;
  --color-accent-dark: #c5623d;
  --color-bg-white: #FFFFFF;
  --color-bg-cream: #FAF7F2;
  --color-text: #1F1F1F;
  --color-text-muted: #5A5A5A;
  --color-success: #4A8B3A;
  --color-error: #C0392B;
  --color-border: #E2DDD8;
  --color-whatsapp: #25D366;

  --font-main: 'Rubik', sans-serif;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-input: 8px;
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --transition: 200ms ease;

  --max-width: 1200px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

img { max-width: 100%; height: auto; display: block; }

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

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-main);
  font-size: inherit;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--color-secondary);
  color: #fff;
  padding: 12px 24px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-btn) 0;
  font-weight: 500;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Spacing --- */
section { padding: 80px 0; }

@media (max-width: 768px) { section { padding: 52px 0; } }

/* --- Section Headings --- */
.section-heading {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-subheading {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section-center { text-align: center; }

/* ==============================================
   HEADER
   ============================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-whatsapp);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-weight: 500;
  font-size: 15px;
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background: #1da855;
  transform: translateY(-1px);
}
.btn-whatsapp svg { flex-shrink: 0; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--color-secondary);
  font-size: 17px;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--color-accent); }

@media (max-width: 640px) {
  .header-phone-label { display: none; }
  .btn-whatsapp span { display: none; }
  .btn-whatsapp { padding: 10px 12px; }
  #site-header { height: 60px; }
  :root { --header-height: 60px; }
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-text);
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,185,66,0.4);
}
.btn-primary:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-secondary);
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 500;
  font-size: 17px;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--color-secondary);
  color: #fff;
}

/* ==============================================
   HERO
   ============================================== */
#hero {
  background: var(--color-bg-white);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { order: 1; }
.hero-image { order: 2; }

.hero-h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 19px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-trust {
  margin-top: 16px;
  font-size: 15px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 4px; }
.hero-trust .dot { color: var(--color-primary); font-size: 20px; line-height: 1; }

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0e8d8;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 15px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #fef3dc 0%, #fde8c8 100%);
}
.hero-image-placeholder svg { opacity: 0.4; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { order: 2; }
  .hero-image { order: 1; }
  .hero-image-wrap { aspect-ratio: 16/9; border-radius: 12px; }
  .hero-subheadline { max-width: 100%; }
}

/* ==============================================
   EMPATHY SECTION
   ============================================== */
#empathy {
  background: var(--color-bg-cream);
}

.empathy-heading {
  text-align: center;
  margin-bottom: 40px;
}

.empathy-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.empathy-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition);
}
.empathy-card:hover { transform: translateY(-3px); }

.empathy-card-icon {
  width: 48px;
  height: 48px;
  background: #fff9ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.empathy-card p { font-size: 17px; line-height: 1.6; color: var(--color-text); }

.empathy-footer {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-secondary);
}

@media (max-width: 900px) { .empathy-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .empathy-cards { grid-template-columns: 1fr; } }

/* ==============================================
   SOLUTION INTRO
   ============================================== */
#solution {
  background: var(--color-bg-white);
}

.solution-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.solution-body {
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.8;
}
.solution-body p + p { margin-top: 16px; }

/* ==============================================
   WHAT WE COVER
   ============================================== */
#coverage {
  background: var(--color-bg-cream);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.coverage-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.coverage-icon {
  width: 52px;
  height: 52px;
  background: #fff9ec;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.coverage-card h3 { font-size: 17px; font-weight: 600; color: var(--color-secondary); line-height: 1.4; }
.coverage-card p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }

@media (max-width: 900px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .coverage-grid { grid-template-columns: 1fr; } }

/* ==============================================
   HOW IT WORKS
   ============================================== */
#how-it-works {
  background: var(--color-bg-white);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  right: calc(12.5% + 28px);
  left: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to left, var(--color-primary), var(--color-accent));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 4px solid var(--color-bg-white);
  box-shadow: 0 0 0 3px var(--color-primary);
  flex-shrink: 0;
}

.step h3 { font-size: 17px; font-weight: 700; color: var(--color-secondary); margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }

@media (max-width: 768px) {
  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-timeline::before { display: none; }
  .step { flex-direction: row; text-align: right; align-items: flex-start; gap: 20px; padding: 0; }
  .step-number { margin-bottom: 0; flex-shrink: 0; }
  .step-text { flex: 1; }
}

/* ==============================================
   TEAM
   ============================================== */
#team {
  background: var(--color-bg-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  margin: 0 auto 16px;
  background: #e8ddd0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fde8c8 0%, #f4b942 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.team-name { font-size: 18px; font-weight: 700; color: var(--color-secondary); margin-bottom: 4px; }
.team-title { font-size: 15px; color: var(--color-text-muted); margin-bottom: 4px; }
.team-exp { font-size: 14px; color: var(--color-accent); font-weight: 600; margin-bottom: 12px; }
.team-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  line-height: 1.6;
}

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }

/* ==============================================
   SUCCESS STORIES
   ============================================== */
#stories {
  background: var(--color-bg-white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.story-card {
  background: var(--color-bg-cream);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border-right: 4px solid var(--color-primary);
}

.story-scenario {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.story-body { font-size: 16px; color: var(--color-text); line-height: 1.8; }
.story-body p + p { margin-top: 12px; }

.story-quote {
  font-size: 19px;
  font-weight: 500;
  color: var(--color-secondary);
  border-top: 1px solid var(--color-border);
  margin-top: 20px;
  padding-top: 16px;
  font-style: italic;
  line-height: 1.6;
}
.story-quote::before { content: '"'; font-size: 28px; color: var(--color-primary); line-height: 1; }

.story-disclaimer {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}

@media (max-width: 768px) { .stories-grid { grid-template-columns: 1fr; } }

/* ==============================================
   TESTIMONIALS
   ============================================== */
#testimonials {
  background: var(--color-bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 24px 20px 24px 20px;
  box-shadow: var(--shadow-card);
  border-right: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-quote {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author { font-size: 14px; color: var(--color-text-muted); font-weight: 500; }
.testimonial-diagnosis { font-size: 13px; color: var(--color-accent); font-weight: 500; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ==============================================
   FAQ
   ============================================== */
#faq {
  background: var(--color-bg-white);
}

.faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: right;
  gap: 16px;
  transition: color var(--transition);
  font-family: var(--font-main);
}
.faq-question:hover { color: var(--color-secondary); }
.faq-question:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: 4px; }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--color-bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-secondary);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 4px 20px;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ==============================================
   LEAD FORM
   ============================================== */
#contact {
  background: linear-gradient(135deg, #fffbf0 0%, #fef3d0 50%, #fde8b8 100%);
  position: relative;
}

.form-card {
  background: var(--color-bg-white);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 768px) { .form-card { padding: 32px 24px; } }

.form-card-heading {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
  text-align: center;
}
.form-card-subheading {
  font-size: 16px;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}
.form-label .required {
  color: var(--color-error);
  margin-right: 2px;
}
.form-optional {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-right: 4px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-input);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-main);
  direction: rtl;
}
.form-input::placeholder, .form-textarea::placeholder { color: #b0aba4; }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(244,185,66,0.25);
}

.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.form-select { padding-left: 40px; }

.form-textarea { resize: vertical; min-height: 100px; }

.char-count { font-size: 13px; color: var(--color-text-muted); text-align: left; margin-top: 4px; }

.field-error {
  font-size: 13px;
  color: var(--color-error);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.field-error[hidden] { display: none; }

.form-checkboxes { display: flex; flex-direction: column; gap: 12px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}
.checkbox-label a { color: var(--color-secondary); text-decoration: underline; }

.form-submit-wrap { text-align: center; }
.btn-submit {
  width: 100%;
  max-width: 420px;
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 700;
  background: var(--color-primary);
  color: var(--color-text);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: var(--font-main);
}
.btn-submit:hover:not(:disabled), .btn-submit:focus-visible:not(:disabled) {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244,185,66,0.45);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-submit:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; }

.form-trust {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 72px;
  height: 72px;
  background: #e8f5e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-success);
}
.form-success h3 { font-size: 24px; font-weight: 700; color: var(--color-success); margin-bottom: 12px; }
.form-success p { color: var(--color-text-muted); font-size: 17px; line-height: 1.7; }
.form-success .urgent-line { margin-top: 16px; font-size: 15px; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ==============================================
   FOOTER
   ============================================== */
#site-footer {
  background: var(--color-secondary);
  color: #fff;
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo img { height: 44px; width: auto; filter: brightness(10); }
.footer-logo p { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--color-primary); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 15px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }

.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--color-primary); color: var(--color-secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==============================================
   MOBILE STICKY CTA BAR
   ============================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--color-secondary);
  padding: 12px 20px;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

.mobile-sticky-cta .btn-primary {
  flex: 1;
  padding: 13px 16px;
  font-size: 16px;
}
.mobile-sticky-cta .mobile-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
}

/* ==============================================
   ANIMATIONS
   ============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .btn-primary, .btn-secondary, .empathy-card, .coverage-card { transition: none; }
}

/* ==============================================
   FOCUS VISIBLE GLOBAL
   ============================================== */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==============================================
   ARIA LIVE REGION
   ============================================== */
#form-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
