/* ============================================
   INSPIRY SOLUTIONS — All Sections CSS
   ============================================ */

/* ──────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
  padding: 120px 0 200px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-content-inner {
  position: relative;
}

.hero-tagline {
  /* JS animation target — structural styles on .hero__tagline */
}

.hero-heading-wrap {
  overflow: hidden;
  will-change: transform;
}

.hero-char {
  display: inline-block;
  will-change: transform, opacity;
  transform-origin: bottom center;
}

.hero-cta {
  /* JS animation target for CTA area */
}

.hero-meta-item {
  /* JS animation target for meta items */
}

.hero__btn--primary {
  /* Primary CTA — inherits .hero__btn styles */
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero__scroll-label {
  display: block;
}

.hero__scroll-dot {
  /* Scroll indicator dot inside SVG — animation handled by parent ::after */
}

/* Tagline */
.hero__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 48px;
}

.hero__tag-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  opacity: 0.7;
}

/* Heading — massive */
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 8.5vw, 140px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: var(--color-text);
}

.hero__line {
  display: block;
  white-space: nowrap;
}

.hero__line--outlined {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
}

.hero__char-wrap {
  display: inline-block;
  overflow: hidden;
  perspective: 400px;
}

.hero__char {
  display: inline-block;
  will-change: transform, opacity;
  transform-origin: bottom center;
}

/* CTA */
.hero__cta {
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  transition: all 0.5s var(--ease-out-expo);
}

.hero__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4);
}

.hero__btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3B82F6, #60A5FA);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: inherit;
}

.hero__btn:hover .hero__btn-bg {
  transform: scaleX(1);
  transform-origin: left;
}

.hero__btn-text {
  position: relative;
  z-index: 1;
}

.hero__btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.hero__btn:hover .hero__btn-arrow {
  transform: translateX(4px);
}

/* Secondary CTA */
.hero__btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-text);
  background: transparent;
  transition: all 0.4s var(--ease-out-expo);
}

.hero__btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Meta info */
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
}

/* Background glows */
.hero__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: glowFloat 8s ease-in-out infinite;
}

.hero__glow--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  left: auto;
  transform: none;
  animation: glowFloat 12s ease-in-out infinite reverse;
}

.hero__glow--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  top: auto;
  transform: none;
  animation: glowFloat 10s ease-in-out infinite;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(-45%, -55%) scale(1.15); }
  66% { transform: translate(-55%, -45%) scale(0.92); }
}

/* Scroll indicator — vertical line */
.hero__scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.hero__scroll-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-lr;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.hero__scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: var(--color-primary);
  animation: scrollDotTravel 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollDotTravel {
  0% {
    top: -16px;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 64px;
    opacity: 0;
  }
}


/* ──────────────────────────────────────────────
   SERVICES
   ────────────────────────────────────────────── */
.services {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
}

.services__header {
  text-align: center;
  margin-bottom: 80px;
}

.services__grid {
  max-width: 1000px;
  margin: 0 auto;
}

/* List-style service items */
.services__card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
}

.services__card:first-child {
  border-top: 1px solid var(--color-border);
}

.services__card:hover {
  padding-left: 12px;
}

.services__card:hover .services__title {
  color: var(--color-primary);
}

.services__card:hover .services__icon {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  transform: scale(1.1);
}

.services__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.services__content,
.services__card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.services__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 500px;
}

.services__learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: gap 0.3s var(--ease-out-expo);
}

.services__learn-more:hover {
  gap: 12px;
}

.services__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.4s var(--ease-out-expo);
}

.services__cta {
  text-align: center;
  margin-top: 60px;
}

.services__cta a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services__cta a:hover {
  gap: 14px;
}


/* ──────────────────────────────────────────────
   STATS
   ────────────────────────────────────────────── */
.stats {
  padding: var(--section-padding) 0;
  perspective: 1000px;
}

.stats__header {
  text-align: center;
  margin-bottom: 80px;
}

.stats__header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.stats__split-heading {
  display: inline-block;
}

.stats__heading-char-wrap {
  display: inline-block;
  overflow: hidden;
}

.stats__heading-char {
  display: inline-block;
  will-change: transform, opacity;
}

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

.stats__card {
  text-align: center;
  padding: 56px 36px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
  transform-origin: center bottom;
}

.stats__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), #60A5FA, var(--color-primary));
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out-expo);
  animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.stats__card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.15), 0 8px 24px rgba(0,0,0,0.3);
  border-color: rgba(37, 99, 235, 0.2);
}

.stats__card:hover::before {
  transform: scaleX(1);
}

.stats__decor {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stats__suffix {
  color: var(--color-primary);
  font-size: 0.5em;
  will-change: transform, opacity;
  display: inline-block;
}

.stats__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}


/* ──────────────────────────────────────────────
   PORTFOLIO
   ────────────────────────────────────────────── */
.portfolio {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
  position: relative;
}

.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--container-padding);
}

.portfolio__header-left {
  max-width: 600px;
}

.portfolio__scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-top: 28px;
}

.portfolio__scroll-hint-line {
  width: 40px;
  height: 1px;
  background: var(--color-primary);
}

/* Horizontal scroll wrapper */
.portfolio__horizontal-wrap {
  overflow: hidden;
  padding-top: 20px;
}

.portfolio__horizontal-track {
  display: flex;
  gap: 28px;
  padding: 0 var(--container-padding);
  will-change: transform;
}

/* Cards */
.portfolio__card {
  flex-shrink: 0;
  width: clamp(380px, 30vw, 480px);
  transition: transform 0.5s var(--ease-out-expo);
}

.portfolio__card:hover {
  transform: translateY(-8px);
}

.portfolio__image-wrap {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  cursor: pointer;
}

.portfolio__card:nth-child(1) .portfolio__image-wrap {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}
.portfolio__card:nth-child(2) .portfolio__image-wrap {
  background: linear-gradient(135deg, #4338CA 0%, #7C3AED 100%);
}
.portfolio__card:nth-child(3) .portfolio__image-wrap {
  background: linear-gradient(135deg, #0E7490 0%, #06B6D4 100%);
}
.portfolio__card:nth-child(4) .portfolio__image-wrap {
  background: linear-gradient(135deg, #065F46 0%, #10B981 100%);
}

.portfolio__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  user-select: none;
  transition: all 0.5s ease;
}

.portfolio__card:hover .portfolio__placeholder {
  color: rgba(255,255,255,0.3);
  transform: scale(1.05);
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  border-radius: inherit;
}

.portfolio__card:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-full);
  color: white;
  transition: all 0.3s;
}

.portfolio__overlay-btn:hover {
  background: white;
  color: #000;
}

.portfolio__info {
  padding: 0 4px;
}

.portfolio__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.portfolio__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}


/* ──────────────────────────────────────────────
   QUOTE
   ────────────────────────────────────────────── */
.quote {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.quote__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote__mark {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -10px;
  will-change: transform, opacity;
}

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
}

.quote__word {
  display: inline-block;
  margin-right: 0.3em;
  will-change: transform, opacity, filter;
  transition: color 0.3s;
}

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

.quote__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.quote__divider-line {
  width: 80px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  transform-origin: center;
  will-change: transform;
}

.quote__divider-slash {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}


/* ──────────────────────────────────────────────
   BENEFITS
   ────────────────────────────────────────────── */
.benefits {
  padding: var(--section-padding) 0;
}

.benefits__header {
  text-align: center;
  margin-bottom: 80px;
}

/* 3x2 card grid */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual card */
.benefits__card {
  padding: 40px 32px 36px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

/* Top glow line on hover */
.benefits__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.benefits__card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25),
              0 0 40px rgba(37, 99, 235, 0.06);
}

.benefits__card:hover::before {
  opacity: 1;
}

/* Corner glow */
.benefits__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.benefits__card:hover .benefits__glow {
  opacity: 1;
}

/* Top row: icon + number */
.benefits__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.benefits__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.4s var(--ease-out-expo);
}

.benefits__card:hover .benefits__icon {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  transform: scale(1.08);
}

.benefits__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

/* Text */
.benefits__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.benefits__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ──────────────────────────────────────────────
   PROCESS
   ────────────────────────────────────────────── */
.process {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
}

.process__header {
  text-align: center;
  margin-bottom: 80px;
}

.process__steps {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  perspective: 800px;
}

/* Timeline center line */
.process__timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--color-border);
  z-index: 1;
}

.process__timeline-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary), #60A5FA);
  transform-origin: top center;
  will-change: transform;
}

/* Step rows — 3 columns with dot always in center */
.process__step-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

/* Center dot on timeline */
.process__dot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.process__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg-alt);
  box-shadow: 0 0 0 2px var(--color-primary);
  will-change: transform;
  z-index: 3;
}

.process__spacer {
  min-height: 1px;
}

/* Step card */
.process__card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  position: relative;
  overflow: hidden;
}

.process__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37,99,235,0.2), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.process__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: transparent;
}

.process__card:hover::before {
  opacity: 1;
}

.process__step-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}

.process__card:hover .process__step-num {
  opacity: 0.6;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.process__step-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.process__step-sub {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}


/* ──────────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────────── */
.testimonials {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__carousel {
  position: relative;
  padding: 24px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.testimonials__track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 45s linear infinite;
  width: max-content;
}

.testimonials__carousel:hover .testimonials__track {
  animation-play-state: paused;
}

.testimonials__card {
  width: 440px;
  flex-shrink: 0;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.testimonials__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.testimonials__card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.testimonials__card:hover::before {
  opacity: 1;
}

.testimonials__quote-icon {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.8;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2563EB, #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.testimonials__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonials__author-name,
.testimonials__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.testimonials__author-role,
.testimonials__role {
  font-size: 12px;
  color: var(--color-text-light);
}

.testimonials__avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 16px;
  color: white;
}

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


/* ──────────────────────────────────────────────
   ABOUT
   ────────────────────────────────────────────── */
.about {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__content {
  max-width: 700px;
}

.about__header-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.about__text {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
}

/* JS animation target alias */
.about-content {
  /* alias – layout handled by .about__content */
}

/* Right Column — Photo */
.about__photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__photo-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
}

.about__photo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(96, 165, 250, 0.04));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
}

.about__photo-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}


/* ──────────────────────────────────────────────
   PRICING
   ────────────────────────────────────────────── */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
}

.pricing__header {
  text-align: center;
  margin-bottom: 48px;
}

/* Toggle */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing__toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.pricing__toggle-label.active {
  color: var(--color-text);
  font-weight: 700;
}

.pricing__toggle-switch {
  width: 56px;
  height: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pricing__toggle-switch.annual {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.pricing__toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  transition: transform 0.3s var(--ease-out-expo);
}

.pricing__toggle-switch.annual .pricing__toggle-knob {
  transform: translateX(26px);
}

.pricing__save-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

/* Cards */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing__card {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
}

.pricing__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.pricing__card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, var(--color-bg-card) 100%);
}

.pricing__card--featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #60A5FA);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing__plan-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing__plan-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing__plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing__plan-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.pricing__plan-amount {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.pricing__plan-period {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-left: 4px;
}

.pricing__btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  transition: all var(--transition-base);
  margin-bottom: 28px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.pricing__btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.pricing__card--featured .pricing__btn {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.pricing__card--featured .pricing__btn:hover {
  background: var(--color-primary-hover);
}

.pricing__features-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.4;
}

.pricing__feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}


/* ──────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────── */
.faq {
  padding: var(--section-padding) 0;
}

.faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  background: var(--color-bg-card);
}

.faq__item:hover {
  border-color: rgba(37, 99, 235, 0.2);
}

.faq__item--open {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-md);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color var(--transition-fast);
}

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

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-primary);
  transition: all 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s;
}

.faq__item--open .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ──────────────────────────────────────────────
   CTA
   ────────────────────────────────────────────── */
.cta {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 5s ease-in-out infinite;
  perspective: 600px;
  display: inline-block;
}

/* JS animation target alias */
.cta-heading {
  opacity: 0;
}

@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* CTA Button */
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 56px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  transition: all 0.5s var(--ease-out-expo);
}

.cta__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 80px rgba(37, 99, 235, 0.4);
}

.cta__btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3B82F6, #60A5FA);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: inherit;
}

.cta__btn:hover .cta__btn-bg {
  transform: scaleX(1);
  transform-origin: left;
}

.cta__btn-text {
  position: relative;
  z-index: 1;
}

/* Structural wrapper for CTA button */
.cta__btn-wrap {
  text-align: center;
  margin-bottom: 60px;
}

/* JS animation target alias */
.cta-btn-wrap {
  /* animated via JS */
}

/* Trust items */
.cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-light);
  font-weight: 500;
}

.cta__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* JS animation target aliases for trust items */
.cta-trust {
  /* alias – layout handled by .cta__trust */
}

.cta-trust-item {
  /* alias – layout handled by .cta__trust-item */
}

/* Glows */
.cta__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaGlowPulse 4s ease-in-out infinite;
}

.cta__glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.04) 0%, transparent 70%);
  top: 30%;
  right: 10%;
  left: auto;
  transform: none;
  animation: ctaGlowPulse 6s ease-in-out infinite reverse;
}

/* Keep old name as fallback */
.cta__glow--accent {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.04) 0%, transparent 70%);
  top: 30%;
  right: 10%;
  left: auto;
  transform: none;
  animation: ctaGlowPulse 6s ease-in-out infinite reverse;
}

@keyframes ctaGlowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}


/* ──────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────── */
.contact {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Left side — Info */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact__header {
  margin-bottom: 8px;
}

.contact__desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 440px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: all 0.3s var(--ease-out-expo);
}

.contact__item:hover .contact__icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.contact__item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}

.contact__item-value a {
  transition: color var(--transition-fast);
}

.contact__item-value a:hover {
  color: var(--color-primary);
}

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact__social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease-out-expo);
}

.contact__social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-3px);
}

/* JS animation target aliases */
.contact-info-item {
  /* Animated by sections.js — starts at opacity:0 inline */
}

.contact-form-card {
  /* Animated by sections.js — starts at opacity:0 inline */
}

/* Right side — Form */
.contact__form {
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact__form-subtitle {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__form-group {
  margin-bottom: 20px;
}

.contact__form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.contact__form-input,
.contact__form-textarea,
.contact__form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
  color: var(--color-text-light);
}

.contact__form-input:focus,
.contact__form-textarea:focus,
.contact__form-select:focus {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.04);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.contact__form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__form-select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  font-family: inherit;
}

.contact__submit-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}
