/* ================================
   BASE
================================ */

:root {
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-dark: #050816;
  --color-text: #202638;
  --color-blue: #1742ff;
  --color-soft-blue: #eef0ff;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}


/* ================================
   HERO - HOME
================================ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 3rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 3rem 4rem;
  overflow: hidden;
}

.hero__content {
  max-width: 680px;
}

.hero__badge::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: .55rem;
  background-color: #1742ff;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L4 14h7l-1 8 10-13h-7l1-7z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L4 14h7l-1 8 10-13h-7l1-7z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero__badge {
  display: inline-flex;
  margin: 0 0 2rem;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  background: #eef0ff;
  color: #1742ff;
  font-size: .9rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  color: #050816;
  font-size: clamp(3.4rem, 5.9vw, 6.7rem);
  line-height: .92;
  font-weight: 600;
  letter-spacing: -.065em;
}

.hero h1 span {
  color: #1742ff;
}

.hero__description {
  max-width: 620px;
  margin: 2rem 0 0;
  color: #202638;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.hero__description strong {
  color: #050816;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 1.8rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #1742ff 0%, #3d5afe 100%);
  box-shadow: 0 18px 35px rgba(23, 66, 255, .25);
}

.btn--primary::after {
  content: "→";
  margin-left: 1rem;
}

.btn--secondary {
  color: #1742ff;
  background: transparent;
}

.btn--secondary::before {
  content: "▶";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-right: 1rem;
  border: 1px solid rgba(23, 66, 255, .25);
  border-radius: 50%;
  color: #050816;
  font-size: .8rem;
}

.hero__visual {
  position: relative;
  min-height: auto;
}

.hero__visual::before {
  display: none;
}

.hero__image {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.hero__image img {
  display: block;
  width: 118%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

/* ================================
   HERO FEATURES
================================ */

.hero__features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4.5rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0 2rem;
  min-height: 78px;
  border-right: 1px solid rgba(5, 8, 22, .14);
}

.hero-feature:first-child {
  padding-left: 0;
}

.hero-feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-feature__icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature__icon img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.hero-feature__title {
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 900;
  color: #050816;
}

.hero-feature p {
  margin: 0;
  font-size: .92rem;
  color: #505767;
  line-height: 1.4;
}

.hero-feature p:not(.hero-feature__title) {
  margin: 0;
  color: #505767;
  font-size: .95rem;
  line-height: 1.35;
}

/* ================================
   SERVICES
================================ */

.services {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.5rem;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  background: #eef0ff;
  color: #1742ff;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-badge::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: .55rem;
  background-color: #1742ff;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L4 14h7l-1 8 10-13h-7l1-7z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L4 14h7l-1 8 10-13h-7l1-7z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section-heading h2 {
  margin: 0;
  color: #050816;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.055em;
}

.section-heading h2 span {
  color: #1742ff;
}

.section-heading__stroke {
  width: 92px;
  height: 18px;
  margin-top: 1.2rem;
  margin-bottom: 2rem;
  background: url('/assets/img/stroke-blue.svg') no-repeat left center;
  background-size: contain;
  transform: rotate(-1.5deg);
  opacity: .95;
}

.section-heading > p:not(.section-badge) {
  margin: 2rem 0 0;
  color: #202638;
  font-size: 1.25rem;
  line-height: 1.55;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(5, 8, 22, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(5, 8, 22, .06);
}

.service-card--seo {
  background: linear-gradient(180deg, #f6f4ff 0%, #ffffff 58%);
}

.service-card--web {
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 58%);
}

.service-card--ecommerce {
  background: linear-gradient(180deg, #f1fbf7 0%, #ffffff 58%);
}

.service-card__media {
  padding: 2rem 2rem 0;
}

.service-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.service-card__content {
  padding: 1.75rem 2rem 2rem;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  margin: 0 0 1.25rem;
  color: #050816;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 900;
}

.service-card p {
  margin: 0 0 1rem;
  color: #202638;
  font-size: 1.02rem;
  line-height: 1.55;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  color: #1742ff;
  font-weight: 900;
  text-decoration: none;
}

.service-card__link::after {
  content: "→";
  margin-left: .9rem;
}

.service-card--ecommerce .service-card__link {
  color: #009b66;
}

/* ================================
   SERVICES FEATURES (HOME BLOCK)
================================ */

.services-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 5rem auto 0;
  padding: 0 3rem;
}

.services-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(5, 8, 22, .10);
}

.services-feature:first-child {
  padding-left: 0;
}

.services-feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.services-feature__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  opacity: .95;
}

.services-feature__icon img {
  width: 44px;
  height: 44px;
  filter: none;
}

.services-feature__title {
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 900;
  color: #050816;
}

.services-feature p {
  margin: 0;
  font-size: .92rem;
  color: #505767;
  line-height: 1.4;
}

/* ================================
   PHILOSOPHY SECTION
================================ */

.philosophy {
  position: relative;
  padding: 7rem 3rem;
  background: #fff;
}

.philosophy__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   TOP ROW (TEXTO + IMAGEN)
================================ */

.philosophy__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* LEFT */
.philosophy__left {
  max-width: 620px;
}

/* BADGE */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 2rem;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  background: #eef0ff;
  color: #1742ff;
  font-size: .9rem;
  font-weight: 800;
}

/* TITLE */
.philosophy__title {
  margin: 0;
  color: #050816;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.055em;
}

.philosophy__title span {
  color: #1742ff;
}

/* STROKE */
.section-heading__stroke {
  width: 90px;
  height: 18px;
  margin: 1.2rem 0 1.5rem;
  background: url("/assets/img/stroke-blue.svg") no-repeat left center;
  background-size: contain;
}

/* TEXT */
.philosophy__intro {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #2a3142;
}

/* RIGHT IMAGE */
.philosophy__visual {
  display: flex;
  justify-content: center;
}

.philosophy__visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* ================================
   FEATURES (4 COLUMNAS REAL LAYOUT)
================================ */

.philosophy__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  border-left: 1px solid rgba(5, 8, 22, .10);
}

/* ITEM */
.philosophy-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2rem 1.8rem;
  border-right: 1px solid rgba(5, 8, 22, .10);
}

.philosophy-feature:last-child {
  border-right: none;
}

/* separadores verticales */
.philosophy-feature {
  position: relative;
}


/* ICONO */
.philosophy-feature img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

/* TITLE */
.philosophy-feature h3 {
  margin: 0 0 .4rem;
  font-size: 1rem;
  font-weight: 800;
  color: #050816;
}

/* TEXT */
.philosophy-feature p {
  margin: 0;
  font-size: .92rem;
  color: #5a6475;
  line-height: 1.4;
}

/* ================================
   PHILOSOPHY CTA (CENTRADO 50%)
================================ */

.philosophy__cta {
  margin: 4rem auto 0;
  max-width: 650px; /* 👈 clave: limita al 50% visual */
  padding: 2rem 2.5rem;
  text-align: center;
  font-size: 1.15rem;
  color: #050816;
  background: #f5f7ff;
  border-radius: 16px;
  line-height: 1.5;
}

/* ================================
   CTA PHILOSOPHY (2 COLUMNS)
================================ */

.philosophy__cta {
  margin: 4rem auto 0;
  max-width: 600px;
  background: #f5f7ff;
  border-radius: 18px;
  padding: 2.2rem 2.5rem;
}

/* inner layout */
.philosophy__cta-inner {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: center;
}

/* icon */
.philosophy__cta-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy__cta-icon img {
  width: 40px;
  height: 40px;
}

/* text */
.philosophy__cta-content p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #050816;
  text-align:left;
}

.philosophy__cta-content p + p {
  margin-top: .1rem;
}

.philosophy__cta-content strong {
  color: #1742ff;
  font-weight: 900;
}

/* ================================
   SOLUTIONS SECTION
================================ */

.solutions {
  padding: 7rem 3rem;
  background: #fff;
}

.solutions__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   TOP (TEXT + IMAGE)
================================ */

.solutions__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.solutions__content {
  max-width: 620px;
}

.solutions__title {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: .95;
  font-weight: 600;
  color: #050816;
  letter-spacing: -.05em;
}

.solutions__title span {
  color: #1742ff;
}

.solutions__intro {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #2a3142;
}

.solutions__visual img {
  width: 100%;
  max-width: 560px;
  display: block;
}

/* stroke reutilizado */
.section-heading__stroke {
  width: 90px;
  height: 4px;
  margin: 1.2rem 0 1.5rem;
  background: url("/assets/img/stroke-blue.svg") no-repeat left center;
  background-size: contain;
}

/* ================================
   CARDS
================================ */

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.solution-card {
  padding: 2rem;
  border: 1px solid rgba(5, 8, 22, .08);
  border-radius: 24px;
  background: #fff;
}

/* TOP ROW: icon + title alineados */
.solution-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

/* ICON */
.solution-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}

.solution-card__icon img {
  width: 52px;
  height: 52px;
}

/* TITLE */
.solution-card__top h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: #050816;
}

/* TEXT */
.solution-card p {
  margin: 0 0 1rem;
  color: #2a3142;
  line-height: 1.5;
}

/* LIST */
.solution-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #505767;
}

/* LINK */
.solution-card a {
  display: inline-flex;
  margin-top: 1.5rem;
  font-weight: 800;
  color: #1742ff;
  text-decoration: none;
}

/* elimina cualquier comportamiento “split” raro */
.solution-card__icon,
.solution-card__top {
  position: static;
}

/* ================================
   FEATURES (BOTTOM)
================================ */

.solutions__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  border-top: 1px solid rgba(5, 8, 22, .08);
}

.solutions-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(5, 8, 22, .08);
}

.solutions-feature:last-child {
  border-right: none;
}

.solutions-feature img {
  width: 42px;
  height: 42px;
}

.solutions-feature h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: #050816;
}

.solutions-feature p {
  margin: 0;
  font-size: .92rem;
  color: #505767;
}

/* ================================
   PROJECTS PREVIEW
================================ */

.projects-preview {
  padding: 7rem 3rem;
  background: #fff;
}

.projects-preview__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.projects-preview__title {
  margin: 0;
  color: #050816;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: .95;
  font-weight: 600;
  letter-spacing: -.055em;
}

.projects-preview__title span {
  color: #1742ff;
}

.projects-preview__intro {
  margin: 0 0 3rem;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #202638;
}

.projects-preview__list {
  display: grid;
  gap: 2rem;
}

.projects-preview-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.projects-preview-feature img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.projects-preview-feature h3 {
  margin: 0 0 .35rem;
  color: #050816;
  font-size: 1.05rem;
  font-weight: 900;
}

.projects-preview-feature p {
  margin: 0;
  color: #505767;
  font-size: .98rem;
  line-height: 1.45;
}

.projects-preview__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  min-height: 58px;
  padding: 0 2rem;
  border: 1px solid #1742ff;
  border-radius: 999px;
  color: #1742ff;
  font-weight: 900;
  text-decoration: none;
}

.projects-preview__button::after {
  content: "→";
  margin-left: 1rem;
  font-size: 1.2rem;
}

.projects-preview__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-card {
  padding: 1rem;
  border: 1px solid rgba(5, 8, 22, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(5, 8, 22, .05);
}

.project-card img {
  display: block;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.project-card span {
  display: inline-flex;
  margin-bottom: .8rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: #eef0ff;
  color: #1742ff;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 .45rem;
  color: #050816;
  font-size: 1.15rem;
  font-weight: 900;
}

.project-card p {
  margin: 0;
  color: #505767;
  font-size: .95rem;
  line-height: 1.45;
}





/* ================================
   HERO RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero__content {
    max-width: 820px;
  }

  .hero__image img {
    width: 100%;
    max-width: 900px;
  }
  
  .hero__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 8, 22, .08);
  }

  .hero-feature:nth-last-child(-n+1) {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    gap: 3rem;
    padding: 3rem 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

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

  .btn {
    width: 100%;
  }
  
  .hero__features {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    padding: .8rem;
    border-radius: 22px;
  }

  .hero-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 8, 22, .08);
  }

  .hero-feature:last-child {
    border-bottom: 0;
  }
}

/* ================================
   SERVICES RESPONSIVE
================================ */

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

@media (max-width: 768px) {
  .services {
    padding: 4rem 1.25rem;
  }
}

/* ================================
   SERVICES FEATURES RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .services-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }

  .services-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 8, 22, .08);
    padding: 0 1.5rem 1.5rem;
  }

  .services-feature:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .services-features {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }

  .services-feature {
    padding: 1.2rem 0;
  }

  .services-feature:last-child {
    border-bottom: 0;
  }
}

/* ================================
   PHILOSOPHY RESPONSIVE
================================ */

@media (max-width: 1100px) {

  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-card:not(:last-child)::after {
    display: none;
  }

  .philosophy-card {
    border-bottom: 1px solid rgba(5, 8, 22, .08);
  }
}

@media (max-width: 768px) {

  .philosophy {
    padding: 5rem 1.25rem;
  }

  .philosophy__cards {
    grid-template-columns: 1fr;
  }

  .philosophy-card {
    padding: 1.6rem 0;
  }
}

/* ================================
   PHILOSOPHY RESPONSIVE
================================ */

@media (max-width: 1100px) {

  .philosophy__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-feature:not(:last-child)::after {
    display: none;
  }

  .philosophy-feature {
    border-bottom: 1px solid rgba(5, 8, 22, .08);
  }
}

@media (max-width: 768px) {

  .philosophy {
    padding: 5rem 1.25rem;
  }

  .philosophy__features {
    grid-template-columns: 1fr;
  }

  .philosophy-feature {
    padding: 1.5rem 0;
  }
}

/* ================================
   SOLUTIONS RESPONSIVE
================================ */

@media (max-width: 1100px) {

  .solutions__top {
    grid-template-columns: 1fr;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .solutions__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-feature {
    border-right: none;
    border-bottom: 1px solid rgba(5, 8, 22, .08);
  }

  .solutions-feature:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {

  .solutions {
    padding: 5rem 1.25rem;
  }

  .solutions__features {
    grid-template-columns: 1fr;
  }

  .solutions-feature {
    padding: 1.5rem 0;
  }
}

/* ================================
   PROJECTS PREVIEW RESPONSIVE
================================ */

/* Responsive */
@media (max-width: 1100px) {
  .projects-preview__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .projects-preview {
    padding: 5rem 1.25rem;
  }

  .projects-preview__right {
    grid-template-columns: 1fr;
  }
}
