:root {
  --dark: #0b1220;
  --dark-2: #0f1b33;
  --light: #ffffff;
  --bg: #f6f7fb;
  --text: #0f172a;
  --muted: #667085;
  --border: #e5e7eb;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --warning: #f59e0b;
}

/* RESET */
* { box-sizing: border-box; }

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

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

/* CONTAINERS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* HEADER */
.site-header {
  background: var(--dark);
  color: var(--light);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 38px; /* change to 44px if you want it larger */
  width: auto;
  border-radius: 6px;
}

.brand-text h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.brand-text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.header-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* NAV */
.nav-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover { color: #fff; }

.nav-link.active {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 6px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-lg {
  padding: 12px 18px;
  border-radius: 14px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); }

.full { width: 100%; }

/* HERO (FIXED — no fade overlay) */
.hero-pro {
  background: var(--dark);
  color: white;
  padding: 36px 0 26px;
}

/* Smooth transition into light background */
.hero-pro::after {
  content: "";
  display: block;
  height: 28px;
  background: var(--bg);
  margin-top: 26px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  padding-bottom: 0;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-pro h2 {
  font-size: 38px;
  margin: 0 0 12px;
  line-height: 1.15;
}

.lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-highlights {
  display: grid;
  gap: 10px;
}

.highlight {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px;
}

.icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.h-title { font-weight: 800; }

.h-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* HERO CARD */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 16px;
}

.hero-card-title { font-weight: 800; }

.hero-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display: grid;
  gap: 10px;
}

.checklist li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
}

.small-muted {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* TRUST */
.trust { padding: 22px 0; }

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

.trust-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.trust-title { font-weight: 800; }

.trust-sub {
  font-size: 13px;
  color: var(--muted);
}

/* SECTIONS */
.section { padding: 28px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 12px;
}

.section h3 {
  margin: 0;
  font-size: 22px;
}

.link {
  font-weight: 800;
  color: var(--primary);
}

.link:hover { text-decoration: underline; }

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}

.stars {
  color: var(--warning);
  font-weight: 900;
}

.quote { margin: 10px 0 0; }

.byline {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* CTA */
.cta { padding: 24px 0 40px; }

.cta-row {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 22px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand { font-weight: 900; }

.footer-muted {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover { color: white; }

/* MOBILE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .trust-grid { grid-template-columns: 1fr; }
}
/* PHOTO GALLERY */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
  background: #fff;
}

.photo-grid img:hover {
  transform: scale(1.03);
}