/* Growtele Retail Landing Page — Figma node 2706:488 */

:root {
  --navy: #121348;
  --dark-navy: #090a2c;
  --panel-navy: #0b0c38;
  --faq-navy: #0e0f3a;
  --orange: #ff9300;
  --red: #f9363d;
  --gradient-cta: linear-gradient(to right, #f93a3a, #fe8d03);
  --gradient-trust: linear-gradient(-55.4deg, #ffffff 1.85%, #fff6e9 66.53%);
  --hero-gradient: linear-gradient(to bottom, #ffe9cc, rgba(255, 233, 204, 0));
  --cream: #fff5e7;
  --cream-stat: #fff5e7;
  --white: #ffffff;
  --border-light: rgba(0, 0, 0, 0.15);
  --font-body: 'Roboto';
  --font-heading: 'Roboto', sans-serif;
  --page-width: 1440px;
  --container-padding: 120px;
}

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

html { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  width: 100%;
  /* max-width: var(--page-width); */
  margin: 0 auto;
  position: relative;
  background: var(--white);
}

.container {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.9; }

.btn--cta {
  background: var(--gradient-cta);
  color: var(--white);
  height: 38px;
  padding: 4px 6px 4px 14px;
  border-radius: 18.5px;
  min-width: 180px;
  position: relative;
  justify-content: space-between;
}

.btn--primary {
  background: var(--gradient-cta);
  color: var(--white);
  height: 45px;
  padding: 4px 6px 4px 14px;
  border-radius: 10px;
  min-width: 214px;
  font-size: 18px;
  justify-content: space-between;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  height: 45px;
  padding: 4px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  font-size: 18px;
  opacity: 0.7;
  min-width: 179px;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  height: 31px;
  padding: 4px 18px;
  border-radius: 37px;
  font-size: 15px;
  width: 100%;
  max-width: 279px;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  height: 35px;
  padding: 4px 18px;
  border-radius: 37px;
  font-size: 18px;
  font-weight: 500;
  gap: 10px;
}

.btn__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  width: 29px;
  height: 25px;
  flex-shrink: 0;
}

.btn__icon-wrap--lg {
  width: 35px;
  height: 30px;
  border-radius: 9px;
}

.btn--cta .btn__icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.btn__icon {
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.btn--cta .btn__icon {
  width: 14px;
  height: 10px;
}

.btn--primary .btn__icon {
  width: 16px;
  height: 12px;
}

/* ===== HEADER ===== */
.header {
  position: relative;
  z-index: 100;
  padding-top: 47px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}

.header__logo img {
  width: 165px;
  height: 42px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  padding: 4px 6px;
  white-space: nowrap;
}

.header__link--active { font-weight: 600; }

.header__arrow { flex-shrink: 0; }

.header__arrow--up { transform: scaleY(-1) rotate(90deg); }

/* ===== INDUSTRY NAV ===== */
.industry-nav {
  margin-top: 32px;
  position: relative;
  z-index: 10;
}

.industry-nav__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 47px;
  height: 52px;
  max-width: 1005px;
  margin: 0 auto;
  padding: 0 20px;
}

.industry-nav__item {
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
  padding: 0 18px;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
}

.industry-nav__item:hover {
  font-weight: 600;
  color: var(--orange);
}

.industry-nav__item:hover::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 2px;
  background: var(--orange);
  border-radius: 9px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-bottom: 0;
  min-height: 811px;
}

.hero__gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 811px;
  background: var(--hero-gradient);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 50px;
  gap: 40px;
}

.hero__content {
  max-width: 544px;
  flex-shrink: 0;
  padding-top: 40px;
}

.hero__title {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}

.hero__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy);
  max-width: 496px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  width: 538px;
  height: 623px;
  flex-shrink: 0;
}

.hero__image {
  width: 538px;
  height: 506px;
  object-fit: cover;
  border-radius: 45px;
}

.hero__sms-card {
  position: absolute;
  top: 36px;
  right: -86px;
  width: 167px;
  height: auto;
  object-fit: cover;
  z-index: 2;
}

.hero__sms2-card {
  position: absolute;
  top: 47%;
  right: -115px;
  width: 223px;
  height: auto;
  object-fit: cover;
  z-index: 2;
}

.hero__floating-ui {
  position: absolute;
  bottom: 120px;
  left: -104px;
  width: 197px;
  height: auto;
  object-fit: cover;
  z-index: 2;
}

.hero__icon-badge {
  position: absolute;
  bottom: 180px;
  left: -60px;
  width: 39px;
  height: 39px;
  z-index: 3;
}

.hero__icon-bg { 
  width: 100%; 
  height: 100%; 
  position: absolute;
  top: -372%;
  left: -86%;
}

.hero__icon-inner {
  position: absolute;
  top: -316%;
  left: -36%;
  transform: translate(-50%, -50%);
  width: 27px;
  height: 27px;
  object-fit: cover;
}

/* ===== CHANNELS ===== */
.channels {
  position: relative;
  padding: 40px 0 100px;
  overflow: visible;
  --channels-bottom-gap: 48px;
}

@media (min-width: 1281px) {
  .channels__header {
    margin-bottom: 28px;
  }
}

.channels__scroll-stage {
  position: relative;
}

.channels .container { position: relative; z-index: 1; }

.channels .container.channels__sticky {
  position: sticky;
  top: var(--channels-sticky-top, 100px);
  z-index: 2;
}

.channels__bg-pattern {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 3147px;
  max-width: none;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.channels__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 45px;
}

.channels__header .section-title { max-width: 495px; }

.channels__subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 569px;
  padding-top: 36px;
}

.channels__panel {
  display: flex;
  gap: 35px;
  align-items: stretch;
}

.channels__tabs {
  width: 351px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50px;
  padding: 56px 33px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.channels__tab {
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.4;
  padding: 20px 0;
  cursor: pointer;
  line-height: 1.2;
  transition: opacity 0.4s ease, color 0.4s ease;
}

.channels__tab--active {
  opacity: 1;
  color: var(--red);
}

.channels__tab-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--navy);
  margin: -4px 0 12px;
  padding: 0;
}

.channels__tabs::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--tab-indicator-top, 56px);
  width: 3px;
  height: var(--tab-indicator-height, 119px);
  background: rgba(249, 54, 61, 0.18);
  border-radius: 25px;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.channels__tabs::after {
  content: '';
  position: absolute;
  left: 0;
  top: var(--tab-indicator-top, 56px);
  width: 3px;
  height: var(--tab-indicator-height, 119px);
  background: var(--red);
  border-radius: 25px;
  transform: scaleY(1);
  transform-origin: top center;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.channels__tabs.is-auto-running::after {
  transform: scaleY(0);
  animation: channels-tab-indicator-run var(--tab-auto-ms, 5s) linear forwards;
}

@keyframes channels-tab-indicator-run {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.channels__content {
  flex: 1;
  background: var(--panel-navy);
  border-radius: 50px;
  min-height: 514px;
  overflow: hidden;
  position: relative;
}

.channels__content.channels__content--box-bg {
  background: url('../../retail/assets/BOX%20(2).png') no-repeat center center;
  background-size: 100% 100%;
}

.channels__content--box-bg .channels__detail-title,
.channels__content--box-bg .channels__features strong,
.channels__content--box-bg .channels__features p {
  color: var(--navy);
}

.channels__detail {
  padding: 35px 40px 35px 37px;
  position: relative;
  min-height: 514px;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.channels__detail.is-switching {
  opacity: 0.42;
  transform: translateY(12px);
}

.channels__detail-title {
  font-size: 23px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  max-width: 696px;
  margin-bottom: 30px;
  transition: opacity 0.45s ease;
}

.channels__detail.is-switching .channels__detail-title {
  opacity: 0.55;
}

.channels__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 280px;
}

.channels__features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.channels__bullet {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.channels__bullet-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.75;
}

.channels__features strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.channels__features p {
  font-size: 11px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
}

.channels__phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 640px;
  height: 530px;
  overflow: visible;
  border-bottom-right-radius: 50px;
  pointer-events: none;
}

.channels__phone-img {
  display: block;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.channels__detail.is-switching .channels__phone-img {
  opacity: 0.45;
  transform: translateY(16px) scale(0.985);
}

.channels__phone-img--sms {
  width: 496px;
  height: 530px;
  object-fit: contain;
  object-position: center right;
  position: relative;
  top: 65px;
  left: 145px;
}

.channels__phone-img--whatsapp {
  width: 574px;
  height: 555px;
  object-fit: contain;
  object-position: center;
  position: relative;
  top: 81px;
  left: 144px;
}

.channels__phone-img--telephony {
  width: 643px;
  height: 433px;
  object-fit: contain;
  object-position: center;
  position: relative;
  top: 131px;
  left: 64px;
}

.channels__phone-img--rcs {
  width: 568px;
  height: 482px;
  object-fit: contain;
  object-position: center;
  position: relative;
  top: 99px;
  left: 124px;
}

.channels__phone-img--email {
  width: 651px;
  height: 552px;
  object-fit: contain;
  object-position: center;
  position: relative;
  top: 138px;
  left: 86px;
}

/* ===== GROWTH ===== */
.growth {
  padding: 60px 0 80px;
}

.growth__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 36px;
}

.growth__header .section-title { max-width: 526px; }

.growth__subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 569px;
  padding-top: 4px;
}

.growth__cards {
  display: grid;
  grid-template-columns: repeat(3, 372px);
  gap: 34px;
  justify-content: center;
}

.growth-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 9.2px -1px rgba(0, 0, 0, 0.15);
}

.growth-card__visual {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: var(--white);
}

.growth-card__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 108%;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.growth-card__img {
  position: absolute;
  object-fit: cover;
}

.growth-card:nth-child(1) .growth-card__img {
  width: 271px; height: 271px;
  top: 15px; right: -30px;
}

.growth-card:nth-child(2) .growth-card__img {
  width: 232px; height: 232px;
  top: 78px; right: -28px;
}

.growth-card:nth-child(3) .growth-card__img {
  width: 229px; height: 140px;
  top: 109px; right: 138px;
}

.growth-card__body {
  background: var(--white);
  padding: 24px 27px 20px;
}

.growth-card__tag {
  font-size: 10px;
  font-weight: 300;
  color: #0005ff;
  display: block;
  margin-bottom: 8px;
}

.growth-card__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}

.growth-card__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--navy);
}

/* ===== TOUCHPOINT (DARK) ===== */
.touchpoint {
  position: relative;
  background: var(--dark-navy);
  padding: 80px 0 100px;
  margin-top: 40px;
  overflow: hidden;
}

.touchpoint__notch {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 286px;
  height: 85px;
  z-index: 5;
}

.touchpoint__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.touchpoint__mask,
.touchpoint__deco,
.touchpoint__dots {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.touchpoint__inner { position: relative; z-index: 2; }

.touchpoint__title {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  max-width: 1136px;
  margin-bottom: 12px;
}

.touchpoint__intro {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.19;
  color: var(--white);
  max-width: 1102px;
  margin-bottom: 50px;
}

.touchpoint__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.touchpoint__list {
  flex: 1;
  max-width: 420px;
}

.touchpoint__item {
  margin-bottom: 40px;
}

.touchpoint__item:last-child { margin-bottom: 0; }

.touchpoint__item h3 {
  font-size: 35px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.touchpoint__item p {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
}

.touchpoint__visual {
  position: relative;
  width: 661px;
  height: 464px;
  flex-shrink: 0;
  overflow: visible;
}

.touchpoint__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 761px;
  height: 464px;
  object-fit: cover;
  border-radius: 41px;
}

.touchpoint__phone {
  position: absolute;
  left: 0;
  top: 46px;
  width: 214px;
  height: 358px;
  object-fit: cover;
  border-radius: 32px;
}

/* ===== USE CASES ===== */
.usecases {
  padding: 80px 0 60px;
  position: relative;
}

.usecases__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 44px;
}

.usecases__header .section-title { max-width: 556px; }

.usecases__subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 439px;
  padding-top: 4px;
}

.usecases__viewport {
  width: 100%;
  overflow: hidden;
}

.usecases__cards {
  display: flex;
  gap: 21px;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.usecase-card {
  flex: 0 0 438px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
}

.usecase-card__image-wrap {
  margin: 18px 18px 0;
  border-radius: 20px;
  height: 311px;
  overflow: hidden;
  position: relative;
}

.usecase-card__image-wrap--blue { background: #eef2fc; }
.usecase-card__image-wrap--pink { background: #faebe6; }
.usecase-card__image-wrap--green { background: #e8fae6; }

.usecase-card__image1,
.usecase-card__image2,
.usecase-card__image3,
.usecase-card__image4 {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: contain;
  transform: none;
}

/* Adjust top / left per card as needed */
.usecase-card__image1 {
  width: 360px;
  height: 340px;
  top: -18px;
  left: 18px;
}

.usecase-card__image2 {
  width: 340px;
  height: 300px;
  top: 8px;
  left: 28px;
}

.usecase-card__image3 {
  width: 443px;
  top: -88px;
  left: -12px;
}

.usecase-card__image4 {
  width: 600px;
  top: -116px;
  left: -92px;
}

.usecase-card__title {
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 31px 8px;
}

.usecase-card__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--navy);
  padding: 0 31px 24px;
  max-width: 384px;
}

.usecases__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  border: 0.4px solid rgba(0, 0, 0, 0.2);
  border-radius: 29px;
  width: 131px;
  height: 22px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 8px;
}

.usecases__dot {
  width: 12px;
  height: 12px;
  border-radius: 29px;
  background: #cacaca;
  transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease;
}

.usecases__dot--active {
  width: 68px;
  border-radius: 29px;
  background: var(--orange);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  position: relative;
  background: var(--dark-navy);
  padding: 80px 0 60px;
  overflow: hidden;
}

.testimonial__notch {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 286px;
  height: 85px;
  z-index: 5;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonial__mask,
.testimonial__deco,
.testimonial__dots {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.testimonial .container { position: relative; z-index: 2; }

.testimonial__heading {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.testimonial__subheading {
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  max-width: 1063px;
  margin-bottom: 48px;
}

.testimonial__block {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

.testimonial__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial__logo-card {
  width: 364px;
  height: 432px;
  flex-shrink: 0;
  background: linear-gradient(to right, #fdf3e6, var(--white));
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial__logo {
  width: 287px;
  height: 287px;
  object-fit: contain;
}

.testimonial__quote-card {
  flex: 1;
  background: #f0f0f0;
  border-radius: 29px;
  padding: 43px 50px 30px 50px;
  position: relative;
  min-height: 232px;
}

.testimonial__quote-mark {
  font-size: 50px;
  color: var(--navy);
  line-height: 1;
  position: absolute;
  top: 25px;
  left: 28px;
}

.testimonial__quote-mark--end {
  top: auto;
  left: auto;
  bottom: 26px;
  right: 30px;
  transform: rotate(180deg);
}

.testimonial__quote {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  max-width: 700px;
  margin: 20px 0 20px 38px;
  border: none;
}

.testimonial__author {
  font-size: 22px;
  font-weight: 500;
  color: var(--red);
  margin-left: 38px;
}

.testimonial__role {
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  margin-left: 38px;
}

.testimonial__stats {
  display: grid;
  grid-template-columns: 381px 381px;
  gap: 24px;
}

.testimonial-stat {
  background: var(--cream-stat);
  border-radius: 29px;
  padding: 21px 35px 24px;
  min-height: 177px;
}

.testimonial-stat__num {
  font-size: 70px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-stat__label {
  font-size: 20px;
  font-weight: 300;
  color: #000;
  line-height: 1.3;
}

/* ===== FAQ ===== */
.faq {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.faq__glow {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 781px;
  height: 706px;
  pointer-events: none;
  opacity: 0.5;
}

.faq__inner {
  display: flex;
  gap: 37px;
  align-items: center;
}

.faq__book {
  width: 357px;
  flex-shrink: 0;
  background: var(--faq-navy);
  border-radius: 20px;
  padding: 32px 28px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 299px;
}

.faq__book-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.faq__book-avatar {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 23px;
  object-fit: cover;
}

.faq__book-title {
  position: relative;
  z-index: 1;
  font-size: 25px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.faq__book-desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 269px;
  margin-left: auto;
  margin-right: auto;
}

.faq__book-btn { position: relative; z-index: 1; margin: 0 auto; }

.faq__content { flex: 1; }

.faq__title { 
  max-width: 920px; 
  margin-bottom: -56px; 
  margin-left: 162px;
  /* position: relative; */
}

.faq__intro {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 484px;
  margin-bottom: 82px;
  margin-left: 59%;
  margin-top: -86px;
}

.faq__list { display: flex; flex-direction: column; gap: 19px; }

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item--open { padding-bottom: 8px; }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  position: relative;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}

.faq-item__icon-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__toggle {
  margin-left: auto;
  font-size: 35px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px 0 69px;
}

.faq-item--open .faq-item__answer {
  max-height: 120px;
  width: 83%;
  padding-bottom: 8px;
}

.faq-item__answer p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--navy);
}

/* ===== TRUST ===== */
.trust {
  padding: 40px 0 0;
  position: relative;
  z-index: 10;
  margin-top: 0px;
}

.trust__banner {
  background: var(--gradient-trust);
  border-radius: 30px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 285px;
}

.trust__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.trust__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
}

.trust__stats {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.trust__separators {
  position: absolute;
  top: 0;
  left: 0;
  width: 460px;
  height: 95px;
  pointer-events: none;
}

.trust__stat {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.trust__num {
  display: block;
  font-size: 40px;
  font-weight: 500;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 6px;
}

.trust__label {
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-navy);
  padding: 222px 0 30px;
  position: absolute;
  top: 98%;
  left: 0;
  overflow: hidden;
  border-radius: 0 0 0 0;
  width: 100%;
  height: 620px;
}

.footer__glow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 871px;
  height: 821px;
  pointer-events: none;
  opacity: 0.6;
}

.footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 322px 1fr 240px;
  gap: 40px;
  align-items: start;
}

.footer__logo {
  width: 163px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 26px;
}

.footer__about {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 34px;
}

.footer__links {
  display: flex;
  gap: 80px;
  padding-top: 10px;
}

.footer__col h4 {
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  line-height: 2.2;
}

.footer__social h4 {
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__social-icons {
  width: 208px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer__contact-title { margin-top: 8px; }

.footer__email {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
}

.footer__bottom {
  grid-column: 1 / -1;
  margin-top: 40px;
  position: relative;
}

.footer__line {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin-bottom: 20px;
}

.footer__legal,
.footer__copy {
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.24;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1440px) {
  .container { padding-left: 60px; padding-right: 60px; }
}

@media (max-width: 1280px) {
  .hero__inner { flex-direction: column; align-items: center; }
  .hero__content { padding-top: 0; text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .channels__header,
  .growth__header,
  .usecases__header { flex-direction: column; }
  .channels__panel { flex-direction: column; }
  .channels__tabs { width: 100%; border-radius: 30px; }
  .growth__cards { grid-template-columns: 1fr; max-width: 438px; margin: 0 auto; }
  .touchpoint__grid { flex-direction: column; }
  .touchpoint__visual { width: 100%; max-width: 661px; }
  .testimonial__block { flex-direction: column; align-items: center; }
  .testimonial__stats { margin: 0 auto; }
  .faq__inner { flex-direction: column; }
  .faq__book { width: 100%; max-width: 357px; }
  .trust__banner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --container-padding: 24px; }
  .industry-nav__bar { flex-wrap: wrap; height: auto; padding: 12px; gap: 8px; border-radius: 24px; }
  .hero__title { font-size: 36px; }
  .hero__visual { width: 100%; max-width: 400px; height: auto; }
  .hero__image { width: 100%; height: auto; }
  .hero__sms-card, .hero__sms2-card, .hero__floating-ui, .hero__icon-badge { display: none; }
  .section-title { font-size: 28px; }
  .channels__phone { position: relative; width: 100%; height: 300px; margin-top: 20px; }
  .touchpoint__item h3 { font-size: 24px; }
  .testimonial-stat__num { font-size: 48px; }
  .trust__stats { flex-wrap: wrap; justify-content: center; }
  .trust__stat { padding: 12px 16px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .btn--primary, .btn--outline { width: 100%; }
  .testimonial__stats { grid-template-columns: 1fr; }
}

.channels__header,
.channels__header .section-title,
.channels__header .channels__subtitle,
.channels__header .gt-word,
.growth__header,
.growth__header .section-title,
.growth__header .growth__subtitle,
.growth__header .gt-word,
.touchpoint__title,
.touchpoint__title .gt-word,
.touchpoint__intro,
.touchpoint__intro .gt-word,
.usecases__header,
.usecases__header .section-title,
.usecases__header .usecases__subtitle,
.usecases__header .gt-word,
.testimonial__heading,
.testimonial__heading .gt-word,
.testimonial__subheading,
.testimonial__subheading .gt-word,
.section-title.faq__title,
.section-title.faq__title .gt-word,
.faq__intro,
.faq__intro .gt-word {
  font-family: "Tomato Grotesk", sans-serif;
}
