:root {
  --primary: #0F8A5F;
  --secondary: #0B1F3B;
  --accent: #27D7C4;
  --background: #F7FAFC;
  --surface: #FFFFFF;
  --text: #1B2430;
  --muted: #6B7A90;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid #E1E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-img {
  max-height: 50px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  width: 32px;
  height: 24px;
  display: none;
  position: relative;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--secondary);
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
}

.nav-toggle-label span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-label span::before {
  content: "";
  top: -10px;
}

.nav-toggle-label span::after {
  content: "";
  top: 10px;
}

.site-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.site-nav a {
  font-weight: 500;
}

.site-nav a.active {
  color: var(--primary);
}

.nav-close {
  display: none;
  font-size: 32px;
  color: var(--surface);
  align-self: flex-end;
  cursor: pointer;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(120deg, rgba(15, 138, 95, 0.08), rgba(39, 215, 196, 0.12));
}

.hero-small {
  padding: 60px 0;
}

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

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.keyword-line {
  font-size: 0.95rem;
  color: var(--secondary);
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 20px;
}

.section p {
  margin-bottom: 16px;
  color: var(--muted);
}

.surface-bg {
  background: var(--surface);
}

.accent-bg {
  background: rgba(39, 215, 196, 0.12);
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 138, 95, 0.1);
  padding: 24px;
  border-radius: 16px;
  min-height: 200px;
}

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

.timeline {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.timeline li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
}

.timeline span {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--surface);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.scroll-card {
  min-width: 220px;
  background: var(--surface);
  border: 1px solid #E1E8F0;
  padding: 18px;
  border-radius: 12px;
  font-weight: 500;
}

.faq-grid details {
  background: var(--surface);
  border: 1px solid #E1E8F0;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.faq-grid summary {
  font-weight: 600;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D9E2EC;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}

.checkbox-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkbox-wrap input {
  width: auto;
  margin-top: 4px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--surface);
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.text-link {
  color: var(--secondary);
  font-weight: 500;
}

.service-list {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
}

.process-list {
  list-style: decimal;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.site-footer {
  background: var(--secondary);
  color: var(--surface);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-menu ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-menu a {
  color: var(--surface);
}

.footer-brand p {
  color: #C9D3E0;
}

.logo-footer {
  max-height: 100px;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 16px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--surface);
  border-top: 1px solid #E1E8F0;
  padding: 16px 0;
  z-index: 200;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

@media (max-width: 900px) {
  .nav-toggle-label {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary);
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .site-nav a {
    color: var(--surface);
    font-size: 1.2rem;
  }

  .nav-close {
    display: block;
  }

  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}