@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0D1321;
  --slate: #3E4C59;
  --slate-light: #5B6879;
  --mist: #8B98AC;
  --bg: #F7F8FA;
  --white: #FFFFFF;
  --border: #E1E5EA;
  --violet: #5B5BD6;
  --violet-dark: #4A4AC0;
  --violet-tint: rgba(91, 91, 214, 0.1);
  --teal: #4C9A8E;
  --teal-tint: rgba(76, 154, 142, 0.14);
  --terracota: #C4622D;
  --terracota-tint: rgba(196, 98, 45, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 0 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--ink);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.lang-switch a,
.lang-switch span.current {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: var(--slate-light);
}

.lang-switch span.current { color: var(--ink); }

.lang-switch a:hover { color: var(--violet); }

.lang-divider { color: var(--border); }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  padding: 0 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s ease;
}

.nav-cta:hover { background: var(--slate); }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 96px 0 88px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-blob.violet {
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(91, 91, 214, 0.18), transparent 70%);
}

.hero-blob.teal {
  bottom: -140px;
  left: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(76, 154, 142, 0.14), transparent 70%);
}

.hero .wrap { position: relative; z-index: 1; }

.hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--violet);
  background: var(--violet-tint);
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 20px;
  letter-spacing: -0.6px;
}

.hero p {
  font-size: 17px;
  color: var(--slate-light);
  max-width: 520px;
  margin-bottom: 36px;
}

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

.btn-primary {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--violet);
  padding: 0 28px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s ease;
}

.btn-primary:hover { background: var(--violet-dark); }

.btn-secondary {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0 28px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.15s ease;
}

.btn-secondary:hover { border-color: var(--violet); }

.services {
  padding: 88px 0;
  background: var(--white);
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.services h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  max-width: 560px;
  margin-bottom: 48px;
  letter-spacing: -0.4px;
}

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

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px 26px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.service-card:hover {
  border-color: var(--slate-light);
  transform: translateY(-2px);
}

.service-icon {
  width: 42px;
  height: 42px;
  background: var(--violet-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon.teal { background: var(--teal-tint); }
.service-icon.terracota { background: var(--terracota-tint); }

.service-icon svg { width: 20px; height: 20px; stroke: var(--violet); }
.service-icon.teal svg { stroke: var(--teal); }
.service-icon.terracota svg { stroke: var(--terracota); }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.65;
}

.contact {
  padding: 88px 0;
  background: var(--white);
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--ink);
  padding: 56px;
}

.contact-inner h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  max-width: 420px;
  letter-spacing: -0.4px;
}

.contact-inner p {
  font-size: 14px;
  color: var(--mist);
  margin-top: 10px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.contact-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.contact-links .btn-primary { margin-top: 8px; }

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-light);
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 56px; }
  .contact-inner { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .nav-cta { padding: 0 14px; font-size: 13px; }
  .lang-switch { font-size: 12px; }
}

a:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
