@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-v19-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-v19-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-v19-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-v19-latin-700.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #0f1115;
  --ink-muted: #4b5563;
  --paper: #f7f4ef;
  --paper-strong: #ffffff;
  --accent: #0e7c66;
  --accent-strong: #0a5b4c;
  --accent-soft: #d7f4ee;
  --glow: #f2c94c;
  --shadow: 0 20px 60px rgba(15, 17, 21, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #fef6df 0%, transparent 45%),
    radial-gradient(circle at 80% 10%, #d9f6ef 0%, transparent 50%),
    linear-gradient(180deg, #f7f4ef 0%, #ffffff 100%);
  min-height: 100vh;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 17, 21, 0.18);
  background: #0f172a;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 500;
  color: var(--ink-muted);
}

.lang-select {
  border: 1px solid rgba(15, 17, 21, 0.12);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.lang-select:focus {
  outline: 2px solid rgba(14, 124, 102, 0.35);
  outline-offset: 2px;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(14, 124, 102, 0.25);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(15, 17, 21, 0.12);
  color: var(--ink);
}

.hero {
  padding: 80px 0 100px;
}

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

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-strong);
  font-weight: 600;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(2.6rem, 3.6vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}

.hero-card {
  background: var(--paper-strong);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card--image {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-caption {
  text-align: center;
  margin-bottom: 14px;
}

.hero-over-phone {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
  color: #24302c;
  margin-bottom: 6px;
}

.hero-over-phone-sub {
  font-size: 20px;
  font-weight: 400;
  color: #5f6f69;
}

.gallery .hero-over-phone {
  font-size: 24px;
}

.gallery .hero-over-phone-sub {
  font-size: 16px;
}

.hero-caption--report .hero-over-phone {
  font-size: 28px;
}

.hero-caption--report .hero-over-phone-sub {
  font-size: 18px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -25% -20%;
  height: 45%;
  background: radial-gradient(circle at center, rgba(242, 201, 76, 0.35), transparent 70%);
  pointer-events: none;
}

.device-frame {
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 17, 21, 0.18);
  overflow: hidden;
  background: transparent;
}

.badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 14px;
}

.section-intro {
  max-width: 640px;
  color: var(--ink-muted);
  line-height: 1.7;
}

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

.card {
  background: var(--paper-strong);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(15, 17, 21, 0.08);
  border: 1px solid rgba(15, 17, 21, 0.06);
}

.card h3 {
  margin-top: 0;
}

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

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-weight: 700;
}

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

.price-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  border: 1px solid rgba(15, 17, 21, 0.08);
  box-shadow: var(--shadow);
}

.price-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 26px 60px rgba(14, 124, 102, 0.18);
}

.price-card ul {
  padding-left: 18px;
  color: var(--ink-muted);
}

.cta {
  background: linear-gradient(135deg, #0e7c66 0%, #0f172a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 54px;
  display: grid;
  gap: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.92);
}

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

.gallery-item {
  display: grid;
  gap: 10px;
}

.gallery img {
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(15, 17, 21, 0.16);
}

footer {
  padding: 40px 0 60px;
  color: var(--ink-muted);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 4vw;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .lang-select {
    width: 100%;
    text-align: left;
  }

  .hero {
    padding-top: 60px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 0.8s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.1s;
}

.reveal.delay-2 {
  animation-delay: 0.2s;
}

.reveal.delay-3 {
  animation-delay: 0.3s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
