:root {
  --primary: #0B63F6;
  --secondary: #00BFA6;
  --accent: #FFB020;
  --bg: #F6F8FC;
  --text: #111827;
  --muted: #6B7280;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

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

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

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

.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo span {
  font-weight: 700;
  font-size: 1.1rem;
}

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

.nav a {
  font-weight: 600;
  color: var(--text);
}

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

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
}

.mobile-close {
  display: none;
}

.hero {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(11, 99, 246, 0.1), rgba(0, 191, 166, 0.12));
}

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

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

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

.btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  margin-right: 12px;
}

.btn.secondary {
  background: var(--secondary);
}

.section {
  padding: 70px 0;
}

.section.light {
  background: var(--white);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}

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

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

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 176, 32, 0.15);
  color: #9a6200;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  align-items: start;
  box-shadow: var(--shadow);
}

.step span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.4rem;
}

.faq-item {
  background: var(--white);
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 8px;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

input, textarea {
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  background: var(--white);
}

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

button {
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 60px 0 30px;
}

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

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #e2e8f0;
}

.footer-small {
  text-align: center;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #e2e8f0;
  padding: 18px;
  display: none;
  z-index: 2000;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner button {
  background: var(--secondary);
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: none;
  }

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

  .nav-toggle-label {
    display: block;
  }

  .mobile-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 50px 0;
  }

  .section {
    padding: 50px 0;
  }
}