:root {
  --bg: #f4f6f9;
  --ink: #1a2330;
  --muted: #6b7a8c;
  --teal: #0d7377;
  --teal-deep: #0a5c5f;
  --teal-soft: rgba(13, 115, 119, 0.1);
  --blue: #4aa3e8;
  --magenta: #e85a9b;
  --mint: #7ed8c8;
  --pink: #f3a8c8;
  --sky: #9ec9f5;
  --card: #ffffff;
  --line: #e2e8f0;
  --line-soft: #edf1f5;
  --shadow: 0 18px 50px rgba(26, 60, 90, 0.08);
  --radius: 24px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 55% 45% at 8% 12%, rgba(126, 216, 200, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 40% at 5% 88%, rgba(243, 168, 200, 0.45), transparent 65%),
    radial-gradient(ellipse 55% 50% at 92% 55%, rgba(158, 201, 245, 0.55), transparent 70%),
    radial-gradient(ellipse 40% 35% at 70% 15%, rgba(74, 163, 232, 0.18), transparent 60%);
  background-attachment: fixed;
}

body[dir="rtl"] {
  direction: rtl;
}

.topbar {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
}

.lang {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(26, 60, 90, 0.04);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-active {
  background: var(--teal);
  color: #fff;
}

.shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.card {
  width: 100%;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

.company {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.company h2 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.company-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.contacts {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f8fafc;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact:hover {
  border-color: rgba(13, 115, 119, 0.35);
  background: var(--teal-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.08);
}

.contact-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  font-size: 1.02rem;
  font-weight: 600;
  word-break: break-word;
  color: var(--teal-deep);
}

.footnote {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 28px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .contacts {
    grid-template-columns: 1fr;
  }

  .shell {
    padding-top: 28px;
    min-height: auto;
  }
}
