/* =========================================================
   ECOMIFY CLONE — pages.css
   ========================================================= */

/* =====================================================
   INNER PAGE BANNER (About / Insights / Contact)
   ===================================================== */
.inner-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-h);
  background:
    radial-gradient(ellipse 55% 90% at 82% 20%, rgba(241, 83, 54, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 80% at 5% 90%, rgba(0, 0, 0, 0.75), transparent 65%),
    linear-gradient(120deg, #180705 0%, #2a0f0a 45%, #0a0403 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/inner-banner-globe.png') center 60% / 1100px no-repeat;
  opacity: 0.5;
  mix-blend-mode: screen;
}

.inner-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.inner-banner__inner {
  position: relative;
  z-index: 2;
  padding: 60px 24px 46px;
}

.inner-banner h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: 0.02em;
}

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

.home-hero {
  position: relative;
  width: 100%;
  min-height: 656px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 91% 20%,
      rgba(207, 70, 42, 0.48) 0%,
      rgba(123, 39, 23, 0.35) 25%,
      transparent 52%
    ),
    radial-gradient(
      circle at 7% 75%,
      rgba(133, 47, 31, 0.62) 0%,
      rgba(69, 20, 15, 0.5) 34%,
      transparent 61%
    ),
    linear-gradient(
      90deg,
      #391713 0%,
      #180b09 25%,
      #050707 52%,
      #190b08 70%,
      #67251a 100%
    );
}

/* Globe and technology background */
.home-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;

  background-image: url("../assets/images/inner-banner-globe.png");
  background-repeat: no-repeat;
  background-position: 52% 47%;
  background-size: 1050px auto;

  opacity: 0.34;
  pointer-events: none;
}

/* Dark overlay for readable text */
.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(24, 8, 7, 0.18) 0%,
      rgba(2, 5, 6, 0.1) 50%,
      rgba(67, 19, 13, 0.05) 100%
    );

  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  width: 100%;
  min-height: 656px;
  padding: 0 4.55%;
  display: grid;
  grid-template-columns: minmax(0, 61%) minmax(480px, 39%);
  align-items: center;
}

/* =====================================================
   LEFT CONTENT
   ===================================================== */

.home-hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1050px;
  padding: 40px 0 42px;
}

.home-hero__heading {
  width: 100%;
  max-width: 1020px;
  margin: 0 0 20px;

  font-family: inherit;
  font-size: clamp(30px, 1.85vw, 35px);
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: -1.25px;
  text-transform: uppercase;
  color: #ffffff;
}

.home-hero__heading span {
  color: #eb5c3e;
}

.home-hero__description {
  max-width: 970px;
  margin-bottom: 25px;
}

.home-hero__description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.home-hero__description p + p {
  margin-top: 8px;
}

/* =====================================================
   SERVICE BADGES
   ===================================================== */

.hero-badges {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  justify-content: start;
  column-gap: 14px;
  row-gap: 14px;
}

.hero-badges .hero-badge:last-child {
  grid-column: 1;
}

.hero-badge {
  min-height: 40px;
  padding: 3px 16px 3px 4px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  border: 1.25px solid rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.025);

  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.hero-badge:hover {
  color: #ffffff;
  border-color: #eb5c3e;
  background: rgba(235, 92, 62, 0.13);
  transform: translateY(-2px);
}

.hero-badge__icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
}

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

/* =====================================================
   RIGHT PERSON VISUAL
   ===================================================== */

.home-hero__visual {
  position: absolute;
  z-index: 3;
  right: 6.8%;
  bottom: 0;

  width: min(36vw, 680px);
  height: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  pointer-events: none;
}

.home-hero__person {
  position: relative;
  z-index: 2;

  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  max-height: 630px;
  object-fit: contain;
  object-position: bottom center;
}

/* Only Amazon floating icon visible in reference */
.hero-floating-amazon {
  position: absolute;
  z-index: 5;
  top: 37.5%;
  left: 1%;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  animation: heroAmazonFloat 4.5s ease-in-out infinite;
}

.hero-floating-amazon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

@keyframes heroAmazonFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* =====================================================
   LARGE DESKTOP
   ===================================================== */

@media (min-width: 1600px) {

  .home-hero__inner {
    padding-left: 4.55%;
    padding-right: 4.55%;
  }

  .home-hero__heading {
    font-size: 35px;
  }

  .home-hero__visual {
    right: 7.4%;
    width: 635px;
  }

  .home-hero__person {
    max-width: 635px;
  }
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1366px) {

  .home-hero {
    min-height: 610px;
  }

  .home-hero__inner {
    min-height: 610px;
    padding-inline: 5%;
    grid-template-columns: minmax(0, 62%) minmax(400px, 38%);
  }

  .home-hero__heading {
    max-width: 790px;
    font-size: 29px;
  }

  .home-hero__description {
    max-width: 750px;
  }

  .home-hero__visual {
    right: 3%;
    width: 480px;
  }

  .home-hero__person {
    max-width: 480px;
    max-height: 580px;
  }

  .hero-floating-amazon {
    width: 48px;
    height: 48px;
  }

  .hero-floating-amazon img {
    width: 32px;
    height: 32px;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

  .home-hero {
    min-height: auto;
  }

  .home-hero::before {
    background-position: 60% 50%;
    background-size: 900px auto;
    opacity: 0.22;
  }

  .home-hero__inner {
    min-height: auto;
    padding: 80px 32px 0;
    display: block;
  }

  .home-hero__content {
    max-width: 100%;
    padding: 0;
  }

  .home-hero__heading {
    max-width: 760px;
    font-size: clamp(29px, 5vw, 42px);
  }

  .home-hero__description {
    max-width: 720px;
  }

  .home-hero__description p {
    font-size: 14px;
  }

  .home-hero__visual {
    position: relative;
    right: auto;
    bottom: auto;

    width: 100%;
    max-width: 590px;
    height: auto;
    margin: 25px 0 0 auto;
  }

  .home-hero__person {
    max-width: 590px;
    max-height: none;
  }

  .hero-floating-amazon {
    top: 30%;
    left: 2%;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

  .home-hero__inner {
    padding: 65px 20px 0;
  }

  .home-hero__heading {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .home-hero__heading br {
    display: none;
  }

  .home-hero__description p {
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-badges {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-badges .hero-badge:last-child {
    grid-column: auto;
  }

  .hero-badge {
    width: fit-content;
    max-width: 100%;
    min-height: 39px;
    font-size: 11.5px;
  }

  .home-hero__visual {
    width: calc(100% + 25px);
    margin-right: -25px;
  }

  .hero-floating-amazon {
    width: 43px;
    height: 43px;
  }

  .hero-floating-amazon img {
    width: 29px;
    height: 29px;
  }
}

/* =====================================================
   REVIEW STRIP
   ===================================================== */
.review-strip {
  background: #0f0f0f;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 26px 0;
  overflow: hidden;
}

.review-strip__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 20px;
  border-right: 1px solid var(--border-dark);
}

.review-strip__track .review-item:last-child {
  border-right: none;
}

.review-item img {
  height: 26px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.review-item__text {
  font-size: 0.74rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* =====================================================
   SERVICE ACCORDION
   ===================================================== */

.service-accordion-section {
  position: relative;
  width: 100%;
  min-height: 690px;
  padding: 70px 0 58px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 2% 35%,
      rgba(139, 43, 26, 0.72) 0%,
      rgba(72, 20, 13, 0.52) 27%,
      transparent 55%
    ),
    radial-gradient(
      circle at 98% 35%,
      rgba(135, 42, 25, 0.7) 0%,
      rgba(66, 19, 13, 0.52) 30%,
      transparent 58%
    ),
    linear-gradient(
      90deg,
      #4c1a11 0%,
      #170705 23%,
      #030303 49%,
      #160604 76%,
      #4c1b12 100%
    );
}

.service-accordion-section .container {
  width: min(100% - 70px, 1380px);
  max-width: 1380px;
  margin-inline: auto;

  display: grid;
  grid-template-columns: 46% 54%;
  gap: 85px;
  align-items: start;
}

/* =====================================================
   LEFT VISUAL
   ===================================================== */

.service-visual {
  position: relative;
  min-height: 540px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual img.main-visual {
  position: relative;
  z-index: 2;

  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0;

  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.28));
}

.service-visual .blob {
  display: none !important;
}

/* =====================================================
   ACCORDION LIST
   ===================================================== */

.accordion-list {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

.accordion-item {
  border: 0;
}

.accordion-item:first-child {
  border-top: 0;
}

/* Accordion heading row */

.accordion-trigger {
  width: 100%;
  min-height: 72px;
  padding: 11px 0;

  display: flex;
  align-items: center;
  gap: 10px;

  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger .num {
  flex: 0 0 auto;

  font-family: var(--font-heading, inherit);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;

  color: #ffffff;
}

.accordion-trigger h3 {
  flex: 1;
  margin: 0;

  font-family: var(--font-heading, inherit);
  font-size: clamp(31px, 2.1vw, 40px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -1.3px;

  color: #ffffff;
  transition: color 0.25s ease;
}

/* First active title bold like screenshot */

.accordion-item.active .accordion-trigger h3 {
  color: #ffffff;
  font-weight: 700;
}

/* Orange word inside first heading */

.accordion-item:first-child .accordion-trigger h3 {
  font-weight: 700;
}

.accordion-item:first-child .accordion-trigger h3::first-line {
  color: inherit;
}

/* Hide plus/minus icon */

.accordion-trigger .acc-icon {
  display: none;
}

/* =====================================================
   ACCORDION PANEL
   ===================================================== */

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 0.45s ease,
    opacity 0.3s ease;
}

.accordion-item.active .accordion-panel {
  max-height: 470px;
  opacity: 1;
}

.accordion-panel__inner {
  padding: 0 0 12px;
}

/* Tags */

.accordion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 15px;
}

.accordion-tags + .accordion-tags {
  margin-top: 0;
}

.accordion-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 22px;
  padding: 3px 11px;

  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  background: transparent;

  font-size: 11px;
  font-weight: 400;
  line-height: 1;

  color: #ffffff;
  white-space: nowrap;
}

/* Description */

.accordion-panel__inner p {
  max-width: 840px;
  margin: 0 0 22px;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.58;

  color: rgba(255, 255, 255, 0.95);
}

.accordion-panel__inner p + p {
  margin-top: 1px;
}

/* Screenshot mein learn more visible nahi hai */

.accordion-panel__inner .link-arrow {
  display: none;
}

/* =====================================================
   ORANGE WORD IN FIRST HEADING
   ===================================================== */

.accordion-item:first-child .accordion-trigger h3 {
  color: #ffffff;
}

/*
HTML mein first title ko is structure mein change karo:

<h3><span>Amazon</span> Store Creation</h3>
*/

.accordion-item:first-child .accordion-trigger h3 span {
  color: #ed5a3c;
}

/* =====================================================
   DESKTOP HEIGHT CONTROL
   ===================================================== */

@media (min-width: 1400px) {

  .service-accordion-section .container {
    grid-template-columns: 46% 54%;
    gap: 92px;
  }

  .service-visual img.main-visual {
    max-width: 620px;
  }

  .accordion-trigger h3 {
    font-size: 38px;
  }
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1366px) {

  .service-accordion-section {
    min-height: 650px;
    padding: 65px 0 52px;
  }

  .service-accordion-section .container {
    width: min(100% - 50px, 1240px);
    grid-template-columns: 44% 56%;
    gap: 55px;
  }

  .service-visual {
    min-height: 500px;
  }

  .service-visual img.main-visual {
    max-width: 530px;
  }

  .accordion-trigger {
    min-height: 65px;
  }

  .accordion-trigger .num {
    font-size: 18px;
  }

  .accordion-trigger h3 {
    font-size: 32px;
  }

  .accordion-panel__inner p {
    font-size: 13px;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

  .service-accordion-section {
    min-height: auto;
    padding: 65px 0;
  }

  .service-accordion-section .container {
    width: min(100% - 40px, 760px);
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .service-visual {
    min-height: auto;
  }

  .service-visual img.main-visual {
    max-width: 580px;
    margin-inline: auto;
  }

  .accordion-list {
    width: 100%;
  }

  .accordion-trigger h3 {
    font-size: 31px;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

  .service-accordion-section {
    padding: 45px 0;
  }

  .service-accordion-section .container {
    width: min(100% - 30px, 520px);
    gap: 25px;
  }

  .service-visual img.main-visual {
    width: 110%;
    max-width: none;
    margin-left: -5%;
  }

  .accordion-trigger {
    min-height: 58px;
    gap: 8px;
  }

  .accordion-trigger .num {
    font-size: 15px;
  }

  .accordion-trigger h3 {
    font-size: 25px;
    letter-spacing: -0.7px;
  }

  .accordion-tags {
    gap: 7px;
  }

  .accordion-tags span {
    padding: 4px 9px;
    font-size: 9px;
  }

  .accordion-panel__inner p {
    font-size: 12.5px;
    line-height: 1.6;
  }
}

/* =====================================================
   DIVERSE INDUSTRY EXPERTISE
   ===================================================== */

.industry-showcase,
.industry-showcase * {
  box-sizing: border-box;
}

.industry-showcase {
  position: relative;
  width: 100%;
  padding: 52px 0 62px;
  overflow: hidden;

  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);

  background:
    radial-gradient(
      circle at 0% 40%,
      rgba(132, 42, 26, 0.56) 0%,
      rgba(67, 19, 12, 0.4) 36%,
      transparent 63%
    ),
    radial-gradient(
      circle at 100% 35%,
      rgba(132, 42, 26, 0.56) 0%,
      rgba(67, 19, 12, 0.4) 38%,
      transparent 66%
    ),
    linear-gradient(
      90deg,
      #38130d 0%,
      #210b07 23%,
      #080303 50%,
      #1c0805 76%,
      #42160f 100%
    );
}

.industry-showcase__container {
  width: min(calc(100% - 48px), 1450px);
  margin-inline: auto;
}

/* Heading */

.industry-showcase__heading {
  margin: 0 0 32px;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(29px, 2.1vw, 40px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.industry-showcase__heading span {
  color: #ef5a3d;
}

/* Layout */

.industry-showcase__layout {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

/* Left description */

.industry-showcase__intro {
  padding-top: 5px;
}

.industry-showcase__intro p {
  margin: 0 0 16px;

  color: rgba(255, 255, 255, 0.94);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.58;
}

.industry-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 36px;
  margin-top: 2px;
  padding: 8px 17px;

  border: 1px solid #ef5a3d;
  border-radius: 50px;
  background: #070303;

  color: #ffffff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.industry-showcase__button span {
  font-size: 13px;
  line-height: 1;
}

.industry-showcase__button:hover {
  color: #ffffff;
  border-color: #ef5a3d;
  background: #ef5a3d;
  transform: translateY(-2px);
}

/* =====================================================
   CUSTOM CAROUSEL
   ===================================================== */

.industry-carousel {
  width: 100%;
  min-width: 0;
}

.industry-carousel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.industry-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.industry-carousel__track {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: stretch;
  gap: 15px;

  width: max-content;
  min-width: max-content;

  transform: translate3d(0, 0, 0);
  will-change: transform;
}

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

.industry-showcase__card {
  width: 330px;
  min-width: 330px;
  max-width: 330px;
  height: 335px;
  flex: 0 0 330px;

  display: flex;
  flex-direction: column;

  overflow: hidden;
  border-radius: 5px;
  background: #ffffff;

  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.28);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.industry-showcase__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 21px 40px rgba(0, 0, 0, 0.38);
}

/* Images */

.industry-showcase__image {
  width: 100%;
  height: 175px;
  flex: 0 0 175px;
  overflow: hidden;
  background: #eeeeee;
}

.industry-showcase__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;

  transition: transform 0.45s ease;
}

.industry-showcase__card:hover .industry-showcase__image img {
  transform: scale(1.06);
}

/* Card content */

.industry-showcase__body {
  min-height: 160px;
  padding: 16px 18px 18px;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.industry-showcase__body h3 {
  margin: 0 0 8px;

  color: #171717;
  font-family: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.28;
  text-transform: none;
}

.industry-showcase__body p {
  margin: 0 0 13px;

  color: #686868;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.5;
}

.industry-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: auto;

  color: #ef5a3d;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.industry-showcase__link span {
  font-size: 12px;
  line-height: 1;
}

.industry-showcase__link:hover {
  color: #c93e26;
}

/* Stop old global arrows and pseudo-elements */

.industry-showcase__button::before,
.industry-showcase__button::after,
.industry-showcase__link::before,
.industry-showcase__link::after,
.industry-showcase__card::before,
.industry-showcase__card::after {
  display: none !important;
  content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1366px) {

  .industry-showcase__container {
    width: min(calc(100% - 42px), 1240px);
  }

  .industry-showcase__layout {
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 28px;
  }

  .industry-showcase__heading {
    font-size: 31px;
  }

  .industry-showcase__card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    flex-basis: 300px;
    height: 325px;
  }

  .industry-showcase__image {
    height: 165px;
    flex-basis: 165px;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

  .industry-showcase {
    padding: 48px 0 55px;
  }

  .industry-showcase__container {
    width: min(calc(100% - 40px), 760px);
  }

  .industry-showcase__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industry-showcase__intro {
    max-width: 700px;
  }

  .industry-carousel {
    width: calc(100vw - 20px);
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

  .industry-showcase {
    padding: 40px 0 48px;
  }

  .industry-showcase__container {
    width: calc(100% - 30px);
  }

  .industry-showcase__heading {
    margin-bottom: 24px;
    font-size: 27px;
    line-height: 1.1;
  }

  .industry-showcase__intro p {
    font-size: 12px;
  }

  .industry-showcase__card {
    width: 275px;
    min-width: 275px;
    max-width: 275px;
    flex-basis: 275px;
    height: 315px;
  }

  .industry-showcase__image {
    height: 150px;
    flex-basis: 150px;
  }

  .industry-showcase__body {
    padding: 15px;
  }
}
/* =====================================================
   HOW WE DO IT AT ECOMIFY AUTOMATION
   ===================================================== */

.ecom-process-section,
.ecom-process-section *,
.ecom-process-modal,
.ecom-process-modal * {
  box-sizing: border-box;
}

.ecom-process-section {
  position: relative;
  width: 100%;
  padding: 44px 0 20px;
  overflow: hidden;

  border-top: 1px solid rgba(255, 255, 255, 0.75);

  background:
    radial-gradient(
      circle at 0% 40%,
      rgba(117, 35, 22, 0.7) 0%,
      rgba(56, 15, 10, 0.46) 35%,
      transparent 62%
    ),
    radial-gradient(
      circle at 100% 8%,
      rgba(119, 38, 25, 0.76) 0%,
      rgba(61, 17, 12, 0.48) 34%,
      transparent 61%
    ),
    linear-gradient(
      90deg,
      #35110c 0%,
      #150604 27%,
      #030202 51%,
      #1c0805 75%,
      #4b190f 100%
    );
}

.ecom-process-container {
  width: min(calc(100% - 64px), 1440px);
  margin-inline: auto;
}

/* =====================================================
   TOP HEADER
   ===================================================== */

.ecom-process-header {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 65px;
  align-items: start;

  margin-bottom: 58px;
}

/* Heading */

.ecom-process-title {
  margin: 0;

  font-family: inherit;
  font-size: clamp(42px, 3.35vw, 54px);
  font-weight: 800;
  line-height: 1.27;
  letter-spacing: -1.9px;
  text-transform: uppercase;
}

.ecom-process-title span {
  display: block;
}

.ecom-process-title__white {
  color: #ffffff;
}

.ecom-process-title__orange {
  color: #ef5c3f;
}

/* Right paragraph */

.ecom-process-intro {
  max-width: 590px;
  padding-top: 6px;
}

.ecom-process-intro p {
  margin: 0 0 23px;

  color: rgba(255, 255, 255, 0.96);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
}

/* Discover More button */

.ecom-process-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 52px;
  padding: 12px 20px;

  border: 2px solid #f04f2f;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.4);

  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.ecom-process-button span {
  font-size: 25px;
  font-weight: 300;
  line-height: 0;
  transform: translateY(-1px);
}

.ecom-process-button:hover {
  color: #ffffff;
  border-color: #f04f2f;
  background: #f04f2f;
  transform: translateY(-2px);
}

/* Remove old global button effects */

.ecom-process-button::before,
.ecom-process-button::after {
  display: none !important;
  content: none !important;
}

/* =====================================================
   LARGE PROCESS IMAGE
   ===================================================== */

.ecom-process-visual {
  position: relative;

  width: min(100%, 1238px);
  margin-inline: auto;

  overflow: hidden;
  border-radius: 18px;
  background: #f8f7f8;
}

.ecom-process-visual img {
  display: block;
  width: 100%;
  height: auto;

  border: 0;
  border-radius: 18px;
  object-fit: contain;
}

/*
  Image ke andar jo play icon bana hua hai,
  us ke upar transparent clickable button hai.
*/

.ecom-process-play {
  position: absolute;
  z-index: 3;

  top: 51%;
  left: 50%;

  width: 95px;
  height: 95px;

  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;

  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* Optional focus ring */

.ecom-process-play:focus-visible {
  outline: 3px solid #ef5c3f;
  outline-offset: 5px;
}

/* =====================================================
   VIDEO MODAL
   ===================================================== */

.ecom-process-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;
  background: rgba(0, 0, 0, 0.88);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.ecom-process-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ecom-process-modal__dialog {
  position: relative;

  width: min(100%, 960px);
  aspect-ratio: 16 / 9;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #070707;

  color: #ffffff;
}

.ecom-process-modal__content {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.ecom-process-modal__content iframe,
.ecom-process-modal__content video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.ecom-process-modal__close {
  position: absolute;
  z-index: 5;

  top: -48px;
  right: 0;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);

  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1366px) {

  .ecom-process-container {
    width: min(calc(100% - 52px), 1240px);
  }

  .ecom-process-header {
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 48px;
    margin-bottom: 48px;
  }

  .ecom-process-title {
    font-size: 44px;
  }

  .ecom-process-intro p {
    font-size: 14.5px;
  }

  .ecom-process-visual {
    max-width: 1100px;
  }

  .ecom-process-play {
    width: 82px;
    height: 82px;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

  .ecom-process-section {
    padding: 48px 0 35px;
  }

  .ecom-process-container {
    width: min(calc(100% - 40px), 760px);
  }

  .ecom-process-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .ecom-process-title {
    font-size: clamp(36px, 6vw, 48px);
    line-height: 1.15;
  }

  .ecom-process-intro {
    max-width: 700px;
    padding-top: 0;
  }

  .ecom-process-intro p {
    font-size: 14px;
  }

  .ecom-process-play {
    width: 70px;
    height: 70px;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

  .ecom-process-section {
    padding: 40px 0 28px;
  }

  .ecom-process-container {
    width: calc(100% - 30px);
  }

  .ecom-process-header {
    gap: 20px;
    margin-bottom: 30px;
  }

  .ecom-process-title {
    font-size: 31px;
    line-height: 1.13;
    letter-spacing: -1px;
  }

  .ecom-process-intro p {
    font-size: 13px;
    line-height: 1.65;
  }

  .ecom-process-button {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 13px;
  }

  .ecom-process-visual,
  .ecom-process-visual img {
    border-radius: 10px;
  }

  .ecom-process-play {
    width: 52px;
    height: 52px;
  }

  .ecom-process-modal {
    padding: 16px;
  }
}



/* =====================================================
   WHY CHOOSE ECOMIFY
   ===================================================== */

.ecom-why-section,
.ecom-why-section * {
  box-sizing: border-box;
}

.ecom-why-section {
  position: relative;
  width: 100%;
  padding: 62px 0 40px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 46%,
      rgba(132, 42, 27, 0.74) 0%,
      rgba(65, 18, 12, 0.46) 34%,
      transparent 61%
    ),
    radial-gradient(
      circle at 100% 14%,
      rgba(132, 42, 27, 0.72) 0%,
      rgba(64, 18, 12, 0.44) 35%,
      transparent 62%
    ),
    linear-gradient(
      90deg,
      #3a130d 0%,
      #170604 27%,
      #030202 51%,
      #1b0705 75%,
      #49180f 100%
    );
}

.ecom-why-container {
  width: min(calc(100% - 64px), 1600px);
  margin-inline: auto;
}

/* =====================================================
   TOP HEADER
   ===================================================== */

.ecom-why-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(500px, 0.9fr);
  gap: 75px;
  align-items: start;
}

.ecom-why-title {
  margin: 0;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(44px, 3.1vw, 55px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.7px;
  text-transform: uppercase;
}

.ecom-why-title span {
  color: #ef5b3e;
}

.ecom-why-header__text {
  max-width: 690px;
  padding-top: 3px;
}

.ecom-why-header__text p {
  margin: 0;

  color: rgba(255, 255, 255, 0.97);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.ecom-why-header__text p + p {
  margin-top: 23px;
}

.ecom-why-divider {
  width: 100%;
  height: 1px;
  margin: 48px 0 47px;

  background: rgba(255, 255, 255, 0.87);
}

/* =====================================================
   MAIN LAYOUT
   ===================================================== */

.ecom-why-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

/* =====================================================
   FORM
   ===================================================== */

.ecom-why-form-wrap {
  width: 100%;
}

.ecom-why-form-intro {
  margin: 0 0 45px;

  color: rgba(255, 255, 255, 0.96);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
}

.ecom-why-form {
  width: 100%;
}

.ecom-why-field {
  position: relative;
  margin-bottom: 18px;
}

.ecom-why-field label {
  position: absolute;
  width: 1px;
  height: 1px;

  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ecom-why-field input {
  display: block;
  width: 100%;
  height: 58px;

  padding: 0 20px;

  border: 1px solid transparent;
  border-radius: 50px;
  outline: 0;
  background: #414141;

  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;

  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18);

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.ecom-why-field input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.ecom-why-field input:focus {
  border-color: #ef5b3e;
  background: #464646;
  box-shadow:
    0 7px 14px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(239, 91, 62, 0.13);
}

.ecom-why-field input.is-error {
  border-color: #ff7160;
}

.ecom-why-error {
  display: block;
  min-height: 0;
  margin: 6px 0 0 16px;

  color: #ff9b8c;
  font-size: 11px;
  line-height: 1.4;
}

.ecom-why-error:empty {
  display: none;
}

/* Consent */

.ecom-why-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  margin: 23px 0 18px;

  color: rgba(255, 255, 255, 0.94);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  cursor: pointer;
}

.ecom-why-consent input {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;

  margin: 4px 0 0;
  border-radius: 0;

  accent-color: #ef5b3e;
}

.ecom-why-consent a {
  color: #ffffff;
  text-decoration: none;
}

.ecom-why-consent a:hover {
  color: #ef5b3e;
}

.ecom-why-error--consent {
  margin: -10px 0 13px 22px;
}

/* Submit button */

.ecom-why-submit {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 59px;
  padding: 12px 20px;

  border: 0;
  border-radius: 50px;
  outline: 0;

  background:
    linear-gradient(
      90deg,
      #ff674b 0%,
      #ef5136 50%,
      #e63e29 100%
    );

  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 10px 24px rgba(190, 48, 27, 0.25);
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.ecom-why-submit:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 15px 29px rgba(190, 48, 27, 0.34);
}

.ecom-why-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.ecom-why-submit::before,
.ecom-why-submit::after {
  display: none !important;
  content: none !important;
}

.ecom-why-form-message {
  min-height: 18px;
  margin: 11px 0 0;

  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

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

.ecom-why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 19px;
}

.ecom-why-card {
  position: relative;
  min-height: 285px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 9px;
  background: #1c1c1c;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ecom-why-card:hover {
  border-color: rgba(239, 91, 62, 0.72);
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

/* Top orange check tab */

.ecom-why-card__tab {
  position: absolute;
  z-index: 2;

  top: -1px;
  left: 50%;

  width: 160px;
  height: 62px;

  transform: translateX(-50%);
}

.ecom-why-card__tab img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Card content */

.ecom-why-card__content {
  width: 100%;
  padding: 76px 26px 30px;

  color: #ffffff;
  text-align: center;
}

.ecom-why-card h3 {
  margin: 0 0 14px;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(23px, 1.55vw, 29px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.45px;
  text-transform: none;
}

.ecom-why-card p {
  max-width: 570px;
  margin: 0 auto 12px;

  color: rgba(255, 255, 255, 0.95);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
}

.ecom-why-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 1px;

  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.ecom-why-card__link:hover {
  color: #ef5b3e;
}

/* Remove effects inherited from old styles */

.ecom-why-card::before,
.ecom-why-card::after,
.ecom-why-card__link::before,
.ecom-why-card__link::after {
  display: none !important;
  content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {

  .ecom-why-container {
    width: min(calc(100% - 54px), 1320px);
  }

  .ecom-why-header {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 0.85fr);
    gap: 55px;
  }

  .ecom-why-title {
    font-size: 47px;
  }

  .ecom-why-layout {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
  }

  .ecom-why-form-intro {
    font-size: 14.5px;
  }

  .ecom-why-card {
    min-height: 270px;
  }

  .ecom-why-card h3 {
    font-size: 23px;
  }

  .ecom-why-card p {
    font-size: 12.5px;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1050px) {

  .ecom-why-section {
    padding: 52px 0;
  }

  .ecom-why-container {
    width: min(calc(100% - 40px), 820px);
  }

  .ecom-why-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ecom-why-header__text {
    max-width: 760px;
  }

  .ecom-why-divider {
    margin: 35px 0;
  }

  .ecom-why-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ecom-why-form-wrap {
    max-width: 600px;
  }

  .ecom-why-form-intro {
    margin-bottom: 28px;
  }
}

/* =====================================================
   SMALL TABLET
   ===================================================== */

@media (max-width: 760px) {

  .ecom-why-cards {
    grid-template-columns: 1fr;
  }

  .ecom-why-card {
    min-height: 260px;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

  .ecom-why-section {
    padding: 42px 0;
  }

  .ecom-why-container {
    width: calc(100% - 30px);
  }

  .ecom-why-title {
    font-size: 33px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .ecom-why-header__text p {
    font-size: 13px;
    line-height: 1.65;
  }

  .ecom-why-header__text p + p {
    margin-top: 14px;
  }

  .ecom-why-divider {
    margin: 28px 0;
  }

  .ecom-why-form-intro {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .ecom-why-field input {
    height: 52px;
    padding-inline: 17px;
    font-size: 14px;
  }

  .ecom-why-consent {
    font-size: 11.5px;
  }

  .ecom-why-submit {
    min-height: 53px;
    font-size: 14px;
  }

  .ecom-why-card {
    min-height: 270px;
  }

  .ecom-why-card__tab {
    width: 135px;
    height: 55px;
  }

  .ecom-why-card__content {
    padding: 68px 18px 25px;
  }

  .ecom-why-card h3 {
    font-size: 22px;
  }

  .ecom-why-card p {
    font-size: 12px;
  }
}
/* =====================================================
   OUTCOME NOT JUST OUTPUT
   ===================================================== */
.outcome-section {
  padding: var(--section-padding) 0 44px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(133, 47, 28, 0.28), transparent 60%),
    linear-gradient(180deg, #0a0403 0%, #150806 100%);
}

.outcome-section .section-head {
  align-items: flex-start;
}

.outcome-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  cursor: grab;
  padding-bottom: 10px;
  scrollbar-width: none;
  user-select: none;
}

.outcome-gallery.dragging {
  cursor: grabbing;
}

.outcome-gallery::-webkit-scrollbar {
  display: none;
}

.outcome-gallery__track {
  display: flex;
  gap: 10px;
  animation: outcomeScroll 34s linear infinite;
}

.outcome-gallery:hover .outcome-gallery__track,
.outcome-gallery.dragging .outcome-gallery__track {
  animation-play-state: paused;
}

@keyframes outcomeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.outcome-card {
  flex: 0 0 auto;
  width: 150px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.outcome-card:hover {
  transform: translateY(-6px);
}

.outcome-card img {
  width: 100%;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 30px;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
}

/* =====================================================
   CLIENT TESTIMONIALS
   ===================================================== */

.client-stories-section,
.client-stories-section * {
  box-sizing: border-box;
}

.client-stories-section {
  position: relative;
  width: 100%;
  padding: 48px 0 62px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 48%,
      rgba(126, 39, 25, 0.66) 0%,
      rgba(58, 16, 11, 0.42) 32%,
      transparent 59%
    ),
    radial-gradient(
      circle at 100% 34%,
      rgba(132, 42, 26, 0.7) 0%,
      rgba(60, 17, 11, 0.42) 35%,
      transparent 63%
    ),
    linear-gradient(
      90deg,
      #3a130d 0%,
      #190705 27%,
      #030202 51%,
      #1d0805 75%,
      #4a190f 100%
    );
}

.client-stories-container {
  width: min(calc(100% - 64px), 1640px);
  margin-inline: auto;
}

/* =====================================================
   TITLE
   ===================================================== */

.client-stories-title {
  margin: 0 0 30px;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(43px, 3.25vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.8px;
  text-align: left;
  text-transform: uppercase;
}

.client-stories-title span {
  color: #ef5b3e;
}

.client-stories-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}

/* =====================================================
   GOODFIRMS REVIEW STRIP
   ===================================================== */

.client-stories-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-bottom: 18px;
}

.client-review-item {
  min-height: 144px;
  padding: 28px 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border-right: 1px solid rgba(255, 255, 255, 0.78);
}

.client-review-item:last-child {
  border-right: 0;
}

.client-review-item img {
  display: block;
  width: 125px;
  max-height: 42px;
  object-fit: contain;
}

.client-review-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.client-review-item__content strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.client-review-item__content span {
  margin-top: 3px;

  color: rgba(255, 255, 255, 0.95);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
}

/* =====================================================
   MOVING ROWS
   ===================================================== */

.client-stories-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 8px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.client-stories-marquee + .client-stories-marquee {
  margin-top: 11px;
}

.client-stories-marquee.is-dragging {
  cursor: grabbing;
}

.client-stories-track {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  gap: 14px;

  width: max-content;
  min-width: max-content;

  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* =====================================================
   TESTIMONIAL CARD
   ===================================================== */

.client-story-card {
  position: relative;

  width: clamp(500px, 36.4vw, 665px);
  min-width: clamp(500px, 36.4vw, 665px);
  max-width: clamp(500px, 36.4vw, 665px);
  min-height: 238px;
  flex: 0 0 clamp(500px, 36.4vw, 665px);

  padding: 28px 29px 22px;

  display: flex;
  flex-direction: column;

  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 30px;
  background: #1c1c1c;

  color: #ffffff;

  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.client-story-card:hover {
  border-color: rgba(239, 91, 62, 0.6);
  box-shadow: 0 17px 35px rgba(0, 0, 0, 0.27);
}

.client-story-card__text {
  position: relative;
  min-height: 122px;
  padding-right: 34px;
}

.client-story-card__text p {
  margin: 0;

  color: rgba(255, 255, 255, 0.96);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

/* Orange scrollbar decoration */

.client-story-card__scroll {
  position: absolute;
  top: 2px;
  right: 0;

  width: 14px;
  height: 92px;
}

.client-story-card__scroll::before,
.client-story-card__scroll::after {
  position: absolute;
  left: 50%;

  color: #ef5b3e;
  font-size: 9px;
  line-height: 1;

  transform: translateX(-50%);
}

.client-story-card__scroll::before {
  content: "▲";
  top: -4px;
}

.client-story-card__scroll::after {
  content: "▼";
  bottom: -4px;
}

.client-story-card__scroll i {
  position: absolute;
  top: 10px;
  left: 50%;

  width: 6px;
  height: 68px;

  border-radius: 20px;
  background: linear-gradient(
    180deg,
    #ff6d4d 0%,
    #ed4c31 100%
  );

  transform: translateX(-50%);
}

/* Footer */

.client-story-card__footer {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.75);
}

.client-story-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-story-person img {
  display: block;
  width: 45px;
  height: 45px;

  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
}

.client-story-person h3 {
  margin: 0;

  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.client-story-brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;

  color: #ffffff;
}

.client-story-brand img {
  display: block;
  width: 34px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
}

.client-story-brand span {
  font-family: inherit;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1.4px;
}

/* Remove old global styles */

.client-story-card::before,
.client-story-card::after,
.client-story-card__footer::before,
.client-story-card__footer::after,
.client-story-brand::before,
.client-story-brand::after {
  display: none !important;
  content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {

  .client-stories-container {
    width: min(calc(100% - 54px), 1320px);
  }

  .client-stories-title {
    font-size: 47px;
  }

  .client-review-item {
    min-height: 130px;
    padding-inline: 20px;
  }

  .client-review-item img {
    width: 105px;
  }

  .client-story-card {
    width: 540px;
    min-width: 540px;
    max-width: 540px;
    flex-basis: 540px;
    min-height: 225px;
  }

  .client-story-card__text p {
    font-size: 14px;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

  .client-stories-section {
    padding: 45px 0 52px;
  }

  .client-stories-container {
    width: calc(100% - 40px);
  }

  .client-stories-reviews {
    width: calc(100% - 40px);
    overflow-x: auto;
    grid-template-columns: repeat(3, 320px);
    margin-inline: auto;
  }

  .client-review-item {
    min-height: 115px;
  }

  .client-story-card {
    width: 480px;
    min-width: 480px;
    max-width: 480px;
    flex-basis: 480px;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

  .client-stories-section {
    padding: 40px 0 46px;
  }

  .client-stories-container {
    width: calc(100% - 30px);
  }

  .client-stories-title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.1;
  }

  .client-stories-reviews {
    width: calc(100% - 30px);
    grid-template-columns: repeat(3, 280px);
  }

  .client-review-item {
    min-height: 105px;
    padding: 20px 16px;
  }

  .client-review-item img {
    width: 92px;
  }

  .client-review-item__content strong {
    font-size: 14px;
  }

  .client-story-card {
    width: 330px;
    min-width: 330px;
    max-width: 330px;
    min-height: 250px;
    flex-basis: 330px;

    padding: 22px 20px 19px;
    border-radius: 22px;
  }

  .client-story-card__text {
    min-height: 145px;
    padding-right: 24px;
  }

  .client-story-card__text p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .client-story-card__scroll {
    height: 82px;
  }

  .client-story-card__scroll i {
    height: 58px;
  }

  .client-story-person img {
    width: 38px;
    height: 38px;
  }

  .client-story-person h3 {
    font-size: 13px;
  }

  .client-story-brand img {
    width: 28px;
    height: 25px;
  }

  .client-story-brand span {
    font-size: 22px;
  }
}
/* =====================================================
   INSIGHTS PREVIEW (home) & INSIGHTS GRID (insights page)
   ===================================================== */
.insights-preview,
.insights-page-section {
  padding: var(--section-padding) 0;
}

.insights-preview {
  background:
    radial-gradient(ellipse 55% 60% at 100% 0%, rgba(133, 47, 28, 0.3), transparent 60%),
    linear-gradient(180deg, #150806 0%, #0a0403 100%);
}

.insights-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-dark);
}

.insights-categories a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s;
}

.insights-categories a:hover,
.insights-categories a.active {
  color: var(--primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-small);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.blog-card__img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.08);
}

.blog-card__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.blog-category {
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-button);
  text-transform: uppercase;
}

.blog-date {
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 0.68rem;
  padding: 5px 10px;
  border-radius: var(--radius-button);
}

.blog-card__body {
  padding: 16px 18px;
}

.blog-card__body h3 {
  font-size: 0.92rem;
  text-transform: none;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--white);
  min-height: 0;
}

.blog-card__body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-button);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease);
}

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

/* Compact modifier — used only for the 3-card Home page preview */
.blog-card--compact .blog-card__img {
  height: 150px;
}

.blog-card--compact .blog-card__body {
  padding: 14px 16px;
}

.blog-card--compact .blog-card__body h3 {
  font-size: 0.86rem;
  margin-bottom: 10px;
}

/* Insights page specific background */
.insights-page-hero-spacer {
  background: linear-gradient(180deg, #180705 0%, #150606 40%, var(--black) 100%);
}

.insights-page-section {
  background: linear-gradient(180deg, #150606 0%, var(--black) 60%);
}

.insights-page-section .blog-grid {
  gap: 36px 28px;
}

.insights-page-section .blog-card__img {
  border: 1px solid var(--border-light);
  border-bottom: none;
}

/* =====================================================
   CONTACT SECTION (home / contact / tiktok)
   ===================================================== */
.contact-section {
  padding: var(--section-padding) 0;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.contact-form-card {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 34px);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.contact-form-grid .field--full {
  grid-column: 1 / -1;
}

.contact-form-grid label,
.field label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 24px;
  max-width: 400px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-info-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: none;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}

/* Contact Page specific */
.contact-page-section {
  background:
    radial-gradient(ellipse 45% 60% at 0% 30%, rgba(120, 40, 20, 0.35), transparent 60%),
    radial-gradient(ellipse 45% 60% at 100% 70%, rgba(120, 40, 20, 0.3), transparent 60%),
    var(--black);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-service-section {
  padding-top: 70px;
  background: linear-gradient(180deg, #1c0b08 0%, #170907 40%, var(--black) 100%);
}

.about-service-section .service-visual {
  min-height: 560px;
}

.about-why-section {
  background: var(--black);
}

/* =====================================================
   TIKTOK PAGE
   ===================================================== */
/* =====================================================
   TIKTOK SHOP ON AUTOPILOT HERO
   ===================================================== */

.tiktok-autopilot-hero,
.tiktok-autopilot-hero * {
  box-sizing: border-box;
}

.tiktok-autopilot-hero {
  position: relative;
  width: 100%;
  min-height: 665px;

  display: flex;
  align-items: center;

  overflow: hidden;
  isolation: isolate;

  background: #160704;
}

/* =====================================================
   BACKGROUND IMAGE
   ===================================================== */

.tiktok-autopilot-hero__media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.tiktok-autopilot-hero__media img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 62% center;
}

/* =====================================================
   BACKGROUND OVERLAYS
   ===================================================== */

.tiktok-autopilot-hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(35, 9, 5, 0.98) 0%,
      rgba(52, 15, 9, 0.9) 25%,
      rgba(39, 16, 12, 0.72) 46%,
      rgba(31, 23, 22, 0.29) 68%,
      rgba(42, 15, 10, 0.2) 100%
    );
}

/* Warm red glow */

.tiktok-autopilot-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;

  background:
    radial-gradient(
      circle at 3% 75%,
      rgba(161, 53, 33, 0.42) 0%,
      transparent 46%
    ),
    linear-gradient(
      90deg,
      rgba(102, 31, 19, 0.2) 0%,
      transparent 62%
    );

  pointer-events: none;
}

/* =====================================================
   CONTAINER
   ===================================================== */

.tiktok-autopilot-hero__container {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 100px), 1710px);
  margin-inline: auto;
  padding: 174px 0 70px;
}

/* =====================================================
   CONTENT
   ===================================================== */

.tiktok-autopilot-hero__content {
  width: 100%;
  max-width: 1050px;
}

/* Heading */

.tiktok-autopilot-hero__title {
  max-width: 720px;
  margin: 0 0 24px;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(39px, 3vw, 50px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.tiktok-autopilot-hero__line {
  display: block;
}

.tiktok-autopilot-hero__title strong {
  color: #ef5b3d;
  font-weight: 800;
}

/* Paragraphs */

.tiktok-autopilot-hero__copy {
  max-width: 1030px;
}

.tiktok-autopilot-hero__copy p {
  margin: 0;

  color: rgba(255, 255, 255, 0.97);
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.66;
}

.tiktok-autopilot-hero__copy p + p {
  margin-top: 20px;
}

.tiktok-autopilot-hero__copy
  .tiktok-autopilot-hero__highlight {
  max-width: 990px;
  font-weight: 700;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.tiktok-autopilot-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px;

  margin-top: 23px;
}

.tiktok-autopilot-hero__button {
  min-height: 52px;
  padding: 12px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50px;

  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tiktok-autopilot-hero__button--primary {
  min-width: 135px;

  border: 2px solid #ed4d32;
  background:
    linear-gradient(
      135deg,
      #f65b3c 0%,
      #df3525 100%
    );

  box-shadow: 0 10px 24px rgba(213, 55, 34, 0.22);
}

.tiktok-autopilot-hero__button--outline {
  min-width: 165px;

  border: 2px solid #ef4e32;
  background: rgba(0, 0, 0, 0.6);
}

.tiktok-autopilot-hero__button:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.tiktok-autopilot-hero__button--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 29px rgba(213, 55, 34, 0.33);
}

.tiktok-autopilot-hero__button--outline:hover {
  background: #ef4e32;
}

/* Remove global button effects */

.tiktok-autopilot-hero__button::before,
.tiktok-autopilot-hero__button::after {
  display: none !important;
  content: none !important;
}

/* =====================================================
   LARGE DESKTOP
   ===================================================== */

@media (min-width: 1700px) {
  .tiktok-autopilot-hero__container {
    width: min(calc(100% - 150px), 1720px);
  }

  .tiktok-autopilot-hero__media img {
    object-position: 64% center;
  }
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {
  .tiktok-autopilot-hero {
    min-height: 620px;
  }

  .tiktok-autopilot-hero__container {
    width: min(calc(100% - 70px), 1320px);
    padding: 155px 0 60px;
  }

  .tiktok-autopilot-hero__content {
    max-width: 900px;
  }

  .tiktok-autopilot-hero__title {
    max-width: 670px;
    font-size: 42px;
  }

  .tiktok-autopilot-hero__copy {
    max-width: 870px;
  }

  .tiktok-autopilot-hero__copy p {
    font-size: 15px;
  }

  .tiktok-autopilot-hero__media img {
    object-position: 65% center;
  }
}

/* =====================================================
   SMALL LAPTOP
   ===================================================== */

@media (max-width: 1199px) {
  .tiktok-autopilot-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(29, 8, 5, 0.98) 0%,
        rgba(40, 12, 8, 0.9) 38%,
        rgba(29, 18, 16, 0.58) 70%,
        rgba(26, 13, 10, 0.3) 100%
      );
  }

  .tiktok-autopilot-hero__content {
    max-width: 720px;
  }

  .tiktok-autopilot-hero__copy {
    max-width: 700px;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {
  .tiktok-autopilot-hero {
    min-height: 660px;
    align-items: flex-end;
  }

  .tiktok-autopilot-hero__media img {
    object-position: 68% center;
  }

  .tiktok-autopilot-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(26, 7, 4, 0.96) 0%,
        rgba(36, 10, 6, 0.86) 54%,
        rgba(25, 11, 8, 0.48) 100%
      ),
      linear-gradient(
        0deg,
        rgba(17, 5, 3, 0.94) 0%,
        rgba(18, 7, 4, 0.2) 75%
      );
  }

  .tiktok-autopilot-hero__container {
    width: min(calc(100% - 40px), 760px);
    padding: 145px 0 55px;
  }

  .tiktok-autopilot-hero__content {
    max-width: 680px;
  }

  .tiktok-autopilot-hero__title {
    max-width: 650px;
    font-size: clamp(35px, 5vw, 44px);
  }

  .tiktok-autopilot-hero__copy p {
    font-size: 14px;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {
  .tiktok-autopilot-hero {
    min-height: 720px;
  }

  .tiktok-autopilot-hero__media img {
    object-position: 70% center;
  }

  .tiktok-autopilot-hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(23, 6, 4, 0.98) 0%,
        rgba(32, 9, 6, 0.87) 58%,
        rgba(17, 7, 5, 0.42) 100%
      );
  }

  .tiktok-autopilot-hero__container {
    width: calc(100% - 30px);
    padding: 125px 0 45px;
  }

  .tiktok-autopilot-hero__title {
    margin-bottom: 19px;
    font-size: 31px;
    line-height: 1.16;
    letter-spacing: -0.8px;
  }

  .tiktok-autopilot-hero__copy p {
    font-size: 13px;
    line-height: 1.6;
  }

  .tiktok-autopilot-hero__copy p + p {
    margin-top: 16px;
  }

  .tiktok-autopilot-hero__actions {
    gap: 12px;
    margin-top: 20px;
  }

  .tiktok-autopilot-hero__button {
    min-height: 46px;
    padding: 10px 17px;
    font-size: 13px;
  }

  .tiktok-autopilot-hero__button--primary {
    min-width: 120px;
  }

  .tiktok-autopilot-hero__button--outline {
    min-width: 145px;
  }
}

/* =====================================================
   TIKTOK SHOP AUTOMATION SERVICES
   ===================================================== */

.tt-auto-services,
.tt-auto-services * {
  box-sizing: border-box;
}

.tt-auto-services {
  position: relative;
  width: 100%;
  padding: 38px 0 55px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 45%,
      rgba(124, 38, 25, 0.66) 0%,
      rgba(54, 15, 10, 0.4) 35%,
      transparent 62%
    ),
    radial-gradient(
      circle at 100% 35%,
      rgba(127, 39, 25, 0.66) 0%,
      rgba(58, 16, 11, 0.4) 38%,
      transparent 65%
    ),
    linear-gradient(
      90deg,
      #3b130d 0%,
      #1a0705 27%,
      #030202 51%,
      #1d0805 75%,
      #46170f 100%
    );
}

.tt-auto-services__container {
  width: min(calc(100% - 64px), 1710px);
  margin-inline: auto;
}

/* =====================================================
   HEADING
   ===================================================== */

.tt-auto-services__heading {
  max-width: 850px;
  margin: 0 auto 30px;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(38px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1.5px;
  text-align: center;
  text-transform: uppercase;
}

.tt-auto-services__heading span {
  display: block;
}

.tt-auto-services__heading strong {
  color: #ef5a3d;
  font-weight: 800;
}

/* =====================================================
   GRID
   ===================================================== */

.tt-auto-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px 36px;
}

/* =====================================================
   SERVICE CARD
   ===================================================== */

.tt-auto-card {
  position: relative;
  min-width: 0;
  min-height: 340px;
  padding: 43px 38px 35px;

  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;

  background:
    linear-gradient(
      105deg,
      #d92d20 0%,
      #ef4632 47%,
      #ff654b 100%
    );

  color: #ffffff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.tt-auto-card:hover {
  transform: translateY(-6px);
  filter: brightness(1.03);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

/* =====================================================
   CARD HEADER
   ===================================================== */

.tt-auto-card__top {
  min-height: 88px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 18px;
  align-items: start;
}

.tt-auto-card h3 {
  margin: 0;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -0.6px;
  text-transform: none;
}

.tt-auto-card__icon {
  width: 66px;
  height: 66px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
}

.tt-auto-card__icon svg {
  display: block;
  width: 62px;
  height: 62px;
  overflow: visible;
}

/* =====================================================
   CARD CONTENT
   ===================================================== */

.tt-auto-card__content {
  max-width: calc(100% - 25px);
  padding-top: 13px;
}

.tt-auto-card__content p {
  margin: 0 0 22px;

  color: rgba(255, 255, 255, 0.97);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.62;
}

.tt-auto-card__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-auto-card__content li {
  position: relative;
  margin: 0 0 5px;
  padding-left: 13px;

  color: rgba(255, 255, 255, 0.98);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.tt-auto-card__content li::before {
  content: "";
  position: absolute;

  top: 8px;
  left: 0;

  width: 6px;
  height: 6px;

  border-radius: 1px;
  background: #ffffff;
}

/* =====================================================
   DECORATIVE SCROLLBAR
   ===================================================== */

.tt-auto-card__rail {
  position: absolute;
  right: 38px;
  bottom: 38px;

  width: 12px;
  height: 86px;
}

.tt-auto-card__rail::before,
.tt-auto-card__rail::after {
  position: absolute;
  left: 50%;

  color: #ffffff;
  font-size: 8px;
  line-height: 1;

  transform: translateX(-50%);
}

.tt-auto-card__rail::before {
  content: "▲";
  top: -8px;
}

.tt-auto-card__rail::after {
  content: "▼";
  bottom: -8px;
}

.tt-auto-card__rail i {
  position: absolute;
  top: 5px;
  left: 50%;

  width: 6px;
  height: 64px;

  border-radius: 20px;
  background: #ffffff;

  transform: translateX(-50%);
}

/* Remove inherited global effects */

.tt-auto-card::before,
.tt-auto-card::after,
.tt-auto-card__icon::before,
.tt-auto-card__icon::after {
  display: none !important;
  content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {

  .tt-auto-services__container {
    width: min(calc(100% - 54px), 1320px);
  }

  .tt-auto-services__heading {
    max-width: 760px;
    font-size: 43px;
  }

  .tt-auto-services__grid {
    gap: 18px 24px;
  }

  .tt-auto-card {
    min-height: 325px;
    padding: 35px 30px 31px;
    border-radius: 30px;
  }

  .tt-auto-card__top {
    grid-template-columns: minmax(0, 1fr) 61px;
  }

  .tt-auto-card h3 {
    font-size: 22px;
  }

  .tt-auto-card__icon,
  .tt-auto-card__icon svg {
    width: 57px;
    height: 57px;
  }

  .tt-auto-card__content p,
  .tt-auto-card__content li {
    font-size: 12.5px;
  }

  .tt-auto-card__rail {
    right: 28px;
    bottom: 34px;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1050px) {

  .tt-auto-services {
    padding: 45px 0 55px;
  }

  .tt-auto-services__container {
    width: min(calc(100% - 40px), 820px);
  }

  .tt-auto-services__heading {
    font-size: 38px;
  }

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

  .tt-auto-card {
    min-height: 330px;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 680px) {

  .tt-auto-services {
    padding: 40px 0 48px;
  }

  .tt-auto-services__container {
    width: calc(100% - 30px);
  }

  .tt-auto-services__heading {
    margin-bottom: 25px;
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -0.8px;
  }

  .tt-auto-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tt-auto-card {
    min-height: 315px;
    padding: 29px 23px 28px;
    border-radius: 25px;
  }

  .tt-auto-card__top {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) 55px;
    gap: 12px;
  }

  .tt-auto-card h3 {
    font-size: 20px;
  }

  .tt-auto-card__icon,
  .tt-auto-card__icon svg {
    width: 52px;
    height: 52px;
  }

  .tt-auto-card__content {
    max-width: calc(100% - 19px);
  }

  .tt-auto-card__content p {
    margin-bottom: 17px;
    font-size: 12.5px;
  }

  .tt-auto-card__content li {
    font-size: 12.5px;
  }

  .tt-auto-card__rail {
    right: 20px;
    bottom: 29px;
  }
}

/* Circular platform / process section */
.circular-platform-section {
  padding: 30px 0 var(--section-padding);
  background: linear-gradient(180deg, #150806 0%, #0a0403 100%);
}

.circular-platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.circular-platform-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-light) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.circular-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.circular-item__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border: 3px solid var(--primary);
}

.circular-item__circle svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.circular-item h4 {
  font-size: 0.74rem;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.circular-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =====================================================
   ECOMMERCE AUTOMATION STATISTICS
   ===================================================== */

.ecom-stats-section,
.ecom-stats-section * {
  box-sizing: border-box;
}

.ecom-stats-section {
  position: relative;
  width: 100%;
  min-height: 540px;
  padding: 74px 0 72px;
  overflow: hidden;

  color: #ffffff;

  background:
    linear-gradient(
      105deg,
      #ff644b 0%,
      #f24b34 46%,
      #d3261e 100%
    );
}

.ecom-stats-container {
  width: min(calc(100% - 70px), 1540px);
  margin-inline: auto;
}

/* =====================================================
   HEADING
   ===================================================== */

.ecom-stats-heading {
  max-width: 920px;
  margin: 0 auto 78px;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(36px, 2.8vw, 48px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 1.1px;
  text-align: center;
  text-transform: uppercase;
}

.ecom-stats-heading span {
  display: block;
}

/* =====================================================
   GRID
   ===================================================== */

.ecom-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 75px;
  align-items: start;
}

/* =====================================================
   STAT CARD
   ===================================================== */

.ecom-stat-card {
  min-width: 0;
  text-align: center;
}

.ecom-stat-number {
  min-height: 64px;
  margin: 0 0 3px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(37px, 3.5vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
}

.ecom-stat-prefix {
  display: inline-block;
}

.ecom-stat-counter {
  display: inline-block;
}

.ecom-stat-card h3 {
  margin: 10px 0 20px;

  color: #ffffff;
  font-family: inherit;
  font-size: clamp(24px, 1.75vw, 30px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.6px;
  text-transform: none;
}

.ecom-stat-card p {
  max-width: 470px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.98);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.78;
  text-transform: capitalize;
}

/* Remove old global effects */

.ecom-stat-card::before,
.ecom-stat-card::after,
.ecom-stat-number::before,
.ecom-stat-number::after {
  display: none !important;
  content: none !important;
}

/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1440px) {

  .ecom-stats-section {
    min-height: 500px;
    padding: 65px 0;
  }

  .ecom-stats-container {
    width: min(calc(100% - 54px), 1320px);
  }

  .ecom-stats-heading {
    max-width: 820px;
    margin-bottom: 62px;
    font-size:30px;
  }

  .ecom-stats-grid {
    gap: 45px;
  }

  .ecom-stat-number {
    font-size: 48px;
  }

  .ecom-stat-card h3 {
    font-size: 25px;
  }

  .ecom-stat-card p {
    max-width: 390px;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

  .ecom-stats-section {
    min-height: auto;
    padding: 55px 0 60px;
  }

  .ecom-stats-container {
    width: min(calc(100% - 40px), 800px);
  }

  .ecom-stats-heading {
    max-width: 720px;
    margin-bottom: 50px;
    font-size: 30px;
  }

  .ecom-stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ecom-stat-card {
    max-width: 650px;
    margin-inline: auto;
  }

  .ecom-stat-card p {
    max-width: 580px;
  }
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

  .ecom-stats-section {
    padding: 44px 0 50px;
  }

  .ecom-stats-container {
    width: calc(100% - 30px);
  }

  .ecom-stats-heading {
    margin-bottom: 42px;
    font-size: 27px;
    line-height: 1.25;
    letter-spacing: 0.3px;
  }

  .ecom-stats-grid {
    gap: 40px;
  }

  .ecom-stat-number {
    min-height: 50px;
    font-size: 42px;
  }

  .ecom-stat-card h3 {
    margin: 8px 0 15px;
    font-size: 22px;
  }

  .ecom-stat-card p {
    font-size: 13px;
    line-height: 1.65;
  }
}
/* Success / results bordered sections */
.bordered-feature {
  padding: 34px 0;
}

.bordered-feature__box {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--primary);
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(241, 83, 54, 0.06), transparent 60%);
}

.bordered-feature__box.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.bordered-feature__box.reverse .bordered-feature__text {
  order: 2;
}

.bordered-feature__box.reverse .bordered-feature__img {
  order: 1;
}

.bordered-feature__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.bordered-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bordered-feature__text h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 12px;
}

.bordered-feature__text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* Process flow */
.process-section {
  padding: 44px 0;
  text-align: center;
  background: linear-gradient(180deg, #0a0403 0%, #150806 100%);
}

.process-section h2 {
  margin-bottom: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.process-card {
  position: relative;
  text-align: left;
}

.process-card__marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  position: absolute;
  top: -16px;
  left: 18px;
  z-index: 2;
}

.process-card__inner {
  background: #1a0805;
  border-radius: 12px;
  padding: 22px 16px 18px;
  box-shadow: 0 14px 0 -6px rgba(0, 0, 0, 0.4);
}

.process-card__box {
  background: linear-gradient(150deg, var(--primary-light), var(--primary-dark));
  border-radius: 10px;
  padding: 18px 16px;
}

.process-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.process-card__icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.process-card h3 {
  color: var(--white);
  font-size: 0.86rem;
  text-transform: none;
  margin-bottom: 6px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  line-height: 1.45;
}

.process-arrow {
  display: none;
}

@media (min-width: 993px) {
  .process-grid > .process-card:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    top: 38%;
    right: -22px;
    width: 16px;
    height: 2px;
    background: var(--primary);
  }

  .process-grid > .process-card:not(:nth-child(3n))::before {
    content: '';
    position: absolute;
    top: calc(38% - 5px);
    right: -28px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--primary);
    z-index: 2;
  }
}

/* FAQ */
.faq-section {
  padding: 44px 0;
}

.faq-section h2 {
  text-align: left;
  margin-bottom: 28px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.faq-list {
  max-width: 760px;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(241, 83, 54, 0.35);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 4px;
  text-align: left;
}

.faq-trigger span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.faq-trigger .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.faq-trigger .faq-icon::before,
.faq-trigger .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  transition: transform 0.3s;
}

.faq-trigger .faq-icon::before {
  width: 10px;
  height: 1.6px;
}

.faq-trigger .faq-icon::after {
  width: 1.6px;
  height: 10px;
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-panel {
  max-height: 300px;
}

.faq-panel__inner {
  padding: 0 4px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tiktok-contact {
  padding: var(--section-padding) 0;
}

.tiktok-contact .contact-form-card {
  padding: clamp(20px, 3vw, 34px);
}

/* =====================================================
   IMAGE PLACEHOLDER (used only where a matching asset
   was not supplied in ecomify.zip — see HTML comments)
   ===================================================== */
.img-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 320px;
  height: 100%;
  width: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(241, 83, 54, 0.25), transparent 55%),
    linear-gradient(150deg, var(--brown-light), var(--dark-brown) 70%);
  color: var(--text-muted);
  text-align: center;
  padding: 30px;
}

.img-placeholder svg {
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.35);
}

.img-placeholder span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.tiktok-hero__bg .img-placeholder {
  min-height: 100%;
  position: absolute;
  inset: 0;
}


/* =========================================================
   HOME PAGE FINAL REFERENCE MATCH
   These rules intentionally load after responsive.css.
   ========================================================= */

/* Shared width and section rhythm */
.home-page main > section {
  overflow: hidden;
}

.home-page .home-hero,
.home-page .service-accordion-section,
.home-page .industry-showcase,
.home-page .ecom-process-section,
.home-page .ecom-why-section,
.home-page .outcome-section,
.home-page .client-stories-section,
.home-page .insights-preview,
.home-page .contact-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

/* ---------------- HERO ---------------- */
.home-page .home-hero {
  min-height: 680px;
}

.home-page .home-hero__inner {
  width: min(100%, 1660px);
  min-height: 680px;
  margin-inline: auto;
  padding: var(--header-h) 4.4% 0;
  grid-template-columns: minmax(0, 61%) minmax(430px, 39%);
}

.home-page .home-hero__content {
  max-width: 900px;
  padding: 34px 0 44px;
}

.home-page .home-hero__heading {
  max-width: 830px;
  margin-bottom: 18px;
  font-size: clamp(30px, 2.15vw, 42px);
  line-height: 1.12;
}

.home-page .home-hero__description {
  max-width: 850px;
  margin-bottom: 23px;
}

.home-page .home-hero__description p {
  font-size: 13px;
  line-height: 1.55;
}

.home-page .hero-badges {
  gap: 10px 14px;
}

.home-page .hero-badge {
  min-height: 38px;
  padding-right: 15px;
  font-size: 11.5px;
}

.home-page .home-hero__visual {
  right: 4.8%;
  width: min(35.5vw, 630px);
}

.home-page .home-hero__person {
  max-width: 620px;
  max-height: 640px;
}

.home-page .hero-floating-amazon {
  top: 35%;
  left: -1%;
  width: 48px;
  height: 48px;
}

.home-page .hero-floating-amazon img {
  width: 31px;
  height: 31px;
}

/* ---------------- REVIEW STRIP ---------------- */
.home-page .review-strip {
  padding: 18px 0;
  background: #171717;
}

.home-page .review-strip .container {
  width: min(calc(100% - 46px), 1480px);
}

.home-page .review-strip__track {
  gap: 0;
}

.home-page .review-item {
  justify-content: center;
  min-height: 55px;
  padding: 5px 18px;
}

.home-page .review-item img {
  height: 24px;
}

.home-page .review-item__text {
  font-size: 0.62rem;
}

/* ---------------- SERVICE ACCORDION ---------------- */
.home-page .service-accordion-section {
  min-height: 720px;
  padding: 64px 0 52px;
}

.home-page .service-accordion-section .container {
  width: min(calc(100% - 72px), 1450px);
  grid-template-columns: 45% 55%;
  gap: 75px;
  align-items: center;
}

.home-page .service-visual {
  min-height: 570px;
}

.home-page .service-visual img.main-visual {
  max-width: 610px;
}

.home-page .accordion-list {
  padding-top: 0;
}

.home-page .accordion-trigger {
  min-height: 67px;
}

.home-page .accordion-trigger h3 {
  font-size: clamp(29px, 2vw, 39px);
}

.home-page .accordion-panel__inner p {
  font-size: 13px;
  line-height: 1.55;
}

/* ---------------- INDUSTRIES ---------------- */
.home-page .industry-showcase {
  padding: 50px 0 60px;
}

.home-page .industry-showcase__container {
  width: min(calc(100% - 62px), 1480px);
}

.home-page .industry-showcase__heading {
  margin-bottom: 28px;
  font-size: clamp(30px, 2.25vw, 41px);
}

.home-page .industry-showcase__layout {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
}

.home-page .industry-showcase__intro p {
  font-size: 12px;
  line-height: 1.55;
}

.home-page .industry-showcase__card {
  width: 315px;
  min-width: 315px;
  max-width: 315px;
  height: 330px;
  flex-basis: 315px;
}

/* ---------------- PROCESS ---------------- */
.home-page .ecom-process-section {
  padding: 48px 0 38px;
}

.home-page .ecom-process-container {
  width: min(calc(100% - 70px), 1430px);
}

.home-page .ecom-process-header {
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: 70px;
  margin-bottom: 44px;
}

.home-page .ecom-process-title {
  font-size: clamp(38px, 3vw, 52px);
  line-height: 1.15;
}

.home-page .ecom-process-intro {
  max-width: 540px;
}

.home-page .ecom-process-intro p {
  font-size: 14px;
  line-height: 1.65;
}

.home-page .ecom-process-button {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.home-page .ecom-process-visual {
  width: min(100%, 1120px);
}

/* ---------------- WHY CHOOSE ---------------- */
.home-page .ecom-why-section {
  padding: 56px 0 48px;
}

.home-page .ecom-why-container {
  width: min(calc(100% - 68px), 1530px);
}

.home-page .ecom-why-header {
  grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.92fr);
  gap: 70px;
}

.home-page .ecom-why-title {
  font-size: clamp(39px, 3vw, 52px);
}

.home-page .ecom-why-header__text p {
  font-size: 13px;
  line-height: 1.6;
}

.home-page .ecom-why-header__text p + p {
  margin-top: 16px;
}

.home-page .ecom-why-divider {
  margin: 35px 0 38px;
}

.home-page .ecom-why-layout {
  grid-template-columns: 355px minmax(0, 1fr);
  gap: 34px;
}

.home-page .ecom-why-form-intro {
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.65;
}

.home-page .ecom-why-field {
  margin-bottom: 12px;
}

.home-page .ecom-why-field input {
  height: 48px;
  font-size: 13px;
}

.home-page .ecom-why-consent {
  margin: 15px 0 14px;
  font-size: 10.5px;
  line-height: 1.55;
}

.home-page .ecom-why-submit {
  min-height: 48px;
  font-size: 13px;
}

.home-page .ecom-why-cards {
  gap: 14px 16px;
}

.home-page .ecom-why-card {
  min-height: 210px;
}

.home-page .ecom-why-card__tab {
  width: 125px;
  height: 48px;
}

.home-page .ecom-why-card__content {
  padding: 58px 20px 21px;
}

.home-page .ecom-why-card h3 {
  margin-bottom: 9px;
  font-size: clamp(17px, 1.35vw, 22px);
}

.home-page .ecom-why-card p {
  font-size: 10.5px;
  line-height: 1.5;
}

.home-page .ecom-why-card__link {
  font-size: 10px;
}

/* ---------------- OUTCOME ---------------- */
.home-page .outcome-section {
  padding: 50px 0 44px;
  background:
    radial-gradient(circle at 0% 100%, rgba(111, 33, 20, 0.34), transparent 44%),
    radial-gradient(circle at 100% 0%, rgba(110, 34, 21, 0.3), transparent 42%),
    #070303;
}

.home-page .outcome-section .container {
  width: min(calc(100% - 62px), 1500px);
}

.home-page .outcome-section .section-head {
  align-items: flex-start;
  margin-bottom: 34px;
}

.home-page .outcome-section .section-head h2 {
  font-size: clamp(31px, 2.35vw, 43px);
}

.home-page .outcome-section .section-head__text {
  max-width: 540px;
  font-size: 12px;
  line-height: 1.55;
}

.home-page .outcome-gallery {
  padding: 4px 0 12px;
}

.home-page .outcome-gallery__track {
  gap: 14px;
}

.home-page .outcome-card {
  width: 165px;
  border-radius: 8px;
}

/* ---------------- TESTIMONIALS ---------------- */
.home-page .client-stories-section {
  padding: 46px 0 52px;
}

.home-page .client-stories-container {
  width: min(calc(100% - 62px), 1560px);
}

.home-page .client-stories-title {
  margin-bottom: 24px;
  font-size: clamp(36px, 2.8vw, 50px);
}

.home-page .client-review-item {
  min-height: 112px;
  padding: 22px;
}

.home-page .client-review-item img {
  width: 108px;
}

.home-page .client-story-card {
  width: clamp(455px, 34vw, 610px);
  min-width: clamp(455px, 34vw, 610px);
  max-width: clamp(455px, 34vw, 610px);
  min-height: 205px;
  flex-basis: clamp(455px, 34vw, 610px);
  padding: 22px 24px 18px;
  border-radius: 22px;
}

.home-page .client-story-card__text {
  min-height: 103px;
}

.home-page .client-story-card__text p {
  font-size: 13px;
  line-height: 1.5;
}

.home-page .client-story-card__footer {
  padding-top: 14px;
}

.home-page .client-story-person img {
  width: 38px;
  height: 38px;
}

.home-page .client-story-person h3 {
  font-size: 13px;
}

.home-page .client-story-brand span {
  font-size: 22px;
}

/* ---------------- INSIGHTS ---------------- */
.home-page .insights-preview {
  padding: 56px 0 58px;
  background:
    radial-gradient(circle at 0% 30%, rgba(111, 34, 21, 0.56), transparent 42%),
    radial-gradient(circle at 100% 20%, rgba(107, 32, 20, 0.46), transparent 42%),
    linear-gradient(90deg, #35110c 0%, #180604 31%, #080303 58%, #3e150d 100%);
}

.home-page .insights-preview .container {
  width: min(calc(100% - 64px), 1440px);
}

.home-page .insights-preview .section-head {
  margin-bottom: 8px;
}

.home-page .insights-preview .section-head h2 {
  font-size: clamp(32px, 2.35vw, 43px);
}

.home-page .insights-categories {
  gap: 7px 18px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.home-page .insights-categories a {
  font-size: 0.68rem;
  color: #fff;
}

.home-page .blog-grid {
  gap: 22px;
}

.home-page .blog-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(15, 8, 6, 0.3);
}

.home-page .blog-card--compact .blog-card__img {
  height: 190px;
}

.home-page .blog-card--compact .blog-card__body {
  padding: 14px 0 0;
}

.home-page .blog-card--compact .blog-card__body h3 {
  min-height: 44px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.home-page .blog-readmore {
  padding: 7px 16px;
  font-size: 0.66rem;
}

/* ---------------- CONTACT ---------------- */
.home-page .contact-section {
  padding: 54px 0 58px;
  background:
    radial-gradient(circle at 0% 75%, rgba(118, 35, 21, 0.6), transparent 42%),
    radial-gradient(circle at 100% 25%, rgba(110, 32, 19, 0.52), transparent 40%),
    linear-gradient(90deg, #36110c 0%, #160604 33%, #090303 57%, #40150d 100%);
}

.home-page .contact-section .container {
  width: min(calc(100% - 64px), 1360px);
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 48px;
}

.home-page .contact-form-card {
  padding: 28px;
  border-radius: 17px;
  border-color: rgba(255, 255, 255, 0.06);
  background: #252525;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.home-page .contact-form-grid {
  gap: 10px 12px;
}

.home-page .contact-form-grid label,
.home-page .contact-form-card .field label {
  font-size: 0.67rem;
}

.home-page .contact-form-card .field input,
.home-page .contact-form-card .field textarea {
  padding: 10px 13px;
  border-radius: 30px;
  background: #333;
  font-size: 0.7rem;
}

.home-page .contact-form-card .field textarea {
  min-height: 105px;
  border-radius: 9px;
}

.home-page .contact-form-card .btn {
  padding: 10px 20px;
  font-size: 0.7rem;
}

.home-page .contact-info h2 {
  max-width: 440px;
  margin-bottom: 22px;
  font-size: clamp(28px, 2.2vw, 39px);
  line-height: 1.05;
}

.home-page .contact-info-item {
  gap: 10px;
  margin-bottom: 14px;
}

.home-page .contact-info-item__icon {
  width: 30px;
  height: 30px;
}

.home-page .contact-info-item h4 {
  margin-bottom: 1px;
  font-size: 0.67rem;
}

.home-page .contact-info-item p,
.home-page .contact-info-item a {
  font-size: 0.76rem;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1180px) {
  .home-page .home-hero__inner {
    grid-template-columns: minmax(0, 58%) minmax(380px, 42%);
  }

  .home-page .service-accordion-section .container,
  .home-page .industry-showcase__container,
  .home-page .ecom-process-container,
  .home-page .ecom-why-container,
  .home-page .outcome-section .container,
  .home-page .client-stories-container,
  .home-page .insights-preview .container,
  .home-page .contact-section .container {
    width: min(calc(100% - 44px), 1080px);
  }

  .home-page .ecom-why-layout {
    grid-template-columns: 310px minmax(0, 1fr);
  }
}

@media (max-width: 991px) {
  .home-page .home-hero {
    min-height: auto;
  }

  .home-page .home-hero__inner {
    display: block;
    min-height: auto;
    padding: 105px 28px 0;
  }

  .home-page .home-hero__visual {
    position: relative;
    right: auto;
    width: min(100%, 580px);
    height: auto;
    margin: 24px 0 0 auto;
  }

  .home-page .review-strip__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .review-item:nth-child(2) {
    border-right: 0;
  }

  .home-page .service-accordion-section .container,
  .home-page .industry-showcase__layout,
  .home-page .ecom-process-header,
  .home-page .ecom-why-header,
  .home-page .ecom-why-layout,
  .home-page .contact-section .container {
    grid-template-columns: 1fr;
  }

  .home-page .ecom-why-form-wrap {
    max-width: 580px;
  }

  .home-page .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .blog-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
  }
}

@media (max-width: 680px) {
  .home-page .home-hero__inner {
    padding: 90px 16px 0;
  }

  .home-page .home-hero__heading {
    font-size: 27px;
  }

  .home-page .review-strip__track,
  .home-page .ecom-why-cards,
  .home-page .blog-grid {
    grid-template-columns: 1fr;
  }

  .home-page .review-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-page .service-accordion-section .container,
  .home-page .industry-showcase__container,
  .home-page .ecom-process-container,
  .home-page .ecom-why-container,
  .home-page .outcome-section .container,
  .home-page .client-stories-container,
  .home-page .insights-preview .container,
  .home-page .contact-section .container {
    width: calc(100% - 28px);
  }

  .home-page .industry-showcase__card {
    width: 275px;
    min-width: 275px;
    max-width: 275px;
    flex-basis: 275px;
  }

  .home-page .ecom-process-title,
  .home-page .ecom-why-title,
  .home-page .client-stories-title {
    font-size: 30px;
  }

  .home-page .client-story-card {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    flex-basis: 320px;
  }

  .home-page .blog-card:last-child {
    grid-column: auto;
    max-width: none;
  }
}