:root {
  /* Colors */
  --orange: #E8621A;
  --orange-hover: #CF561A;
  --orange-light: rgba(232, 98, 26, 0.12);
  --orange-border: rgba(232, 98, 26, 0.30);
  --blue: #1A5BE8;
  --blue-hover: #1A4EC0;
  --blue-light: rgba(26, 91, 232, 0.10);
  --dark-900: #0A0F1E;
  --dark-800: #111827;
  --dark-700: #1F2937;
  --dark-600: #374151;
  --light-50: #F8F9FC;
  --light-100: #F3F4F6;
  --light-200: #E5E7EB;
  --text-primary: #0A0F1E;
  --text-secondary: #374151;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;
  --text-white-70: rgba(255, 255, 255, 0.70);
  --text-white-45: rgba(255, 255, 255, 0.45);
  /* Spacing */
  --space-section: 100px;
  --space-section-sm: 72px;
  --container-max: 1200px;
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.15);
  --shadow-orange: 0 8px 24px rgba(232, 98, 26, 0.35);
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-secondary);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Typography Classes */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-title--white {
  color: var(--text-white);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 600px;
}

.section-subtitle--white {
  color: var(--text-white-70);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--text-white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn--primary-lg {
  padding: 18px 44px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.btn--outline-white {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-white:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--light-200);
}

.btn--outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--white {
  background: var(--text-white);
  color: var(--orange);
  border-color: var(--text-white);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.20);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  gap: 8px;
  transition: var(--transition);
}

.btn-arrow:hover {
  gap: 14px;
}

.btn-arrow::after {
  content: "→";
  font-size: 18px;
}

/* Card System */
.card {
  background: #ffffff;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.09);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--orange);
  transform: translateY(-4px);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.card:hover .card__icon {
  background: var(--orange);
  transform: scale(1.08);
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card--dark .card__title {
  color: var(--text-white);
}

.card__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.card--dark .card__body {
  color: var(--text-white-45);
}

.card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.card:hover .card__accent {
  transform: scaleX(1);
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(-32px);
}

[data-animate="fade-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(32px);
}

[data-animate="fade-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="zoom-in"] {
  opacity: 0;
  transform: scale(0.92);
}

[data-animate="zoom-in"].is-visible {
  opacity: 1;
  transform: scale(1);
}

[data-delay="100"] {
  transition-delay: 0.10s;
}

[data-delay="200"] {
  transition-delay: 0.20s;
}

[data-delay="300"] {
  transition-delay: 0.30s;
}

[data-delay="400"] {
  transition-delay: 0.40s;
}

[data-delay="500"] {
  transition-delay: 0.50s;
}

[data-delay="600"] {
  transition-delay: 0.60s;
}

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2-1,
  .grid-1-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Counter Animation */
.counter-num {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.025em;
}

.counter-num sup {
  font-size: 0.55em;
  vertical-align: super;
}

.counter-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 8px;
}

/* Marquee / Logo Scroll */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-item img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
}

.marquee-item:hover img {
  filter: none;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Badge / Tag */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

.badge--orange {
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid var(--orange-border);
}

.badge--dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Navigation CSS */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.nav-logo__img {
  max-height: 40px;
  width: auto;
  display: block;
}

.footer-logo__img {
  max-height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s;
}

.footer-logo:hover .footer-logo__img {
  transform: scale(1.05);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo__icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.nav-logo__text {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}

.nav-logo__img {
  max-height: 40px;
  width: auto;
  display: block;
}

.footer-logo__img {
  max-height: 50px;
  width: auto;
  display: block;
}

.nav-logo__text em {
  color: var(--orange);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-chevron {
  font-size: 11px;
  opacity: 0.6;
  margin-left: 2px;
}

.nav-item--dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  border-top: 24px solid transparent;
  background-clip: padding-box;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 640px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  border: 1px solid var(--light-200);
  z-index: 1000;
}

.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__inner {
  padding: 32px;
}

.nav-dropdown__heading {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-200);
}

.nav-dropdown__heading h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.nav-dropdown__heading p {
  font-size: 13px;
  color: var(--text-muted);
}

.nav-dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.nav-dropdown__item:hover {
  background: var(--light-50);
}

.nav-dropdown__item:hover strong {
  color: var(--orange);
}

.ndi-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.nav-dropdown__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}

.nav-dropdown__item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 14px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
  .nav-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 72px;
  }

  /* Logo: Perfectly centered using absolute positioning within header only */
  .site-header .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 5;
    flex: none;
    display: flex;
  }

  .nav-logo__img {
    max-height: 28px;
    width: auto;
  }

  /* Hamburger: On the left, restricted width so it doesn't steal clicks */
  .nav-hamburger {
    display: flex;
    order: -1;
    position: relative;
    z-index: 10;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }

  /* CTA Button: On the right, relative to text width (not stretching) */
  .nav-cta {
    display: inline-flex;
    order: 3;
    position: relative;
    z-index: 10;
    width: auto !important;
    min-width: 0;
    flex: none;
    padding: 10px 16px;
    font-size: 13px;
    margin: 0;
    line-height: 1;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 100px;
    /* Increased offset to prevent hiding the header/close button */
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: var(--radius-lg);
    background: var(--dark-900);
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 999;
    gap: 8px;
  }

  .nav-link {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
  }

  .nav-dropdown {
    display: none;
  }

  /* Grid Fixes: Show only 2 items on Tablet (Scoped to Homepage Preview) */
  #homepage-reviews {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #homepage-reviews .card:nth-child(n+3) {
    display: none;
  }

  .home-blog-section .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .home-blog-section .blog-grid .blog-card:nth-child(n+3) {
    display: none;
  }

  /* Main Blog Page: 2 Columns on Tablet */
  .blog-archive-section .blog-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px;
  }
}

/* Phone-specific: Logo center, Hamb left, Hide CTA */
@media (max-width: 640px) {
  .nav-cta {
    display: none;
    /* Hide CTA on phone to make room for Logo */
  }

  .nav-logo__img {
    max-height: 24px;
    /* Bit smaller on phone */
  }

  .nav-inner {
    padding: 0 15px;
  }

  /* Hero Mobile Fixes */
  .hero-h1 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: left;
  }

  .hero-lead {
    font-size: 15px;
    text-align: left;
    margin-bottom: 32px;
  }

  .hero-btns {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 40px;
  }

  .hero-btns .btn {
    padding: 10px 12px;
    font-size: 12px;
    flex: 1;
    justify-content: center;
    height: 44px;
    white-space: nowrap;
  }

  .hero-trust {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    width: 100%;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    flex: 1;
    white-space: nowrap;
  }

  .trust-num {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
  }

  .trust-label {
    font-size: 7px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
  }

  /* Case Study Mobile Fixes */
  .case-study-tabs {
    justify-content: space-between;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--light-200);
  }

  .case-study-tabs::-webkit-scrollbar {
    display: none;
  }

  .cs-tab {
    padding: 10px 8px;
    font-size: 11px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
  }

  .cs-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cs-content blockquote {
    font-size: 18px;
    margin: 12px 0 24px;
  }

  .cs-stats {
    gap: 20px;
  }

  .cs-num {
    font-size: 32px;
  }

  .cs-image-block {
    display: none;
    /* Hide the visual boxes as requested */
  }

  /* Phone: Stacked Reviews, Slider Blogs (Home Only) */
  #homepage-reviews {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
    margin: 0;
    overflow: visible;
  }

  #homepage-reviews .card {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 32px 24px;
  }

  #homepage-reviews .review-author {
    justify-content: flex-start !important;
    width: 100%;
  }

  /* Homepage Blog Slider */
  .home-blog-section .blog-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding: 0 0 24px;
    gap: 16px;
    scroll-snap-type: x mandatory;
    margin-right: -15px;
    margin-left: -5px;
    -webkit-overflow-scrolling: touch;
  }

  .home-blog-section .blog-grid::-webkit-scrollbar {
    display: none;
  }

  .home-blog-section .blog-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    display: flex !important;
  }

  /* Main Blog Page: Stacked Vertical Column */
  .blog-archive-section .blog-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px;
  }

  .blog-archive-section .blog-card {
    width: 100% !important;
    display: flex !important;
  }

  /* Ensure all items are visible on phone */
  #homepage-reviews .card:nth-child(n+3),
  .home-blog-section .blog-grid .blog-card:nth-child(n+3),
  .blog-archive-section .blog-card:nth-child(n+n) {
    display: flex !important;
  }
}

/* Footer CSS */
.site-footer {
  background: var(--dark-900);
}

.footer-trust-bar {
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.platform-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px;
}

.platform-logos::-webkit-scrollbar {
  display: none;
}

.p-logo {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.3s;
  white-space: nowrap;
}


@media (max-width: 640px) {

  /* Footer Logo Fixes: Show only Amazon, Shopify, Kindle on phone */
  .platform-logos .p-logo {
    display: none;
  }

  .platform-logos .p-logo:nth-child(1),
  .platform-logos .p-logo:nth-child(2),
  .platform-logos .p-logo:nth-child(6) {
    display: block;
  }

  .platform-logos {
    justify-content: center;
    gap: 32px;
    padding: 0;
    overflow: hidden;
  }
}

.platform-logos:hover {
  cursor: default;
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-white-45);
  margin-top: 18px;
  max-width: 320px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-logo {
  margin-bottom: 0;
  display: block;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* --- PAGE SECTION COMPONENTS --- */

.hero {
  background: var(--dark-900);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(232, 98, 26, 0.14) 0%, transparent 70%);
}

.hero-bg-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -180px;
  left: -100px;
  background: radial-gradient(circle, rgba(26, 91, 232, 0.10) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin: 20px 0 24px;
}

.hero-h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-white-70);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.trust-num {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.trust-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-white-45);
  line-height: 1.4;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.hero-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero-card__stat {
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.stat-orange {
  color: var(--orange);
}

.hero-card__desc {
  font-size: 14px;
  color: var(--text-white-45);
  margin-bottom: 28px;
}

.hero-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.hero-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-card__row span {
  font-size: 14px;
  color: var(--text-white-45);
}

.hero-card__row strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.hero-card__row:last-child {
  border-bottom: none;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }
}

.logos-section {
  background: #fff;
  padding: 48px 0;
  border-bottom: 1px solid var(--light-200);
}

.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.logo-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 98, 26, 0.3);
  transition: 0.3s;
  filter: grayscale(1);
}

.marquee-item:hover .logo-flex {
  color: var(--text-primary);
  filter: grayscale(0);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
  text-transform: capitalize;
}

.case-study-section {
  background: var(--light-50);
  padding: var(--space-section) 0;
}

.case-study-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--light-200);
  padding-bottom: 0;
}

.cs-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.cs-tab.active,
.cs-tab:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.cs-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cs-panel.active {
  display: grid;
}

.cs-content blockquote {
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 600;
  margin: 16px 0 32px;
}

.cs-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}

.cs-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.cs-stat span:last-child {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.cs-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.cs-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

.cs-author strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
}

.cs-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.cs-image-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cs-image-placeholder {
  background: var(--dark-900);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.cs-image-tag {
  background: var(--orange-light);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cs-image-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cs-mini-stat span {
  font-size: 11px;
  color: var(--text-white-45);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cs-mini-stat strong {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
}

.cs-arrow-icon {
  font-size: 28px;
  color: var(--orange);
}

.why-section {
  background: var(--dark-900);
  padding: var(--space-section) 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.eyebrow--white {
  color: var(--orange);
}

.eyebrow--white::before {
  background: var(--orange);
}

.why-tab-btns {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.why-tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-tab-btn span:not(.why-tab-num):not(.why-tab-progress) {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white-45);
  transition: color 0.3s;
}

.why-tab-btn.active span:not(.why-tab-num):not(.why-tab-progress) {
  color: #fff;
}

.why-tab-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
  width: 24px;
  transition: opacity 0.3s;
}

.why-tab-btn.active .why-tab-num {
  opacity: 1;
}

.why-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--orange);
  transition: width 4s linear;
}

.why-tab-btn.active .why-tab-progress {
  width: 100%;
}

.why-panel {
  display: none;
}

.why-panel.active {
  display: block;
  animation: fadeIn 0.45s ease;
}

.why-panel-img {
  height: 280px;
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  background: var(--dark-800);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  opacity: 0.8;
  filter: drop-shadow(0 0 40px rgba(232, 98, 26, 0.15));
  transition: transform 0.5s ease;
}

.why-panel-img:hover {
  transform: scale(1.05);
}

.why-panel-img--partner::after,
.why-panel-img--services::after,
.why-panel-img--process::after {
  content: none !important;
}

.why-panel p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-white-70);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.stats-section {
  background: var(--orange);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-block {
  padding: 16px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.process-section {
  background: #fff;
  padding: var(--space-section) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 64px;
}

.process-connector {
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--blue));
  z-index: 0;
  border-radius: 2px;
}

.process-step {
  background: var(--light-50);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-xl);
  padding: 40px 28px 36px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.process-step__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.process-step__icon {
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 12px;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.services-section {
  background: var(--light-50);
  padding: var(--space-section) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.reviews-preview {
  background: var(--dark-800);
  padding: var(--space-section) 0;
}

.review-stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-quote {
  font-size: 15px;
  line-height: 1.78;
  font-style: italic;
  color: var(--text-white-70);
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.review-author span {
  font-size: 12px;
  color: var(--text-white-45);
}

.ratings-bar {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid var(--light-200);
  border-bottom: 1px solid var(--light-200);
}

.ratings-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.rating-item {
  background: var(--light-50);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-200);
  transition: var(--transition);
}

.rating-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: #fff;
  border-color: transparent;
}

.rating-platform {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.rating-stars {
  color: var(--orange);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.rating-score {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-score span {
  font-size: 20px;
  color: var(--text-muted);
  opacity: 0.6;
}

.rating-count {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .ratings-grid {
    grid-template-columns: 1fr;
  }
}

.cta-section {
  background: var(--orange);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-orb--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
}

.cta-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-title em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
}

/* FAQ Accordion Styles */
/* Service Card SVGs & Hover */
.card__icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.card__icon svg {
  color: var(--orange);
  transition: var(--transition);
}

.card:hover .card__icon {
  background: var(--orange);
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 8px 16px rgba(232, 98, 26, 0.3);
}

.card:hover .card__icon svg {
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

/* FAQ Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--light-50);
  border: 1px solid var(--light-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--orange-border);
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-icon::before {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.4s;
  display: block;
}

.faq-item.active .faq-icon::before {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  padding: 0 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
  background: #fff;
  border-color: var(--orange-border);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
  color: var(--orange);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 32px;
}

/* --- BOOKING MODAL & WIDGETS --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: #fff;
  width: 95%;
  max-width: 580px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  animation: modal-enter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-enter {
  from {
    transform: scale(0.95) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background: var(--dark-900);
  padding: 40px;
  color: #fff;
  text-align: center;
}

.modal-header h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.modal-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.m-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s;
}

.m-step.active {
  background: var(--orange);
  color: #fff;
}

.m-step-line {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.m-step.active+.m-step-line {
  background: var(--orange);
}

.modal-form {
  padding: 40px;
}

.m-form-step {
  display: none;
}

.m-form-step.active {
  display: block;
  animation: step-enter 0.4s easeOut;
}

@keyframes step-enter {
  from {
    opacity: 0;
    transform: translateX(15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: var(--orange);
  outline: none;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  z-index: 1;
  transition: 0.3s;
}

.modal-close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

.floating-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  transition: var(--transition);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.stt-btn {
  bottom: 30px;
  right: 30px;
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
}

.stt-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.wa-btn {
  bottom: 30px;
  left: 30px;
  color: #fff;
  background: var(--orange);
}

.wa-btn:hover {
  background: var(--dark-800);
}

.wa-drawer {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 900;
}

.wa-drawer.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-header {
  background: var(--orange);
  padding: 24px;
  color: #fff;
}

.wa-header strong {
  display: block;
  font-size: 18px;
}

.wa-header span {
  font-size: 13px;
  opacity: 0.9;
}

.wa-body {
  padding: 12px;
}

.wa-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  transition: 0.2s;
  color: var(--text-primary);
  text-decoration: none;
}

.wa-item:hover {
  background: var(--light-50);
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.wa-item strong {
  display: block;
  font-size: 15px;
}

.wa-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.wa-go {
  margin-left: auto;
  color: var(--orange);
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* SEO Auto links */
.auto-link {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 500;
}

.auto-link:hover {
  color: var(--dark-900);
}

/* --- TASK 6 BLOCKS --- */
.definition-block {
  padding: 80px 0;
  background: var(--light-100);
  border-bottom: 1px solid var(--light-200);
}

.definition-block h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.definition-block p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 900px;
}

.definition-block strong {
  color: var(--orange);
}


.why-advertpreneur {
  padding: 140px 0;
  background: #fff;
  position: relative;
}

.why-advertpreneur h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.02em;
}

.why-advertpreneur .section-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}

.differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diff-item {
  position: relative;
  padding: 48px;
  border-radius: 32px;
  background: var(--light-50);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-200);
  overflow: hidden;
  z-index: 1;
}

.diff-item:hover {
  transform: translateY(-12px);
  background: #fff;
  box-shadow: var(--shadow-xl);
  border-color: var(--orange-light);
}

.diff-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  color: var(--orange);
  opacity: 0.04;
  transform: rotate(12deg);
  z-index: -1;
  transition: 0.4s ease;
}

.diff-item:hover .diff-icon {
  opacity: 0.08;
  transform: rotate(0deg) scale(1.1);
}

.diff-item strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.diff-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .differentiators {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer Styling */
.footer-heading {
  color: var(--orange) !important;
  font-weight: 800;
}

/* HOME BLOG SECTION */
.home-blog-section {
  border-top: 1px solid var(--light-200);
}

.blog-card {
  background: #fff;
  border: 1px solid var(--light-200);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta span {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.blog-card .btn-arrow {
  margin-top: auto;
  font-size: 14px;
  color: var(--orange);
}


/* GLOBAL BLOG PAGINATION — nuclear reset of WP defaults */
.pagination-wrap,
.pagination-wrap .navigation,
.pagination-wrap .pagination {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Strip circles/boxes from WP's page-numbers output */
.pagination-wrap .page-numbers,
.pagination-wrap a.page-numbers,
.pagination-wrap span.page-numbers,
.pagination-wrap .nav-links .page-numbers {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  line-height: normal !important;
  padding: 6px 14px !important;
  margin: 0 2px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  color: #888 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.pagination-wrap a.page-numbers:hover {
  color: var(--orange) !important;
  background: transparent !important;
}

.pagination-wrap span.page-numbers.current {
  color: var(--orange) !important;
  font-weight: 800 !important;
  background: transparent !important;
}

/* Force the nav-links flex row */
.pagination-wrap .nav-links {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* paginate_links 'list' type ul */
.pagination-wrap ul.page-numbers {
  list-style: none !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.pagination-wrap ul.page-numbers li {
  display: inline-block !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}