:root {
  --ink: #0c1a24;
  --ink-soft: #243644;
  --muted: #5a6b78;
  --line: #d7e0e7;
  --paper: #f5f8fa;
  --white: #ffffff;
  --accent: #0e6b6a;
  --accent-dark: #0a5251;
  --accent-soft: #e6f3f3;
  --hero-a: #0c1a24;
  --hero-b: #14374a;
  --shadow: 0 18px 50px rgba(12, 26, 36, 0.08);
  --radius: 12px;
  --max: 1120px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(14, 107, 106, 0.08), transparent 28%),
    linear-gradient(180deg, #eef4f7 0%, var(--paper) 42%, #eef3f6 100%);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(245, 248, 250, 0.88);
  border-bottom: 1px solid rgba(215, 224, 231, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 26, 36, 0.92), rgba(14, 107, 106, 0.72)),
    linear-gradient(160deg, var(--hero-a), var(--hero-b));
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.5rem;
  max-width: 740px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.page-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 38rem;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.page-hero p {
  color: var(--muted);
  max-width: 46rem;
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-solid {
  background: var(--accent);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
}

.section-lead {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 224, 231, 0.95);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.panel p,
.panel li {
  color: var(--ink-soft);
}

.panel ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-plain li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.list-plain li:last-child {
  border-bottom: none;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.content-block {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.content-block h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 2rem 0 0.7rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.08rem;
}

.content-block p,
.content-block li {
  color: var(--ink-soft);
}

.content-block ul,
.content-block ol {
  padding-left: 1.2rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.company-box {
  background: var(--accent-soft);
  border: 1px solid #cfe5e5;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 1rem 0 1.4rem;
}

.company-box strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

label {
  display: block;
  font-weight: 650;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-success {
  margin-top: 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 10px;
  border: 1px solid #b7e0c8;
  background: #eaf8ef;
  color: #14532d;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.site-footer {
  margin-top: 3rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h4 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-legal a {
  margin-right: 1rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--accent-soft);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    padding: 0.5rem 0 1rem;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }
}
