:root {
  --bg: #0a0a0d;
  --panel: #11141a;
  --panel-2: #171b22;
  --text: #f3f5f7;
  --muted: #b8c0cc;
  --red: #e11d2e;
  --red-dark: #9b0f1a;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,13,0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; letter-spacing: 0.02em; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 999px; border: 2px solid rgba(255,255,255,0.12); }
nav { display: flex; align-items: center; gap: 1.1rem; }
nav a { color: var(--muted); font-weight: 600; }
nav a:hover { color: white; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.2rem; border-radius: 999px; border: 1px solid transparent;
  background: linear-gradient(180deg, #ff2e41, #bb1020);
  color: white; font-weight: 700; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.18); box-shadow: none; }
.btn-small { padding: 0.65rem 1rem; }

.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,13,0.9) 0%, rgba(10,10,13,0.75) 40%, rgba(10,10,13,0.35) 100%),
              linear-gradient(180deg, rgba(10,10,13,0.2), rgba(10,10,13,0.7));
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 6rem 0; }
.eyebrow { display: inline-block; color: #ff7a85; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 800; margin-bottom: 1rem; }
.hero h1, .section-heading h2, .split h2, .cta h2, .contact-grid h2 { line-height: 1.05; margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); max-width: 12ch; }
.hero p { font-size: 1.1rem; max-width: 58ch; color: #e4e9ef; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.6rem 0; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 0.75rem; padding: 0; margin: 1.25rem 0 0; list-style: none;
}
.hero-points li {
  padding: 0.6rem 0.9rem; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  background: rgba(255,255,255,0.06); color: #f4f7fb; font-weight: 600;
}

.trust-bar { background: #0d1117; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1rem 0; }
.trust-grid div { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 1rem 1.15rem; }
.trust-grid strong { display: block; margin-bottom: 0.25rem; }
.trust-grid span { color: var(--muted); }

.section { padding: 5.5rem 0; }
.section-dark { background: #0d1117; }
.section-heading { margin-bottom: 2rem; max-width: 720px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line); border-radius: 24px; padding: 1.5rem; box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; margin-bottom: 0.7rem; }
.card p { color: var(--muted); margin: 0; }

.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gallery figure {
  margin: 0; background: var(--panel); border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }

.split {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: center;
}
.split h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.split p { color: var(--muted); }
.checklist { display: grid; gap: 0.8rem; margin-top: 1.4rem; }
.checklist div {
  padding: 1rem 1rem 1rem 1.2rem; border-left: 3px solid var(--red);
  background: var(--panel); border-radius: 0 14px 14px 0;
}
.about-image-wrap { min-height: 100%; }
.about-image {
  width: 100%; height: 100%; max-height: 640px; object-fit: cover; border-radius: 28px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}

.cta { padding: 0 0 5.5rem; }
.cta-box {
  background: linear-gradient(135deg, #1b1f27, #0d1117);
  border: 1px solid var(--line); border-radius: 30px; padding: 2rem; box-shadow: var(--shadow);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start;
}
.contact-box {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 1.25rem;
}
.contact-box p { margin: 0.4rem 0; color: var(--muted); }
.contact-form {
  display: grid; gap: 1rem; background: var(--panel); border: 1px solid var(--line);
  border-radius: 24px; padding: 1.25rem;
}
.contact-form label { display: grid; gap: 0.45rem; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.95rem 1rem; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12);
  background: #0c0f14; color: white; font: inherit;
}
.contact-form textarea { resize: vertical; }

.site-footer { border-top: 1px solid var(--line); padding: 1.15rem 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; color: var(--muted); }

@media (max-width: 960px) {
  .cards, .gallery, .split, .contact-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  nav { display: none; }
  .hero { min-height: 78vh; }
  .cards, .gallery, .split, .contact-grid, .trust-grid { grid-template-columns: 1fr; }
  .section { padding: 4.25rem 0; }
  .hero-content { padding: 5rem 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
