@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --bg: #f3f7f6;
  --surface: #ffffff;
  --surface-alt: #eaf3f1;
  --text: #1d2a2a;
  --muted: #5e7270;
  --primary: #0d7a6f;
  --primary-strong: #0a6259;
  --accent: #f2a65a;
  --border: #d6e3e0;
  --shadow: 0 16px 40px rgba(13, 122, 111, 0.15);
  --radius: 18px;
  --radius-lg: 28px;
  --display: "Plus Jakarta Sans", "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #ffffff 0, #f6fbfa 35%, var(--bg) 100%);
}

h1,
h2,
h3,
.logo {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
}

body::before {
  width: 320px;
  height: 320px;
  background: #8ad2c9;
  top: -120px;
  right: 10%;
}

body::after {
  width: 280px;
  height: 280px;
  background: #ffd8ae;
  bottom: -120px;
  left: 8%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

p {
  margin: 0 0 0.95rem;
}

.topbar {
  background: #113635;
  color: #def3ef;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .service-area {
  letter-spacing: 0.01em;
}

.topbar .container {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 247, 246, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  font-family: var(--display);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  gap: 1rem;
  flex-wrap: nowrap;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

nav {
  margin-left: auto;
}

nav a {
  color: #2b3a39;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.24s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  font-family: var(--display);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 122, 111, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(13, 122, 111, 0.32);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
}

.hero {
  padding: 4rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #e2f3f0;
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 1rem 0;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(11, 70, 64, 0.18);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.page-hero {
  padding: 3.2rem 0 2.2rem;
}

.page-hero .lead {
  max-width: 760px;
}

.page-cover {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.content-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 0.55rem;
  text-align: left;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 122, 111, 0.16), rgba(13, 122, 111, 0));
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.stats div {
  background: var(--surface-alt);
  border-radius: 14px;
  padding: 0.9rem;
  border: 1px solid #d6ece8;
}

.section {
  padding: 3.3rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(234, 243, 241, 0.7));
}

.section h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 66, 61, 0.13);
  border-color: #bddad5;
}

.service-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--primary-strong);
  background: #e4f5f2;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.kpi strong {
  font-size: 1.5rem;
}

.cta-panel {
  background: linear-gradient(130deg, #0f4f49, #0a6760);
  color: #e8f7f5;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cta-panel .btn-ghost {
  color: #0f4f49;
  border: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.list {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.list li {
  margin-bottom: 0.42rem;
}

.contact-box,
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}

form {
  display: grid;
  gap: 0.8rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #9bd8cf;
  border-color: #7ec5ba;
}

footer {
  margin-top: 2.8rem;
  background: linear-gradient(145deg, #0f2f2d, #123937);
  color: #d6ebe8;
  padding: 2.6rem 0 2rem;
  border-top: 1px solid rgba(206, 234, 229, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: start;
}

.footer-grid > div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(206, 234, 229, 0.12);
  border-radius: 16px;
  padding: 1rem 1rem 0.85rem;
}

footer h3 {
  margin: 0 0 0.55rem;
  color: #f2fbfa;
}

footer p,
footer a {
  color: #d6ebe8;
}

footer a {
  text-decoration: underline;
  text-decoration-color: rgba(214, 235, 232, 0.35);
  text-underline-offset: 2px;
}

footer a:hover {
  color: #ffffff;
}

.footer-mini {
  margin-top: 1.1rem;
  border-top: 1px solid rgba(206, 234, 229, 0.2);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: #b8d5d1;
  font-size: 0.88rem;
  width: 100%;
  background: rgba(7, 23, 22, 0.45);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0.95rem 0 0.15rem;
}

.trust-item {
  border: 1px solid #c7dfdb;
  background: #f4fbfa;
  color: #194947;
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.cookie {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 60;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .grid-2,
  .footer-grid,
  .kpi-row,
  .cta-panel,
  .content-wrap,
  .gallery {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    display: block;
  }

  .nav-wrap {
    position: relative;
    flex-wrap: wrap;
    row-gap: 0.65rem;
  }

  .menu-btn {
    display: inline-flex;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 10px;
    padding: 0.4rem 0.65rem;
  }

  .logo img {
    height: 48px;
  }

  nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    width: auto;
    margin-top: 0;
    margin-left: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.45rem;
    box-shadow: 0 10px 24px rgba(8, 40, 38, 0.12);
    z-index: 80;
  }

  nav.open {
    display: block;
  }

  nav:not(.open) {
    display: none !important;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    white-space: normal;
    width: 100%;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 0.62rem 0.72rem;
    border-radius: 8px;
  }

  nav a:hover,
  nav a.active {
    background: #eaf5f3;
  }

  nav a::after {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .section {
    padding: 2.4rem 0;
  }
}
