/* =========================================================
   Montacargas GuzSan — Hoja de estilos principal
   ========================================================= */

:root {
  --navy: #071b31;
  --navy-2: #0b2946;
  --navy-3: #102f4e;
  --orange: #f45a12;
  --orange-2: #ff7a1a;
  --white: #ffffff;
  --soft: #f5f7fb;
  --text: #152236;
  --muted: #64748b;
  --border: rgba(255,255,255,.14);
  --shadow: 0 20px 45px rgba(7, 27, 49, .14);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

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

/* =========================================================
   BOTONES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
  font-size: 15px;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  box-shadow: 0 12px 22px rgba(244, 90, 18, .28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(244, 90, 18, .35);
}
.btn-outline {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-light:hover { transform: translateY(-2px); }

/* =========================================================
   TÍTULOS Y TEXTO
   ========================================================= */
.section-label {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 18px;
}
.text-muted { color: var(--muted); }
.center { text-align: center; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 27, 49, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: visible;       /* mantiene el corte limpio en los bordes */
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: .04em;
}
/* Solo el logo del HEADER lleva el fondo blanco con corte diagonal */
.header .logo {
  position: relative;
  color: var(--navy);
  padding: 0 130px 0 0;
  height: 100%;
  align-self: stretch;
  z-index: 1;
}
.header .logo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(50% - 50vw);        /* extiende hasta el borde izquierdo de la pantalla */
  background: var(--white);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 85px) 100%, 0 100%);
}
.logo img {
  width: 220px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}
.header .logo img { position: relative; z-index: 2; }
.logo-fallback { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 58px;
  height: 42px;
  border-radius: 10px;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 900;
  font-size: 22px;
}
.logo span { display: block; line-height: 1.05; }
.logo small { color: var(--orange); font-size: 14px; letter-spacing: .12em; }

/* Ajustes del fallback solo para el header (sobre fondo blanco) */
.header .logo-fallback { position: relative; z-index: 2; }
.header .logo-mark { background: var(--navy); }
.header .logo span { color: var(--navy); }

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}
.menu a { position: relative; opacity: .92; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -10px;
  width: 0; height: 3px;
  background: var(--orange);
  transition: .25s ease;
}
.menu a:hover::after, .menu a.active::after { width: 100%; }

.mobile-toggle {
  display: none;
  color: var(--white);
  font-size: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle svg { width: 28px; height: 28px; pointer-events: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 680px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,27,49,.98) 0%, rgba(7,27,49,.86) 42%, rgba(7,27,49,.28) 100%),
    url("../img/hero-montacargas.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--navy), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 90px 0 90px 20px;
  margin-left: 0;
  margin-right: auto;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  margin-bottom: 22px;
  letter-spacing: -.04em;
}
.hero h1 strong { color: var(--orange); display: block; }
.hero p {
  font-size: 19px;
  max-width: 570px;
  color: rgba(255,255,255,.86);
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
}
.trust-item {
  border-left: 1px solid var(--border);
  padding-left: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.86);
}
.trust-icon { color: var(--orange); flex-shrink: 0; }
.trust-icon svg { width: 26px; height: 26px; }
.trust-item b { display: block; color: var(--white); line-height: 1.2; font-size: 15px; }
.trust-item small { font-size: 13px; opacity: .8; }

/* =========================================================
   NOSOTROS
   ========================================================= */
.about { padding: 82px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 34px;
  align-items: center;
}
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.info-card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.info-card .icon-box,
.service-card .icon-box,
.mini-card .icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(244,90,18,.1);
  color: var(--orange);
  margin-bottom: 20px;
}
.icon-box svg { width: 28px; height: 28px; }
.info-card h3 { margin-bottom: 10px; color: var(--navy); }

/* =========================================================
   SERVICIOS
   ========================================================= */
.services {
  padding: 80px 0;
  background: radial-gradient(circle at top right, #143d63 0, var(--navy) 45%);
  color: var(--white);
}
.services .section-title { color: var(--white); }
.services-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 275px;
  transition: .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
}
.service-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,.78); margin-bottom: 20px; }
.service-card a {
  color: var(--orange-2);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card a svg { width: 16px; height: 16px; }

/* =========================================================
   PROYECTOS / CARRUSEL
   ========================================================= */
.projects { padding: 78px 0; background: var(--white); overflow: hidden; }
.carousel {
  margin-top: 34px;
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 18px;
  align-items: center;
}
.arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .2s ease;
}
.arrow:hover { background: var(--orange); transform: scale(1.05); }
.arrow svg { width: 20px; height: 20px; }
.arrow:disabled { opacity: .35; cursor: not-allowed; }

.project-viewport { overflow: hidden; }
.project-track {
  display: flex;
  gap: 18px;
  transition: transform .4s ease;
}
.project-card {
  flex: 0 0 calc((100% - 54px) / 4);
  border-radius: 18px;
  overflow: hidden;
  min-height: 230px;
  position: relative;
  box-shadow: var(--shadow);
  background: #dbe3ef;
}
.project-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: .35s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,27,49,.75), rgba(7,27,49,.05));
  z-index: 1;
}
.project-card .caption {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  color: var(--white);
}
.project-card b { font-size: 20px; display: block; }
.project-card span { font-size: 14px; opacity: .9; }

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 230px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.4);
}
.img-placeholder svg { width: 56px; height: 56px; }

/* Los puntitos indicadores solo se ven en móvil (ver media query) */
.project-dots { display: none; }

/* =========================================================
   CLIENTES
   ========================================================= */
.clients { padding: 56px 0; background: var(--soft); }
.client-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}
.client-logo {
  height: 82px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .08);
  display: grid;
  place-items: center;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(7, 27, 49, .07);
}
.client-logo img {
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .78;
  transition: .25s ease;
}
.client-logo:hover img { filter: grayscale(0); opacity: 1; }
.client-logo span {
  font-weight: 900;
  color: var(--navy);
  opacity: .5;
  font-size: 14px;
  letter-spacing: .1em;
}

/* =========================================================
   POR QUÉ ELEGIRNOS
   ========================================================= */
.why { padding: 40px 0; background: var(--navy); color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.why-item:last-child { border-right: 0; }
.why-item .why-icon { color: var(--orange); flex-shrink: 0; }
.why-item .why-icon svg { width: 32px; height: 32px; }
.why-item b { font-size: 16px; display: block; margin-bottom: 4px; }
.why-item p { font-size: 14px; opacity: .8; line-height: 1.4; }

/* =========================================================
   CONTACTO + MAPA
   ========================================================= */
.contact-page {
  padding: 78px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 42px;
  align-items: start;
}
.map-card {
  padding: 38px 0 0 0;
  background: transparent;
  border: none;
}
.map-title {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
/* Línea naranja debajo del título (como en el boceto) */
.map-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.map-wrapper {
  margin: 24px 0;
  min-height: 340px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  padding: 0;
  position: relative;
}

.mexico-map-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  z-index: 2;
}
.mexico-map {
  width: 100%;
  height: auto;
  display: block;
  /* Filtro mágico: convierte CUALQUIER color del SVG a naranja #f45a12 */
  filter:
    brightness(0) saturate(100%)
    invert(45%) sepia(78%) saturate(2520%) hue-rotate(355deg)
    brightness(99%) contrast(94%)
    drop-shadow(0 22px 42px rgba(244,90,18,.35));
}

/* Pines como overlays absolutos sobre el mapa */
.map-pin-overlay {
  position: absolute;
  width: 28px;
  height: 38px;
  transform: translate(-50%, -100%);   /* la punta del pin queda en la coordenada */
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.35));
  animation: pin-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
.map-pin-overlay:nth-of-type(odd)  { animation-delay: .35s; }
.map-pin-overlay:nth-of-type(3n)   { animation-delay: .7s; }
.map-pin-overlay:nth-of-type(4n)   { animation-delay: 1s; }

@keyframes pin-pulse {
  0%, 100% { transform: translate(-50%, -100%) scale(1); }
  50%      { transform: translate(-50%, -100%) translateY(-3px) scale(1.06); }
}

/* Dots decorativos en el fondo del mapa */
.map-dots {
  position: absolute;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 1.5px, transparent 1.8px);
  background-size: 14px 14px;
  z-index: 1;
  pointer-events: none;
}
.map-dots-top    { top: 18px;  right: 24px; }
.map-dots-bottom { bottom: 18px; left: 24px; }

.map-note {
  color: rgba(255,255,255,.82);
  margin: 24px 0;
}

.contact-details {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
}
.detail-row {
  display: grid;
  grid-template-columns: 46px 100px 1fr;
  gap: 12px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: center;
}
.detail-row:last-child { border-bottom: 0; }
.detail-row .detail-icon {
  color: var(--orange);
  display: grid;
  place-items: center;
}
.detail-row .detail-icon svg { width: 22px; height: 22px; }
.detail-row b { color: var(--white); }

/* =========================================================
   FORMULARIO
   ========================================================= */
.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.form-card h2 {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
/* Línea naranja debajo del título (como en el boceto) */
.form-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.field.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 800; color: #334155; }
input, select, textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  padding: 14px 14px;
  font: inherit;
  color: var(--text);
  outline: none;
  background: #fff;
  transition: .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,90,18,.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-note {
  text-align: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-note svg { width: 16px; height: 16px; color: var(--orange); }

/* =========================================================
   MINI SERVICIOS
   ========================================================= */
.mini-services { padding: 68px 0; background: var(--soft); }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, .06);
}
.mini-card h3 { color: var(--navy); margin-bottom: 8px; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  margin: 0 auto 70px;
  width: min(1180px, calc(100% - 40px));
  border-radius: 22px;
  padding: 34px 42px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(244,90,18,1), rgba(255,122,26,.88)),
    url("../img/cta-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 20px 38px rgba(244, 90, 18, .22);
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}
.cta-band p { opacity: .9; margin-top: 4px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #061629;
  color: var(--white);
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h4 { margin-bottom: 16px; color: var(--white); }
.footer a, .footer p, .footer li {
  color: rgba(255,255,255,.76);
  list-style: none;
  margin-bottom: 9px;
}
.footer a:hover { color: var(--orange); }
.footer .footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.socials { margin-top: 20px; display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: .2s ease;
}
.socials a:hover { background: var(--orange); color: var(--white); }
.socials a svg { width: 18px; height: 18px; }
.copy {
  padding-top: 22px;
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: .25s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; color: white; }

/* =========================================================
   RESPONSIVE — TABLETS
   ========================================================= */
@media (max-width: 980px) {
  .menu, .header .btn { display: none; }
  .mobile-toggle { display: block; position: relative; z-index: 1001; }
  .hero { min-height: auto; }

  /* Reducir el logo en tablets para que no tape el botón hamburguesa */
  .header .logo { padding: 0 90px 0 0; }
  .header .logo::before { clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 0 100%); }
  .logo img { width: 175px; max-height: 72px; }

  .trust-row, .services-grid, .why-grid, .mini-grid,
  .about-grid, .about-card-grid, .contact-grid,
  .footer-grid, .client-row {
    grid-template-columns: 1fr 1fr;
  }

  .carousel {
    display: block !important;
    position: relative;
  }

  .carousel .arrow,
  .arrow {
    display: none !important;
  }

  /* Carrusel móvil tipo Instagram: una tarjeta por vista, controlado por JS */
  .project-viewport {
    width: 100% !important;
    overflow: hidden !important;
    position: relative;
    touch-action: pan-y;
  }

  .project-track {
    display: flex !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    transition: transform .35s ease;
    will-change: transform;
  }

  .project-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: unset !important;
    user-select: none;
    -webkit-user-select: none;
  }

  .project-card img {
    pointer-events: none;
    -webkit-user-drag: none;
  }

  .project-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .project-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(7, 27, 49, .25);
    padding: 0;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
  }

  .project-dot.active {
    width: 24px;
    background: var(--orange);
  }

  .menu.open {
    display: flex;
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    z-index: 9999;
  }
}

/* =========================================================
   RESPONSIVE — MÓVILES
   ========================================================= */
@media (max-width: 680px) {
  .container { width: min(100% - 26px, 1180px); }
  .nav { height: 76px; }
  .header .logo { padding: 0 50px 0 0; }
  .header .logo::before { clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%); }
  .logo img { width: 142px; max-height: 54px; }
  .menu.open { top: 76px; }
  .hero-content { padding: 70px 0 70px 15px; }

  .trust-row, .services-grid, .why-grid, .mini-grid,
  .about-grid, .about-card-grid, .contact-grid,
  .footer-grid, .form-grid, .client-row {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex: 0 0 100% !important;
    border-radius: 22px;
  }

  .project-card img,
  .project-card .img-placeholder {
    min-height: 330px;
  }

  .detail-row { grid-template-columns: 38px 88px 1fr; font-size: 14px; }
  .form-card, .map-card, .info-card { padding: 24px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px; }
  .why-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
}
