

@font-face {
  font-family: "Lexend";
  src: url("../assets/fonts/lexend-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/sourcesans3-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --ink: #0f172a;          
  --body: #334155;         
  --muted: #64748b;        
  --accent: #0369a1;       
  --accent-deep: #075985;
  --accent-soft: #e0f2fe;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --radius: 16px;
  --radius-sm: 10px;
  --container: 1120px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, .12);

  --head: "Lexend", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --text: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
section { scroll-margin-top: 88px; }
h1, h2, h3 { font-family: var(--head); color: var(--ink); line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }


.eyebrow {
  font-family: var(--head);
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent);
  display: inline-block; margin-bottom: 14px;
}
.section { padding: 92px 0; }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--muted); }
.lead { font-size: 1.22rem; color: var(--body); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--head); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { color: var(--ink); border-color: var(--accent); background: var(--surface); transform: translateY(-2px); }


.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 250, 252, .86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 34px; width: auto; display: block; }
.header-nav { display: flex; gap: 26px; margin-left: auto; }
.header-nav a {
  font-family: var(--head); font-weight: 500; font-size: .96rem; color: var(--body);
  padding: 6px 0; position: relative;
}
.header-nav a:hover { color: var(--ink); }
.header-tools { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: inline-flex; align-items: center; border: 1px solid var(--border-strong);
  border-radius: 999px; overflow: hidden; font-family: var(--head); font-size: .82rem; font-weight: 600;
}
.lang-switch a { padding: 5px 11px; color: var(--muted); }
.lang-switch a[aria-current="true"] { background: var(--ink); color: #fff; }
.header-cta { display: inline-flex; }


.hero { position: relative; overflow: hidden; padding: 96px 0 80px; }

.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, var(--bg) 32%, rgba(248, 250, 252, .80) 52%, rgba(248, 250, 252, .34) 74%, rgba(248, 250, 252, .12) 100%),
    url("../assets/hero.jpg") center right / cover no-repeat,
    var(--bg);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .9;
  background:
    radial-gradient(900px 380px at 82% -6%, rgba(3, 105, 161, .08), transparent 60%),
    linear-gradient(0deg, rgba(248, 250, 252, .60), transparent 40%);
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }

.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); color: var(--ink); margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { max-width: 620px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-strip {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 44px;
  padding-top: 26px; border-top: 1px solid var(--border);
}
.hero-strip span {
  font-family: var(--head); font-size: .9rem; font-weight: 500; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-strip span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }


.hero-inner > * { opacity: 0; animation: heroIn .7s cubic-bezier(.22, .61, .36, 1) both; }
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .16s; }
.hero-inner > *:nth-child(3) { animation-delay: .28s; }
.hero-inner > *:nth-child(4) { animation-delay: .40s; }
.hero-inner > *:nth-child(5) { animation-delay: .54s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }


.hero::before { animation: heroDrift 24s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2%, 1.6%, 0) scale(1.06); }
}


.position { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.position-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.position-grid .statement { font-size: clamp(1.5rem, 2.8vw, 2rem); font-family: var(--head); font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1.22; }
.position-grid .statement em { color: var(--accent); font-style: normal; }
.position-points { list-style: none; display: grid; gap: 20px; }
.position-points li { display: flex; gap: 14px; }
.position-points .ic { flex-shrink: 0; width: 26px; height: 26px; color: var(--accent); }
.position-points strong { display: block; color: var(--ink); font-family: var(--head); font-weight: 600; margin-bottom: 2px; }


.grid-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card:hover .card-media img { transform: scale(1.04); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.card-body { padding: 26px 30px 30px; }
.card-ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent-deep); display: grid; place-items: center;
  margin: -49px 0 16px; position: relative; box-shadow: var(--shadow-sm);
  border: 3px solid var(--surface);
}
.card-ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); }


.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num {
  font-family: var(--head); font-weight: 700; font-size: .95rem; color: #fff;
  width: 34px; height: 34px; border-radius: 50%; background: var(--ink);
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }


.values { background: var(--ink); color: #cdd7e6; }
.values .eyebrow { color: #7dd3fc; }
.values .section-head h2 { color: #fff; }
.values .section-head p { color: #94a3b8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { padding: 28px; border: 1px solid rgba(148, 163, 184, .2); border-radius: var(--radius); background: rgba(255, 255, 255, .03); }
.value h3 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.value p { color: #94a3b8; font-size: .98rem; }


.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-info .lead { margin-bottom: 24px; }
.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); }
.contact-list .ic { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--head); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--text); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(3, 105, 161, .15);
}
.field textarea { min-height: 128px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form .btn-primary { width: 100%; justify-content: center; }
.form-status { margin-top: 14px; font-size: .95rem; color: var(--accent-deep); min-height: 1.2em; }
.form-status.error { color: #b91c1c; }


.site-footer { background: var(--surface-2); border-top: 1px solid var(--border); padding: 54px 0 34px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.footer-brand .brand { margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-size: .96rem; max-width: 320px; }
.footer-nav { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--head); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; }
.footer-col a { display: block; color: var(--body); font-size: .96rem; padding: 4px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: .88rem;
}
.footer-credit { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: .85rem; }
.footer-credit img { width: 58px; height: auto; opacity: .9; }


.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }


@media (max-width: 900px) {
  .position-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps, .values-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .hero { padding: 74px 0 60px; }
  
  .hero::before {
    background:
      linear-gradient(180deg, rgba(248, 250, 252, .88), rgba(248, 250, 252, .93)),
      url("../assets/hero.jpg") center / cover no-repeat,
      var(--bg);
  }
  .grid-cards { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .brand img { height: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .card, .btn-primary { transition: none !important; }
  .hero-inner > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero::before { animation: none !important; transform: none !important; }
  .card:hover .card-media img { transform: none !important; }
}
