/* ==========================================================================
   FONTS DEFINITIONS
   ========================================================================== */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZ2IHSeH.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriCZOIHQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://cdn.divriots.com/fonts/inter/v3.19/Inter.var.woff2') format('woff2');
}

/* ==========================================================================
   GLOBAL RESET & FULL-WIDTH SETUP
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 104px;
}

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

button {
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  outline: none;
}

input {
  border: none;
  font: inherit;
  outline: none;
  background: transparent;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* Layout container for full-width responsiveness without side gaps */
.page-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 20px;
  font-weight: 700;
  color: #606060;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 30px;
}

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}

.header-logo {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.header-logo img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #555555;
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta-btn {
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.header-cta-btn:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 8px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.3);
}

.hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: #000000;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-menu-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 30px 24px 60px 24px;
}

.mobile-menu-drawer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 19px;
  font-weight: 600;
  color: #000000;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-link:hover {
  color: #555555;
  transform: translateX(4px);
}

.mobile-drawer-cta {
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-drawer-cta:hover {
  background-color: #222222;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 60px 0 80px 0;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title-main {
  font-family: 'DM Sans', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #000000;
  letter-spacing: -1px;
  margin-bottom: 8px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-title-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  color: #000000;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #666666;
  max-width: 500px;
  margin-bottom: 40px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.hero-btn-primary:hover::after {
  left: 150%;
}

.hero-btn-primary:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-btn-primary:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn-secondary:hover {
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.hero-btn-secondary:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.btn-arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 12px;
  animation: heroImageFloat 6s ease-in-out 1.2s infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.02) translateY(-4px);
}

/* ==========================================================================
   CLIENT LOGOS MARQUEE SECTION
   ========================================================================== */
.marquee-section {
  width: 100%;
  padding: 42px 0;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 68px;
  width: max-content;
  animation: marqueeLoop 30s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 80px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.marquee-item:hover {
  opacity: 1;
  transform: scale(1.08);
}

.marquee-item img {
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ---------- Per-logo visual size normalization (scaled up to ~37-42px optical visual height) ---------- */
.marquee-item[data-brand="twitch"] img {
  height: 37px;
  width: auto;
}

.marquee-item[data-brand="stripe"] img {
  height: 116px;
  width: auto;
}

.marquee-item[data-brand="slack"] img {
  height: 42px;
  width: auto;
}

.marquee-item[data-brand="notion"] img {
  height: 54px;
  width: auto;
}

.marquee-item[data-brand="webflow"] img {
  height: 127px;
  width: auto;
}

.marquee-item[data-brand="zapier"] img {
  height: 65px;
  width: auto;
}

.marquee-item[data-brand="airtable"] img {
  height: 114px;
  width: auto;
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

@keyframes marqueeLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 80px 0;
  width: 100%;
}

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

.service-card {
  border: 1px solid #b4b4b4;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 32px 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #000000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.15) translateY(-2px);
}

.service-card-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
  color: #222222;
}

/* ==========================================================================
   STATS BANNER SECTION
   ========================================================================== */
.stats-section {
  padding: 20px 0 60px 0;
  width: 100%;
}

.stats-card {
  background-color: #000000;
  border-radius: 12px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover .stat-icon {
  transform: scale(1.12);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: #ffffff;
  line-height: 1.2;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: #dbdbdb;
  margin-top: 4px;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section {
  padding: 60px 0 80px 0;
  width: 100%;
}

.process-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.process-intro-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

.process-intro-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #444444;
}

.process-steps-container {
  position: relative;
  width: 100%;
}

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

.process-steps-line {
  position: absolute;
  top: 22px;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: #000000;
  z-index: 1;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.process-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: transform 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 0 0 4px #ffffff;
}

.process-step-item:hover .process-step-circle {
  transform: scale(1.1);
  background-color: #222222;
}

.process-step-name {
  font-size: 18px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
}

.process-divider {
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  margin: 70px 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 0 0 80px 0;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.testimonial-card {
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card-dark {
  background-color: #000000;
  color: #ffffff;
}

.testimonial-card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.testimonial-card-light {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #8c8c8c;
}

.testimonial-card-light:hover {
  transform: translateY(-5px);
  border-color: #000000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.stars-row {
  display: flex;
  gap: 2px;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-top: auto;
  padding-top: 14px;
}

.author-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.author-role {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 60px 0 80px 0;
  width: 100%;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: flex-start;
}

.faq-header-left {
  display: flex;
  flex-direction: column;
}

.faq-main-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
}

.faq-still-questions {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-still-questions:hover {
  color: #555555;
  transform: translateX(3px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-box {
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  background-color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-box:hover {
  border-color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-item-box.active {
  background-color: #fafafa;
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-question-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.faq-question-text {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item-box.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.faq-item-box.active .faq-answer {
  max-height: 160px;
  opacity: 1;
  padding: 0 24px 20px 24px;
}

/* ==========================================================================
   BOTTOM STRIPS WRAPPER
   ========================================================================== */
.newsletter-cta-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ==========================================================================
   NEWSLETTER STRIP SECTION
   ========================================================================== */
.newsletter-section {
  padding: 50px 0;
  width: 100%;
}

.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 580px;
}

.newsletter-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #000000;
}

.newsletter-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 540px;
}

.newsletter-input-container {
  border: 1px solid #d2d2d2;
  border-radius: 100px;
  background-color: #ffffff;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 4px 6px 4px 22px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-input-container:focus-within {
  border-color: #000000;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-input-field {
  flex-grow: 1;
  font-size: 15px;
  color: #171717;
  padding-right: 12px;
}

.newsletter-input-field::placeholder {
  color: #888888;
}

.newsletter-btn {
  background-color: #000000;
  color: #ffffff;
  border-radius: 80px;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background-color: #222222;
  transform: translateY(-1px);
}

.newsletter-btn:hover .btn-arrow-icon {
  transform: translateX(3px);
}

.newsletter-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-left: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  opacity: 0.7;
}

/* ==========================================================================
   BOTTOM CTA BANNER
   ========================================================================== */
.cta-banner-section {
  padding: 40px 0 80px 0;
  width: 100%;
}

.cta-banner-box {
  background: linear-gradient(102deg, #000000 0.4%, #040404 50.6%, #000000 98.6%);
  border-radius: 14px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.cta-glow-orb {
  position: absolute;
  right: 280px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(60px);
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

.cta-banner-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  max-width: 520px;
  z-index: 2;
}

.cta-banner-btn {
  background-color: #ffffff;
  color: #000000;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 2;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.cta-banner-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.cta-banner-btn:hover::after {
  left: 150%;
}

.cta-banner-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-banner-btn:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #eeeeee;
  padding: 60px 0 30px 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  cursor: pointer;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  height: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.footer-logo img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.footer-brand-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #585d63;
  max-width: 280px;
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #585d63;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #000000;
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-icon:hover {
  transform: translateY(-2px) scale(1.1);
}

.footer-bottom-bar {
  border-top: 1px solid #f0f0f0;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #888888;
}

/* ==========================================================================
   MODAL & TOAST NOTIFICATIONS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  border-radius: 16px;
  width: 500px;
  max-width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  line-height: 1;
  color: #888888;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
  color: #000000;
  transform: scale(1.15);
}

.modal-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #000000;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-form-group {
  margin-bottom: 16px;
}

.modal-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 6px;
}

.modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  font-size: 14px;
  background: #fdfdfd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-input:focus {
  border-color: #000000;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.modal-submit-btn {
  width: 100%;
  padding: 14px;
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.modal-submit-btn:hover {
  background: #222222;
  transform: translateY(-1px);
}

.toast-msg {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #000000;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (ALL SCREEN SIZES)
   ========================================================================== */

/* Large Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title-main,
  .hero-title-sub {
    font-size: 52px;
  }
  .hero-desc {
    max-width: 600px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image-wrap img {
    max-width: 520px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 30px;
  }
  .process-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-steps-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-steps-line {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-top-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

/* Tablets & Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  body {
    padding-top: 76px;
  }
  .site-header {
    height: 72px;
  }
  .header-inner {
    height: 72px;
  }
  .header-logo {
    height: auto;
    width: auto;
  }
  .header-logo img {
    height: 25px;
    width: auto;
    margin-left: 0;
  }
  .header-nav {
    display: none;
  }
  .header-cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu-drawer {
    display: block;
    top: 72px;
  }

  /* Hide all arrows on mobile view */
  .btn-arrow-icon {
    display: none !important;
  }

  .newsletter-section {
    padding: 36px 0;
  }
  .cta-banner-section {
    padding: 30px 0 60px 0;
  }

  /* Hero Section: Title -> Desc -> Dashboard Image in Middle -> Side-by-Side Buttons */
  .hero-section {
    padding: 35px 0 50px 0;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .hero-content {
    display: contents;
  }
  .hero-title-main {
    order: 1;
    font-size: 40px;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    width: 100%;
  }
  .hero-title-sub {
    order: 2;
    font-size: 40px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    width: 100%;
  }
  .hero-desc {
    order: 3;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 580px;
    width: 100%;
  }
  .hero-image-wrap {
    order: 4;
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
  }
  .hero-image-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .hero-actions {
    order: 5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 10px;
    font-size: 13.5px;
    font-weight: 600;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    border-radius: 10px;
  }

  .services-section {
    padding: 50px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 24px 20px;
    min-height: auto;
  }
  .stats-section {
    padding: 10px 0 40px 0;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
    gap: 20px;
  }
  .process-section {
    padding: 50px 0;
  }
  .process-steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-divider {
    margin: 40px 0;
  }
  .testimonials-section {
    padding: 0 0 50px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq-section {
    padding: 40px 0 50px 0;
  }
  .faq-main-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .newsletter-card {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .newsletter-left {
    max-width: 100%;
  }
  .newsletter-right {
    max-width: 100%;
  }
  .cta-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }
  .cta-banner-title {
    font-size: 28px;
    max-width: 100%;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-legal-links {
    display: none !important;
  }
  .modal-box {
    padding: 28px 20px;
  }
}

/* Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  .page-container {
    padding: 0 16px;
  }
  .hero-title-main,
  .hero-title-sub {
    font-size: 32px;
    line-height: 1.15;
  }
  .hero-title-main {
    margin-bottom: 4px;
  }
  .hero-title-sub {
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .hero-image-wrap {
    margin-bottom: 20px;
  }
  .hero-actions {
    flex-direction: row;
    width: 100%;
    gap: 8px;
    max-width: 100%;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 13px 6px;
    font-size: 12px;
    justify-content: center;
    white-space: nowrap;
    letter-spacing: -0.2px;
  }
  .marquee-fade-left,
  .marquee-fade-right {
    width: 40px;
  }
  .marquee-item {
    width: 150px;
    height: 65px;
  }
  .stats-card {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    gap: 20px;
  }
  .process-steps-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-intro-title {
    font-size: 26px;
  }
  .faq-question-row {
    padding: 16px 18px;
  }
  .faq-question-text {
    font-size: 14px;
  }
  .newsletter-icon-circle {
    width: 52px;
    height: 52px;
  }
  .newsletter-icon-circle svg {
    width: 22px;
    height: 18px;
  }
  .newsletter-title {
    font-size: 17px;
  }
  .newsletter-input-container {
    height: 50px;
    padding: 4px 6px 4px 16px;
  }
  .newsletter-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  .cta-banner-title {
    font-size: 23px;
  }
  .cta-banner-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 13px;
  }
}

/* Extra Small Phones (<= 360px) */
@media (max-width: 360px) {
  .hero-title-main,
  .hero-title-sub {
    font-size: 26px;
  }
  .hero-desc {
    font-size: 13.5px;
    margin-bottom: 16px;
  }
  .hero-image-wrap {
    margin-bottom: 16px;
  }
  .hero-actions {
    gap: 6px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 11px 4px;
    font-size: 11px;
    letter-spacing: -0.3px;
  }
  .newsletter-input-container {
    flex-direction: column;
    height: auto;
    border-radius: 12px;
    padding: 12px;
    gap: 10px;
  }
  .newsletter-input-field {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ANIMATION KEYFRAMES & SCROLL REVEAL SYSTEM
   ========================================================================== */

/* Hero Load Animations */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Floating Hero Image Animation */
@keyframes heroImageFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* Ambient Glow Animation */
@keyframes pulseGlow {
  0% {
    transform: translateY(-50%) scale(0.95);
    opacity: 0.12;
  }
  100% {
    transform: translateY(-50%) scale(1.35);
    opacity: 0.28;
  }
}

/* Scroll Reveal Classes */
.reveal-init {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-init.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Scale-in Reveal Variant */
.reveal-scale-init {
  opacity: 0;
  transform: scale(0.94) translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale-init.revealed {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}

/* Fade-in Reveal Variant */
.reveal-fade-init {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.reveal-fade-init.revealed {
  opacity: 1 !important;
}

/* Stagger Delays for Grid Elements */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.45s; }
.stagger-6 { transition-delay: 0.55s; }

/* Pulse animation for interactive cues */
@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
}

.process-step-item:hover .process-step-circle {
  animation: badgePulse 1.2s infinite;
}

/* Accessibility / Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-init,
  .reveal-scale-init,
  .reveal-fade-init {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


