:root {
  --ink: #190c34;
  --muted: #667085;
  --primary: #190c34;
  --primary-dark: #0d061d;
  --gold: #c6a15b;
  --cream: #f6f4f8;
  --blue: #28114d;
  --line: #e6e8ec;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.navbar {
  box-shadow: 0 8px 24px rgba(24, 33, 47, 0.06);
}

.navbar-brand {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  background: var(--primary);
  border-radius: 8px;
  height: 48px;
  object-fit: contain;
  padding: 4px;
  width: 48px;
}

.nav-link {
  color: #344054;
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
}

.btn-whatsapp {
  --bs-btn-bg: #25d366;
  --bs-btn-border-color: #25d366;
  --bs-btn-color: #0b2415;
  --bs-btn-hover-bg: #1fb957;
  --bs-btn-hover-border-color: #1fb957;
  --bs-btn-hover-color: #07180e;
  --bs-btn-active-bg: #199a49;
  --bs-btn-active-border-color: #199a49;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.34);
  color: #0b2415;
  display: inline-flex;
  font-size: 1.75rem;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 24px;
  width: 62px;
  z-index: 1040;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #1fb957;
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(25, 12, 52, 0.9), rgba(25, 12, 52, 0.62), rgba(25, 12, 52, 0.28)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=82") center / cover;
  min-height: 720px;
  position: relative;
}

.min-vh-90 {
  min-height: 90vh;
}

.hero-section h1 {
  font-size: clamp(2.45rem, 4vw, 5.15rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 980px;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.hero-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  max-width: 820px;
}

.hero-metrics div {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 1.1rem;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
}

.section-kicker {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.section-text {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.about-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(198, 161, 91, 0.22), transparent 34%),
    linear-gradient(135deg, #190c34 0%, #28114d 100%);
  overflow: hidden;
  position: relative;
}

.about-section::after {
  background: #f6f4f8;
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 34%;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-title {
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.about-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 720px;
}

.about-panel {
  background: #fff;
  border: 1px solid rgba(25, 12, 52, 0.08);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(25, 12, 52, 0.18);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.about-logo {
  background: var(--primary);
  border-radius: 8px;
  display: block;
  margin-bottom: 1.25rem;
  max-width: 156px;
  padding: 0.75rem;
  width: 100%;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.about-highlights div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.about-highlights i {
  color: var(--gold);
  font-size: 1.45rem;
}

.about-highlights h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-top: 0.65rem;
}

.about-highlights p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-gold {
  color: var(--gold);
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(24, 33, 47, 0.06);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 20px 48px rgba(24, 33, 47, 0.12);
  transform: translateY(-4px);
}

.service-card > i {
  align-items: center;
  background: rgba(15, 107, 103, 0.1);
  border-radius: 8px;
  color: var(--primary);
  display: inline-flex;
  font-size: 1.55rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 48px;
}

.service-card h3,
.benefit-item h3,
.step-item h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.service-card p,
.service-card li,
.benefit-item p,
.step-item p,
.accordion-body {
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul {
  margin-bottom: 0;
  padding-left: 1.15rem;
}

.image-band {
  padding: 5rem 0;
}

.image-band img {
  min-height: 520px;
  width: 100%;
}

.insight-panel {
  background: var(--blue);
  border-radius: 8px;
  color: #fff;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.insight-panel .section-kicker {
  color: var(--gold);
}

.check-list {
  display: grid;
  gap: 1rem;
}

.check-list p {
  align-items: flex-start;
  display: flex;
  gap: 0.75rem;
  margin: 0;
}

.check-list i {
  color: var(--gold);
  flex: 0 0 auto;
  font-size: 1.25rem;
}

.bg-dark-blue {
  background:
    linear-gradient(135deg, rgba(40, 17, 77, 0.98), rgba(25, 12, 52, 0.98)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.step-item {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.5rem;
}

.step-item span {
  color: var(--gold);
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.step-item p {
  color: rgba(255, 255, 255, 0.72);
}

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

.document-grid div {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  font-weight: 700;
  gap: 0.9rem;
  min-height: 86px;
  padding: 1.1rem;
}

.document-grid i {
  color: var(--primary);
  font-size: 1.35rem;
}

.benefit-item {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem;
}

.benefit-item i {
  color: var(--gold);
  flex: 0 0 auto;
  font-size: 1.55rem;
}

.accordion-item {
  border-color: var(--line);
}

.accordion-button {
  color: var(--ink);
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  background: rgba(15, 107, 103, 0.08);
  color: var(--primary-dark);
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(25, 12, 52, 0.96), rgba(40, 17, 77, 0.9)),
    url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.contact-lines {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
}

.contact-lines p {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  margin: 0;
}

.contact-lines i {
  color: var(--gold);
}

.contact-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.footer-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--primary-dark);
  text-decoration: underline;
}

.cookie-banner {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 24px 70px rgba(25, 12, 52, 0.22);
  display: none;
  gap: 1rem;
  left: 18px;
  max-width: 760px;
  padding: 1rem;
  position: fixed;
  right: 104px;
  z-index: 1050;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner h2 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.cookie-banner p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.cookie-banner a {
  color: var(--primary);
  font-weight: 700;
}

.privacy-hero {
  background:
    linear-gradient(120deg, rgba(25, 12, 52, 0.95), rgba(40, 17, 77, 0.88)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.privacy-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0;
}

.privacy-content {
  color: var(--ink);
}

.privacy-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-top: 2rem;
}

.privacy-content p {
  color: var(--muted);
  line-height: 1.75;
}

.privacy-callout {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 1rem;
}

.form-control,
.form-select {
  border-color: #d0d5dd;
  border-radius: 8px;
  min-height: 48px;
}

textarea.form-control {
  min-height: 120px;
}

.client-placeholder {
  align-items: center;
  display: flex;
  min-height: 100vh;
}

.client-logo {
  background: var(--primary);
  border-radius: 8px;
  max-width: 132px;
  padding: 0.75rem;
  width: 100%;
}

@media (max-width: 991.98px) {
  .about-section {
    background: linear-gradient(180deg, #190c34 0%, #28114d 100%);
  }

  .about-section::after {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .image-band img {
    min-height: 340px;
  }

  .cookie-banner {
    align-items: stretch;
    bottom: 12px;
    flex-direction: column;
    left: 12px;
    right: 12px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand span {
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-section h1 {
    font-size: 2.35rem;
  }

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

  .btn-lg {
    width: 100%;
  }
}
