/* ===================================
   BIO ISRAEL — Premium Landing Page
   Design System & Styles
   =================================== */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --color-primary: #1B7A3D;
  --color-primary-dark: #145C2E;
  --color-primary-light: #2DB742;
  --color-primary-subtle: #E8F5EC;
  --color-accent: #F59E0B;
  --color-accent-dark: #D97706;
  --color-blue: #0F3A8A;
  --color-blue-dark: #0A2B66;
  --color-blue-light: #2563EB;
  --color-blue-subtle: #E6EEFB;

  /* Neutrals */
  --color-bg: #FAFBFC;
  --color-surface: #FFFFFF;
  --color-surface-elevated: #FFFFFF;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-text-primary: #111827;
  --color-text-secondary: #4B5563;
  --color-text-tertiary: #9CA3AF;
  --color-text-inverse: #FFFFFF;

  /* Semantic */
  --color-success: #10B981;
  --color-warning: #F59E0B;

  /* Spacing Scale (8px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Typography */
  --font-heading: 'Heebo', sans-serif;
  --font-body: 'Heebo', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(0, 0, 0, 0.06);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*,
*::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);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  right: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 9999;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
}

@media (min-width: 769px) {
  .site-header {
    transform: translateY(-100%);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    pointer-events: none;
  }

  body.is-scrolled .site-header {
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    padding-top: 0;
  }

  .hero-inner {
    min-height: 100vh;
    min-height: 100svh;
  }
}

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

.header-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.header-brand-name {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.header-brand-name .brand-green {
  color: var(--color-primary);
}

.header-brand-name .brand-black {
  color: #000;
}

.footer-brand .header-brand-name .brand-black {
  color: #fff;
}

.header-brand-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  font-weight: 400;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.header-nav a:hover {
  color: var(--color-primary);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  direction: ltr;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  color: var(--color-primary);
}

.mobile-menu-btn:hover {
  background: var(--color-border-light);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: 700;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

.btn-md {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: 0 2px 8px rgba(27, 122, 61, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 16px rgba(27, 122, 61, 0.35);
  transform: translateY(-1px);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn-white {
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-text-inverse);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn svg,
.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Section Utilities --- */
.section {
  padding: var(--space-24) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

.section-dark {
  background: var(--color-text-primary);
  color: var(--color-text-inverse);
}

.section-green {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.section-light {
  background: var(--color-bg);
}

.section-white {
  background: var(--color-surface);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-primary-light);
}

/* --- Hero Section — Split Classic --- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  background-color: #0b1410;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/garden-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.78) saturate(1.05);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.385) 0%, rgba(0, 0, 0, 0.245) 55%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.315));
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero-content {
  color: #fff;
  text-align: right;
  max-width: 620px;
  margin: 0;
  padding-bottom: 0;
}

.hero-figure {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.125rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin-bottom: var(--space-5);
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.hero-title em {
  font-style: normal;
  color: #6cc588;
}

.hero-title-desktop { display: inline; }
.hero-title-mobile { display: none; }

.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.375rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.45;
  margin: 0 0 var(--space-8);
  max-width: 560px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  justify-content: flex-start;
}

.hero-cta-group .btn {
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
}

.hero-cta-group .btn-primary {
  background: var(--color-accent);
  color: #0b1410;
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(245, 179, 1, 0.4);
}

.hero-cta-group .btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #0b1410;
}

.hero-cta-group .btn-whatsapp {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cta-group .btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hero-trust {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding-top: 0;
  border-top: none;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero-trust-num {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.hero-trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
}

.hero-image-bg {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(45, 183, 66, 0.35) 0%, rgba(45, 183, 66, 0.10) 55%, transparent 75%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(8px);
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-float-card.card-rating {
  top: 15%;
  left: -10%;
  animation: floatSlow 4s ease-in-out infinite;
}

.hero-float-card.card-response {
  bottom: 20%;
  right: -5%;
  animation: floatSlow 4s ease-in-out infinite 1s;
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon.green {
  background: var(--color-primary-subtle);
}

.hero-float-icon.amber {
  background: #FEF3C7;
}

.hero-float-icon svg {
  width: 20px;
  height: 20px;
}

.hero-float-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-float-text span {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* --- Trust Strip --- */
.trust-strip {
  padding: var(--space-10) 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  opacity: 0.65;
  transition: opacity var(--transition-base);
}

.trust-strip-item:hover {
  opacity: 1;
}

.trust-strip-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.trust-strip-item span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.highlight-blue {
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.problem-content {
  position: relative;
}

.problem-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.problem-stat {
  padding: var(--space-6);
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.problem-stat::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.problem-stat-num {
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-2);
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
}

.problem-stat-num span {
  font-size: var(--text-base);
  font-weight: 700;
  white-space: nowrap;
}

.problem-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 600;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.problem-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.problem-item:hover {
  border-color: var(--color-primary-subtle);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-2xl);
}

.problem-text h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.problem-text p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

.about-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-2xl);
  box-shadow: 0 30px 70px rgba(15, 58, 138, 0.10), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  isolation: isolate;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  z-index: 2;
}

.about-card-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--color-primary-subtle);
}

.about-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.about-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-card-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.about-card-body {
  padding: var(--space-10) var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  text-align: start;
}

.about-card-eyebrow {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--color-primary-subtle);
  color: var(--color-primary-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
}

.about-card-body h3 {
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}

.about-card-body > p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

.about-pillars {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about-pillar {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-spacing: var(--space-4) 0;
  border-collapse: separate;
  margin-inline-start: calc(-1 * var(--space-4));
}

.about-pillar-icon,
.about-pillar-text {
  display: table-cell;
  vertical-align: middle;
}

.about-pillar-icon {
  width: 56px;
  text-align: center;
}

.about-pillar-icon-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary-subtle);
  box-shadow: 0 4px 12px rgba(27, 122, 61, 0.08);
  transition: all 0.2s ease;
}

.about-pillar-icon-inner svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-primary);
  stroke-width: 2;
}

.about-pillar:hover .about-pillar-icon-inner {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(27, 122, 61, 0.25);
}

.about-pillar:hover .about-pillar-icon-inner svg {
  stroke: #fff;
}

.about-pillar-text {
  text-align: start;
}

.about-pillar-text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.about-pillar-text span {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

.about-card-actions {
  margin-top: var(--space-2);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.about-card-actions .btn {
  flex: 1 1 auto;
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .about-card {
    grid-template-columns: 1fr;
  }

  .about-card-media {
    min-height: 260px;
  }

  .about-card-body {
    padding: var(--space-8) var(--space-6) var(--space-8);
  }
}

.solution-card {
  background: #0A2B66;
  color: var(--color-text-inverse);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/charlie.jpg') center/cover no-repeat;
  opacity: 1;
  z-index: 0;
}

/* Dark overlay for readability */
.solution-card .solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 43, 102, 0.55) 0%, rgba(20, 92, 46, 0.50) 100%);
  opacity: 1;
  z-index: 1;
}

.solution-card h3,
.solution-card p,
.solution-card .solution-features,
.solution-card .btn {
  position: relative;
  z-index: 2;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.solution-card h3 {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  position: relative;
}

.solution-card p {
  font-size: var(--text-lg);
  opacity: 0.9;
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
  position: relative;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  position: relative;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: 500;
}

.solution-feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #86EFAC;
}

/* --- Services Section --- */
/* --- Services Section (Dark) --- */
.services-section {
  background: #1C2534;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 560px;
  height: 560px;
  z-index: 0;
  background: radial-gradient(circle, rgba(27, 122, 61, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 480px;
  height: 480px;
  z-index: 0;
  background: radial-gradient(circle, rgba(15, 58, 138, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-section .section-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #7EF0A1;
  border: 1px solid rgba(126, 240, 161, 0.25);
}

.services-section .section-title {
  color: #fff;
}

.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: 0;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-blue-light) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  z-index: 2;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover .service-card-image {
  transform: scale(1.06);
}

.service-card-image {
  width: 100%;
  height: 220px;
  border-radius: 0;
  object-fit: cover;
  margin: 0;
  transition: transform var(--transition-slow);
}

.service-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

/* --- Why Choose Us (Parallax) --- */
.why-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0A2B66;
}

.why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://bioisrael.co.il/wp-content/uploads/2026/03/industrial-pest-control-israel-1024x578.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  will-change: transform;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 43, 102, 0.88) 0%, rgba(15, 58, 138, 0.78) 45%, rgba(20, 92, 46, 0.82) 100%);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -10%;
  width: 560px;
  height: 560px;
  z-index: 1;
  background: radial-gradient(circle, rgba(45, 183, 66, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-section .section-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.why-section .section-title {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.why-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-base);
  overflow: hidden;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(126, 240, 161, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.why-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 58, 138, 0) 40%, rgba(10, 20, 40, 0.5) 100%);
  pointer-events: none;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.why-card:hover .why-image img {
  transform: scale(1.06);
}

.why-text {
  padding: var(--space-6);
}

.why-text h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: #fff;
}

.why-text p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--leading-normal);
}

@media (max-width: 768px) {
  .why-bg {
    background-attachment: scroll;
  }
}

/* --- Process Section --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  right: 16.66%;
  left: 16.66%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: var(--text-3xl);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(27, 122, 61, 0.25);
}

.process-step h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  max-width: 280px;
  margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Testimonials Section (Dark) */
.testimonials-section {
  background: #1C2534;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 520px;
  height: 520px;
  z-index: 0;
  background: radial-gradient(circle, rgba(15, 58, 138, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 480px;
  height: 480px;
  z-index: 0;
  background: radial-gradient(circle, rgba(27, 122, 61, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-section .section-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #7EF0A1;
  border: 1px solid rgba(126, 240, 161, 0.25);
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

/* Reviews Summary Bar */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-summary img {
  height: 22px;
  width: auto;
}

.reviews-summary-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.reviews-summary-score {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text-primary);
}

.reviews-summary-count {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

/* Testimonial Cards — Google Reviews Style */
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
  border-color: transparent;
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.testimonial-google-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  fill: var(--color-accent);
}

.testimonial-stars-sm {
  display: flex;
  gap: 1px;
}

.testimonial-stars-sm svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  fill: var(--color-accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testimonial-date {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

.testimonial-text {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.testimonial-service {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-light);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

/* --- Stats Section --- */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-primary-dark) 55%, var(--color-primary) 100%);
  padding: var(--space-20) 0;
  overflow: hidden;
  isolation: isolate;
}

.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/industrial-spray.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15, 58, 138, 0.85) 0%, rgba(20, 92, 46, 0.85) 100%);
  pointer-events: none;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-item {
  color: var(--color-text-inverse);
  padding: var(--space-4) var(--space-2);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:first-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-3);
  background: linear-gradient(180deg, #ffffff 0%, #d5f5de 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: var(--text-base);
  opacity: 0.92;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- Certificate / Miluimnik Section --- */
.certificate-section {
  position: relative;
  background: linear-gradient(180deg, #F5F9FF 0%, #EDF3FB 100%);
  padding: var(--space-24) 0;
  overflow: hidden;
}

.certificate-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(15, 58, 138, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.certificate-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(27, 122, 61, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.certificate-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.certificate-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.certificate-image {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(15, 58, 138, 0.18), 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 6px solid #fff;
  transition: transform var(--transition-slow);
}

.certificate-image:hover {
  transform: scale(1.02);
}

.certificate-ribbon {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(15, 58, 138, 0.35);
  z-index: 2;
}

.certificate-content .section-badge {
  background: var(--color-blue-subtle);
  color: var(--color-blue);
  margin-bottom: var(--space-4);
}

.certificate-content .section-title {
  text-align: right;
  margin-bottom: var(--space-6);
}

.certificate-content .highlight-blue {
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.certificate-text {
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.certificate-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.certificate-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
}

.certificate-feature svg {
  width: 22px;
  height: 22px;
  color: var(--color-blue);
  flex-shrink: 0;
  padding: 4px;
  background: var(--color-blue-subtle);
  border-radius: 50%;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: right;
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-text-tertiary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

/* --- Contact / CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 122, 61, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.cta-content p {
  font-size: var(--text-lg);
  opacity: 0.8;
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
}

.cta-contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.cta-contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.cta-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-icon.phone-icon {
  background: rgba(27, 122, 61, 0.2);
}

.cta-contact-icon.whatsapp-icon {
  background: rgba(37, 211, 102, 0.2);
}

.cta-contact-icon.email-icon {
  background: rgba(27, 122, 61, 0.2);
}

.cta-contact-icon svg {
  width: 22px;
  height: 22px;
}

.cta-contact-text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
}

.cta-contact-text span {
  font-size: var(--text-sm);
  opacity: 0.6;
  direction: ltr;
  display: inline-block;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}

.contact-form-wrapper h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.contact-form-wrapper .form-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-6);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

.form-input,
.form-textarea {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-bg);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 122, 61, 0.1);
}

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

.form-submit {
  margin-top: var(--space-4);
}

/* --- Footer --- */
.site-footer {
  background: #0F1218;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  margin-top: var(--space-4);
  max-width: 320px;
}

.footer-brand .header-brand {
  margin-bottom: var(--space-2);
}

.footer-brand .header-brand-name {
  color: var(--color-text-inverse);
}

.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-column a {
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-text-inverse);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.footer-contact a:hover svg {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* --- Sticky Mobile CTA (App-Style Bottom Bar) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 999;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 -8px 32px rgba(0, 0, 0, 0.06);
}

.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 14px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.15s ease;
}

.sticky-cta .btn:active {
  transform: scale(0.97);
}

/* Phone CTA - Primary gradient */
.sticky-cta .btn-primary {
  background: linear-gradient(135deg, #1B7A3D 0%, #15612F 100%);
  box-shadow: 0 2px 8px rgba(27, 122, 61, 0.3), 0 1px 2px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sticky-cta .btn-primary:active {
  box-shadow: 0 1px 4px rgba(27, 122, 61, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* WhatsApp CTA - Vibrant gradient */
.sticky-cta .btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5A 100%);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3), 0 1px 2px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sticky-cta .btn-whatsapp:active {
  box-shadow: 0 1px 4px rgba(37, 211, 102, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Icon styling inside sticky CTA */
.sticky-cta .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
  .hero-content {
    max-width: 540px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: var(--space-6);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }

  .certificate-image {
    max-width: 360px;
  }

  .certificate-content .section-title {
    text-align: center;
  }

  .certificate-features {
    align-items: flex-start;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .section-lg {
    padding: var(--space-20) 0;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-inner {
    gap: var(--space-2);
  }

  .header-brand {
    gap: 6px;
    flex: 1;
    min-width: 0;
  }

  .header-brand-name {
    line-height: 1.1;
  }

  .header-brand-tagline {
    line-height: 1.2;
    margin-top: 1px;
  }

  .header-logo {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .header-brand-text {
    min-width: 0;
  }

  .header-brand-name {
    font-size: var(--text-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-brand-tagline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    gap: var(--space-1);
    flex-shrink: 0;
  }

  .header-phone {
    width: 40px;
    height: 40px;
    justify-content: center;
    gap: 0;
    border-radius: var(--radius-md);
  }

  .header-phone span {
    display: none;
  }

  .header-phone svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-bg {
    background-position: 80% center;
    filter: brightness(0.7) saturate(1.05);
  }

  .hero-vignette {
    background:
      radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.15) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
  }

  .hero-inner {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--header-height) + 80px) 22px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
  }

  .hero-content {
    padding: 0;
    text-align: right;
    max-width: 100%;
    width: 100%;
    margin: 30vh 7vw 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-title-desktop { display: none; }
  .hero-title-mobile { display: inline; }

  .hero-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    margin-bottom: 16px;
    align-self: flex-start;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
  }

  .hero-title {
    font-size: 53px;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
    text-align: right;
    max-width: 100%;
  }

  .hero-description {
    font-size: 15.4px;
    line-height: 1.5;
    margin: 0 0 22px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.92);
    text-align: right;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    max-width: 260px;
    width: 100%;
    margin: 0;
    justify-content: flex-start;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
  }

  .hero-trust {
    position: absolute;
    top: calc(var(--header-height) + 12px + 5vh);
    right: 16px;
    left: 16px;
    bottom: auto;
    z-index: 15;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 10px 14px;
  }

  .hero-trust-item {
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 2px;
  }

  .hero-trust-num {
    font-size: 16px;
    color: #fff;
    font-weight: 900;
  }

  .hero-trust-label {
    font-size: 10px;
    opacity: 0.85;
  }

  .hero-float-card {
    display: none;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .service-card-image {
    height: 140px;
  }

  .service-card-body {
    padding: var(--space-4);
  }

  .service-card h3 {
    font-size: var(--text-base);
  }

  .service-card p {
    font-size: var(--text-xs);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .process-steps::before {
    display: none;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .sticky-cta {
    display: block;
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
    will-change: transform;
  }

  body.is-scrolled .sticky-cta {
    transform: translateY(0);
  }

  body.is-scrolled {
    padding-bottom: 84px;
  }

  .trust-strip-inner {
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .header-brand-tagline {
    font-size: 10px;
  }

  .header-brand-name {
    font-size: var(--text-sm);
  }

  .problem-stat {
    padding: var(--space-4);
  }

  .problem-stat-num {
    font-size: var(--text-3xl);
    gap: var(--space-1);
  }

  .problem-stat-num span {
    font-size: var(--text-sm);
  }

  .problem-stat-label {
    font-size: var(--text-xs);
  }

  .hero-title {
    font-size: clamp(1.875rem, 9vw, 2.375rem);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .stat-number {
    font-size: var(--text-4xl);
  }

  .contact-form-wrapper {
    padding: var(--space-6);
  }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  pointer-events: none;
}

.mobile-menu.active {
  display: block;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: menuFadeIn 0.3s ease forwards;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--color-surface);
  padding: var(--space-20) var(--space-6) var(--space-6);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transform: translateX(-100%);
  animation: menuSlideIn 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.mobile-menu-panel a {
  display: block;
  padding: var(--space-4) var(--space-4);
  font-size: var(--text-lg);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast);
  opacity: 0;
  animation: menuItemFadeIn 0.3s ease forwards;
}

.mobile-menu-panel a:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu-panel a:nth-child(2) {
  animation-delay: 0.15s;
}

.mobile-menu-panel a:nth-child(3) {
  animation-delay: 0.2s;
}

.mobile-menu-panel a:nth-child(4) {
  animation-delay: 0.25s;
}

.mobile-menu-panel a:nth-child(5) {
  animation-delay: 0.3s;
}

.mobile-menu-panel a:nth-child(6) {
  animation-delay: 0.35s;
}

.mobile-menu-panel a:hover {
  background: var(--color-border-light);
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.mobile-menu-close:hover {
  background: var(--color-border-light);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

@keyframes menuSlideIn {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes menuItemFadeIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ===================================
   Accessibility Widget (ea11y-like)
   =================================== */
.a11y-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1B7A3D;
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.a11y-toggle:hover {
  transform: scale(1.08);
  background: #156030;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.a11y-toggle:focus-visible {
  outline: 3px solid #ffd200;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .a11y-toggle {
    width: 48px;
    height: 48px;
    bottom: 90px;
    left: 12px;
  }
  .a11y-toggle svg { width: 24px; height: 24px; }
}

.a11y-panel {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 360px;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  direction: rtl;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  animation: a11yPanelIn 0.25s ease;
}
.a11y-panel[hidden] { display: none; }

@keyframes a11yPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .a11y-panel {
    bottom: 150px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
  }
}

.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #1B7A3D;
  color: #fff;
}
.a11y-panel-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.a11y-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.a11y-close:hover { background: rgba(255, 255, 255, 0.2); }
.a11y-close:focus-visible { outline: 2px solid #ffd200; outline-offset: 2px; }

.a11y-panel-body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.a11y-section { margin-bottom: 18px; }
.a11y-section:last-child { margin-bottom: 0; }
.a11y-section h3 {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin: 0 0 10px;
  text-transform: none;
}

.a11y-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.a11y-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  background: #f5f7f6;
  border: 2px solid transparent;
  border-radius: 10px;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 80px;
  font-family: inherit;
}
.a11y-btn:hover {
  background: #e8efea;
  border-color: #1B7A3D;
}
.a11y-btn:focus-visible {
  outline: 2px solid #1B7A3D;
  outline-offset: 2px;
}
.a11y-btn[aria-pressed="true"],
.a11y-btn.is-active {
  background: #1B7A3D;
  color: #fff;
  border-color: #1B7A3D;
}
.a11y-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  min-height: 24px;
}
.a11y-btn-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.a11y-panel-footer {
  padding: 12px 16px 16px;
  border-top: 1px solid #eee;
}
.a11y-reset {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 2px solid #1B7A3D;
  color: #1B7A3D;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.a11y-reset:hover { background: #1B7A3D; color: #fff; }

/* --- Applied Accessibility Modes --- */
html.a11y-bigger-text { font-size: 118%; }
html.a11y-bigger-text-2 { font-size: 135%; }

html.a11y-bigger-line-height body,
html.a11y-bigger-line-height body * {
  line-height: 1.9 !important;
  letter-spacing: 0.02em !important;
}

html.a11y-readable-font body,
html.a11y-readable-font body * {
  font-family: Arial, Helvetica, 'Segoe UI', sans-serif !important;
}

html.a11y-text-align-right body *:not(.a11y-panel *):not(.privacy-modal *) {
  text-align: right !important;
}
html.a11y-text-align-center body *:not(.a11y-panel *):not(.privacy-modal *) {
  text-align: center !important;
}
html.a11y-text-align-left body *:not(.a11y-panel *):not(.privacy-modal *) {
  text-align: left !important;
}

html.a11y-grayscale body { filter: grayscale(100%); }

html.a11y-contrast-high body {
  background: #000 !important;
  color: #fff !important;
}
html.a11y-contrast-high body *:not(.a11y-panel):not(.a11y-panel *):not(.privacy-modal):not(.privacy-modal *):not(.a11y-toggle):not(.a11y-toggle *) {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
html.a11y-contrast-high body a:not(.a11y-panel a):not(.privacy-modal a) {
  color: #ffd200 !important;
}
html.a11y-contrast-high body img { opacity: 0.85; }

html.a11y-contrast-inverted body { filter: invert(100%) hue-rotate(180deg); }
html.a11y-contrast-inverted body img,
html.a11y-contrast-inverted body video,
html.a11y-contrast-inverted body iframe,
html.a11y-contrast-inverted body [style*="background-image"] {
  filter: invert(100%) hue-rotate(180deg);
}

html.a11y-highlight-links body a:not(.a11y-panel a):not(.privacy-modal a) {
  outline: 2px solid #ffd200 !important;
  outline-offset: 2px !important;
  background: rgba(255, 210, 0, 0.2) !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
}

html.a11y-focus-outline *:focus {
  outline: 3px solid #ffd200 !important;
  outline-offset: 3px !important;
}

html.a11y-hide-images body img,
html.a11y-hide-images body video,
html.a11y-hide-images body picture,
html.a11y-hide-images body svg:not(.a11y-panel svg):not(.a11y-toggle svg):not(.privacy-modal svg):not(.a11y-structure-modal svg),
html.a11y-hide-images body [style*="background-image"] {
  visibility: hidden !important;
}
html.a11y-hide-images body [style*="background-image"] {
  background-image: none !important;
}

html.a11y-pause-animations *,
html.a11y-pause-animations *::before,
html.a11y-pause-animations *::after {
  animation-play-state: paused !important;
  animation: none !important;
  transition: none !important;
}

/* --- Reading Mask --- */
.a11y-reading-mask { display: none; }
.a11y-reading-mask-top,
.a11y-reading-mask-bottom {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9997;
  pointer-events: none;
}
.a11y-reading-mask-top { top: 0; height: calc(50vh - 80px); }
.a11y-reading-mask-bottom { bottom: 0; height: calc(50vh - 80px); }
html.a11y-reading-mask-on .a11y-reading-mask { display: block; }

/* --- Page Structure Modal --- */
.a11y-structure-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  direction: rtl;
}
.a11y-structure-modal[hidden] { display: none; }
.a11y-structure-content {
  background: #fff;
  border-radius: 14px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.a11y-structure-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #1B7A3D;
  color: #fff;
}
.a11y-structure-header h2 { margin: 0; font-size: 18px; color: #fff; }
.a11y-structure-body { padding: 20px; overflow-y: auto; }
.a11y-structure-body ul { list-style: none; padding: 0; margin: 0; }
.a11y-structure-body li { margin: 4px 0; }
.a11y-structure-body li a {
  display: block;
  padding: 8px 12px;
  color: #1B7A3D;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}
.a11y-structure-body li a:hover { background: #e8efea; }
.a11y-structure-body li.level-h2 a { font-weight: 700; font-size: 16px; }
.a11y-structure-body li.level-h3 a { padding-right: 24px; font-size: 14px; }
.a11y-structure-body li.level-h4 a { padding-right: 36px; font-size: 13px; color: #555; }

/* ===================================
   Privacy Policy Modal
   =================================== */
.privacy-link {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.privacy-link:hover { color: #1B7A3D; }

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  direction: rtl;
}
.privacy-modal[hidden] { display: none; }

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.privacy-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  animation: a11yPanelIn 0.3s ease;
}

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #1B7A3D;
  color: #fff;
}
.privacy-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
.privacy-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.privacy-modal-close:hover { background: rgba(255, 255, 255, 0.2); }
.privacy-modal-close:focus-visible { outline: 2px solid #ffd200; outline-offset: 2px; }

.privacy-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  color: #222;
  line-height: 1.8;
  font-size: 15px;
}
.privacy-modal-body h3 {
  color: #1B7A3D;
  font-size: 17px;
  font-weight: 700;
  margin: 22px 0 10px;
}
.privacy-modal-body h3:first-of-type { margin-top: 18px; }
.privacy-modal-body p { margin: 0 0 12px; }
.privacy-modal-body ul {
  margin: 10px 0 16px;
  padding-right: 22px;
}
.privacy-modal-body ul li { margin-bottom: 8px; }
.privacy-modal-body strong { color: #1B7A3D; }

body.a11y-no-scroll { overflow: hidden; }

@media (max-width: 768px) {
  .privacy-modal-content { max-height: 92vh; }
  .privacy-modal-header { padding: 14px 18px; }
  .privacy-modal-header h2 { font-size: 17px; }
  .privacy-modal-body { padding: 18px 20px; font-size: 14px; }
  .privacy-modal-body h3 { font-size: 15px; }
}

/* ===================================
   Form Privacy Consent Checkbox
   =================================== */
.form-consent {
  margin-top: -4px;
}
.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  user-select: none;
}
.form-consent-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.form-consent-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #c8d1cc;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
  margin-top: 1px;
}
.form-consent-box svg {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
}
.form-consent-input:checked ~ .form-consent-box {
  background: #1B7A3D;
  border-color: #1B7A3D;
}
.form-consent-input:checked ~ .form-consent-box svg {
  opacity: 1;
  transform: scale(1);
}
.form-consent-input:focus-visible ~ .form-consent-box {
  outline: 2px solid #1B7A3D;
  outline-offset: 2px;
}
.form-consent-text {
  flex: 1;
}
.form-consent-text .privacy-link {
  color: #1B7A3D;
  font-weight: 700;
  text-decoration: underline;
}
.form-consent-text .privacy-link:hover {
  color: #156030;
}
.form-consent.has-error .form-consent-box {
  border-color: #EF4444;
  background: #fff5f5;
}
.form-consent.has-error .form-consent-text {
  color: #EF4444;
}

/* --- Hide reCAPTCHA v3 badge (using inline disclosure instead) --- */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
