/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B3A8C;
  --navy-dark: #0f2260;
  --navy-deeper: #091640;
  --navy-light: #2a4fa8;
  --navy-glass: rgba(27,58,140,0.12);
  --accent: #4A9FD4;
  --accent-light: #6db8e8;
  --white: #ffffff;
  --off-white: #f8faff;
  --gray-50: #f0f4ff;
  --gray-100: #e4eaf8;
  --gray-200: #c8d4f0;
  --gray-400: #8898c8;
  --gray-600: #4a5a8a;
  --gray-800: #1e2a50;
  --text: #0f1e40;
  --text-muted: #4a5a8a;
  --shadow-sm: 0 2px 8px rgba(27,58,140,0.08);
  --shadow-md: 0 8px 32px rgba(27,58,140,0.12);
  --shadow-lg: 0 20px 60px rgba(27,58,140,0.18);
  --shadow-xl: 0 40px 100px rgba(27,58,140,0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Noto Sans Hebrew', sans-serif;
  background: var(--white);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.mt-6 { margin-top: 24px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 24px rgba(27,58,140,0.35);
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(27,58,140,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-nav {
  background: var(--navy); color: var(--white);
  padding: 10px 22px; font-size: 14px;
  box-shadow: 0 2px 12px rgba(27,58,140,0.25);
}
.btn-nav:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(27,58,140,0.1);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 140px; width: auto; transition: var(--transition);
}
.navbar.scrolled .logo-img {
  height: 90px;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(195deg) brightness(0.5);
}
.nav-links {
  display: flex; gap: 4px; margin-inline-start: auto; align-items: center;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.9); transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.navbar.scrolled .nav-links a:hover { background: var(--gray-50); color: var(--navy); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--navy); }

/* ===== HERO ===== */
.hero {
  min-height: 100dvh; position: relative;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 45%, #2563b8 100%);
  overflow: hidden; text-align: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

/* Animated water waves */
.water-wave {
  position: absolute; bottom: -20px; left: -10%; width: 120%;
  border-radius: 50% 50% 0 0;
}
.wave1 {
  height: 180px;
  background: rgba(255,255,255,0.04);
  animation: wave 8s ease-in-out infinite;
}
.wave2 {
  height: 140px; bottom: -30px;
  background: rgba(255,255,255,0.06);
  animation: wave 10s ease-in-out infinite reverse;
}
.wave3 {
  height: 100px; bottom: -40px;
  background: rgba(74,159,212,0.12);
  animation: wave 12s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-3%) scaleY(1.05); }
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; }

.hero-content {
  position: relative; z-index: 2;
  padding: 140px 24px 100px;
  max-width: 900px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px; border-radius: 50px;
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

.hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: linear-gradient(135deg, #93c5fd, #60a5fa, var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.8);
  max-width: 660px; margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.trust-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px; border-radius: 50px;
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 12px;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform:rotate(45deg) translateY(0); } 50% { transform:rotate(45deg) translateY(4px); } }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  position: relative; z-index: 10;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 28px 20px;
  flex: 1; min-width: 180px;
}
.trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.trust-item span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.trust-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0;
}
.trust-divider { width: 1px; height: 60px; background: var(--gray-100); flex-shrink: 0; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: var(--gray-50); color: var(--navy);
  border: 1px solid var(--gray-100);
  padding: 6px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: var(--text); line-height: 1.2; margin-bottom: 16px;
}
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute;
  inset: 0; opacity: 0;
  background: linear-gradient(135deg, var(--navy-glass), transparent);
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gray-200); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--navy); color: var(--white); border-color: var(--navy); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.service-arrow {
  position: absolute; bottom: 24px; left: 24px;
  color: var(--gray-200); transition: var(--transition);
}
.service-card:hover .service-arrow { color: var(--navy); transform: translateX(-4px); }

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.25; margin-bottom: 20px; }
.why-text p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 8px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--off-white); border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.why-item:hover { border-color: var(--gray-200); background: var(--white); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy-deeper), var(--navy));
  padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 20px;
  border-left: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center;
}
.stat-item:last-child { border-left: none; }
.stat-number { font-size: clamp(40px,5vw,64px); font-weight: 900; color: var(--white); line-height: 1; }
.stat-plus { font-size: 24px; font-weight: 700; color: var(--accent-light); margin-top: -8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 8px; font-weight: 500; }

/* ===== PROCESS ===== */
.process { background: var(--off-white); }
.process-timeline {
  display: flex; align-items: flex-start;
  gap: 0; position: relative;
}
.process-step {
  flex: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.step-number {
  font-size: 13px; font-weight: 800;
  color: var(--navy); letter-spacing: 0.05em;
  margin-bottom: 12px; opacity: 0.5;
}
.step-content {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  padding: 28px 24px;
  transition: var(--transition);
  width: 100%;
}
.step-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-200); }
.step-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 8px 24px rgba(27,58,140,0.3);
}
.step-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.process-connector {
  width: 48px; height: 2px;
  background: linear-gradient(to left, var(--gray-200), var(--navy-light));
  margin-top: 84px; flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-200); }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq { background: var(--off-white); }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-header { position: sticky; top: 100px; }
.faq-header h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.faq-header p { font-size: 16px; color: var(--text-muted); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.open { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; gap: 16px;
  font-size: 15px; font-weight: 600; color: var(--text);
  text-align: right; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { color: var(--navy); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s ease; color: var(--gray-400); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--navy); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 60%, #2563b8 100%);
  position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-text h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 16px; }
.cta-text p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500;
  transition: var(--transition);
}
.contact-method:hover { color: var(--white); gap: 14px; }

.contact-form {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-family: inherit; font-size: 14px; color: var(--white);
  transition: var(--transition); outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.form-note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deeper); color: rgba(255,255,255,0.8); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-wrap { display: inline-block; }
.footer-logo { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: var(--transition);
}
.footer-social a:hover { background: var(--navy-light); color: white; border-color: var(--navy-light); }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-size: 13px; font-weight: 700; color: var(--white);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-right: 4px; }
.footer-services li { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-items a,
.footer-contact-items span {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-contact-items a:hover { color: white; }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 88px; left: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 12px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: float-in 0.5s cubic-bezier(0.34,1.56,0.64,1) 1s both;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
@keyframes float-in { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* ===== MOBILE CTA ===== */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-100);
  padding: 12px 16px;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(27,58,140,0.1);
}
.mobile-cta .btn { flex: 1; justify-content: center; padding: 12px 16px; }

/* ===== BEFORE / AFTER ===== */
.before-after { background: var(--navy-deeper); }
.before-after .section-header h2 { color: var(--white); }
.before-after .section-header p { color: rgba(255,255,255,0.65); }
.before-after .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }

.ba-slider-wrap { max-width: 900px; margin: 0 auto; }

.ba-slider {
  position: relative; width: 100%; border-radius: var(--radius-lg);
  overflow: hidden; cursor: ew-resize;
  box-shadow: var(--shadow-xl);
  user-select: none;
  aspect-ratio: 9/5;
}

.ba-after, .ba-before {
  position: absolute; inset: 0;
}
.ba-after svg, .ba-before svg { width: 100%; height: 100%; display: block; }

.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}

.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 4px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none; z-index: 10;
}
.ba-line {
  position: absolute; top: 0; bottom: 0;
  width: 3px; background: white;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}
.ba-btn {
  position: relative; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  color: var(--navy); gap: 0;
}

.ba-labels {
  display: flex; justify-content: space-between;
  margin-top: 16px; padding: 0 8px;
}
.ba-label-before {
  background: #dc2626; color: white;
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
}
.ba-label-after {
  background: #25D366; color: white;
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .navbar.mobile-open { background: rgba(27,58,140,0.98); backdrop-filter: blur(20px); }
  .navbar.mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(27,58,140,0.98);
    padding: 16px 24px 24px; gap: 4px;
  }
  .navbar.mobile-open .nav-links a { color: rgba(255,255,255,0.85); padding: 12px 16px; border-radius: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .process-timeline { flex-direction: column; gap: 16px; }
  .process-connector { width: 2px; height: 32px; background: linear-gradient(to bottom, var(--navy-light), var(--gray-200)); margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: stretch; }
  .trust-divider { width: 100%; height: 1px; margin: 0; }
  .trust-item { padding: 16px 20px; }
  .whatsapp-float { bottom: 90px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .trust-badges { gap: 8px; }
  .contact-form { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
