:root {
  --vc-red: #d8232a;
  --vc-dark: #151821;
  --vc-mid: #2b303b;
  --vc-light: #f4f5f7;
  --vc-accent: #f6b217;
  --vc-text: #222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: var(--vc-text);
  line-height: 1.6;
}

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

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

/* Top Bar */

.top-bar {
  background: var(--vc-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.4rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.top-link {
  opacity: 0.9;
}

.top-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.search-box input {
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  border: 1px solid #444;
  background: #1f2330;
  color: #fff;
  font-size: 0.8rem;
  min-width: 150px;
}

.search-box button {
  border: none;
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  background: var(--vc-red);
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 600;
}

.search-box button:hover {
  background: #b5181f;
}

/* Header / Nav */

header {
  background: #ffffff;
  border-bottom: 1px solid #e0e2e7;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--vc-red), #f55e63);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::before,
.logo-icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 24px;
  border-radius: 3px;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.06);
}

.logo-icon::before {
  left: 6px;
  transform: skewY(-10deg);
}

.logo-icon::after {
  right: 6px;
  transform: skewY(10deg);
}

.logo-text h1 {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vc-dark);
}

.logo-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #777;
}

nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a {
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
  color: #444;
}

nav a:hover,
nav a.active {
  border-bottom-color: var(--vc-red);
  color: var(--vc-red);
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #fce7e7 0, #f4f5f7 45%, #ffffff 100%);
  border-bottom: 1px solid #e9ebf0;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e0e2e7;
  margin-bottom: 0.75rem;
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--vc-accent);
}

.hero h2 {
  font-size: 2.15rem;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: var(--vc-dark);
}

.hero p {
  font-size: 0.98rem;
  max-width: 32rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-primary {
  background: var(--vc-red);
  color: #fff;
}

.btn-primary:hover {
  background: #b5181f;
}

.btn-secondary {
  background: #fff;
  border: 1px solid #d1d5de;
  color: #444;
}

.btn-secondary:hover {
  border-color: var(--vc-red);
  color: var(--vc-red);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: #666;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat strong {
  font-size: 1rem;
  color: var(--vc-dark);
}

.hero-image {
  position: relative;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: url("https://images.pexels.com/photos/585419/pexels-photo-585419.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 45%);
}

.hero-image-text {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
}

.hero-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(216, 35, 42, 0.9);
}

/* Subpage hero */

.sub-hero {
  background: #f4f5f7;
  border-bottom: 1px solid #e0e2e7;
}

.sub-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 1.5rem;
}

.sub-hero-title {
  font-size: 1.6rem;
  color: var(--vc-dark);
  margin-bottom: 0.25rem;
}

.sub-hero-subtitle {
  font-size: 0.95rem;
  color: #666;
}

/* Layout */

.page-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.section-header h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vc-dark);
}

.section-header span {
  font-size: 0.8rem;
  color: #888;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.section-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e2e7;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(11, 15, 25, 0.03);
}

.section-card h4 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  color: var(--vc-dark);
}

.section-card p {
  font-size: 0.88rem;
  color: #555;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.list-compact {
  list-style: none;
  padding-left: 0;
  font-size: 0.88rem;
}

.list-compact li {
  padding: 0.18rem 0;
}

.list-compact li::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--vc-red);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #f1f2f6;
  font-size: 0.75rem;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

/* Contact form */

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.contact-form label {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.2rem;
  color: #555;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #d1d5de;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */

footer {
  background: var(--vc-mid);
  color: #ced1db;
  font-size: 0.78rem;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: #ced1db;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    border-bottom: none;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 0.4rem;
    border-top: 1px solid #e0e2e7;
  }

  nav.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    padding-top: 1.5rem;
  }
}

@media (max-width: 540px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
