
:root {
  --ink: #0a2342;
  --ink-2: #133c63;
  --brand: #087ea4;
  --brand-2: #0fb5a9;
  --accent: #ffb703;
  --paper: #ffffff;
  --mist: #f3f8fb;
  --line: #dbe8ef;
  --muted: #64748b;
  --success: #2b9348;
  --shadow: 0 18px 45px rgba(10, 35, 66, .12);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.topbar {
  background: var(--ink);
  color: #dcecf7;
  font-size: .88rem;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219,232,239,.8);
}
.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.logo img { width: 44px; height: 44px; }
.logo span small {
  display: block;
  color: var(--muted);
  font-weight: 650;
  font-size: .69rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 11px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
}
.nav-link:hover, .nav-link.active { background: var(--mist); color: var(--brand); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 250px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}
.dropdown.wide {
  width: 610px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  padding: 10px 12px;
  display: block;
  border-radius: 10px;
  color: #334155;
  font-weight: 650;
  font-size: .9rem;
}
.dropdown a:hover { background: var(--mist); color: var(--brand); }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  cursor: pointer;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(15,181,169,.2), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(8,126,164,.18), transparent 32%),
    linear-gradient(135deg, #071c32, #0b3558 55%, #086b7d);
  color: white;
}
.hero-slide {
  min-height: 590px;
  display: none;
  align-items: center;
}
.hero-slide.active { display: flex; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero p { max-width: 680px; color: #d9ebf5; font-size: 1.08rem; }
.actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #151515; }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-secondary { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); color: white; }
.btn-outline { border-color: var(--brand); color: var(--brand); background: white; }
.hero-art { position: relative; }
.hero-art img {
  width: 100%;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.22));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-10px); } }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.hero-dot {
  width: 9px; height: 9px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.38); cursor: pointer; padding: 0;
}
.hero-dot.active { width: 28px; background: white; }
.section { padding: 88px 0; }
.section.alt { background: var(--mist); }
.section-kicker {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .78rem;
}
.section-title {
  margin: 10px 0 16px;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.section-lead { max-width: 760px; color: var(--muted); font-size: 1.04rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.media-card img { width: 100%; min-height: 360px; object-fit: cover; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.stat {
  padding: 24px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}
.stat strong { display: block; font-size: 2rem; letter-spacing: -.04em; }
.stat span { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.card {
  position: relative;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(10,35,66,.06);
  transition: .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  width: 50px; height: 50px; display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(8,126,164,.14), rgba(15,181,169,.15));
  color: var(--brand);
  font-size: 1.5rem;
}
.card h3 { margin: 18px 0 8px; font-size: 1.22rem; }
.card p { color: var(--muted); margin: 0; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--brand); font-weight: 850; margin-top: 17px; }
.product-card { padding: 0; overflow: hidden; }
.product-visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e7f4f8, #f8fbfd);
}
.product-visual img { width: 82%; height: 190px; object-fit: contain; }
.product-card .content { padding: 24px; }
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 34px; }
.logo-tile {
  min-height: 90px; display: grid; place-items: center; text-align: center;
  padding: 15px; border: 1px solid var(--line); background: white; border-radius: 15px;
  color: #425466; font-weight: 850; letter-spacing: -.02em;
}
.event-card time { color: var(--brand); font-size: .86rem; font-weight: 850; }
.banner {
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.banner h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -.04em; }
.banner p { margin: 0; color: #d6e7f0; max-width: 720px; }
.page-hero {
  padding: 96px 0 76px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(15,181,169,.25), transparent 32%),
    linear-gradient(135deg, #071c32, #0b4164);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { max-width: 720px; color: #d7e9f3; font-size: 1.08rem; }
.breadcrumbs { font-size: .9rem; color: #b9d3e2; font-weight: 700; }
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0 10px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { color: white; background: var(--brand); border-color: var(--brand); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; background: white; }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; }
th { background: var(--mist); font-size: .84rem; text-transform: uppercase; letter-spacing: .06em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  background: white;
}
input:focus, textarea:focus, select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(8,126,164,.12); }
textarea { min-height: 140px; resize: vertical; }
.notice {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 12px;
  background: #eaf8ee;
  color: #226633;
  border: 1px solid #bfe8c8;
  font-weight: 750;
}
.contact-list { display: grid; gap: 16px; margin-top: 25px; }
.contact-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.contact-row .icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--mist); }
.gallery-grid { columns: 3 260px; column-gap: 18px; margin-top: 32px; }
.gallery-card { break-inside: avoid; margin-bottom: 18px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.gallery-card img { width: 100%; }
.site-footer { background: #061827; color: #d2e4ef; padding: 66px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 35px; }
.footer-title { color: white; margin: 0 0 16px; font-size: 1rem; }
.footer-links { display: grid; gap: 9px; color: #b9d0dd; }
.footer-links a:hover { color: white; }
.footer-bottom {
  margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 18px; color: #8fb0c3; font-size: .88rem;
}
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.08); }
.floating-chat {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--success); color: white; box-shadow: var(--shadow); font-size: 1.35rem;
}
.muted { color: var(--muted); }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 25px 1fr; gap: 9px; }
.check-list li::before { content: "✓"; color: var(--brand-2); font-weight: 1000; }
.timeline { display: grid; gap: 18px; margin-top: 34px; }
.timeline-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 25px;
  padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: white;
}
.timeline-item strong { color: var(--brand); font-size: 1.2rem; }
.tag { display: inline-flex; padding: 5px 10px; border-radius: 999px; background: var(--mist); color: var(--brand); font-size: .78rem; font-weight: 850; }
@media (max-width: 1050px) {
  .nav-links {
    position: fixed; inset: 119px 16px auto 16px; display: none; max-height: calc(100vh - 140px);
    overflow-y: auto; padding: 14px; border: 1px solid var(--line); background: white; border-radius: 18px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: block; }
  .nav-item { width: 100%; }
  .nav-link { justify-content: space-between; }
  .dropdown, .dropdown.wide {
    position: static; width: 100%; display: none; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 4px 10px 10px; grid-template-columns: 1fr;
  }
  .nav-item.open .dropdown { display: grid; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-slide { min-height: auto; padding: 78px 0 105px; }
  .hero-art { max-width: 620px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .topbar-inner { align-items: flex-start; padding: 10px 0; flex-direction: column; gap: 5px; }
  .site-header { top: 0; }
  .nav-links { inset-block-start: 125px; }
  .navbar { min-height: 68px; }
  .logo span { font-size: .92rem; }
  .hero h1, .page-hero h1 { letter-spacing: -.04em; }
  .section { padding: 64px 0; }
  .card-grid, .stat-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .banner { padding: 28px; align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .timeline-item { grid-template-columns: 1fr; gap: 4px; }
}
