@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --primary: #c8102e;
  --primary-dark: #9b0c21;
  --primary-light: #e8193d;
  --accent: #c47b00;
  --accent-light: #f59e0b;
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-section: #f2f4f8;
  --bg-card: #ffffff;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --max-w: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: min(var(--max-w), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-name {
  font-size: 1.02rem;
  font-family: var(--font-display);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(200, 16, 46, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  width: 18px;
  height: 2px;
  display: block;
  position: relative;
  border-radius: 999px;
  background: currentColor;
  transition: var(--transition);
  content: "";
}

.hamburger span::before {
  position: absolute;
  top: -6px;
}

.hamburger span::after {
  position: absolute;
  top: 6px;
}

.hamburger.open span {
  background: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--text);
}

.hamburger.open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--text);
}

.mobile-panel {
  display: none;
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding: 48px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.soft {
  background: var(--bg-section);
}

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

.narrow {
  max-width: 860px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span::before {
  color: var(--text-light);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 10px 18px rgba(200, 16, 46, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(200, 16, 46, 0.32);
}

.btn-secondary:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.btn-outline:hover {
  color: var(--primary);
  border-color: rgba(200, 16, 46, 0.38);
  background: rgba(200, 16, 46, 0.06);
}

.hero-video {
  min-height: calc(100vh - 74px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-video::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(200, 16, 46, 0.36), transparent 35%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.86));
  content: "";
}

.hero-content {
  width: min(960px, calc(100% - 32px));
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
}

.hero-content .eyebrow,
.hero-content .lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero-content .lead {
  margin-right: auto;
  margin-left: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.page-hero {
  padding: 72px 0 64px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(155, 12, 33, 0.94), rgba(17, 24, 39, 0.92)),
    linear-gradient(90deg, var(--primary), var(--accent));
}

.page-hero .breadcrumb a,
.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .breadcrumb span:last-child {
  color: #ffffff;
}

.page-hero .lead,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.meta-pill,
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.92rem;
  font-weight: 800;
}

.price-pill {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.26);
}

.trust-bar {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.trust-grid {
  width: min(var(--max-w), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #159947;
  font-size: 0.84rem;
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.grid.sectors,
.grid.values,
.grid.provinces {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-card,
.sector-card,
.value-card,
.province-card,
.detail-card,
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.service-card:hover,
.sector-card:hover,
.value-card:hover,
.province-card:hover,
.detail-card:hover,
.how-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-section);
}

.service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.price-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 900;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.card-body p {
  color: var(--text-muted);
}

.card-footer {
  margin-top: auto;
  padding-top: 10px;
  color: var(--primary);
  font-weight: 900;
}

.sector-card,
.value-card,
.province-card,
.detail-card,
.how-step {
  padding: 24px;
}

.sector-card {
  text-align: center;
}

.sector-detail-card {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: 28px 24px 26px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, 0.04), rgba(255, 255, 255, 0) 120px),
    #ffffff;
}

.sector-card-copy {
  display: grid;
  gap: 12px;
}

.sector-detail-card h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.12;
}

.sector-detail-card p {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.8;
}

.sector-icon,
.value-icon,
.province-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(200, 16, 46, 0.08);
  font-size: 1.9rem;
}

.sector-card p,
.value-card p,
.province-card p,
.detail-card p,
.how-step p {
  color: var(--text-muted);
}

.sector-detail-card .sector-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.12), rgba(244, 167, 0, 0.18));
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.08);
}

.city-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.city-chip:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.035);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 32px;
  align-items: start;
}

.feature-list,
.examples-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li,
.examples-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-muted);
  font-weight: 700;
}

.sector-examples {
  gap: 12px;
  margin-top: 0;
}

.sector-examples li {
  align-items: center;
  min-height: 72px;
  padding: 16px 14px;
  border-color: rgba(200, 16, 46, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.98)),
    #ffffff;
  color: #516174;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.05);
  transition: var(--transition);
}

.sector-examples li:hover {
  border-color: rgba(200, 16, 46, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(17, 24, 39, 0.08);
}

.sector-examples .check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  font-size: 0.8rem;
  background: linear-gradient(135deg, #159947, #33b068);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.1;
}

.stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(200, 16, 46, 0.08);
  transition: var(--transition);
}

.faq-toggle::before {
  content: "+";
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  color: #ffffff;
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-item.open .faq-toggle::before {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.cta-banner {
  margin: 0;
  padding: 44px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(155, 12, 33, 0.97), rgba(17, 24, 39, 0.97)),
    linear-gradient(90deg, var(--primary), var(--accent));
}

.cta-inner {
  width: min(var(--max-w), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #111827;
}

.footer-grid {
  width: min(var(--max-w), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 58px 0 36px;
}

.footer-grid h3 {
  color: #ffffff;
  font-size: 1rem;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  transition: var(--transition);
}

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

.footer-bottom {
  width: min(var(--max-w), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.sector-card,
.city-chip,
.value-card,
.how-step {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

@media (max-width: 1080px) {
  .grid.services,
  .grid.sectors,
  .grid.values,
  .grid.provinces {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-cta {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 0;
  }

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

@media (max-width: 820px) {
  h1 {
    font-size: clamp(2.25rem, 14vw, 4rem);
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: var(--transition);
    visibility: hidden;
  }

  .mobile-panel.open {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-panel a {
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 800;
  }

  .mobile-panel a.active,
  .mobile-panel a:hover {
    color: var(--primary);
    background: rgba(200, 16, 46, 0.08);
  }

  .section {
    padding: 58px 0;
  }

  .hero-video {
    min-height: calc(100vh - 74px);
  }

  .trust-grid,
  .stats-strip,
  .feature-list,
  .examples-list,
  .grid.two,
  .split {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cta-actions .btn {
    flex: 1 1 210px;
  }
}

@media (max-width: 620px) {
  .nav-inner {
    width: min(var(--max-w), calc(100% - 24px));
  }

  .container,
  .trust-grid,
  .cta-inner,
  .footer-grid,
  .footer-bottom,
  .hero-content {
    width: min(var(--max-w), calc(100% - 24px));
  }

  .brand-name {
    max-width: 136px;
    overflow-wrap: anywhere;
    line-height: 1.1;
  }

  .grid.services,
  .grid.sectors,
  .grid.values,
  .grid.provinces,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

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

  .page-hero {
    padding: 48px 0;
  }

  .contact-form,
  .sector-card,
  .value-card,
  .province-card,
  .detail-card,
  .how-step {
    padding: 20px;
  }
}
