@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700;800&display=swap');

:root {
  --primary: #105675;
  --primary-dark: #0c3f56;
  --primary-light: #177fab;
  --accent: #C45100;
  --accent-hover: #a83d00;
  --bg-light: #f7f8fa;
  --text-dark: #0f1f2e;
  --text-body: #3d3d3d;
  --text-secondary: #636363;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(16, 86, 117, 0.12);
  --shadow-hover: 0 8px 40px rgba(16, 86, 117, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Assistant', 'Segoe UI', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-size: calc(1rem * var(--accessibility-font-scale, 1));
}
body :where(p, li, label, input, textarea, select, button, a, span) {
  letter-spacing: var(--accessibility-letter-scale, 0);
}
body :where(p, li, .article-content p, .article-content li) {
  line-height: calc(1.7 * var(--accessibility-line-scale, 1));
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

.skip-link {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 10000;
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
  color: white;
}

*:focus-visible {
  outline: 3px solid #177fab;
  outline-offset: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 1.375rem;
  font-weight: 800;
  color: white;
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-accent { color: #ffd580; transition: color 0.3s; }
.site-header.scrolled .logo { color: var(--primary); }
.site-header.scrolled .logo-accent { color: var(--accent); }

.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.15); }
.nav-link.active { color: white; background: rgba(255,255,255,0.2); }
.site-header.scrolled .nav-link { color: var(--text-body); }
.site-header.scrolled .nav-link:hover { color: var(--primary); background: rgba(16,86,117,0.08); }
.site-header.scrolled .nav-link.active { color: var(--primary); background: rgba(16,86,117,0.1); }

.btn-nav-cta {
  background: var(--accent);
  color: white !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,81,0,0.3); }

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: white;
  transition: color 0.3s;
  display: none;
}
.site-header.scrolled .menu-toggle { color: var(--text-dark); }
.menu-toggle svg { display: block; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 90;
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.menu-close {
  position: absolute;
  top: 18px;
  left: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-body);
}
.mobile-nav { flex: 1; }
.mobile-nav-link {
  display: block;
  color: var(--text-body);
  font-size: 1.1875rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--primary); }
.mobile-menu-cta { margin-top: 28px; }

/* ==============================
   HERO
   ============================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-animated-bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 213, 128, 0.28), transparent 18%),
    radial-gradient(circle at 76% 32%, rgba(23, 127, 171, 0.45), transparent 24%),
    radial-gradient(circle at 48% 78%, rgba(196, 81, 0, 0.26), transparent 20%),
    linear-gradient(135deg, #061827 0%, #0d4056 44%, #102533 100%);
  overflow: hidden;
}
.hero-animated-bg::before,
.hero-animated-bg::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.72;
  pointer-events: none;
}
.hero-animated-bg::before {
  width: 48vw;
  height: 48vw;
  min-width: 420px;
  min-height: 420px;
  right: -12vw;
  top: -16vw;
  background: rgba(23, 127, 171, 0.46);
  animation: hero-orbit-a 18s ease-in-out infinite;
}
.hero-animated-bg::after {
  width: 38vw;
  height: 38vw;
  min-width: 340px;
  min-height: 340px;
  left: -10vw;
  bottom: -12vw;
  background: rgba(196, 81, 0, 0.34);
  animation: hero-orbit-b 22s ease-in-out infinite;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  opacity: 0.34;
  animation: hero-grid-drift 16s linear infinite;
}
.hero-light-sweep {
  position: absolute;
  inset: -30% -20%;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.18) 49%, rgba(255, 213, 128, 0.2) 52%, transparent 64%);
  transform: translateX(-45%) rotate(2deg);
  animation: hero-sweep 7s ease-in-out infinite;
  opacity: 0.62;
}
.hero-particles span {
  position: absolute;
  right: var(--x);
  top: var(--y);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 213, 128, 0.9);
  box-shadow: 0 0 18px rgba(255, 213, 128, 0.9);
  animation: hero-pulse 3.8s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes hero-orbit-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-8vw, 10vh, 0) scale(1.12); }
}
@keyframes hero-orbit-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10vw, -8vh, 0) scale(1.08); }
}
@keyframes hero-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}
@keyframes hero-sweep {
  0%, 42% { transform: translateX(-52%) rotate(2deg); }
  72%, 100% { transform: translateX(52%) rotate(2deg); }
}
@keyframes hero-pulse {
  0%, 100% { transform: translateY(0) scale(0.8); opacity: 0.32; }
  50% { transform: translateY(-18px) scale(1.25); opacity: 1; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(16,86,117,0.82) 0%, rgba(5,25,45,0.72) 100%);
  z-index: 1;
}
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 48px;
}
.hero-content { max-width: 860px; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.95);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: white;
  line-height: 1.18;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3125rem);
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 15px 36px;
  border-radius: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(196,81,0,0.4);
}
.btn-hero-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,81,0,0.5); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.65);
  color: white;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 15px 36px;
  border-radius: 12px;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* Stats Bar */
.stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stats-inner {
  display: flex;
  justify-content: center;
}
.stat-item {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
  max-width: 220px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

/* ==============================
   PAGE HERO
   ============================== */
.page-hero {
  height: clamp(320px, 42vw, 440px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 72px;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(16,86,117,0.82) 0%, rgba(5,20,40,0.65) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0 48px;
  text-align: center;
  color: white;
}
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.5; }

/* ==============================
   SECTIONS
   ============================== */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-white { background: white; }
.section-primary { background: var(--primary); }

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title-white { color: white; }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
}
.section-subtitle-white { color: rgba(255,255,255,0.8); }

/* ==============================
   BRAND CARDS
   ============================== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.brand-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.brand-name-en {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.brand-name-he {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.brand-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary);
  transition: gap 0.2s, color 0.2s;
}
.brand-link:hover { gap: 12px; color: var(--accent); }

/* ==============================
   SERVICE CARDS
   ============================== */
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: right;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(16,86,117,0.09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}
.service-title { font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* ==============================
   VALUES
   ============================== */
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: white;
}
.value-title { font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.value-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(1.75rem, 3.5vw, 2.625rem); font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.2; }
.cta-sub { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 11px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { background: #f0f4f6; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-cta-ghost {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.55);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 11px;
  transition: all 0.2s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--primary-dark);
  color: white;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand-logo { font-size: 1.375rem; font-weight: 800; margin-bottom: 14px; }
.footer-brand-logo span { color: #ffd580; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.2); color: white; }
.footer-heading { font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: white; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text { font-size: 0.9375rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-text a:hover { color: white; }
.footer-contact-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ==============================
   BUTTONS (GENERAL)
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 11px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 13px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(196,81,0,0.3);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,81,0,0.4); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 26px;
  font-size: 1rem;
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }

/* ==============================
   FORM
   ============================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.9375rem; color: var(--text-dark); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  background: white;
  direction: rtl;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16,86,117,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-hint { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 6px; }
.form-required { color: var(--accent); margin-right: 2px; }

/* ==============================
   BLOG
   ============================== */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--bg-light); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.blog-tag {
  background: rgba(16,86,117,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.blog-date { color: var(--text-secondary); font-size: 0.8125rem; }
.blog-read-time { color: var(--text-secondary); font-size: 0.8125rem; }
.blog-title { font-size: 1.1875rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-title a { color: inherit; transition: color 0.2s; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.blog-read-link { font-weight: 700; font-size: 0.9375rem; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s; }
.blog-read-link:hover { gap: 10px; color: var(--accent); }

/* ==============================
   ARTICLE PAGES
   ============================== */
.article-shell {
  background: white;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: start;
}
.article-content {
  max-width: 820px;
}
.article-content h2 {
  color: var(--primary);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.25;
  margin: 40px 0 14px;
}
.article-content h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin: 28px 0 10px;
}
.article-content p,
.article-content li {
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.9;
}
.article-content p {
  margin-bottom: 18px;
}
.article-content ul,
.article-content ol {
  padding-right: 24px;
  margin: 0 0 24px;
}
.article-bullets {
  display: grid;
  gap: 10px;
}
.article-bullets li::marker {
  color: var(--accent);
}
.article-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 26px 0 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: white;
}
.article-table th,
.article-table td {
  padding: 14px 16px;
  text-align: right;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
  line-height: 1.65;
}
.article-table th {
  background: rgba(16,86,117,0.08);
  color: var(--primary);
  font-weight: 800;
}
.article-table tr:last-child td {
  border-bottom: none;
}
.article-lead {
  font-size: 1.2rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.85 !important;
  margin-bottom: 28px !important;
}
.article-callout {
  background: var(--bg-light);
  border-right: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin: 32px 0;
}
.article-callout p:last-child {
  margin-bottom: 0;
}
.article-sidebar {
  position: sticky;
  top: 110px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.article-sidebar-title {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}
.article-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-sidebar a {
  color: var(--text-body);
  font-weight: 600;
}
.article-sidebar a:hover {
  color: var(--primary);
}
.article-cta-box {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: var(--radius);
  padding: 32px;
}
.article-cta-box h2 {
  color: white;
  margin-top: 0;
}
.article-cta-box p {
  color: rgba(255,255,255,0.82);
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* ==============================
   PROCESS STEPS
   ============================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step { text-align: center; }
.process-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(16,86,117,0.3);
}
.process-step-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ==============================
   ABOUT TWO-COL
   ============================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-img { border-radius: var(--radius); overflow: hidden; }
.two-col-img img { width: 100%; height: 420px; object-fit: cover; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-check {
  width: 28px; height: 28px;
  background: rgba(16,86,117,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text { font-size: 0.9375rem; color: var(--text-body); line-height: 1.65; }
.feature-text strong { color: var(--text-dark); font-weight: 700; }

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(16,86,117,0.09);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 2px; }
.contact-item-value { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.contact-item-value a { color: inherit; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--primary); }

.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

/* ==============================
   PRODUCTS
   ============================== */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card-img { width: 100%; height: 220px; object-fit: cover; background: var(--bg-light); }
.product-card-body { padding: 24px; }
.product-badge { display: inline-block; background: rgba(16,86,117,0.08); color: var(--primary); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
.product-title { font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.product-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* ==============================
   SCROLL TO TOP
   ============================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 40;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s;
  box-shadow: 0 4px 16px rgba(196,81,0,0.35);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  color: white;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
}
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 4px;
}

.accessibility-tool {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9990;
  direction: rtl;
}
.accessibility-toggle {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(16, 86, 117, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}
.accessibility-toggle:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.accessibility-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  overflow: auto;
  background: #f7f7f7;
  color: #6f7478;
  border-left: 2px solid #1c8ab1;
  border-radius: 0;
  box-shadow: -10px 0 34px rgba(0, 0, 0, 0.18);
}
.accessibility-panel-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 38px;
  padding: 0 48px;
  background: #1888ad;
  color: white;
  position: sticky;
  top: 0;
  z-index: 2;
}
.accessibility-panel-head h2 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0;
  color: white;
}
.accessibility-close {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.accessibility-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 12px;
  padding: 14px 14px 10px;
}
.accessibility-tile-grid-bottom {
  padding-top: 18px;
}
.accessibility-tile {
  min-height: 68px;
  border: 1px solid #78c1da;
  border-radius: 14px;
  background: white;
  color: #788087;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 8px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 1px 2px rgba(24, 136, 173, 0.04);
}
.accessibility-tile .a11y-icon {
  color: #1f91b7;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
}
.accessibility-tile:hover,
.accessibility-tile[aria-pressed="true"] {
  background: #eaf7fb;
  border-color: #1888ad;
  color: #1888ad;
}
.accessibility-range {
  padding: 10px 14px 8px;
}
.accessibility-range h3 {
  color: #21718a;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 10px;
}
.a11y-slider-row {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 0;
}
.a11y-slider-row button {
  width: 42px;
  height: 26px;
  border: 1px solid #79c3dc;
  border-radius: 999px;
  background: white;
  color: #1888ad;
  font-size: 1.8rem;
  line-height: 0.75;
  font-weight: 500;
  cursor: pointer;
  z-index: 1;
}
.a11y-track {
  height: 6px;
  margin: 0 -3px;
  background: linear-gradient(90deg, #9d7df1, #1a8fb8);
  position: relative;
}
.a11y-track span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 40px;
  height: 26px;
  padding: 2px 8px;
  border: 1px solid #82bdd0;
  border-radius: 999px;
  background: white;
  color: #6f7478;
  font-size: 0.78rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.a11y-range-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #7d858a;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 5px;
}
.accessibility-footer {
  padding: 150px 16px 24px;
  text-align: center;
  color: #7a7f84;
  font-size: 0.75rem;
}
.accessibility-footer a {
  color: #6f7478;
  font-weight: 700;
  text-decoration: none;
  margin: 0 8px;
}
.accessibility-footer p {
  margin: 14px 0 4px;
}
.accessibility-footer strong {
  display: block;
  font-weight: 700;
}

body.a11y-readable {
  font-family: Arial, Helvetica, sans-serif;
}
body.a11y-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}
body.a11y-contrast {
  background: #000 !important;
  color: #fff !important;
}
body.a11y-contrast :where(header, main, section, article, aside, footer, div, nav, ul, li, p, h1, h2, h3, h4, h5, h6, span, label, input, textarea, select, button, a) {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
}
body.a11y-contrast a,
body.a11y-contrast button {
  color: #ffeb3b !important;
}
body.a11y-invert {
  filter: invert(1) hue-rotate(180deg);
  background: #fff;
}
body.a11y-invert img,
body.a11y-invert video,
body.a11y-invert iframe,
body.a11y-invert .whatsapp-float,
body.a11y-invert .accessibility-tool {
  filter: invert(1) hue-rotate(180deg);
}
body.a11y-grayscale {
  filter: grayscale(1);
}
body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
body.a11y-reduce-motion video {
  display: none !important;
}

/* ==============================
   FADE-IN ANIMATIONS
   ============================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==============================
   UTILITY
   ============================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.pt-4 { padding-top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .desktop-nav, .btn-nav-cta { display: none !important; }
  .menu-toggle { display: block; }
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .stat-item { max-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .stats-inner { flex-direction: column; }
  .hero-body { padding-top: 100px; }
  .cta-section { padding: 60px 0; }
  .contact-form-card, .contact-info-card { padding: 24px; }
  .brand-card { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .accessibility-tool {
    right: 0;
    top: 0;
  }
  .accessibility-toggle {
    width: 48px;
    height: 48px;
  }
  .accessibility-panel {
    top: 0;
    width: min(380px, 100vw);
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-actions { flex-direction: column; align-items: center; }
}
