:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --surface: #ffffff;
  --line: #e5e7ef;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #4f46e5;
  --accent: #14b8a6;
  --highlight: #f59e0b;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.28);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero,
.page-hero,
.section {
  padding: 76px 0;
}

.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(79, 70, 229, 0.12), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(20, 184, 166, 0.1), transparent 36%),
    var(--bg);
}

.hero-grid,
.split,
.grid-3,
.grid-4,
.stats,
.footer-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.hero-grid,
.split {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.grid-3,
.stats {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(38px, 5.6vw, 64px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-copy p {
  font-size: 18px;
  max-width: 720px;
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin: 26px 0;
}

.card,
.photo-card,
.faq-item,
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.faq-item,
.contact-form-wrap {
  padding: 26px;
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.muted-box {
  padding: 22px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.faq-item button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-top: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  min-height: 140px;
}

.status-text {
  min-height: 24px;
  color: var(--accent);
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
}

.footer-title {
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.accent {
  color: var(--accent);
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 70px;
    width: min(320px, calc(100% - 40px));
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

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

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

@media (max-width: 680px) {
  .hero,
  .page-hero,
  .section {
    padding: 48px 0;
  }

  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid,
  .photo-grid,
  .cta-row {
    grid-template-columns: 1fr;
  }
}
