﻿:root {
  --bg: #f3f6f9;
  --ink: #0f1b2d;
  --accent: #0f5b92;
  --accent-dark: #083858;
  --green: #1f7a6b;
  --soft: #ffffff;
  --muted: #5a6575;
  --shadow: 0 20px 50px rgba(15, 27, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #e9f4ff 0%, #f4f7fb 45%, #e7f1ef 100%);
  min-height: 100vh;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: -1;
}

.bg-orb--one {
  top: -120px;
  right: -120px;
  background: #86c6ff;
}

.bg-orb--two {
  bottom: -160px;
  left: -120px;
  background: #7edab7;
}

h1,
h2,
h3,
.brand {
  font-family: "Fraunces", "Georgia", serif;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(243, 246, 249, 0.85);
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-image {
  max-height: 64px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 12px 0 20px;
}

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--green);
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #f4f7fb;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 20px rgba(15, 91, 146, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(15, 91, 146, 0.35);
}

.btn--small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--accent-dark);
  box-shadow: none;
}

.link {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.hero-stats strong {
  font-size: 1.4rem;
  display: block;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.panel-card {
  background: var(--soft);
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.panel-image {
  background: linear-gradient(135deg, #a7d8ff 0%, #b3f0db 100%);
  border-radius: 18px;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: #1b2c3f;
  font-weight: 600;
}

.panel-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.badge {
  background: var(--green);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.floating-card {
  position: absolute;
  right: -10px;
  bottom: -20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 200px;
}

section {
  padding: 70px 0;
}

.section-title {
  max-width: 600px;
  margin-bottom: 36px;
}

.section-title p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--soft);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  margin-top: 16px;
  background: rgba(31, 122, 107, 0.12);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.process {
  background: #ffffffc7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.step {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 27, 45, 0.1);
  background: #fff;
}

.step span {
  font-weight: 700;
  color: var(--accent-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-image {
  border-radius: 26px;
  min-height: 260px;
  background: linear-gradient(120deg, #4fa0de, #4bc8a5);
  display: grid;
  place-items: center;
  text-align: center;
  color: #1b2c3f;
  font-weight: 600;
  padding: 24px;
}

.about-copy ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.testimonial {
  padding: 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.testimonial span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

.cta {
  padding-bottom: 90px;
}

.cta-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: #0b1d32;
  color: #fff;
}

.cta-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.cta-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  padding: 40px 0 60px;
  background: #081524;
  color: #f3f6f9;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .floating-card {
    position: static;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .logo-image {
    max-height: 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box {
    padding: 24px;
  }
}
