:root {
  --blue-950: #06245d;
  --blue-900: #082e74;
  --blue-700: #1157ac;
  --blue-500: #07a9e8;
  --blue-100: #eaf7ff;
  --green: #25d366;
  --ink: #12213b;
  --muted: #5e6c84;
  --line: #d9e6f4;
  --white: #ffffff;
  --soft: #f5fbff;
  --shadow: 0 18px 42px rgba(8, 46, 116, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  padding: 14px clamp(20px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(132px, 15vw, 190px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: var(--blue-950);
  font-size: 0.79rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  padding: 9px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-500);
}

.header-whatsapp {
  display: grid;
  gap: 2px;
  min-width: 168px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(8, 46, 116, 0.2);
}

.header-whatsapp span {
  font-size: 0.73rem;
  opacity: 0.78;
}

.header-whatsapp strong {
  font-size: 0.93rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-primary {
  color: var(--white);
  background: var(--blue-900);
  box-shadow: 0 14px 28px rgba(8, 46, 116, 0.2);
}

.button-secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 2px solid var(--blue-700);
}

.button-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
}

.button-light {
  color: var(--blue-900);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(460px, 1.14fr);
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #f2f9ff 44%, #dff2ff 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 72px) clamp(24px, 5vw, 64px);
}

.hero-media {
  position: relative;
  min-height: 500px;
  background: linear-gradient(90deg, #ffffff 0%, #f2f9ff 38%, #dff2ff 100%);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.42) 16%, rgba(255, 255, 255, 0) 34%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 68% 30%;
}

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

.hero-copy .eyebrow {
  font-size: 1.17rem;
}

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

h1 {
  max-width: 590px;
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: clamp(1.65rem, 3.05vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--blue-950);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  max-width: 560px;
  margin: 8px 0 28px;
  color: var(--blue-950);
  font-weight: 800;
}

.feature-list span {
  position: relative;
  padding-left: 24px;
}

.feature-list span::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  content: "";
  border: 2px solid var(--blue-900);
  border-radius: 50%;
}

.feature-list span::after {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 5px;
  height: 8px;
  content: "";
  border: solid var(--blue-900);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stats-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1200px;
  margin: -42px auto 0;
  padding: 0 clamp(18px, 3vw, 30px);
}

.stats-band div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  align-content: center;
  padding: 20px 30px;
  color: var(--white);
  background: var(--blue-900);
}

.stats-band div:first-child {
  border-radius: 12px 0 0 12px;
}

.stats-band div:last-child {
  border-radius: 0 12px 12px 0;
}

.stats-band strong {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.about-section,
.stores-section,
.services-section,
.highlight-grid,
.cta-grid,
.business-section,
.instagram-section,
.contact-section {
  padding: clamp(54px, 7vw, 88px) clamp(20px, 4vw, 52px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-section {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.about-story {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  color: #33415f;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(8, 46, 116, 0.08);
}

.about-story p {
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.2vw, 1.13rem);
}

.about-story strong {
  display: block;
  margin-top: 26px;
  padding-top: 24px;
  color: var(--blue-900);
  border-top: 1px solid var(--line);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.35;
}

h2 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.stores-section {
  background: var(--white);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.store-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.store-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  background: var(--blue-100);
}

.store-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.store-body span {
  color: var(--blue-700);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-body h3 {
  min-height: 54px;
  margin: 6px 0 14px;
  color: var(--blue-950);
  font-size: 1.26rem;
  line-height: 1.16;
}

.store-body ul,
.dark-panel ul,
.icon-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-body li,
.dark-panel li,
.icon-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.store-body li::before,
.dark-panel li::before,
.icon-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue-700);
  font-weight: 900;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.store-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  color: var(--blue-900);
  border: 2px solid #b7dcff;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-actions a:nth-child(2) {
  color: var(--white);
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.services-section {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.services-section .section-heading {
  max-width: none;
}

.services-section h2 {
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
}

.services-grid article {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.services-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 92px;
  overflow: hidden;
  background: var(--blue-100);
  border: 4px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(8, 46, 116, 0.12);
}

.services-grid span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  line-height: 1.2;
  white-space: nowrap;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  background: var(--soft);
}

.dark-panel,
.light-panel {
  min-height: 320px;
  padding: 30px;
  border-radius: 12px;
}

.dark-panel {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), #031947);
}

.dark-panel h2 {
  color: var(--white);
}

.dark-panel li {
  color: rgba(255, 255, 255, 0.86);
}

.dark-panel li::before {
  color: var(--white);
}

.light-panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(8, 46, 116, 0.08);
}

.light-panel p {
  color: var(--muted);
  font-weight: 700;
}

.autoservice-guide {
  display: grid;
  gap: 18px;
}

.autoservice-guide .eyebrow {
  margin-bottom: -4px;
}

.autoservice-guide h2 {
  margin-bottom: 0;
}

.guide-lead {
  margin-bottom: 0;
  font-size: 1.1rem;
}

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

.guide-columns h3 {
  margin-bottom: 14px;
  color: var(--blue-900);
  font-size: 1.35rem;
}

.guide-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
}

.guide-steps li {
  padding-left: 4px;
  color: var(--blue-900);
  font-weight: 900;
}

.guide-steps strong {
  display: block;
  margin-bottom: 3px;
}

.guide-steps span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 26px;
  border-radius: 14px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto 26px;
}

.business-section,
.instagram-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: space-between;
  min-height: 280px;
  padding: clamp(34px, 4vw, 52px);
  border-radius: 14px;
}

.business-section,
.instagram-section {
  background: linear-gradient(135deg, #edf8ff, #ffffff);
  border: 1px solid var(--line);
}

.business-section h2,
.instagram-section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.business-section .button,
.instagram-section .button {
  justify-self: start;
}

.business-section p,
.instagram-section p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.contact-section .eyebrow,
.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero,
  .highlight-grid,
  .guide-columns {
    grid-template-columns: 1fr;
  }

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

  .hero-media img {
    min-height: 430px;
    object-position: 64% 30%;
  }

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

  .stats-band div:first-child,
  .stats-band div:last-child {
    border-radius: 0;
  }

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

  .services-section h2,
  .services-grid h3 {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand img {
    width: 148px;
  }

  .main-nav {
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.72rem;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-whatsapp {
    width: min(100%, 260px);
    min-width: 0;
    justify-items: center;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy {
    padding: 34px 20px 28px;
  }

  .hero-copy .eyebrow {
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .feature-list,
  .stores-grid,
  .cta-grid,
  .business-section,
  .instagram-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-list {
    gap: 10px;
    font-size: 0.95rem;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .services-grid span {
    width: min(150px, 100%);
    height: 110px;
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
    max-height: 320px;
    object-position: 64% 36%;
  }

  .hero-media::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.26) 24%, rgba(255, 255, 255, 0) 48%);
  }

  .stats-band {
    margin-top: 0;
    padding: 0 16px;
    gap: 1px;
  }

  .stats-band div {
    min-height: 86px;
    padding: 16px 14px;
  }

  .stats-band strong {
    font-size: 1.35rem;
  }

  .stats-band span {
    font-size: 0.82rem;
  }

  .about-section,
  .stores-section,
  .services-section,
  .highlight-grid,
  .cta-grid,
  .contact-section {
    padding: 42px 16px;
  }

  h2 {
    font-size: 2rem;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .about-story,
  .dark-panel,
  .light-panel,
  .business-section,
  .instagram-section,
  .contact-section {
    padding: 24px;
  }

  .store-body h3 {
    min-height: 0;
  }

  .store-actions a {
    width: 100%;
  }

  .guide-steps {
    padding-left: 20px;
  }

  .business-section,
  .instagram-section {
    min-height: 0;
  }

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

@media (max-width: 420px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid span {
    width: 100%;
    height: 150px;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }
}
