:root {
  /* Brand Colors */
  --color-primary: #f58634;
  --color-secondary: #1f2937;
  --color-accent-orange: #ffac72;
  --color-bg-light-orange: #fff8f0;

  /* Semantic Theme Colors */
  --color-bg-main: #ffffff;
  --color-bg-alt: #f9f9f9;
  --color-bg-card: #ffffff;
  --color-text-main: #2c2c2c;
  --color-text-secondary: #1f2937;
  --color-text-dim: #8a8a8a;
  --color-border: #cccccc;
  --color-white: #ffffff;
}

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

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

section[id] {
  scroll-margin-top: 100px;
}

.container {
  max-width: 1410px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px;
  width: 100%;
}

/* === Top Bar === */
.top-bar {
  background-color: var(--color-bg-alt);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  stroke: var(--color-primary);
}

.problem-section {
  position: relative;
  overflow: hidden;
}

.hero-decor {
  position: absolute;
}

.hero-decor-1 {
  top: 0rem;
  left: 0px;
  /* transform: scale(1.5); */
  width: 10rem;
}

.layers-section {
  position: relative;
  overflow: hidden;
}

.hero-decor-2 {
  bottom: 0rem;
  right: 50px;
  /* transform: scale(1.5); */
  width: 10rem;
}

.cust-reach-section {
  position: relative;
  overflow: hidden;
}

.hero-decor-char {
  top: 14rem;
  left: 0px;
  /* transform: scale(1.5); */
  width: 10rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.theme-toggle {
  background-color: var(--color-primary);
  width: 44px;
  height: 22px;
  border-radius: 11px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5px;
  color: white;
  cursor: pointer;
}

.theme-toggle-knob {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* === Header === */
.header {
  padding: 20px 0;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.02); */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-secondary);
}

.logo-cursor-wrap {
  position: relative;
  margin-right: 4px;
}

.logo-cursor-svg {
  width: 18px;
  height: 18px;
  color: #ff3b30;
}

.logo-text-primary {
  color: var(--color-primary);
}

.h-primary {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
  display: block;
}

.h-secondary {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-secondary);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

/* === Dropdown Styles === */
.nav-item-has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-bg-card);
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid var(--color-border);
  margin-top: 15px;
}

.nav-item-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

/* Mega Dropdown */
.mega-dropdown {
  width: 640px;
  max-width: 95vw;
  padding: 20px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

.module-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 12px;
  align-items: center;
}

.module-item:hover {
  background-color: #FFF9F5;
  transform: translateY(-2px);
}

.module-icon-wrap {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-icon-wrap img {
  width: 47px;
  height: 48px;
  object-fit: contain;
}

.module-text {
  display: flex;
  flex-direction: column;
}

.module-name {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}

.module-item:hover .module-name {
  color: var(--color-primary);
}

.module-desc {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

.nav-arrow-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  stroke: var(--color-primary);
}

.module-item:hover .nav-arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

/* === Mobile Menu Toggle === */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-nav-header,
.mobile-menu-close {
  display: none;
}

/* === Hero Section === */
.hero {
  padding: 16px 0 26px;
  background-color: white;
  position: relative;
  overflow: hidden;
}


.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 5;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-main-head {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 19px;
  letter-spacing: -1.5px;
  font-weight: 700;
  color: #1F2937;
}

.hero-subhead {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 32px;
  line-height: 1.2;
}

.hero-desc {
  font-size: 17px;
  color: #4A5568;
  max-width: 580px;
  margin-bottom: 34px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge {
  padding: 10px 20px;
  border-radius: 25px;
  background-color: #FFF4EB;
  border: 1px solid #FFB177;
  font-size: 14px;
  font-weight: 600;
  color: #2C2C2C;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--color-primary);
  color: var(--color-text-main);
  background-color: #fff;
}

/* .btn-primary {
  background-color: transparent;
  color: var(--color-primary);
} */

.btn-primary:hover {
  background-color: var(--color-primary);
  color: white;
}

.hero-image {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 134, 52, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-main-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.ml-8 {
  margin-left: 8px;
}

.mr-6 {
  margin-right: 6px;
}

.ml-4 {
  margin-left: 4px;
}

/* === Story Sections (MGP) === */
.mgp-story-section {
  padding: 80px 0;
  background-color: white;
}

.mgp-story-grid {
  display: flex;
  align-items: center;
  gap: 72px;
}

.mgp-story-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mgp-story-img-col {
  flex: 1;
}

.mgp-story-ill {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.mgp-section-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.mgp-story-body {
  font-size: 19px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.mgp-orange {
  color: var(--color-primary);
}

.mgp-bold {
  font-weight: 700;
}

/* === Problem Section (Exact Match) === */
.problem-section {
  padding: 30px 0;
  background-color: white;
}

.problem-container-new {
  position: relative;
  background-color: #ffffff;
  border: 1.5px solid #f58634;
  border-radius: 30px;
  padding: 35px 37px;
  display: flex;
  align-items: center;
  gap: 1px;
  box-shadow: 0 20px 50px rgba(245, 134, 52, 0.04);
}

.problem-left {
  flex: 1.1;
}

.problem-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 19px;
}

.problem-description-wrap {
  max-width: 520px;
}

.problem-sub-title {
  font-size: 19px;
  color: #212121;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-text {
  font-size: 17px;
  color: #212121;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.problem-right {
  flex: 1;
  display: flex;
  /* justify-content: flex-end; */
  position: relative;
}

.solution-card {
  background-color: #fffaf5;
  border: 1.2px solid #f58634;
  border-radius: 42px;
  padding: 24px 27px;
  width: 100%;
  max-width: 560px;
  position: relative;
  min-height: 247px;
  z-index: 1;
}

.solution-text {
  font-size: 17px;
  color: #212121;
  line-height: 1.5;
  margin-bottom: 34px;
  /* max-width: 391px; */
}

.solution-icon {
  margin-bottom: 34px;
  color: #cbd5e1;
}

.solution-footer {
  font-size: 16px;
  color: #212121;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
  width: 16rem;
}

.solution-footer strong {
  font-size: 21px;
  font-weight: 800;
  display: block;
}

.solution-img {
  position: absolute;
  top: 67.4%;
  right: -53px;
  transform: translateY(-50%);
  width: 313px;
  height: auto;
  z-index: 5;
  pointer-events: none;
}

.problem-decor {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 0;
  pointer-events: none;
}

.mgp-orange {
  color: var(--color-primary);
}

/* === Layers Section (Five-Layer Approach) === */
.layers-section {
  padding: 30px 0;
  background-color: white;
}

.layers-header {
  text-align: center;
  margin-bottom: 64px;
}

.layers-header .h-secondary {
  max-width: 1100px;
  margin: 0 auto;
}

.layers-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* max-width: 1100px; */
  margin: 0 auto;
}

.layer-item {
  display: flex;
  background-color: white;
  border: 1px solid #FFE4D1;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 134, 52, 0.02);
  /* width: 29rem; */
  margin: 0 2rem;
}

.layer-item:hover {
  box-shadow: 0 8px 25px rgba(245, 134, 52, 0.08);
  border-color: var(--color-primary);
}

.layer-info {
  flex: 0 0 261px;
  padding-right: 32px;
}

.layer-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1px;
}

.layer-name {
  font-size: 24px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1px;
}

.layer-tagline {
  font-size: 14px;
  font-style: italic;
  color: #4A5568;
}

.layer-content {
  flex: 1;
  padding-left: 32px;
  border-left: 1px solid #FFE4D1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.layer-main-text {
  font-size: 16px;
  color: #2D3748;
  font-weight: 500;
  margin-bottom: 16px;
}

.layer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.layer-badge {
  padding: 6px 14px;
  background-color: #FFF8F0;
  border: 1px solid #FFE4D1;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #4A5568;
}

/* === Contact Section === */
.contact-section {
  padding: 50px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  text-align: left;
}

.contact-left {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.contact-subtext {
  font-size: 18px;
  color: #4b5563;
  margin-top: 16px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  color: var(--color-primary);
  margin-top: 4px;
}

.contact-info-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
}

.contact-decor-logo {
  position: absolute;
  bottom: -41px;
  left: 144px;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
  /* width: 28rem; */
  /* height: 14rem; */
}

.contact-decor-logo img {
  width: 246px;
  height: auto;
  display: block;
}

.contact-right {
  flex: 1.2;
  width: 100%;
}

.contact-card {
  background: white;
  border: 1.5px solid var(--color-primary);
  border-radius: 40px;
  padding: 29px 29px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 32px;
  width: 100%;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.form-group label {
  font-size: 15px;
  font-weight: 700;
  color: #1a202c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  color: #1a202c;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(245, 134, 52, 0.08);
}

.form-group textarea {
  min-height: 75px;
  resize: vertical;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.captcha-box {
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 16px;
  gap: 16px;
}

.captcha-code {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  color: #2d3748;
  user-select: none;
}

.captcha-code span {
  display: inline-block;
}

.captcha-code .small {
  font-size: 16px;
}

.captcha-refresh {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.captcha-refresh:hover {
  color: var(--color-primary);
}

.captcha-input-group {
  max-width: 180px;
}

.btn-submit {
  align-self: flex-start;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(245, 134, 52, 0.2);
}

.btn-submit:hover {
  background-color: #e6761d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 134, 52, 0.3);
}

.btn-submit svg {
  transition: transform 0.2s;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* Custom Select Styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%234A5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}

.form-group select {
  appearance: none;
  padding-right: 40px;
}

/* Captcha Styling */
.captcha-row {
  align-items: flex-end;
}

.captcha-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7fafc;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
}

.captcha-code {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  color: #1a202c;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.captcha-code span.small {
  font-size: 14px;
}

.captcha-refresh {
  background: none;
  border: none;
  color: #718096;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s;
}

.captcha-refresh:hover {
  color: #F58634;
  background: rgba(245, 134, 52, 0.05);
}

.btn-submit {
  align-self: center;
  padding: 14px 48px;
  font-size: 16px;
}

@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    text-align: left;
  }

  .contact-left {
    max-width: 100%;
    text-align: left;
  }

  .contact-decor-circles {
    display: none;
  }

  .contact-card {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 24px;
  }

  .captcha-row {
    align-items: flex-start;
  }
}

.layer-arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  opacity: 0.15;
  transition: all 0.3s ease;
}

.layer-item:hover .layer-arrow {
  opacity: 0.4;
  transform: translateY(-50%) translateX(5px);
}

/* === Outcome Section (Visitor Delight) === */
.outcome-section {
  padding: 30px 0;
  background-color: white;
}

.outcome-box {
  background: linear-gradient(90deg, #FFFFFF 0%, #FFEFE3 50%, #FFFFFF 100%);
  padding: 40px 12px;
  text-align: center;
  max-width: 1410px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.outcome-decor {
  position: absolute;
  top: -100px;
  right: -50px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.outcome-box .h-primary {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.outcome-box .h-secondary {
  font-size: 28px;
  font-weight: 800;
  /* max-width: 1150px; */
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}

.outcome-desc {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  /* max-width: 720px; */
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.delight-badge {
  display: inline-block;
  padding: 9px 32px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #2D3748;
  position: relative;
  z-index: 1;
  /* background: #fffbf8; */
}

.delight-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1.5px;
  /* Border thickness */
  background: linear-gradient(90deg, #FFB177 0%, #FFEFE3 35.47%, #FFEFE3 75%, #FFB177 100%);
  -webkit-mask:
    linear-gradient(#fff, #fff) content-box,
    linear-gradient(to bottom, transparent, #fff 25%, #fff 75%, transparent);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* === Customers Logos Section === */
.customers-logos-section {
  padding: 50px 0;
  background-color: #FFFFFF;
}

.customers-header {
  text-align: center;
  margin-bottom: 50px;
}

.customers-header .h-primary {
  color: #F58634;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.customers-header .h-secondary {
  font-size: 32px;
  font-weight: 800;
  color: #1a202c;
}

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

.logo-slide {
  padding: 0 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  outline: none;
}

.logo-slide img {
  max-width: 160px;
  max-height: 60px;
  height: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-slide:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* === Trusted Section (Stats) === */
.cust-reach-section {
  padding: 30px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.abt-decor-spiral {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.cust-reach-header {
  text-align: center;
  margin-bottom: 64px;
}

.cust-reach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cust-reach-card {
  flex: 1;
  background-color: #fff;
  padding: 17px 26px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  /* animation: l; */
  align-items: flex-start;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(to bottom, #F58634 0%, #FFFFFF 100%) border-box;
}

.cust-reach-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
  border-color: #FFE4D1;
}

.cust-reach-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cust-reach-card-header img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cust-reach-card-header span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 1.2px;
}

.cust-reach-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 12px;
  line-height: 1;
}

.cust-reach-desc {
  font-size: 15px;
  color: #2C2C2C;
  line-height: 1.6;
  text-align: left;
}

/* === CTA Section === */
.footer-testimonial {
  position: relative;
  /* margin-top: 16rem; */
}

.cta-sec {
  position: absolute;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

.cta-box.redesigned {
  background-color: #FFFAF5;
  background-image: url('CTA-bg-1.png');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 60px 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
  top: -12rem;
  height: 301px;
  pointer-events: auto;
  border: 1px solid var(--color-primary);
}

.cta-content-centered {
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-head {
  color: #212121;
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}

.cta-para {
  color: #212121;
  margin-bottom: 24px;
}

.cta-action {
  margin-top: 24px;
}

/* === Footer === */
.footer {
  background-color: #fffbf8;
  padding: 40px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo-img {
  width: 140px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #212121;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.social-icon:hover {
  background-color: var(--color-primary);
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.footer-hr {
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: #212121;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

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

.footer-contact-item {
  color: #212121;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-bottom {
  background-color: #f9f9f9;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-brand {
  color: var(--color-primary);
  font-weight: 700;
}

.footer-bottom-links a {
  color: #666;
  margin-left: 12px;
}

/* thank you */
.thank-you-content {
  padding: 60px 20px;
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

.thank-you-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: var(--color-bg-light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-title {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.thank-you-text {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}