:root {
  color-scheme: light;
  font-size: 16px;
  --mint: #f8fbff;
  --sage: #eef6f7;
  --foam: #dff0f2;
  --cream: #f2fbff;
  --deep: #023235;
  --slate: #355b5e;
  --accent: #008996;
  --accent-dark: #00606a;
  --accent-light: rgba(0, 137, 150, 0.12);
  --shadow-soft: 0 15px 35px rgba(3, 44, 46, 0.12);
  --shadow-card: 0 15px 35px rgba(2, 50, 53, 0.15);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --space-section: clamp(3rem, 6vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(160deg, #fefefe 0%, var(--mint) 100%);
  color: var(--slate);
  line-height: 1.65;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

a:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 4px;
}

header,
footer {
  background: rgba(248, 251, 255, 0.85);
  backdrop-filter: blur(18px);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(2, 50, 53, 0.08);
  box-shadow: 0 10px 30px rgba(3, 44, 46, 0.08);
}

footer {
  border-top: 1px solid rgba(2, 50, 53, 0.08);
}

.wrap {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 1.7rem);
}
.btn{
  margin-top: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  color: var(--deep);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-mark {
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--foam));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(2, 50, 53, 0.05), var(--shadow-soft);
}

.nav-container {
  display: flex;
 justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 4.75rem;
}



.menu-toggle {
  display: none;
  max-width: 150px;
  border: 1px solid rgba(2, 50, 53, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 22, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(0, 22, 24, 0.12);
}

.nav-links {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  margin: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(2, 50, 53, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(0, 22, 24, 0.06);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--accent-light);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid rgba(2, 50, 53, 0.08);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 137, 150, 0.3);
}

button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 4px;
}


h1,
h2,
h3 {
  margin-top: 0;
  color: var(--deep);
  text-align: center;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.2;
  margin-top: 20px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.35rem);
}

.hero {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero p {
  font-size: 1.05rem;
  color: var(--slate);
  text-align: center;
}

.highlight {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.highlight::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent-dark);
  border-radius: 999px;
}

.badge-list {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.badge {
  background: var(--foam);
  color: var(--accent-dark);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 137, 150, 0.18);
}

.icon-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.icon-chip {
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(2, 50, 53, 0.08);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  color: var(--deep);
}

.icon-figure {
  background: linear-gradient(145deg, var(--sage), #fff);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  box-shadow: var(--shadow-card);
  text-align: center;
  font-weight: 600;
  color: var(--slate);
}

.icon-figure--small {
  min-height: 190px;
}

form {
  display: grid;
  gap: 1rem;
}

input,
textarea {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2, 50, 53, 0.15);
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  outline: none;
}

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

.map-frame {
  width: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--slate);
}

.privacy-popup {
  position: fixed;
  inset: auto 1.75rem 1.75rem auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 25px 45px rgba(0, 22, 24, 0.35);
  width: min(420px, calc(100vw - 2rem));
  transform: translateY(140%);
  transition: transform 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 200;
}

.privacy-popup.visible {
  transform: translateY(0);
  opacity: 1;
}

.privacy-popup button {
  margin-top: 1rem;
  width: 100%;
}
.form-note input{width: 16px; height: 16px;}
@media (max-width: 990px){
  .nav-links a{
    font-size: 11px;
  }
}
@media (max-width: 900px) {
  header {
    position: static;
  }

  nav {
    justify-self: stretch;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(2, 50, 53, 0.12);
    box-shadow: 0 20px 40px rgba(0, 22, 24, 0.08);
    z-index: 75;
  }

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

  .nav-links a {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  button,
  .btn {
    width: 100%;
  }
}
@media (max-width: 620px){
  .card{
    gap: 0;
  }

  .logo span:nth-child(2){
    display: none;
  }
}
@media (max-width: 520px) {
  .logo span:nth-child(2) {
    display: none;
  }

  .wrap {
    width: min(600px, 94vw);
padding: 0;  }

  .badge-list {
    flex-direction: column;
  }

  .privacy-popup {
    inset: auto 1rem 1rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
