:root {
  --bg: #f7fbfc;
  --bg-soft: #eef7f8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #0f2944;
  --text-soft: #4b647b;
  --line: rgba(15, 41, 68, 0.1);
  --blue-dark: #0d4171;
  --blue: #116f9f;
  --cyan: #23bccc;
  --mint: #54dcb8;
  --gradient: linear-gradient(135deg, #0d4171 0%, #126f9f 38%, #22bac9 72%, #58ddb9 100%);
  --shadow: 0 22px 60px rgba(13, 65, 113, 0.12);
  --shadow-strong: 0 30px 80px rgba(13, 65, 113, 0.18);
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1260px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(84,220,184,.15), transparent 28%),
    radial-gradient(circle at top right, rgba(35,188,204,.14), transparent 26%),
    linear-gradient(180deg, #fbfdfd 0%, #f4fafb 40%, #eef7f8 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 12px 16px; background: #0d4171; color: #fff; border-radius: 0 0 12px 12px;
}
.skip-link:focus { left: 16px; top: 0; }
.site-header {
  position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px);
  background: rgba(247,251,252,.9); border-bottom: 1px solid rgba(15,41,68,.07);
}
.header-inner {
  min-height: 84px; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo {
  width: 56px; height: 56px; object-fit: contain; flex: 0 0 56px;
  filter: drop-shadow(0 10px 24px rgba(17,111,159,.18));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.2rem; letter-spacing: .04em; color: var(--blue-dark); }
.brand-text span {
  font-size: .76rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .14em;
}
.nav { display: flex; justify-content: center; align-items: center; gap: 22px; min-width: 0; }
.nav a { font-size: .95rem; font-weight: 700; color: var(--text-soft); white-space: nowrap; }
.nav a:hover { color: var(--blue-dark); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; }

.lang-dropdown { position: relative; }
.lang-dropdown__toggle {
  display: inline-flex; align-items: center; gap: 12px; min-width: 170px;
  padding: 11px 14px; border-radius: 999px; border: 1px solid rgba(15,41,68,.08);
  background: rgba(255,255,255,.86); color: var(--blue-dark); font: inherit; font-weight: 800;
  cursor: pointer; box-shadow: 0 12px 30px rgba(13,65,113,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.lang-dropdown__toggle:hover {
  transform: translateY(-2px); border-color: rgba(17,111,159,.18);
  box-shadow: 0 16px 34px rgba(13,65,113,.14); background: rgba(255,255,255,.96);
}
.lang-dropdown__toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.lang-dropdown__current { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.lang-dropdown__label { font-size: .92rem; white-space: nowrap; }
.lang-dropdown__caret { width: 18px; height: 18px; margin-left: auto; transition: transform .2s ease; color: var(--blue-dark);}
.lang-dropdown.is-open .lang-dropdown__caret { transform: rotate(180deg); }
.lang-dropdown__caret svg { width: 100%; height: 100%; display: block; }
.lang-dropdown__menu {
  position: absolute; top: calc(100% + 12px); right: 0; width: 280px; padding: 10px;
  border-radius: 24px; background: rgba(255,255,255,.98); border: 1px solid rgba(15,41,68,.08);
  box-shadow: 0 24px 60px rgba(13,65,113,.16); backdrop-filter: blur(18px); z-index: 200;
}
.lang-dropdown__item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 18px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.lang-dropdown__item:hover { background: rgba(17,111,159,.06); transform: translateX(2px); }
.lang-dropdown__item:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.lang-dropdown__item.is-active, .lang-dropdown__item[aria-current="page"] {
  background: linear-gradient(135deg, rgba(13,65,113,.08), rgba(35,188,204,.1));
}
.lang-dropdown__text { display: flex; flex-direction: column; line-height: 1.15; }
.lang-dropdown__text strong { font-size: .95rem; color: var(--text); }
.lang-dropdown__text small { font-size: .78rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; }
.lang-switcher__flag {
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 50%; flex: 0 0 20px; box-shadow: 0 1px 4px rgba(15,41,68,.18);
}
.lang-switcher__flag svg { width: 100%; height: 100%; display: block; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; border: 1px solid transparent; padding: 14px 24px; font-weight: 800;
  font-size: .96rem; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gradient); color: #fff; box-shadow: 0 16px 36px rgba(17,111,159,.24); }
.button-secondary { background: rgba(255,255,255,.86); color: var(--blue-dark); border-color: rgba(15,41,68,.08); }
.button-ghost { background: transparent; color: var(--blue-dark); border-color: rgba(15,41,68,.08); }

.hero { padding: 56px 0 46px; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 44px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,.78); border: 1px solid rgba(15,41,68,.08); color: var(--blue);
  font-size: .83rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px;
}
h1 { margin: 0 0 18px; font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: .96; letter-spacing: -.05em; max-width: 10.5ch; }
.hero-text { margin: 0; font-size: 1.08rem; color: var(--text-soft); max-width: 62ch; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero-badge {
  padding: 9px 14px; border-radius: 999px; background: rgba(17,111,159,.08);
  color: var(--blue-dark); font-size: .88rem; font-weight: 700;
}
.hero-stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 34px; }
.stat {
  padding: 18px; background: rgba(255,255,255,.74); border: 1px solid rgba(15,41,68,.08);
  border-radius: 20px; box-shadow: var(--shadow);
}
.stat strong { display: block; font-size: 1.42rem; line-height: 1.05; color: var(--blue-dark); margin-bottom: 6px; }
.stat span { display: block; color: var(--text-soft); font-size: .92rem; }
.hero-panel {
  position: relative; padding: 30px; border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(243,250,251,.95) 100%);
  border: 1px solid rgba(15,41,68,.08); box-shadow: var(--shadow-strong); overflow: hidden;
}
.hero-panel::before, .hero-panel::after { content:""; position:absolute; border-radius:50%; z-index:0; pointer-events:none; }
.hero-panel::before { width:190px; height:190px; top:-70px; right:-40px; background:rgba(84,220,184,.18); filter:blur(8px);}
.hero-panel::after { width:210px; height:210px; left:-90px; bottom:-110px; background:rgba(35,188,204,.14); filter:blur(8px);}
.hero-panel > * { position: relative; z-index: 1; }
.hero-logo { width:100%; max-width:460px; margin:0 auto 26px; object-fit:contain; filter: drop-shadow(0 20px 40px rgba(17,111,159,.18));}
.search-box {
  display:flex; align-items:center; gap:12px; padding:16px 18px; border-radius:18px; background:#fff;
  border:1px solid rgba(15,41,68,.1); color:var(--text-soft); margin-bottom:14px;
}
.chips { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px; }
.chip { padding:8px 13px; border-radius:999px; background:rgba(17,111,159,.08); color:var(--blue-dark); font-size:.86rem; font-weight:700; }
.quick-card {
  border-radius:22px; padding:18px; background: linear-gradient(135deg, rgba(13,65,113,.96), rgba(35,188,204,.88)); color:#fff;
}
.quick-card strong { display:block; font-size:1.02rem; margin-bottom:8px; }
.quick-card p { margin:0; color:rgba(255,255,255,.88); font-size:.94rem; }

section { padding: 36px 0; }
.section-head { max-width:780px; margin-bottom:24px; }
.section-head h2 { margin:0 0 10px; font-size:clamp(1.95rem,3.2vw,3.1rem); line-height:1.04; letter-spacing:-.04em; }
.section-head p { margin:0; color:var(--text-soft); font-size:1.02rem; }
.grid-3 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.card {
  padding:26px; border-radius:var(--radius); background:rgba(255,255,255,.84);
  border:1px solid rgba(15,41,68,.08); box-shadow:var(--shadow);
}
.card-icon {
  width:52px; height:52px; display:grid; place-items:center; border-radius:18px; font-size:1.35rem;
  margin-bottom:18px; background: linear-gradient(135deg, rgba(13,65,113,.12), rgba(84,220,184,.16));
}
.card h3 { margin:0 0 10px; font-size:1.16rem; }
.card p { margin:0; color:var(--text-soft); }
.showcase { display:grid; grid-template-columns:1.02fr .98fr; gap:22px; align-items:stretch; }
.panel {
  padding:28px; border-radius:28px; background:rgba(255,255,255,.88); border:1px solid rgba(15,41,68,.08);
  box-shadow:var(--shadow);
}
.panel h3 { margin:0 0 12px; font-size:1.32rem; }
.panel p { margin:0 0 18px; color:var(--text-soft); }
.dashboard-preview { display:grid; gap:14px; }
.preview-row { display:grid; grid-template-columns:1.1fr .9fr; gap:14px; }
.preview-box {
  padding:18px; border-radius:20px; border:1px solid rgba(15,41,68,.08); background: linear-gradient(180deg, #fff 0%, #f6fbfb 100%);
}
.preview-box strong { display:block; margin-bottom:10px; font-size:.98rem; }
.preview-list { display:grid; gap:10px; }
.preview-item {
  display:flex; align-items:center; justify-content:space-between; gap:16px; font-size:.92rem; color:var(--text-soft);
  padding:10px 12px; border-radius:14px; background:rgba(17,111,159,.05);
}
.preview-item b { color: var(--text); font-weight: 700; }
.lang-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.lang-card {
  position:relative; overflow:hidden; padding:28px; border-radius:28px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(240,250,248,.96) 100%);
  border:1px solid rgba(15,41,68,.08); box-shadow:var(--shadow);
}
.lang-card::after {
  content:""; position:absolute; width:180px; height:180px; right:-60px; bottom:-70px; border-radius:50%;
  background: radial-gradient(circle, rgba(84,220,184,.22), transparent 68%);
}
.lang-card h3 { margin:0 0 10px; font-size:1.34rem; }
.lang-card p { margin:0 0 18px; color:var(--text-soft); }
.checklist { display:grid; gap:12px; }
.check { display:flex; align-items:flex-start; gap:10px; }
.check i {
  width:22px; height:22px; border-radius:50%; display:grid; place-items:center; font-style:normal;
  font-size:.82rem; font-weight:800; color:var(--blue-dark); background:rgba(84,220,184,.18); flex:0 0 22px; margin-top:2px;
}
.check span:last-child { color: var(--text); }
.plans { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.plan {
  padding:28px; border-radius:28px; background:rgba(255,255,255,.88); border:1px solid rgba(15,41,68,.08);
  box-shadow:var(--shadow); display:flex; flex-direction:column; gap:18px;
}
.plan.featured {
  background: linear-gradient(180deg, rgba(13,65,113,.98) 0%, rgba(17,111,159,.96) 48%, rgba(35,188,204,.92) 100%);
  color:#fff; box-shadow: 0 30px 70px rgba(13,65,113,.22);
}
.plan-kicker {
  display:inline-flex; align-self:flex-start; padding:8px 12px; border-radius:999px; font-size:.8rem; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase; background:rgba(17,111,159,.08); color:var(--blue-dark);
}
.plan.featured .plan-kicker { background: rgba(255,255,255,.16); color: #fff; }
.plan h3 { margin:0; font-size:1.34rem; }
.plan p { margin:0; color:var(--text-soft); }
.plan.featured p, .plan.featured li { color: rgba(255,255,255,.9); }
.plan ul { margin:0; padding-left:18px; display:grid; gap:10px; color:var(--text-soft); }
.cta-section { padding: 12px 0 56px; }
.cta-box {
  position:relative; overflow:hidden; border-radius:var(--radius-lg); background:var(--gradient); color:#fff;
  padding:36px; box-shadow: 0 30px 70px rgba(17,111,159,.28);
}
.cta-box::before, .cta-box::after { content:""; position:absolute; border-radius:50%; background:rgba(255,255,255,.12); }
.cta-box::before { width:240px; height:240px; top:-100px; right:-60px; }
.cta-box::after { width:180px; height:180px; bottom:-90px; left:-40px; }
.cta-inner { position:relative; z-index:1; display:flex; justify-content:space-between; align-items:center; gap:24px; }
.cta-inner h2 { margin:0 0 12px; font-size:clamp(2rem,4vw,3.2rem); line-height:1; letter-spacing:-.05em; max-width:12ch; }
.cta-inner p { margin:0; color:rgba(255,255,255,.9); max-width:60ch; }
.cta-actions { display:flex; flex-wrap:wrap; gap:12px; }
.cta-box .button-secondary, .cta-box .button-ghost {
  color:#fff; border-color:rgba(255,255,255,.2); background:rgba(255,255,255,.12); backdrop-filter:blur(8px);
}
.site-footer { padding: 0 0 50px; }
.footer-grid {
  padding-top:24px; border-top:1px solid rgba(15,41,68,.08);
  display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:24px; color:var(--text-soft);
}
.footer-brand { display:flex; align-items:flex-start; gap:14px; }
.footer-brand img { width:48px; height:48px; object-fit:contain; }
.footer-col strong { display:block; color:var(--text); margin-bottom:10px; font-size:.98rem; }
.footer-links { display:grid; gap:8px; }
.footer-links a:hover { color: var(--blue-dark); }

@media (max-width: 1120px) {
  .hero-grid, .showcase, .lang-grid, .plans, .footer-grid, .cta-inner, .grid-3 {
    grid-template-columns: 1fr; display: grid;
  }
  h1 { max-width: none; }
}
@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr; gap: 14px; padding: 14px 0; }
  .brand, .header-actions, .lang-dropdown { justify-content: center; }
  .nav { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .hero-stats, .preview-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-header { position: relative; }
  .header-inner { min-height: auto; }
  .brand { justify-content: flex-start; }
  .nav { display: none; }
  .header-actions, .lang-dropdown { justify-content: flex-start; width: 100%; }
  .lang-dropdown__toggle { min-width: 150px; padding: 10px 12px; font-size: .85rem; }
  .lang-dropdown__menu { width: min(100%, 280px); right: auto; left: 0; }
  .lang-switcher__flag { width: 18px; height: 18px; flex-basis: 18px; }
  .hero, section { padding-top: 28px; }
  .hero-panel, .card, .panel, .lang-card, .plan, .cta-box { padding: 22px; }
  .cta-inner h2 { max-width: none; }
  .button { padding: 12px 18px; font-size: .9rem; }
}
