:root {
  --ink: #07111f;
  --muted: #5f6f85;
  --surface: #ffffff;
  --soft: #f4f8ff;
  --line: #dce8f7;
  --primary: #0878ff;
  --primary-dark: #020b18;
  --navy: #020814;
  --accent: #0878ff;
  --accent-soft: #eaf3ff;
  --shadow: 0 22px 50px rgba(2, 8, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(8, 120, 255, 0.16);
  background: rgba(2, 8, 20, 0.94);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

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

.footer-logo img {
  width: 96px;
  height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 120, 255, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 120, 255, 0.12);
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 96px max(20px, calc((100% - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 28%, rgba(8, 120, 255, 0.34), transparent 30%),
    linear-gradient(120deg, rgba(2, 8, 20, 0.97), rgba(3, 16, 37, 0.92)),
    url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .section-kicker {
  color: #1684ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.5vw, 5.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-subtitle {
  margin-bottom: 16px;
  color: #58a7ff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
}

.hero-description {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 26px rgba(8, 120, 255, 0.28);
}

.btn-primary:hover {
  background: #0067df;
}

.hero-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(8, 120, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.trust-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trust-row i,
.statement-icon,
.value-card i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.trust-row i {
  color: #fff;
  background: var(--primary);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  margin-bottom: 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.about-copy p,
.value-card p,
.statement-card p {
  color: var(--muted);
}

.about-stats {
  display: grid;
  gap: 14px;
}

.about-stats div,
.statement-card,
.value-card,
.contact-form,
.contact-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(23, 32, 51, 0.06);
}

.about-stats div {
  padding: 22px;
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  margin-bottom: 4px;
}

.about-stats span {
  color: var(--muted);
}

.statement-section,
.values-section,
.contact-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1160px) / 2));
  padding-left: max(20px, calc((100% - 1160px) / 2));
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
}

.statement-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.statement-card {
  padding: 32px;
}

.statement-icon,
.value-card i {
  margin-bottom: 22px;
  color: var(--primary);
  background: var(--accent-soft);
  font-size: 1.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
}

.contact-details {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 22px;
  font-style: normal;
}

.contact-item i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--primary);
  background: var(--accent-soft);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(18, 78, 88, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--primary);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 18% 20%, rgba(8, 120, 255, 0.18), transparent 26%),
    var(--navy);
}

.footer-grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 36px;
}

.footer-logo,
.site-footer h3 {
  color: #fff;
}

.site-footer p {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 120, 255, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #061124;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .hero,
  .about-grid,
  .statement-section,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .navbar,
  .section,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1160px);
  }

  .hero,
  .statement-section,
  .values-section,
  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .logo span:last-child {
    display: none;
  }

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

  .btn {
    width: 100%;
  }
}
