:root {
  --bg: #f7f8fb;
  --fg: #101828;
  --muted: #f0f2f7;
  --primary: #1c5bff;
  --primary-strong: #1444c2;
  --accent: #10b981;
  --cta: #f26b2c;
  --cta-strong: #d35318;
  --border: #e3e8f0;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.topbar {
  display: flex;
  justify-content: center;
  padding: 14px 18px;
  background: #f7f8fb;
  border-bottom: 1px solid #e8ebf2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.topbar__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.brand__logo {
  height: 80px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  font-weight: 700;
  font-size: 18px;
}

.brand__tagline {
  font-size: 13px;
  color: #475467;
}

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

.pill__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(242, 107, 44, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(242, 107, 44, 0.4);
}

.pill--phone {
  background: #f26b2c;
}

.pill--wa {
  background: #1fa855;
  box-shadow: 0 8px 20px rgba(31, 168, 85, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 30px rgba(28, 91, 255, 0.25);
}

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

.btn--cta {
  background: linear-gradient(135deg, var(--cta), #f68b3c);
  box-shadow: 0 12px 30px rgba(242, 107, 44, 0.35);
}

.btn--cta:hover {
  background: linear-gradient(135deg, var(--cta-strong), #e36e28);
}

.hero {
  position: relative;
  min-height: 65vh;
  padding: 56px 24px 12px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(6, 12, 24, 0.55), rgba(6, 12, 24, 0.75)), var(--hero-bg, url('images/fondobody.jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 18, 32, 0.65) 40%, rgba(12, 18, 32, 0.35) 100%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 18, 32, 0.65) 40%, rgba(12, 18, 32, 0.35) 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero__media {
  display: none;
}

.hero__mobile-title {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.promo-bar {
  background: var(--cta);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 14px 12px;
}

.section--video {
  padding-top: 18px;
  padding-bottom: 24px;
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 36%;
  /* más alto con relación reducida */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 640px) {
  .video-embed {
    padding-top: 72%;
  }
}

.hero__content h1 {
  font-size: clamp(32px, 5vw, 46px);
  margin: 12px 0 16px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero__content {
  color: #f8fafc;
}

.lead {
  color: #e8edf5;
  font-size: 18px;
  margin-bottom: 22px;
  max-width: 640px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

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

.hero__form {
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 0 18px 32px;
    background-image: none;
    margin-top: 0;
  }

  .hero::before {
    display: none;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero__media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: calc((100vh - 140px) * 0.5 * 0.85);
    padding: 20px 16px;
    border-radius: 0;
    overflow: hidden;
    background-image: var(--hero-bg, url('images/fondobody.jpeg'));
    background-size: cover;
    background-position: center;
    width: calc(100% + 36px);
    margin: 0 -18px;
  }

  .hero__content {
    display: contents;
  }

  .hero__title {
    display: none;
  }

  .hero .eyebrow {
    order: 1;
    text-transform: none;
    letter-spacing: 0;
    font-size: 18px;
    color: var(--fg);
    text-align: center;
  }

  .hero__form {
    order: 2;
    justify-content: center;
    width: 100%;
  }

  .form-card h3 {
    font-size: 17px;
  }

  .form-card__subtitle {
    font-size: 13px;
  }

  .lead-form input {
    font-size: 15px;
  }

  .lead-form .btn {
    font-size: 15px;
  }

  .form-card__tags {
    font-size: 12px;
  }

  .form-card {
    min-width: 0;
    width: 100%;
  }

  .hero .lead {
    order: 3;
    margin-bottom: 0;
    color: #344054;
    font-size: 16px;
    text-shadow: none;
    text-align: center;
  }

  .hero__cta {
    order: 4;
    margin: 10px auto 0;
  }
}

@media (max-width: 640px) {
  .topbar {
    border-bottom: 0;
    box-shadow: none;
    padding: 8px 14px;
  }
}

@media (max-width: 640px) {
  .brand__logo {
    height: 56px;
    max-width: 200px;
  }

  .actions {
    gap: 6px;
  }

  .pill {
    padding: 8px 10px;
    font-size: 12px;
  }

  .pill__icon {
    width: 16px;
    height: 16px;
  }
}

.form-card {
  background: rgba(8, 12, 24, 0.92);
  color: #fff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 16px;
  min-width: 360px;
}

.form-card h3 {
  margin: 0;
  letter-spacing: 0.01em;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.form-card__subtitle {
  margin: 4px 0 0;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 10px;
}

.lead-form input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #dfe3eb;
  font-size: 14px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(242, 107, 44, 0.2);
}

.lead-form .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px 14px;
}

.lead-form__status {
  font-size: 12px;
  color: #ffffff;
}

.lead-form__status:empty {
  display: none;
}

.form-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.form-card__tags span {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

.section {
  padding: 48px 32px;
}

.section--muted {
  background: var(--muted);
}

.section__header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section__header h2 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3vw, 34px);
}

.section__header p {
  margin: 0;
  color: #475467;
}

.section--products-grid {
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 14px;
  max-width: 1020px;
  margin: 0 auto;
}

.products-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.section--how-alt {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), var(--how-alt-bg, url('images/fondosoli.jpeg'));
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
  padding-top: 44px;
}

.section__header--light p {
  color: #f0f2f7;
}

.how-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 18px;
  position: relative;
  padding-top: 24px;
}

.how-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 10px;
  display: grid;
  gap: 8px;
  align-items: start;
  text-align: center;
}

.how-card h3 {
  margin: 0;
  letter-spacing: 0.3px;
  color: #fff;
}

.how-card p {
  margin: 0;
  color: #e8ebf2;
  line-height: 1.6;
}

.how-card__icon-img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.how-card {
  position: relative;
  z-index: 1;
}

.how-card::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 70%;
  right: -30%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.how-card:last-child::after {
  display: none;
}

@media (max-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid img {
    height: 170px;
  }
}

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

  .products-grid img {
    height: 200px;
  }
}

@media (max-width: 720px) {
  .how-card::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .how-card::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .how-card {
    align-items: center;
    text-align: center;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.section--why {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--product-cards {
  background: var(--cta);
  color: #fff;
  padding: 48px 20px 56px;
}

.products-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 22px;
  text-align: center;
}

.products-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.3px;
}

.products-heading__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}

.product-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-items: center;
}

.product-card {
  background: #fef6f0;
  color: #0f172a;
  border-radius: 18px;
  padding: 16px 14px 18px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 10px;
}

.product-card__chip {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 16px;
  background: #fff;
  color: #c84e1a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #1f2937;
}

.product-card__list li {
  line-height: 1.5;
}

@media (max-width: 720px) {
  .section--product-cards {
    padding: 38px 16px 46px;
  }

  .product-card {
    max-width: 400px;
  }
}

.grid--why {
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 36px 40px;
  align-items: start;
  text-align: left;
  justify-items: stretch;
  max-width: 1100px;
  width: 100%;
  padding: 0 16px 8px;
}

.grid--why .card--feature {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 12px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 520px;
}

.feature__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.feature__icon {
  font-size: 70px;
  line-height: 1;
  color: #f26b2c;
  margin-bottom: 10px;
}

.feature__icon-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  margin: 0;
}

.grid--why h3 {
  margin: 2px 0 6px;
  text-align: center;
}

.grid--why p {
  color: #1f2937;
  margin: 0;
  text-align: justify;
  max-width: 420px;
}

@media (max-width: 720px) {
  .grid--why {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .grid--why .card--feature {
    max-width: 420px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 12px;
  }

  .grid--why h3 {
    text-align: center;
  }

  .grid--why p {
    text-align: center;
    max-width: none;
  }

  .feature__body {
    align-items: center;
    text-align: center;
  }

  .feature__icon-img {
    margin: 0 0 6px;
  }
}

.grid--products {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--testimonials {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
}

.card--feature {
  display: grid;
  gap: 10px;
  align-content: start;
}

.card__icon {
  font-size: 26px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef2ff;
  color: var(--primary);
}

.card--product .card__media {
  background: #f2f4f7;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  padding: 20px;
}

.card--product img {
  width: 240px;
  max-width: 100%;
}

.card__body h3 {
  margin: 8px 0 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #eef2ff;
  color: var(--primary);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.chip--alt {
  background: #e8faf3;
  color: #0c9c6c;
}

.chip--dark {
  background: #0f172a;
  color: #fff;
}

.list {
  padding-left: 18px;
  margin: 0;
  color: #475467;
  display: grid;
  gap: 6px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.step {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  gap: 6px;
}

.step__badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(28, 91, 255, 0.25);
}

.section--testimonials-block {
  padding: 48px 18px 52px;
  text-align: center;
}

.testimonials-block {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 20px;
  background: #e9692d;
  border-radius: 22px;
  display: grid;
}

.testimonials-block__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.testimonial-item {
  color: #fff;
  display: grid;
  gap: 12px;
  position: relative;
  padding: 20px 16px 34px;
  text-align: center;
}

.testimonial-item .quote {
  margin: 0 auto 6px;
  max-width: 300px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;
}

.testimonial__quote {
  position: absolute;
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 1;
  z-index: 3;
}

.testimonial__quote--open {
  top: -4px;
  left: 6px;
}

.testimonial__quote--close {
  bottom: 10px;
  right: 10px;
  transform: none;
}

.testimonials-block .author__name {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}

.testimonials-block .author__role {
  color: #fbe1d2;
  font-weight: 400;
}

@media (max-width: 640px) {
  .testimonials-block {
    padding: 20px 18px;
  }

  .testimonials-block__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial-item {
    max-width: 360px;
    margin: 0 auto;
  }

  .testimonial-item .quote {
    margin: 0 auto 20px;
  }
}

.section--map-contact {
  padding: 42px 18px 48px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), var(--map-contact-bg, url('images/fondocontac.jpeg'));
  background-size: cover;
  background-position: center;
}

.map-contact {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.map-contact__map {
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.map-contact__info {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  max-width: 420px;
  justify-self: center;
}

.map-contact__info h3 {
  margin: 0;
  font-size: 20px;
}

.map-contact__info p {
  margin: 0;
  color: #e9edf5;
}

.map-contact__buttons {
  display: grid;
  gap: 12px;
}

.map-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f26b2c;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  justify-content: center;
}

.map-contact__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.map-contact__btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.map-contact__btn--wa {
  background: #1fa855;
  box-shadow: 0 12px 24px rgba(31, 168, 85, 0.25);
}

@media (max-width: 640px) {
  .map-contact__buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .map-contact__info h3 {
    font-size: 18px;
  }

  .map-contact__info {
    gap: 10px;
  }
}

.author {
  display: grid;
  gap: 2px;
}

.author__name {
  font-weight: 700;
}

.author__role {
  color: #475467;
  font-size: 14px;
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #1c5bff);
  color: #fff;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.cta__content {
  padding: 24px;
}

.cta__content p {
  margin-top: 6px;
  color: #d4d7dd;
}

.cta .eyebrow {
  color: #99b5ff;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta__media {
  display: grid;
  place-items: center;
  padding: 18px;
}

.cta__media img {
  width: 280px;
  max-width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.contact__label {
  margin: 0 0 4px;
  font-weight: 700;
  color: #cdd4e5;
}

.footer {
  margin-top: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid var(--border);
  background: #fff;
  flex-wrap: wrap;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__social img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer__address {
  color: #111827;
  font-weight: 600;
}

.footer__credits a {
  color: #1f2937;
  text-decoration: underline;
}

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

@media (max-width: 640px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer__credits {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 960px) {
  .topbar__inner {
    justify-content: center;
    gap: 12px;
  }

  .actions {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: static;
  }

  .hero {
    padding-top: 0;
  }

  .section {
    padding: 38px 22px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 15px 0;
  }

  .topbar__inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .brand__logo {
    height: 68px;
  }

  .actions {
    width: 100%;
    display: grid;
    gap: 10px;
    justify-items: stretch;
    max-width: none;
  }

  .pill {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
  }

  .pill__icon {
    width: 20px;
    height: 20px;
  }
}
/* Detailed Products Section */
.section--products-detail {
  padding: 80px 22px;
  background: #fdfdfe;
  display: grid;
  gap: 100px;
}

.product-detail-block {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-hero {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.product-detail-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.product-detail-content {
  display: grid;
  gap: 24px;
}

.product-detail-content h2 {
  font-size: 36px;
  color: #101828;
  margin-bottom: 10px;
}

.product-detail-content p {
  line-height: 1.8;
  color: #475467;
  font-size: 17px;
}

.traffic-box {
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 18px;
  padding: 30px;
  display: grid;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.traffic-box h3 {
  color: #1c5bff;
  margin: 0;
  font-size: 22px;
}

.traffic-box ul {
  padding-left: 20px;
  margin: 0;
}

.traffic-box li {
  margin-bottom: 10px;
  color: #475467;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f9fafb;
  padding: 16px 24px;
  border-radius: 12px;
  border-left: 4px solid #1c5bff;
}

.specs p {
  margin: 0;
  font-size: 15px;
  color: #101828;
  font-weight: 500;
}

.visual-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e3e8f0;
  margin-bottom: 30px;
}

.visual-card__img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-card__body {
  padding: 24px;
}

.visual-card__body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.visual-card__body p {
  margin: 0;
  font-size: 14px;
  color: #667085;
}

.profile-card {
  display: grid;
  gap: 20px;
}

.profile-card__item {
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.profile-card__item h4 {
  margin: 0 0 10px;
  color: #101828;
  font-size: 18px;
}

.profile-card__item p {
  margin-bottom: 15px;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .product-detail-content h2 {
    font-size: 28px;
  }
  
  .section--products-detail {
    padding: 60px 18px;
    gap: 60px;
  }
}
