@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --bg: #f6f8fc;
  --bg-alt: rgba(255, 255, 255, 0.85);
  --card: rgba(255, 255, 255, 0.9);
  --text: #1b2333;
  --muted: #64708d;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.18);
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 25px 45px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fdfefe 0%, #eef3f9 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text);
}

.links a {
  text-decoration: none;
  margin-left: 22px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  border: none;
  color: #03240f;
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-2px);
}

.links .btn {
  background: var(--accent);
  color: #03240f;
  border: none;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.22);
}

.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.58;
  filter: saturate(1.05);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.2));
}

.hero .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__content {
  max-width: 640px;
}

.hero__showcase {
  display: grid;
  gap: 18px;
  align-content: flex-start;
}

.preview-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(12px);
  width: min(320px, 100%);
}

.preview-card__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.preview-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.preview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.5;
}

.preview-card--metrics {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.preview-card--metrics div {
  display: grid;
  gap: 6px;
}

.preview-card--metrics span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.preview-card--metrics strong {
  font-size: 1.35rem;
  font-weight: 600;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 4vw, 3.7rem);
  line-height: 1.1;
  margin: 0 0 18px;
  text-shadow: 0 18px 36px rgba(8, 16, 30, 0.45);
}

.sub {
  font-size: 1.05rem;
  color: rgba(27, 35, 51, 0.75);
  margin: 0 0 26px;
}

.hero .sub {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 10px 24px rgba(8, 16, 30, 0.4);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero .btn {
  color: #f4f7ff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn.primary {
  color: #03240f;
}

.hero .btn.ghost {
  background: rgba(255, 255, 255, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stats li {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

.hero .stats li {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(8px);
}

.stats span {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
}

.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: var(--bg-alt);
  backdrop-filter: blur(16px);
}

.section-header {
  max-width: 650px;
  margin-bottom: 36px;
}

.section h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 10px;
}

.grid {
  display: grid;
  gap: 40px;
}

.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.cards--sector .card,
.cards--feature .card {
  min-height: 200px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.list-check,
.list-plain {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.list-check li {
  position: relative;
  padding-left: 28px;
}

.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

.list-plain li {
  border-left: 3px solid var(--accent-soft);
  padding-left: 14px;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(255, 255, 255, 0.95));
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  box-shadow: var(--shadow);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin: 26px 0 0;
}

.metrics div {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.metrics dt {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  color: var(--muted);
}

.metrics dd {
  margin: 0;
  font-weight: 600;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

.timeline li {
  border-left: 2px solid var(--accent-soft);
  padding-left: 22px;
  position: relative;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.timeline h3 {
  margin: 0 0 6px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--accent);
  padding: 26px 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.quote-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pillars {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.pillar {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  padding: 22px 18px;
  box-shadow: var(--shadow);
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.cta {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(255, 255, 255, 0.95));
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta .hero-ctas {
  justify-content: center;
}

.footer {
  padding: 40px 0 60px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.06);
  color: var(--text);
}

.footer__content {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__copy {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.85rem;
}

.page-hero {
  padding: 120px 0 80px;
  text-align: left;
  background: linear-gradient(140deg, rgba(34, 197, 94, 0.16), rgba(255, 255, 255, 0.95));
  border-bottom: 1px solid var(--line);
}

.note-block {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}

.note-block .btn {
  margin-top: 18px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 16px;
}

.contact-list li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  box-shadow: var(--shadow);
}

.contact-list span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 16px;
}

.faq details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 14px 0 0;
  color: rgba(27, 35, 51, 0.75);
}

.muted {
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero__showcase {
    width: 100%;
    max-width: 520px;
  }

  .preview-card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav .container {
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
    height: auto;
  }

  .links a {
    margin-left: 0;
    margin-right: 14px;
  }

  .hero {
    padding: 120px 0 90px;
  }

  .hero .container {
    justify-content: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero-ctas {
    width: 100%;
  }

  .hero-ctas .btn {
    flex: 1;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .footer__copy {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .brand {
    font-size: 0.85rem;
  }

  .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .page-hero {
    text-align: center;
  }

  .cta .hero-ctas {
    flex-direction: column;
  }

  .preview-card--metrics {
    flex-direction: column;
    align-items: flex-start;
  }
}