@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap");

:root {
  --accent: #00a3e2;
  --accent-deep: #0f2233;
  --ink: #0f1c2c;
  --muted: #63707a;
  --sand: #d9c6b4;
  --bg: #f5f8fb;
  --card: #ffffff;
  --line: #e5e9ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 0;
}

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

p {
  margin: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(15, 28, 51, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1360px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 163, 226, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 163, 226, 0.32);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  display: block;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.hamburger.active span {
  background: transparent;
}

.hamburger.active span::before {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span::after {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  padding-top: 110px;
}

section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 82px 28px;
  position: relative;
}

.hero {
  margin-top: 12px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(15, 28, 44, 0.86), rgba(15, 28, 44, 0.75)),
    url("https://images.unsplash.com/photo-1433832597046-4f10e10ac764?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  box-shadow: 0 22px 52px rgba(15, 28, 51, 0.26);
  max-width: none;
  width: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(0, 163, 226, 0.22), transparent 38%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: end;
  padding: 96px 42px 110px;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  line-height: 1.3;
}

.lead {
  margin-top: 12px;
  font-size: 18px;
  color: #dde7ef;
  max-width: 700px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.tag-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 10px 14px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: #c2d8e9;
  margin: 0 0 8px;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
  color: #e8f1f7;
}

.check-list .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
}

.stat strong {
  font-size: 24px;
  letter-spacing: -0.01em;
}

.stat span {
  color: #d3e3ef;
  font-size: 14px;
}

.stat.accent {
  background: rgba(0, 163, 226, 0.2);
  border-color: rgba(0, 163, 226, 0.4);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  position: relative;
}

.section-head::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--accent);
  border-radius: 0;
}

.section-head.light::before {
  background: #8ed3f5;
}

.section-head h2 {
  color: var(--ink);
}

.section-head.light h2,
.section-head.light p,
.section-head.light .eyebrow {
  color: #f1f6fb;
}

.section-head .subhead {
  color: var(--muted);
  max-width: 760px;
}

.subhead {
  font-size: 17px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.pill-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 22px;
  min-height: 220px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(15, 28, 51, 0.06);
}

.pill-card .cover,
.pill-card .gradient {
  position: absolute;
  inset: 0;
}

.pill-card .cover {
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  filter: saturate(0.92);
}

.pill-card .gradient {
  background: linear-gradient(180deg, rgba(15, 28, 44, 0.08), rgba(15, 28, 44, 0.35));
}

.pill-card .content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.pill-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-card h3 {
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.pill-card p {
  color: var(--muted);
}

.pill-card .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 0;
  background: var(--bg);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--line);
}

.pill-card .cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 700;
}

.pill-card.dark {
  background: linear-gradient(135deg, #102132, #0f2f4a);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.pill-card.dark h3,
.pill-card.dark p {
  color: #fff;
}

.pill-card.dark .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.frame-photo {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 28, 51, 0.14);
}

.frame-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 28, 44, 0.18), transparent 48%);
}

.tall-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(15, 28, 51, 0.06);
  display: grid;
  gap: 14px;
  color: var(--ink);
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.list .dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 18px 0 6px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px;
  box-shadow: 0 8px 22px rgba(15, 28, 51, 0.05);
}

.stat-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.process {
  background: linear-gradient(135deg, #0f2233, #0f3554);
  color: #fff;
  border-radius: 0;
  padding: 42px;
  box-shadow: 0 18px 46px rgba(15, 28, 51, 0.2);
}

.process .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 0;
  background: var(--bg);
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.chip.dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.reference-card {
  position: relative;
  min-height: 220px;
  border-radius: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 32px rgba(15, 28, 51, 0.12);
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.65));
}

.reference-card .label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 163, 226, 0.9);
  color: #fff;
  padding: 8px 12px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.reference-card .title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-band {
  background: linear-gradient(135deg, #0f2233, #0f3554);
  color: #fff;
  border-radius: 0;
  padding: 42px;
  box-shadow: 0 18px 46px rgba(15, 28, 51, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: center;
}

.contact-grid h2 {
  color: #fff;
}

.contact-grid .subhead {
  color: #d5e5f1;
}

.contact-info {
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.contact-info a {
  color: var(--accent);
  font-weight: 700;
}

.contact-info .btn {
  justify-self: start;
  margin-top: 4px;
}

.badge-link {
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-band .badge-link {
  color: #8ed3f5;
}

footer {
  background: #0b1825;
  color: #f1f4f8;
  padding: 42px 28px 30px;
  margin-top: 60px;
}

.footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: start;
}

.footer-block {
  display: grid;
  gap: 10px;
}

.footer-block a {
  color: #8ed3f5;
  font-weight: 700;
}

.footer-form {
  display: grid;
  gap: 12px;
}

.footer-form form {
  display: grid;
  gap: 10px;
}

.footer-form input,
.footer-form textarea {
  background: #102234;
  color: #f1f4f8;
  border: 1px solid #1f3a53;
  border-radius: 0;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: #c6d4e3;
}

.footer-inner {
  max-width: 1360px;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #1f3a53;
  padding-top: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 700;
}

.footer-links a {
  color: #8ed3f5;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 700;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid #d9e2eb;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.page-hero {
  margin-top: 110px;
  padding: 96px 28px 76px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
  max-width: none;
  width: 100%;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 26, 44, 0.85), rgba(12, 26, 44, 0.7));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.page-section {
  background: var(--card);
  border-radius: 0;
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: 0 14px 34px rgba(15, 28, 51, 0.06);
  margin: -30px auto 40px;
  max-width: 1280px;
  position: relative;
  z-index: 2;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.data-pill {
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 0;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid var(--line);
}

.page-hero .data-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 74px;
    right: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 14px;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav {
    padding: 14px 18px;
  }

  main {
    padding-top: 104px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 20px;
  }

  .hero-inner {
    padding: 80px 26px 92px;
  }

  .page-section {
    padding: 32px;
    margin-top: -40px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .hero-inner {
    padding: 68px 22px 80px;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .reference-card {
    min-height: 180px;
  }
}
