:root {
  --navy: #071A3D;
  --blue: #0A66FF;
  --soft-blue: #EAF2FF;
  --gray: #F5F7FA;
  --white: #FFFFFF;
  --text: #111827;
  --muted: #4B5563;
  --line: rgba(7, 26, 61, 0.1);
  --shadow-sm: 0 4px 20px rgba(7, 26, 61, 0.06);
  --shadow-md: 0 12px 40px rgba(7, 26, 61, 0.1);
  --shadow-lg: 0 24px 60px rgba(7, 26, 61, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] { text-align: right; }
body[dir="rtl"] .price-features li { padding-left: 0; padding-right: 24px; }
body[dir="rtl"] .price-features li::before { left: auto; right: 0; }
body[dir="rtl"] .language-wrap::after { right: auto; left: 14px; }
body[dir="rtl"] .language-select { padding: 0 14px 0 38px; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.brand-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover { color: var(--navy); }

.language-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.language-select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 40px;
  min-width: 148px;
  max-width: 168px;
  padding: 0 34px 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
}

.language-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 102, 255, 0.12);
}

.language-wrap::after {
  content: "⌄";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-58%);
  color: var(--muted);
  pointer-events: none;
  font-weight: 700;
}

.nav-cta {
  color: var(--white) !important;
  background: var(--blue);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(10, 102, 255, 0.25);
  transition: transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10, 102, 255, 0.32);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: 0.18s;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-menu-inner {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 8px;
  padding: 16px 0 20px;
}

.mobile-menu a,
.mobile-menu label {
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--muted);
}

.mobile-menu a:hover { background: var(--gray); color: var(--navy); }

.mobile-menu label {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-menu .language-select {
  max-width: none;
  width: 100%;
  border-radius: 12px;
}

body.menu-open .mobile-menu { display: block; }
body.menu-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .mobile-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(10, 102, 255, 0.25);
}

.btn.primary:hover {
  box-shadow: 0 12px 28px rgba(10, 102, 255, 0.32);
}

.btn.outline {
  border-color: rgba(10, 102, 255, 0.35);
  color: var(--blue);
  background: var(--soft-blue);
}

section { padding: 88px 0; }

.section-gray { background: var(--gray); }
.section-soft { background: linear-gradient(180deg, var(--soft-blue) 0%, var(--white) 100%); }
.section-navy {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2B5E 100%);
  color: var(--white);
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-navy .kicker { color: #7EB4FF; }

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.15; }

h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--navy);
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
}

.section-navy h2 { color: var(--white); }

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-text {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-navy .section-text { color: rgba(255, 255, 255, 0.78); }

.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, var(--soft-blue) 0%, var(--white) 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-sub {
  margin: 0 0 28px;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.disclosure {
  max-width: 540px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--white) 0%, var(--soft-blue) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(10, 102, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.metric-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.metric-card svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  margin-bottom: 12px;
}

.metric-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.metric-card span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.metric-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, #0D2B5E 100%);
  border: none;
}

.metric-card.featured strong,
.metric-card.featured span { color: var(--white); }
.metric-card.featured span { opacity: 0.82; }
.metric-card.featured svg { color: #7EB4FF; }

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

.card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--soft-blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.price-name {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.price-amount.custom { font-size: 2rem; }

.price-type {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.price-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}

.price-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.price-card .btn { width: 100%; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-step {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.process-num {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.process-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-item {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.industry-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.industry-item p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

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

.resource-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.resource-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.resource-card p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.resource-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-detail {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--gray);
  border: 1px solid var(--line);
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-detail a:hover { color: var(--blue); }

.contact-form {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--gray);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 102, 255, 0.12);
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

footer {
  padding: 48px 0 32px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-about {
  line-height: 1.65;
  max-width: 360px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.18s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { gap: 12px; }
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .cards,
  .pricing-grid,
  .industry-list { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .cards,
  .pricing-grid,
  .industry-list,
  .process-grid,
  .resource-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .metric-card.featured { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
