:root {
  --bg: #ffffff;
  --text: #171717;
  --muted: #5f6470;
  --line: #e7e7ec;
  --yellow: #f4c331;
  --yellow-soft: #fff4ce;
  --dark: #0f1720;
  --shadow: 0 18px 50px rgba(13, 20, 33, 0.08);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { text-decoration: none; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,231,236,0.85);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  padding: 4px;
}
.brand-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}
.brand-tag {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 999px;
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #ffd95e);
  color: #111;
  box-shadow: 0 12px 28px rgba(244,195,49,0.3);
}
.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}
.btn-dark {
  background: var(--dark);
  color: #fff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 36px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.5;
}
.hero::before {
  width: 260px; height: 260px;
  background: rgba(244,195,49,0.22);
  top: -40px; left: -60px;
}
.hero::after {
  width: 300px; height: 300px;
  background: rgba(255,101,101,0.12);
  right: -80px; bottom: -30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
}
.eyebrow {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: #906700;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: 1.02;
  margin: 0 0 18px;
}
.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 24px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-badges span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-media {
  position: relative;
  min-height: 610px;
}
.hero-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.main-shot {
  height: 100%;
  padding: 12px;
}
.small-shot {
  position: absolute;
  right: -8px;
  bottom: 24px;
  width: 42%;
  padding: 8px;
}
.floating-card {
  transform: rotate(-3deg);
}

.brand-banner {
  padding: 18px 0 6px;
}
.banner-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #fffdf6);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.banner-logo-card {
  border-radius: 24px;
  background: #fff;
  padding: 16px;
  border: 1px solid var(--line);
}
.banner-logo-card img {
  width: 100%;
  object-fit: contain;
}
.banner-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.banner-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section { padding: 88px 0; }
.alt-section {
  background: linear-gradient(180deg, #fffdf6 0%, #ffffff 100%);
}
.section-heading {
  margin-bottom: 34px;
}
.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
}

.cards {
  display: grid;
  gap: 18px;
}
.four-up {
  grid-template-columns: repeat(4, 1fr);
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #ffe38d);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}
.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.price-card {
  border-radius: 30px;
  padding: 34px;
  color: #111;
  box-shadow: var(--shadow);
}
.price-card.auto {
  background: linear-gradient(135deg, #fff4c2, #ffd44b);
}
.price-card.moto {
  background: linear-gradient(135deg, #ffffff, #f4f6f9);
  border: 1px solid var(--line);
}
.price-label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.price-main {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}
.price-note {
  margin: 0 0 18px;
  line-height: 1.7;
  font-weight: 500;
}
.km-box {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.steps {
  display: grid;
  gap: 14px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: #fff;
}
.step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 auto;
}
.step p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.process-visual {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px;
}
.process-visual img {
  width: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.showcase-section {
  padding-top: 16px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.showcase-stack {
  display: grid;
  gap: 18px;
}
.showcase-card {
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 10px;
}
.showcase-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: contain;
  background: #fff;
}
.large-card img { min-height: 100%; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery-item {
  grid-column: span 4;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 10px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
}
.gallery-item.tall {
  grid-column: span 5;
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 8;
}
.logo-frame {
  background: linear-gradient(135deg, #fff, #fff7dc);
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.contact-copy,
.social-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-copy h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}
.contact-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fafafc;
  border: 1px solid var(--line);
}
.social-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.social-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.social-card a {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}
.social-card a:hover {
  background: #fff7db;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  background: linear-gradient(135deg, #24d366, #1fa855);
  color: #fff;
  padding: 15px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(36, 211, 102, 0.35);
}

@media (max-width: 1080px) {
  .hero-grid,
  .process-grid,
  .contact-grid,
  .showcase-grid,
  .banner-grid,
  .pricing-grid,
  .four-up {
    grid-template-columns: 1fr;
  }
  .hero-media { min-height: auto; }
  .small-shot {
    position: static;
    width: 62%;
    margin: 16px auto 0;
  }
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 6;
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-copy h1 { font-size: 2.25rem; }
  .section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 6;
  }
  .brand {
    max-width: calc(100% - 54px);
  }
  .brand-name { font-size: 1rem; }
  .brand-tag { font-size: 0.76rem; }
}
