 :root {
   --primary: #0f172a;
   --secondary: #059669;
   --accent: #d4af37;
   --bg-light: #f8fafc;
   --text-main: #1e293b;
   --text-muted: #64748b;
   --white: #ffffff;
   --border: #e2e8f0;
   --danger: #ef4444;
   --warning: #f59e0b;
   --success: #10b981;
   --shadow-md: 0 4px 6px -1px rgb(15 23 42 / 0.1), 0 2px 4px -2px rgb(15 23 42 / 0.1);
   --shadow-lg: 0 18px 35px rgb(15 23 42 / 0.12);
   --radius: 22px;
   --transition: all 0.25s ease;
 }

 * { box-sizing: border-box; margin: 0; padding: 0; }
 html { scroll-behavior: smooth; }
 body {
   direction: rtl;
   text-align: right;
   font-family: 'Assistant', 'Heebo', sans-serif;
   color: var(--text-main);
   background: var(--bg-light);
   line-height: 1.65;
   overflow-x: hidden;
 }
 a { color: inherit; }
 .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
 .narrow { width: min(900px, calc(100% - 40px)); margin: 0 auto; }

 header {
   position: sticky;
   top: 0;
   z-index: 1000;
   background: rgba(255,255,255,0.94);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid rgba(15,23,42,0.08);
   box-shadow: var(--shadow-md);
 }
 .nav-wrapper { height: 86px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
 .logo img { height: 64px; width: auto; display: block; }
 nav ul { list-style: none; display: flex; align-items: center; gap: 26px; }
 nav a { text-decoration: none; color: var(--text-main); font-size: 17px; font-weight: 650; transition: var(--transition); }
 nav a:hover { color: var(--secondary); }
 .btn-contact {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   border: 0;
   background: var(--primary);
   color: var(--white) !important;
   padding: 12px 24px;
   border-radius: 999px;
   text-decoration: none;
   font-weight: 800;
   cursor: pointer;
   transition: var(--transition);
 }
 .btn-contact:hover { transform: translateY(-2px); background: #1e293b; box-shadow: var(--shadow-lg); }
 .burger-btn { display: none; border: 0; background: transparent; font-size: 26px; color: var(--primary); cursor: pointer; }

 .nav-dropdown { position: relative; }
 .nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 650; }
 .nav-dropdown-menu {
   display: none;
   position: absolute;
   top: calc(100% + 14px);
   right: 0;
   min-width: 245px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 16px;
   box-shadow: var(--shadow-lg);
   padding: 10px;
   z-index: 1200;
 }
 .nav-dropdown-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
 .nav-dropdown.open .nav-dropdown-menu,
 .nav-dropdown:hover .nav-dropdown-menu { display: block; }
 .nav-dropdown-menu a { display: block; padding: 10px 12px; border-radius: 12px; }
 .nav-dropdown-menu a:hover { background: #f1f5f9; }

 .hero {
   background:
     radial-gradient(circle at 15% 20%, rgba(5,150,105,0.18), transparent 32%),
     linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
   color: var(--white);
   padding: 82px 0 64px;
 }
 .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 42px; align-items: center; }
 .eyebrow { color: #a7f3d0; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
 h1 { font-family: 'Heebo', 'Assistant', sans-serif; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.05; margin-bottom: 18px; }
 .hero p { font-size: 1.22rem; color: rgba(255,255,255,0.88); max-width: 680px; }
 .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
 .btn-secondary {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   border: 2px solid rgba(255,255,255,0.85);
   color: var(--white);
   padding: 11px 22px;
   border-radius: 999px;
   text-decoration: none;
   font-weight: 800;
   transition: var(--transition);
 }
 .btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
 .hero-card {
   background: rgba(255,255,255,0.1);
   border: 1px solid rgba(255,255,255,0.18);
   border-radius: var(--radius);
   padding: 28px;
   box-shadow: var(--shadow-lg);
 }
 .hero-card ul { list-style: none; display: grid; gap: 14px; }
 .hero-card li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.92); }
 .hero-card i { color: #a7f3d0; margin-top: 4px; }

 section { padding: 58px 0; }
 .section-head { text-align: center; max-width: 780px; margin: 0 auto 34px; }
 .section-kicker { color: var(--secondary); font-weight: 900; margin-bottom: 8px; }
 h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; margin-bottom: 12px; color: var(--primary); }
 .section-head p { color: var(--text-muted); font-size: 1.1rem; }

 .tools-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
 .tool-card,
 .calc-card,
 .content-card {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 26px;
   box-shadow: var(--shadow-md);
 }
 .tool-card { display: flex; flex-direction: column; gap: 14px; transition: var(--transition); }
 .tool-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(5,150,105,0.28); }
 .tool-icon {
   width: 54px;
   height: 54px;
   border-radius: 18px;
   background: rgba(5,150,105,0.12);
   color: var(--secondary);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
 }
 .tool-card h3 { font-size: 1.35rem; color: var(--primary); line-height: 1.25; }
 .tool-card p { color: var(--text-muted); flex: 1; }
 .tool-link { color: var(--secondary); font-weight: 900; text-decoration: none; }

 .calc-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 24px; align-items: start; }
 .calc-card h2 { font-size: 1.75rem; }
.plain-guide,
.legal-disclaimer {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 18px;
  color: #7c2d12;
}
.plain-guide {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #064e3b;
}
.plain-guide h3,
.legal-disclaimer h3 {
  color: inherit;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.plain-guide p,
.legal-disclaimer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}
.form-help {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}
 .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
 .form-group.full { grid-column: 1 / -1; }
 label { display: block; font-weight: 800; margin-bottom: 7px; color: var(--primary); }
 input,
 select,
 textarea {
   width: 100%;
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 13px 14px;
   font-family: inherit;
   font-size: 1rem;
   background: var(--white);
   color: var(--text-main);
 }
 input:focus,
 select:focus,
 textarea:focus { outline: 2px solid rgba(5,150,105,0.18); border-color: var(--secondary); }
 .calc-button {
   width: 100%;
   margin-top: 18px;
   border: 0;
   border-radius: 999px;
   background: var(--secondary);
   color: var(--white);
   padding: 15px 20px;
   font-family: inherit;
   font-size: 1.08rem;
   font-weight: 900;
   cursor: pointer;
   transition: var(--transition);
 }
 .calc-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: #047857; }

 .result-section { display: grid; gap: 18px; }
 .result-headline {
   background: linear-gradient(135deg, var(--primary), #1e293b);
   color: var(--white);
   border-radius: var(--radius);
   padding: 26px;
   box-shadow: var(--shadow-lg);
 }
 .result-label { display: block; color: #a7f3d0; font-weight: 900; margin-bottom: 8px; }
 .result-value { display: block; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1; }
 .result-sub { margin-top: 10px; color: rgba(255,255,255,0.84); }
 .mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
 .mini-card {
   background: #f8fafc;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 14px;
 }
 .mini-card strong { display: block; color: var(--primary); font-size: 1.15rem; }
 .mini-card span { color: var(--text-muted); font-size: 0.92rem; }

 .result-locked-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
 .result-locked-content { filter: blur(6px); pointer-events: none; user-select: none; transition: var(--transition); }
 .result-locked-wrap.unlocked .result-locked-content { filter: none; pointer-events: auto; user-select: auto; }
 .result-locked-wrap.unlocked .lead-gate-overlay { display: none; }
 .lead-gate-overlay {
   position: absolute;
   inset: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 12px;
   padding: 24px;
   background: rgba(255,255,255,0.9);
   backdrop-filter: blur(8px);
   text-align: center;
 }
 .lead-gate-overlay h3 { color: var(--primary); font-size: 1.65rem; }
 .lead-gate-overlay p { color: var(--text-muted); max-width: 520px; }
 .gate-form { width: min(100%, 520px); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
 .gate-form button { grid-column: 1 / -1; border: 0; border-radius: 999px; background: var(--primary); color: var(--white); padding: 13px; font-family: inherit; font-weight: 900; cursor: pointer; }
 .gate-note { font-size: 0.86rem; color: var(--text-muted); }
.gate-form .gate-note { grid-column: 1 / -1; }
.privacy-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.privacy-check input { width: auto; margin-top: 4px; flex: 0 0 auto; }
.privacy-check a { color: var(--primary); font-weight: 800; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

 .details-list { display: grid; gap: 10px; }
 .details-list li { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--border); padding: 10px 0; }
 .details-list strong { color: var(--primary); }
 .table-wrap { overflow-x: auto; }
 table { width: 100%; border-collapse: collapse; background: var(--white); }
 th, td { padding: 12px; border-bottom: 1px solid var(--border); text-align: right; white-space: nowrap; }
 th { background: #f8fafc; color: var(--primary); font-weight: 900; }
 .status-pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 6px 12px; font-weight: 900; }
 .status-green { background: rgba(16,185,129,0.12); color: #047857; }
 .status-yellow { background: rgba(245,158,11,0.14); color: #b45309; }
 .status-red { background: rgba(239,68,68,0.12); color: #b91c1c; }

 .faq-list { display: grid; gap: 14px; }
 .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 20px; box-shadow: var(--shadow-md); }
 .faq-item h3 { color: var(--primary); margin-bottom: 8px; }
 .faq-item p { color: var(--text-muted); }
 .article-body { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 5vw, 48px); box-shadow: var(--shadow-md); }
 .article-body h2 { margin-top: 34px; font-size: 1.9rem; }
 .article-body h3 { margin-top: 24px; color: var(--primary); }
 .article-body p, .article-body li { color: var(--text-main); font-size: 1.08rem; margin-top: 12px; }
 .article-body ul { padding-right: 22px; }

 .cta-strip {
   background: linear-gradient(135deg, var(--primary), #1e293b);
   color: var(--white);
   border-radius: var(--radius);
   padding: 34px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 22px;
   box-shadow: var(--shadow-lg);
 }
 .cta-strip h2 { color: var(--white); font-size: 2rem; margin: 0; }
 .cta-strip p { color: rgba(255,255,255,0.84); }

 .whatsapp-float {
   position: fixed;
   left: 28px;
   bottom: 28px;
   width: 58px;
   height: 58px;
   border-radius: 50%;
   background: #25d366;
   color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 30px;
   text-decoration: none;
   box-shadow: var(--shadow-lg);
   z-index: 1001;
 }
 footer { background: var(--primary); color: rgba(255,255,255,0.78); text-align: center; padding: 32px 0; }
 footer a { color: var(--white); }

 @media (max-width: 992px) {
   .burger-btn { display: block; }
   nav { display: none; position: absolute; top: 86px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); }
   nav.mobile-active { display: block; }
   nav ul { flex-direction: column; align-items: stretch; padding: 18px 22px; gap: 10px; }
   .nav-dropdown-menu { position: static; box-shadow: none; margin-top: 10px; min-width: 100%; }
   .hero-grid, .calc-layout { grid-template-columns: 1fr; }
   .tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 }

 @media (max-width: 640px) {
   .container, .narrow { width: min(100% - 24px, 1180px); }
   .hero { padding: 58px 0 44px; }
   section { padding: 42px 0; }
   .tools-grid, .form-grid, .mini-grid, .gate-form { grid-template-columns: 1fr; }
   .cta-strip { flex-direction: column; align-items: flex-start; }
   .logo img { height: 54px; }
 }
