:root {
  --color-navy: #0b0a47;
  --color-navy-soft: #21242c;
  --color-blue: #175dcf;
  --color-sky: #2574f4;
  --color-cyan: #06bbe0;
  --color-cyan-light: #1fd5f9;
  --color-ink: #2c2c2c;
  --color-border: #e2e4e9;
  --color-surface: #ffffff;
  --color-surface-alt: #f8fbff;
  --color-process-bg: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  --shadow-soft: 0 20px 60px -20px rgba(38, 68, 115, 0.15);
  --shadow-card: 0 4px 20px -4px rgba(38, 68, 115, 0.08);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --header-height: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
.product-card[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-ink);
  background: #ffffff;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 10, 71, 0.08);
}

.nav-shell {
  max-width: 1400px;
}

.brand-logo {
  width: 164px;
  height: auto;
}

.brand-copy {
  color: var(--color-navy);
  font-size: 0.875rem;
  line-height: 1.2;
}

.nav-link {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem !important;
}

.nav-link:hover,
.nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--color-navy);
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-dropdown-toggle::after {
  margin-left: 0.15rem;
  border-top-width: 0.32em;
}

.dropdown-menu-nav {
  min-width: 14rem;
  padding: 0.6rem;
  border: 1px solid rgba(11, 10, 71, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 40px -24px rgba(11, 10, 71, 0.25);
}

.dropdown-menu-nav .dropdown-item {
  border-radius: 0.8rem;
  color: var(--color-navy-soft);
  font-weight: 600;
  padding: 0.85rem 1rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dropdown-menu-nav .dropdown-item:hover,
.dropdown-menu-nav .dropdown-item:focus {
  background: linear-gradient(135deg, rgba(37, 116, 244, 0.1), rgba(6, 187, 224, 0.12));
  color: var(--color-navy);
  transform: translateX(2px);
}

.dropdown-menu-nav .dropdown-item:active {
  background: rgba(37, 116, 244, 0.18);
  color: var(--color-navy);
}

.btn-brand {
  background: var(--color-navy);
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-weight: 700;
  padding: 0.95rem 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #17165f;
  border-color: #17165f;
  box-shadow: var(--shadow-card);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-nav {
  padding: 0.8rem 1.5rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.35);
  color: #ffffff;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 48px rgba(18, 140, 126, 0.42);
  color: #ffffff;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 4rem) 0 7rem;
  background: #ffffff;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.9;
}

.hero-orb-left {
  left: -180px;
  top: 4rem;
  width: 913px;
  height: 913px;
  background: rgba(6, 187, 224, 0.1);
}

.hero-orb-right {
  right: -120px;
  top: -280px;
  width: 1005px;
  height: 1005px;
  background: rgba(37, 116, 244, 0.1);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(11, 10, 71, 0.9);
  border-radius: var(--radius-pill);
  background: rgba(37, 116, 244, 0.15);
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 600;
}

.eyebrow-pill-soft {
  border-color: rgba(37, 116, 244, 0.2);
  background: rgba(37, 116, 244, 0.08);
}

.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-size: 0.95rem;
  line-height: 1;
}

.hero-title {
  max-width: 780px;
  margin-bottom: 1.75rem;
  color: var(--color-navy-soft);
  font-size: clamp(3rem, 5.7vw, 4.875rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-title-inner {
  max-width: 720px;
  font-size: clamp(2.6rem, 4.3vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hero-title span,
.section-heading h2 span {
  display: inline-block;
  background: linear-gradient(132deg, var(--color-navy) 0%, var(--color-cyan) 74%, var(--color-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title .hero-title-accent {
  display: inline;
}

.hero-title .hero-title-tail {
  display: inline;
  color: inherit;
}

.hero-copy {
  max-width: 576px;
  margin-bottom: 2rem;
  color: var(--color-ink);
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-copy strong {
  color: var(--color-sky);
  font-weight: 800;
}

.hero-benefits {
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 100%;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(37, 116, 244, 0.15);
  flex-shrink: 0;
}

.benefit-icon i {
  color: var(--color-blue);
  font-size: 1rem;
  line-height: 1;
}

.benefit-item strong {
  display: block;
  color: var(--color-navy-soft);
  font-size: 0.95rem;
  line-height: 1.2;
}

.benefit-item small {
  color: var(--color-blue);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-vehicle-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 76%;
  border-top-left-radius: 61px;
  border-top-right-radius: 61px;
  border-bottom-left-radius: 61px;
  background: #5593f6;
}

.hero-vehicle {
  position: absolute;
  left: -12%;
  bottom: 10%;
  width: 132%;
  max-width: none;
}

.hero-card {
  position: absolute;
  top: 11%;
  right: 9%;
  z-index: 2;
  width: min(260px, 72%);
  padding: 1.3rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-cyan-light) 100%);
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
}

.hero-card-badge i {
  font-size: 1.25rem;
  line-height: 1;
}

.hero-card span {
  display: block;
  color: var(--color-blue);
  font-size: 0.85rem;
}

.hero-card strong {
  display: block;
  color: var(--color-navy-soft);
  font-size: 2rem;
  line-height: 1.1;
}

.hero-card p {
  margin: 0.9rem 0 0;
  color: var(--color-blue);
  font-size: 0.85rem;
  line-height: 1.4;
}

.section {
  padding: 7rem 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-heading-left {
  margin: 0 0 4rem;
}

.section-heading h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--color-navy-soft);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading p,
.faq-intro p,
.contact-copy p {
  margin-top: 1rem;
  color: #667085;
  font-size: 1.125rem;
}

.products-section {
  background: #ffffff;
}

.service-hero .hero-title {
  max-width: 840px;
}

.service-hero .row {
  align-items: flex-start !important;
}

.service-copy {
  max-width: 640px;
}

.service-cta-group {
  margin-bottom: 2rem;
}

.service-intro-section {
  background: #ffffff;
}

.service-intro-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-card);
}

.service-intro-copy {
  margin: 0;
  color: #4b5565;
  font-size: 1.1rem;
  line-height: 1.8;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.service-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(37, 116, 244, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  color: var(--color-navy-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.service-pill-item i {
  color: var(--color-sky);
  font-size: 1rem;
}

.service-visual {
  min-height: 620px;
}

.service-vehicle-panel {
  width: 82%;
  height: 78%;
  background: linear-gradient(180deg, #5593f6 0%, #2574f4 100%);
}

.service-vehicle {
  left: -8%;
  bottom: 8%;
  width: 124%;
}

.service-vehicle.interior{
  width: 100%;
}

.service-vehicle.moto{
  width: 85%;
}

.service-hero-card {
  right: 6%;
}

.service-visual-note {
  position: absolute;
  bottom: 1.75rem;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  color: var(--color-navy-soft);
  font-weight: 600;
}

.service-visual-note i {
  color: var(--color-cyan);
  font-size: 1.05rem;
}

.legal-hero .hero-title {
  max-width: 760px;
}

.legal-intro-copy {
  max-width: 640px;
}

.legal-summary-card,
.legal-card {
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-card);
}

.legal-summary-card {
  padding: 2rem;
}

.legal-summary-card h2 {
  margin: 0 0 1rem;
  color: var(--color-navy-soft);
  font-size: 1.6rem;
  font-weight: 800;
}

.legal-summary-card p {
  margin: 1rem 0 0;
  color: #667085;
  line-height: 1.7;
}

.legal-summary-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-summary-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-navy-soft);
  font-weight: 600;
}

.legal-summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
}

.legal-section {
  background: #ffffff;
}

.legal-section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.legal-card {
  padding: 2.5rem;
}

.legal-heading {
  max-width: 860px;
  margin-bottom: 2rem;
}

.legal-card h3 {
  margin: 2rem 0 0.85rem;
  color: var(--color-navy-soft);
  font-size: 1.45rem;
  font-weight: 800;
}

.legal-card h4 {
  margin: 1.5rem 0 0.65rem;
  color: var(--color-blue);
  font-size: 1.02rem;
  font-weight: 800;
}

.legal-card p,
.legal-card li,
.legal-card small {
  color: #4b5565;
  font-size: 1rem;
  line-height: 1.85;
}

.legal-card p + p {
  margin-top: 1rem;
}

.legal-list,
.legal-check-list,
.legal-check-grid {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-list li + li,
.legal-check-list li + li,
.legal-check-grid li + li {
  margin-top: 0.5rem;
}

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

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

.legal-line {
  display: block;
  margin-top: 0.45rem;
  border-bottom: 1px solid rgba(11, 10, 71, 0.22);
  min-height: 1.5rem;
}

.legal-line-sm {
  max-width: 220px;
}

.legal-line-md {
  max-width: 360px;
}

.legal-line-lg {
  min-height: 2rem;
}

.legal-inline-note,
.legal-meta {
  color: var(--color-blue);
  font-weight: 600;
}

.legal-signature {
  margin-top: 2rem;
  max-width: 420px;
}

.legal-signature strong {
  display: block;
  margin-top: 0.9rem;
  color: var(--color-navy-soft);
}

.legal-disclaimer {
  margin-top: 2.25rem;
  padding: 1.6rem 1.75rem;
  border: 1px solid rgba(37, 116, 244, 0.12);
  border-radius: 1.5rem;
  background: rgba(37, 116, 244, 0.05);
}

.legal-disclaimer p {
  font-size: 0.96rem;
}

.service-benefits-section {
  background: #ffffff;
}

.service-benefit-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-card);
}

.service-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(37, 116, 244, 0.14), rgba(6, 187, 224, 0.14));
  color: var(--color-blue);
  font-size: 1.4rem;
}

.service-benefit-card h3 {
  margin-bottom: 0.85rem;
  color: var(--color-navy-soft);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-benefit-card p {
  margin: 0;
  color: #4b5565;
  line-height: 1.7;
}

.approval-section {
  background: var(--color-process-bg);
}

.approval-banner {
  padding: 3rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(31, 213, 249, 0.2), transparent 28%),
    linear-gradient(135deg, #0b0a47 0%, #175dcf 55%, #06bbe0 100%);
  box-shadow: var(--shadow-soft);
  color: #ffffff;
}

.approval-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
}

.approval-badge i {
  color: #aef2ff;
}

.approval-banner h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.approval-banner p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.7;
}

.requirements-section {
  background: #ffffff;
}

.requirements-copy {
  max-width: 520px;
}

.requirements-copy h2 {
  margin: 0;
  color: var(--color-navy-soft);
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.requirements-copy p {
  margin-top: 1rem;
  color: #667085;
  font-size: 1.05rem;
  line-height: 1.75;
}

.requirements-cta {
  margin-top: 1.5rem;
}

.requirements-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.requirement-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(226, 228, 233, 0.9);
}

.requirement-item-last {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.requirement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(37, 116, 244, 0.12), rgba(6, 187, 224, 0.14));
  color: var(--color-blue);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.requirement-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-navy-soft);
  font-size: 1.08rem;
}

.requirement-item p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.btn-contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--color-navy);
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.btn-contact-cta:hover,
.btn-contact-cta:focus {
  color: var(--color-navy);
}

.product-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
      display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.product-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.95rem;
  height: 4.95rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-sky) 0%, #5593f6 100%);

}

.product-icon-box img {
  width: 6rem;
  max-width: none;
}

.product-arrow {
  color: var(--color-blue);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.product-card h3,
.step-card h3,
.testimonial-author strong,
.site-footer h3 {
  color: var(--color-navy-soft);
}

.product-card h3,
.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.product-card p,
.step-card p,
.testimonial-card p {
  color: #4b5565;
  line-height: 1.65;
}

.btn-card {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.95rem 1.5rem;
}

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

.process-intro {
  margin-bottom: 4rem;
}

.process-heading {
  max-width: 760px;
  margin-bottom: 0;
}

.process-video-shell {
  max-width: 460px;
  margin-left: auto;
}

.process-video-card {
  padding: 1rem;
  border: 1px solid rgba(11, 10, 71, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.process-video-frame {
  overflow: hidden;
  border-radius: 1.4rem;
  background: var(--color-navy);
  aspect-ratio: 16 / 9;
}

.process-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.process-video-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0.25rem 0.1rem;
}

.process-video-copy span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 2.25rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(37, 116, 244, 0.08);
  color: var(--color-blue);
  font-size: 0.85rem;
  font-weight: 700;
}

.process-video-copy p {
  margin: 0;
  color: #667085;
  font-size: 0.98rem;
  line-height: 1.65;
}

.step-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  border: 1px solid rgba(11, 10, 71, 0.08);
  border-radius: var(--radius-xl);
  background: var(--color-navy);
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-cyan);
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.step-card h3,
.step-card p {
  color: #ffffff;
}

.testimonials-section {
  background: #ffffff;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.rating {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  color: var(--color-cyan);
}

.rating i {
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-author small {
  display: block;
  color: #667085;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sky), var(--color-cyan));
  color: #ffffff;
  font-weight: 700;
}

.faq-section {
  background: #ffffff;
}

.faq-intro {
  max-width: 535px;
}

.faq-accordion .accordion-item {
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-accordion .accordion-button {
  padding: 1.35rem 1.5rem;
  color: var(--color-navy-soft);
  background: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-navy);
  background: rgba(37, 116, 244, 0.04);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: #4b5565;
  line-height: 1.65;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(139deg, rgba(23, 93, 207, 0.99) 0%, rgba(37, 116, 244, 0.99) 50%, rgba(6, 187, 224, 0.99) 100%);
}

.contact-blur {
  position: absolute;
  left: -128px;
  top: 33%;
  width: 384px;
  height: 336px;
  border-radius: 50%;
  background: rgba(6, 187, 224, 0.1);
  filter: blur(32px);
}

.contact-copy,
.contact-copy h2,
.contact-copy p,
.contact-copy strong,
.contact-card strong {
  color: #ffffff;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(6, 187, 224, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(6, 187, 224, 0.15);
  color: var(--color-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-lead {
  color: rgba(255, 255, 255, 0.7) !important;
}

.contact-card-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(6, 187, 224, 0.2);
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-icon i {
  line-height: 1;
}

.contact-card span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  width: 100%;
  border: 0;
  min-height: 420px;
}

.map-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.map-overlay strong,
.map-overlay span,
.map-overlay a {
  display: block;
}

.map-overlay strong {
  color: var(--color-navy-soft);
}

.map-overlay span {
  color: #667085;
  font-size: 0.95rem;
}

.map-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--color-navy);
  font-weight: 700;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #ffffff;
}

.footer-logo {
  width: 164px;
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 440px;
  color: #667085;
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.65rem;
}

.footer-links a {
  color: var(--color-blue);
  font-weight: 500;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  margin: 0.4rem 0;
  color: #667085;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 86px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
  }

  .dropdown-menu-nav {
    margin-top: 0.35rem;
    border: 0;
    box-shadow: none;
    background: rgba(37, 116, 244, 0.04);
  }

  .process-video-shell {
    max-width: 100%;
    margin-left: 0;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 2.75rem);
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card {
    top: 0;
    right: 6%;
  }

  .hero-vehicle {
    left: -6%;
    width: 116%;
  }

  .service-visual {
    min-height: 500px;
  }

  .service-vehicle {
    left: -2%;
    width: 110%;
  }

  .approval-banner {
    padding: 2.25rem;
  }

  .service-intro-card {
    padding: 1.75rem;
  }

  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 992px) {
  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .hero-title .hero-title-tail {
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .hero-title,
  .section-heading h2,
  .faq-intro h2,
  .contact-copy h2 {
    letter-spacing: -0.04em;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .process-intro {
    margin-bottom: 3rem;
  }

  .process-video-shell {
    max-width: 100%;
    margin-left: 0;
  }

  .process-video-copy {
    flex-direction: column;
  }

  .legal-form-grid,
  .legal-check-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 0 auto 1.5rem;
  }

  .hero-vehicle-panel {
    width: 100%;
    height: 68%;
  }

  .hero-vehicle {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .service-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .service-pill-item {
    border-radius: 1rem;
  }

  .service-visual {
    min-height: 340px;
  }

  .service-vehicle {
    width: 100%;
  }

  .service-visual-note {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
  }

  .service-intro-copy {
    font-size: 1rem;
  }

  .benefit-item-last {
    border-right: 0;
  }

  .product-card,
  .step-card,
  .testimonial-card,
  .service-benefit-card,
  .requirements-card,
  .legal-card,
  .legal-summary-card {
    padding: 1.5rem;
  }

  .approval-banner {
    padding: 1.75rem;
  }

  .requirement-item {
    flex-direction: column;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}
