:root {
  --bg: #f6f8ff;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --text: #101828;
  --muted: #475467;
  --primary: #2563eb;
  --primary-700: #1d4ed8;
  --accent: #7c3aed;
  --border: #d7deef;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  --shadow-soft: 0 20px 45px rgba(37, 99, 235, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(37, 99, 235, 0.12), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(124, 58, 237, 0.1), transparent 32%),
    var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 255, 0.75);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

.menu {
  display: flex;
  gap: 1rem;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.menu a:hover {
  color: var(--primary);
}

.hero {
  padding: 5.2rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.kicker {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
  padding: 0.28rem 0.64rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
}

h3 {
  margin: 0 0 0.5rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-block;
  border-radius: 12px;
  padding: 0.72rem 1.05rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-1px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.trust-row span {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.25rem 1.4rem;
  backdrop-filter: blur(6px);
}

.hero-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.9rem;
}

.hero-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.hero-metrics div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem 0.5rem;
}

.hero-metrics strong {
  display: block;
  font-size: 0.95rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 4rem 0;
}

.section-intro {
  color: var(--muted);
  margin-top: 0;
}

.section-muted {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.25rem;
}

.service-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.1rem 0 0.2rem;
}

.service-visuals img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-dark {
  background: linear-gradient(145deg, #0f172a 0%, #172554 55%, #312e81 100%);
  color: #e5e7eb;
}

.section-dark p {
  color: #cbd5e1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(191, 219, 254, 0.9);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.contact-side {
  display: grid;
  gap: 0.9rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1rem;
}

.contact-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-card li + li {
  margin-top: 0.5rem;
}

.contact-card a {
  color: #bfdbfe;
}

.map-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  min-height: 260px;
}

.map-card iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.site-footer p {
  margin: 0;
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(720px, 92vw);
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  padding: 0.95rem;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.45);
  z-index: 1000;
  display: grid;
  gap: 0.75rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #bfdbfe;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.cookie-banner.hidden {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .service-visuals,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
    text-align: center;
  }
}
