:root {
  --brand: #f58031;
  --brand-dark: #d96a1f;
  --brand-soft: #fffbeb;
  --brand-soft-strong: #fef3c7;

  --accent: #f59e0b;
  --accent-dark: #d97706;

  --ink: #2b2b2b;
  --ink-soft: #4b5563;

  --muted: #6b7280;
  --muted-soft: #9ca3af;

  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-muted: #fffdf8;

  --line: rgba(245, 128, 49, 0.12);
  --line-strong: rgba(245, 128, 49, 0.2);

  --success: #16a34a;
  --info: #3b82f6;
  --warm: #f58031;

  --shadow-xs: 0 14px 30px rgba(34, 38, 51, 0.06);
  --shadow-sm: 0 20px 54px rgba(34, 38, 51, 0.08);
  --shadow-md: 0 28px 78px rgba(48, 38, 73, 0.14);
  --shadow-lg: 0 34px 100px rgba(48, 38, 73, 0.18);

  --radius-lg: 34px;
  --radius-md: 28px;
  --radius-sm: 10px;
  --radius-xs: 18px;

  --container: 1180px;

  --page-columns: 12;
  --content-columns: 10;

  --content-width: calc((100% / var(--page-columns)) * var(--content-columns));

  --section-space: clamp(28px, 3vw, 52px);

  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);

  /* ===== EXTENDED THEME ===== */

  --brand-light: #ff9c59;
  --brand-lighter: #ffb87e;
  --brand-pale: #fff4e8;

  --orange-50: #fff8f1;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;

  --gold-soft: #ffe7b3;
  --gold-light: #fff2cf;

  --warm-surface: #fffaf5;
  --warm-surface-2: #fff6ef;

  --cream: #fffcf8;
  --cream-dark: #fff6ea;

  --glass: rgba(255, 255, 255, 0.72);

  --glass-border: rgba(255, 255, 255, 0.45);

  --hero-gradient: linear-gradient(
    135deg,
    #fffaf3 0%,
    #fff2df 50%,
    #ffffff 100%
  );

  --card-gradient: linear-gradient(145deg, #ffffff, #fff8f0);

  --brand-gradient: linear-gradient(
    135deg,
    #f58031 0%,
    #ff9a4d 55%,
    #f5a623 100%
  );

  --brand-gradient-soft: linear-gradient(135deg, #fff7ef, #fff0dd);

  --highlight-gradient: linear-gradient(
    135deg,
    rgba(245, 128, 49, 0.12),
    rgba(255, 184, 126, 0.18)
  );

  --success-soft: rgba(22, 163, 74, 0.12);

  --info-soft: rgba(59, 130, 246, 0.1);

  --shadow-brand-sm: 0 12px 32px rgba(245, 128, 49, 0.12);

  --shadow-brand-md: 0 20px 54px rgba(245, 128, 49, 0.16);

  --shadow-brand-lg: 0 32px 80px rgba(245, 128, 49, 0.2);

  --shadow-glow:
    0 0 0 1px rgba(245, 128, 49, 0.08), 0 18px 50px rgba(245, 128, 49, 0.12);

  --border-soft: 1px solid rgba(245, 128, 49, 0.08);

  --border-strong: 1px solid rgba(245, 128, 49, 0.16);

  --card-hover-lift: translateY(-6px);

  --blur-bg: blur(18px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Hind Siliguri', sans-serif;
  color: var(--ink);

  background:
    radial-gradient(
      circle at top left,
      rgba(245, 128, 49, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(254, 243, 199, 0.6),
      transparent 22%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--brand-soft) 48%, #ffffff 100%);

  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

html,
body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
}

.stats-section {
  background: #fffdf8;
  padding-top: 30px;
  padding-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.stat-card {
  position: relative;

  display: flex;
  align-items: center;
  gap: 24px;

  padding: 42px;

  background: linear-gradient(135deg, var(--brand-soft) 0%, #fff7ed 100%);

  border: 2px solid rgba(245, 128, 49, 0.16);

  border-radius: 28px;

  overflow: hidden;

  box-shadow: 0 18px 40px rgba(245, 128, 49, 0.08);

  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 22px 50px rgba(245, 128, 49, 0.14);
}

.stat-icon {
  width: 88px;
  height: 88px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.45);

  font-size: 52px;

  flex-shrink: 0;
}
.stat-content h3 {
  margin: 0 0 10px;

  font-size: 30px;
  font-weight: 800;

  color: var(--ink);
}

.stat-content p {
  margin: 0;

  font-size: 20px;

  color: var(--ink-soft);

  line-height: 1.5;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   PROGRAM SECTION
===================================== */

.program-section {
  padding: 90px 0;

  background: var(--hero-gradient);

  position: relative;

  overflow: hidden;
}

.program-section::before {
  content: '';

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(245, 128, 49, 0.08),
    transparent 45%
  );

  pointer-events: none;
}

/* FILTER AREA */

.program-filter-row {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  margin-bottom: 44px;
}

.program-filter {
  height: 72px;

  padding: 0 56px 0 28px; /* right space for icon */

  border-radius: 10px;

  border: var(--border-soft);

  background: rgba(255, 255, 255, 0.92)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%232b2b2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E")
    no-repeat right 22px center;

  backdrop-filter: var(--blur-bg);

  font-size: 20px;

  font-weight: 700;

  color: var(--ink);

  box-shadow: var(--shadow-brand-sm);

  outline: none;

  transition: var(--transition);

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.program-filter-row {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin-bottom: 48px;
}

.program-filter {
  width: 100%;

  height: 62px;

  padding: 0 18px;

  border: 1px solid var(--line-strong);

  border-radius: 10px;

  background: white;

  font-size: 16px;

  font-weight: 500;

  color: var(--ink);

  outline: none;

  cursor: pointer;

  transition: var(--transition);

  box-shadow: var(--shadow-xs);
}


.program-filter:hover {
  border-color: var(--brand-light);
}

@media (max-width: 900px) {
  .program-filter-row {
    grid-template-columns: 1fr;
  }
}

/* GRID */

.program-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 32px;
}

/* CARD */

.program-card {
  background: var(--card-gradient);

  border-radius: var(--radius-xs);

  overflow: hidden;

  border: var(--border-soft);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

  display: flex;

  flex-direction: column;
}

.program-card:hover {
  transform: var(--card-hover-lift);

  box-shadow: var(--shadow-brand-lg);
}

/* IMAGE */

.program-thumb {
  height: 230px;

  overflow: hidden;
}

.program-thumb img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: 0.5s;
}

.program-card:hover img {
  transform: scale(1.04);
}

/* BODY */

.program-body {
  padding: 28px;

  display: flex;

  flex-direction: column;

  flex: 1;
}

.program-body h3 {
  font-size: 31px;

  font-weight: 800;

  color: var(--ink);

  line-height: 1.35;

  margin-bottom: 22px;
}

.program-body ul {
  padding-left: 24px;

  margin-bottom: 28px;

  flex: 1;
}

.program-body li {
  color: var(--ink-soft);

  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 12px;
}

/* BUTTONS */

.course-actions {
  display: flex;

  gap: 14px;
}

.course-btn {
  flex: 1;

  height: 58px;

  border-radius: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-weight: 700;

  font-size: 18px;

  transition: var(--transition);
}

.details-btn {
  background: var(--brand-gradient);

  color: white;

  box-shadow: var(--shadow-brand-sm);
}

.enroll-btn {
  background: linear-gradient(135deg, #ff8845, #f59e0b);

  color: white;

  box-shadow: var(--shadow-brand-sm);
}

.course-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-filter-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-body h3 {
    font-size: 26px;
  }

  .program-filter {
    height: 64px;

    font-size: 18px;
  }
}

:focus-visible {
  outline: 3px solid rgba(117, 69, 155, 0.28);
  outline-offset: 4px;
}

.container {
  /* 12-column page system: content uses the middle 10 columns.
     Left 1 column and right 1 column stay empty on desktop. */
  width: var(--content-width);
  max-width: none;
  margin-inline: auto;
  min-width: 0;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section--gradient {
  overflow: hidden;

  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #fffaf2 50%,
    var(--brand-soft) 100%
  );
}

.section--soft {
  background: #fff7ed;
}

.section--light {
  background: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(117, 69, 155, 0.22),
    transparent
  );
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand::before {
  content: none;
}

.brand__logo {
  width: auto;
  height: 46px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-cta {
  flex-shrink: 0;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color var(--transition);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: var(--radius-sm);

  background: linear-gradient(90deg, var(--brand), rgba(245, 128, 49, 0.15));

  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--brand);
}

.site-nav a.active::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.36) 42%,
    transparent 80%
  );
  transform: translateX(-140%);
  transition: transform 620ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(140%);
}

.button--compact {
  padding: 0.82rem 1.35rem;
  font-size: 0.98rem;
}

.button--large {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}

.button--primary {
  color: #fff;

  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-dark) 100%);

  box-shadow: 0 18px 44px rgba(245, 128, 49, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 24px 58px rgba(245, 128, 49, 0.32);
}

.button--secondary {
  color: var(--brand);

  background: rgba(255, 255, 255, 0.82);

  border: 1px solid var(--line-strong);

  box-shadow: var(--shadow-xs);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: #ffffff;

  border-color: rgba(245, 128, 49, 0.3);
}

.button--accent {
  color: #fff;

  background: var(--brand);

  /* box-shadow: 0 18px 44px rgba(245, 128, 49, 0.28); */
}

.button--light {
  color: var(--brand);

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 18px 44px rgba(50, 35, 15, 0.12);
}

.button--ghost-light {
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.42);

  background: rgba(255, 255, 255, 0.08);
}

.badge,
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-xs);
}

.badge {
  padding: 10px 18px;
  color: var(--brand);
  font-size: 0.96rem;
  font-weight: 800;
}

.eyebrow-pill {
  padding: 11px 18px;
  color: var(--brand);
  font-size: 0.96rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-sm);
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(117, 69, 155, 0.12);
  animation: pulse 2.6s ease-in-out infinite;
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-kicker--warm {
  color: var(--brand);
}

.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.contact-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 800;
  white-space: nowrap;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-dark) 100%);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-section {
  padding-top: clamp(10px, 2vw, 40px);
}

.hero-copy > :first-child {
  margin-top: 0;
}

.strategy-section,
.about-section,
.features-section,
.process-section,
.testimonial-section,
.faq-section,
.services-section,
.stories-section {
  position: relative;
}

.hero-orb {
  position: absolute;
  border-radius: var(--radius-sm);
  filter: blur(18px);
  pointer-events: none;
  animation: floatSoft 16s ease-in-out infinite;
}

.hero-orb--one {
  top: -110px;
  right: -90px;

  width: 360px;
  height: 360px;

  background: rgba(245, 128, 49, 0.14);
}

.hero-orb--two {
  bottom: -120px;
  left: -80px;

  width: 320px;
  height: 320px;

  background: rgba(254, 243, 199, 0.7);

  animation-delay: -8s;
}

.hero-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: flex-start;
}

.hero-title {
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: 0em;
  font-weight: 800;
}

.hero-description {
  max-width: 640px;
  margin: 24px 0 0;
  color: #5f697d;
  font-size: 1.13rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
  margin-top: 34px;
}

.hero-pill {
  padding: 20px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(117, 69, 155, 0.08);
  background: white;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(10px);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.hero-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.hero-showcase {
  position: relative;
  min-height: 560px;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  max-width: 530px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  padding: 18px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.94),
    rgba(244, 237, 251, 0.78)
  );
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.dashboard-card {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fbfaff 0%, #f5f2fb 100%);
  border: 1px solid rgba(117, 69, 155, 0.08);
}

.dashboard-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-card__head h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 800;
}

.dashboard-card__head p {
  margin: 8px 0 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #8a5ab8);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(117, 69, 155, 0.24);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-stat {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(117, 69, 155, 0.08);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.dashboard-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.dashboard-stat__label {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.dashboard-stat__value {
  margin: 10px 0 0;
  font-size: 1.85rem;
  line-height: 1.1;
  font-weight: 800;
}

.dashboard-stat__trend {
  margin: 10px 0 0;
  font-size: 0.88rem;
  font-weight: 800;
}

.trend--success {
  color: var(--success);
}

.trend--brand {
  color: var(--brand);
}

.trend--info {
  color: var(--info);
}

.trend--warm {
  color: var(--warm);
}

.dashboard-modules {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(117, 69, 155, 0.08);
  box-shadow: var(--shadow-xs);
}

.dashboard-modules__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-modules__head p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.dashboard-modules__head span {
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.dashboard-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.dashboard-modules__grid span {
  display: block;
  padding: 12px 8px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.insight-card {
  position: absolute;
  z-index: 3;
  width: 180px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(117, 69, 155, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  animation: floatCard 9s ease-in-out infinite;
}

.insight-card--left {
  left: -12px;
  top: 68px;
}

.insight-card--right {
  right: -28px;
  bottom: 68px;
  animation-delay: -4.5s;
}

.insight-card__label {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.insight-card__value {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
}

.strategy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: center;
}

.strategy-stack {
  display: grid;
  gap: 22px;
}

.strategy-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(240, 168, 78, 0.18);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.strategy-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.strategy-step:nth-child(2) {
  border-color: rgba(117, 69, 155, 0.18);
}

.strategy-step:nth-child(3) {
  border-color: rgba(93, 165, 111, 0.2);
}

.strategy-step__number {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 800;
}

.strategy-step h3,
.feature-card h3,
.service-card h3,
.story-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.3;
  font-weight: 800;
}

.strategy-step p,
.feature-card p,
.service-card p,
.story-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 490px) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 385px;
}

.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.about-img-1 {
  top: 0;
  left: 38px;
  width: 220px;
  height: 176px;
}

.about-img-2 {
  top: 26px;
  right: 0;
  width: 240px;
  height: 325px;
}

.about-img-3 {
  left: 0;
  bottom: 0;
  width: 240px;
  height: 186px;
}

.about-badge {
  position: absolute;
  left: 176px;
  top: 132px;
  z-index: 4;
  width: 132px;
  height: 132px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--brand), #a56ed4);
  box-shadow: 0 22px 56px rgba(117, 69, 155, 0.34);
  animation: floatCard 10s ease-in-out infinite;
}

.about-badge strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.about-badge span {
  font-size: 0.83rem;
  font-weight: 700;
}

.about-desc {
  max-width: 1200px;
  text-align: justify;
}

.about-title {
  max-width: 1200px;
}

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 30px;
  margin-top: 28px;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.about-check i {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--brand-soft);
}

.about-check i::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 4px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 56px;
}

.about-feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(117, 69, 155, 0.08);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.about-feature svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 16px;
  color: var(--brand);
  background: var(--brand-soft);
}

.about-feature h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
  font-weight: 800;
}

.about-feature p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.features-grid,
.service-grid,
.story-grid {
  display: grid;
  gap: 24px;
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.feature-card,
.service-card,
.story-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card,
.service-card {
  --tone: var(--brand);
  --tone-soft: #f7efff;
  padding: 28px;
  background: linear-gradient(
    180deg,
    var(--tone-soft) 0%,
    rgba(255, 255, 255, 0.95) 64%,
    #ffffff 100%
  );
  border: 1px solid rgba(117, 69, 155, 0.08);
}

.feature-card::before,
.service-card::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  width: 90px;
  height: 4px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--tone), transparent);
}

.feature-card:hover,
.service-card:hover,
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card[data-tone='violet'],
.service-card[data-tone='violet'] {
  --tone: #7c4eb3;
  --tone-soft: #f7f0ff;
}

.feature-card[data-tone='blue'],
.service-card[data-tone='blue'] {
  --tone: #4e86e8;
  --tone-soft: #eef5ff;
}

.feature-card[data-tone='green'],
.service-card[data-tone='green'] {
  --tone: #3cb179;
  --tone-soft: #edf9f2;
}

.feature-card[data-tone='gold'] {
  --tone: #dda640;
  --tone-soft: #fff8e8;
}

.feature-card[data-tone='rose'] {
  --tone: #ef6c9d;
  --tone-soft: #fff0f6;
}

.feature-card[data-tone='indigo'] {
  --tone: #6473f5;
  --tone-soft: #eff1ff;
}

.feature-card[data-tone='orange'] {
  --tone: #ef8b47;
  --tone-soft: #fff3ec;
}

.feature-card[data-tone='teal'] {
  --tone: #13a8a8;
  --tone-soft: #ebfbfb;
}

.feature-card[data-tone='coral'] {
  --tone: #ef6262;
  --tone-soft: #fff0f0;
}

.feature-card[data-tone='cyan'] {
  --tone: #19a0c8;
  --tone-soft: #ebf9fe;
}

.feature-card[data-tone='lime'] {
  --tone: #75b43a;
  --tone-soft: #f3faeb;
}

.feature-card[data-tone='plum'] {
  --tone: #a054ba;
  --tone-soft: #faf1fd;
}

.feature-card[data-tone='lavender'] {
  --tone: #9170df;
  --tone-soft: #f5f2ff;
}

.feature-card[data-tone='amber'] {
  --tone: #d88d27;
  --tone-soft: #fff6e8;
}

.feature-card[data-tone='sky'] {
  --tone: #4693e5;
  --tone-soft: #eef7ff;
}

.feature-card[data-tone='fuchsia'] {
  --tone: #d652b0;
  --tone-soft: #fff0fb;
}

.feature-card[data-tone='emerald'] {
  --tone: #20997d;
  --tone-soft: #ebfaf6;
}

.process-subtitle {
  max-width: 750px;
  white-space: nowrap;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-steps::before {
  content: '';
  position: absolute;

  top: 36px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(117, 69, 155, 0.12),
    rgba(117, 69, 155, 0.28),
    rgba(117, 69, 155, 0.12)
  );
}

.process-steps::before {
  left: 24px;
  right: calc(20% + 14px);
}

.process-item {
  position: relative;
  z-index: 1;
  padding: 0 12px 0 0;
}

.process-number {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  color: var(--brand);
  background: linear-gradient(135deg, #efe6fa, #ffffff);
  border: 1px solid rgba(117, 69, 155, 0.1);
  box-shadow: var(--shadow-xs);
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.process-number:hover,
.process-number:focus-visible,
.process-item.active .process-number {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #9663c5);
  box-shadow: 0 22px 48px rgba(117, 69, 155, 0.28);
  transform: translateY(-3px);
}

.process-heading {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 800;
}

.process-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.process-item.active .process-heading,
.process-item.active .process-text {
  color: var(--ink);
}

@media (max-width: 768px) {
  .process-steps::before {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

.facts-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

.facts-copy,
.fact-item {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(117, 69, 155, 0.08);
  box-shadow: var(--shadow-xs);
}

.facts-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #52a8ff;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.facts-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.facts-desc {
  max-width: 340px;
}

.fact-item {
  text-align: center;
}

.fact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: #5bb8f7;
  background: linear-gradient(135deg, #eaf7ff, #ffffff);
}

.fact-icon svg {
  width: 24px;
  height: 24px;
}

.fact-number {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.fact-text {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.client-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(117, 69, 155, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.client-card::before {
  content: '“';
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(117, 69, 155, 0.12);
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.client-avatar,
.story-avatar {
  width: 78px;
  height: 78px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-soft), #ffffff);
  color: var(--brand);
  font-size: 1.55rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(117, 69, 155, 0.08);
}

.client-name {
  margin: 20px 0 8px;
  font-size: 1.14rem;
  font-weight: 800;
}

.client-role {
  margin: 0 0 14px;
  color: var(--muted-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(249, 242, 255, 0.92)
  );
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  padding: 58px 42px;
  color: #fff;
  background: linear-gradient(135deg, #5b3477 0%, #7a4aa1 52%, #9b68c3 100%);
  box-shadow: var(--shadow-lg);
}

.cta-panel::before,
.cta-panel::after,
.cta-panel__glow {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-panel::before {
  width: 280px;
  height: 280px;
  top: -110px;
  right: -70px;
  background: rgba(255, 255, 255, 0.14);
}

.cta-panel::after {
  width: 220px;
  height: 220px;
  bottom: -120px;
  left: -70px;
  background: rgba(240, 168, 78, 0.22);
}

.cta-panel__glow {
  width: 420px;
  height: 420px;
  inset: auto auto -240px 35%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(20px);
  animation: floatSoft 14s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 800;
  white-space: nowrap;
}

.cta-description {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 1.85;
  white-space: nowrap;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 700;
}

.cta-meta span {
  position: relative;
  padding-left: 20px;
}

.cta-meta span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.faq-head .section-copy {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-search {
  position: relative;
  max-width: 720px;
  margin: 0 auto 24px;
}

.faq-search svg {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 20px;
  height: 20px;
  color: var(--brand);
  transform: translateY(-50%);
}

.faq-search input {
  width: 100%;
  height: 62px;
  padding: 0 24px 0 58px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(117, 69, 155, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  outline: 0;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.faq-search input:focus {
  border-color: rgba(117, 69, 155, 0.32);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.faq-tabs button {
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(117, 69, 155, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: #49546a;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}

.faq-tabs button:hover,
.faq-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #8f5fc0);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(117, 69, 155, 0.24);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(117, 69, 155, 0.1);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.faq-card:hover,
.faq-card.active {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(117, 69, 155, 0.24);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 800;
}

.faq-question b {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgba(117, 69, 155, 0.1);
  color: var(--brand);
  font-size: 1.45rem;
  line-height: 1;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.faq-card.active .faq-question b {
  color: #fff;
  background: var(--brand);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-card.active .faq-answer {
  display: block;
}

.faq-card.hide {
  display: none;
}

.faq-empty {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(117, 69, 155, 0.32);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  font-weight: 800;
  text-align: center;
}

.faq-empty.show {
  display: block;
}

.project-filter button.ui-pill:hover,
.project-filter button.ui-pill.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #8f5fc0);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(117, 69, 155, 0.24);
}

.project-card .badge.ui-pill {
  background: linear-gradient(135deg, var(--brand), #8f5fc0);
  color: #fff;
  border: 1px solid rgba(117, 69, 155, 0.12);
}

.service-card {
  min-height: 100%;
}

.service-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(117, 69, 155, 0.08);
  color: var(--tone);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.story-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(117, 69, 155, 0.08);
}

.story-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.story-card__head p {
  margin: 8px 0 0;
  color: var(--muted-soft);
}

.story-card__text {
  margin: 0;
  color: #4d586d;
  line-height: 1.85;
}

.story-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.story-card__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  padding: 56px 0;

  color: #fff;

  background: linear-gradient(
    135deg,
    #d96a1f 0%,
    var(--brand) 52%,
    #f8a45c 100%
  );

  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';

  position: absolute;

  width: 260px;
  height: 260px;

  top: -100px;
  right: -80px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  pointer-events: none;
}

.site-footer::after {
  content: '';

  position: absolute;

  width: 220px;
  height: 220px;

  bottom: -120px;
  left: -70px;

  border-radius: 50%;

  background: rgba(255, 251, 235, 0.25);

  pointer-events: none;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.site-footer__grid > div {
  width: 100%;
}

.site-footer__grid > div:nth-child(2) {
  padding-left: 80px;
}

@media (max-width: 768px) {
  .site-footer__grid > div:nth-child(2) {
    padding-left: 0;
  }
}

.site-footer__brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.site-footer__logo {
  width: auto;
  height: 48px;
}

.site-footer__title {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
}

.site-footer__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  text-align: justify;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(117, 69, 155, 0.12);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(117, 69, 155, 0.08);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 18px, 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (max-width: 1180px) {
  .hero-section__inner,
  .strategy-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .strategy-copy,
  .about-copy {
    text-align: center;
  }

  .hero-description,
  .section-copy,
  .about-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
    max-width: 720px;
  }

  .hero-showcase {
    min-height: 0;
    padding-top: 62px;
  }

  .dashboard-shell {
    margin-right: auto;
  }

  .insight-card--left {
    left: 22px;
    top: 0;
  }

  .insight-card--right {
    right: 22px;
    bottom: 28px;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .features-grid,
  .service-grid,
  .client-grid,
  .about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .hero-title {
    font-size: clamp(2.5rem, 9vw, 3.4rem);
  }

  .hero-description,
  .section-copy,
  .faq-question span {
    font-size: 1rem;
  }

  .hero-pillars,
  .dashboard-stats,
  .story-grid,
  .service-grid,
  .features-grid,
  .about-features,
  .client-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    display: grid;
    gap: 16px;
    padding-top: 0;
  }

  .insight-card {
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
  }

  .dashboard-shell {
    width: 100%;
    padding: 14px;
  }

  .dashboard-card {
    padding: 22px;
  }

  .dashboard-modules__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-checks,
  .facts-row,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .facts-copy,
  .fact-item {
    text-align: center;
  }

  .fact-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-panel {
    padding: 44px 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-nav {
    gap: 18px;
  }

  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-card__head,
  .dashboard-modules__head,
  .cta-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-images {
    height: 330px;
    transform: scale(0.88);
    transform-origin: top center;
    margin-bottom: -28px;
  }

  .faq-tabs {
    justify-content: flex-start;
  }

  .story-card,
  .feature-card,
  .service-card,
  .client-card,
  .facts-copy,
  .fact-item,
  .faq-card,
  .strategy-step,
  .about-feature {
    border-radius: var(--radius-sm);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* App.bd UX upgrades */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: var(--radius-sm);
  background: var(--brand);
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}
.hero-trust span {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(117, 69, 155, 0.1);
  box-shadow: var(--shadow-xs);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.contact-card {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.contact-card strong {
  font-size: 1rem;
}
.contact-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 46px rgba(18, 140, 126, 0.34);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.floating-call:hover,
.floating-call:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(18, 140, 126, 0.42);
}
.floating-call span {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
}
.floating-call__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
    order: 2;
    margin-left: auto;
  }
  .header-cta {
    order: 1;
    margin-left: auto;
  }
  .site-nav {
    display: none;
    order: 4;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-open .site-nav {
    display: flex;
  }
}
@media (max-width: 760px) {
  .hero-trust {
    justify-content: center;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .floating-call {
    right: 14px;
    bottom: 14px;
  }
}
@media (max-width: 560px) {
  .brand__logo {
    height: 38px;
  }
  .site-footer__logo {
    height: 40px;
  }
  .header-cta {
    display: none;
  }
  .nav-toggle {
    margin-left: auto;
  }
  .floating-call {
    left: 14px;
    right: 14px;
    justify-items: center;
  }
}

/* Hero demo form */
.hero-demo-wrap {
  min-height: 0;
  display: flex;
  justify-content: center;
}

.demo-form-card {
  position: relative;
  z-index: 4;
  width: min(100%, 700px);
  min-height: 750px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.demo-form-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: var(--radius-sm);
  /* border: 1px solid rgba(117, 69, 155, 0.08); */
  pointer-events: none;
}

.demo-form-head {
  text-align: center;
  margin-bottom: 24px;
}

.demo-form-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.demo-form-head h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.1;
  font-weight: 800;
}

.demo-form-head p {
  margin: 10px auto 0;
  max-width: 390px;
  color: var(--muted);
  line-height: 1.65;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row-four {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .form-row--two {
    grid-template-columns: 1fr;
  }
  .form-row-four {
    grid-template-columns: 1fr;
  }
  .form-row-four .form-field {
    margin-bottom: 0;
  }
  .demo-form-card .button {
    margin-top: 23px;
  }
}

.form-field {
  position: relative;
  margin-bottom: 23px;
}

.form-field label span {
  color: #ef4444;
}

.contact-field label span {
  color: #ef4444;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 54px;
  padding: 0 36px 0 16px; /* added right spacing for arrow */
  /* border-radius: var(--radius-sm); */
  border: 1px solid var(--brand);
  background: #fff;
  color: var(--ink);
  outline: 0;
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

/* custom arrow */
.form-field {
  position: relative;
}

.form-field:has(select)::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: calc(100% - 27px);
  transform: translateY(-50%);
  font-size: 22px;
  color: #6b7280;
  pointer-events: none;
}

.form-field select {
  cursor: pointer;
}

.form-field input::placeholder {
  color: #a8a8a8;
}

.form-field input:focus,
.form-field select:focus {
  border: 2px solid var(--brand-dark);
}

.form-row {
  row-gap: 0;
}

.custom-dropdown {
  position: relative;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

/* make custom dropdown look EXACTLY like select */
.dropdown-selected {
  width: 100%;
  height: 54px;
  padding: 0 36px 0 16px;
  border: 1px solid var(--brand);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

/* same arrow style as select */
.dropdown-selected::after {
  content: '▾';
  position: absolute;
  right: 14px;
  font-size: 22px;
  color: #6b7280;

  transition: transform 0.25s ease;
}

.dropdown.active .dropdown-selected::after {
  transform: rotate(-180deg);
}
/* focus effect same as select */
.dropdown.active .dropdown-selected {
  border: 2px solid var(--brand-dark);
}

/* search input styling same as input */
.dropdown-search {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-bottom: 1px solid rgba(31, 41, 55, 0.12);
  outline: none;
  font-size: 14px;
}

/* dropdown menu border same tone */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid var(--brand);
  z-index: 999;

  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0.25s; /* delay hide */
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s; /* show instantly */
}

/* show only for searchable dropdowns */
.searchable .dropdown-search {
  display: block;
}

.dropdown-options {
  max-height: 180px;
  overflow-y: auto;
}

.dropdown-options div {
  padding: 10px 14px;
  cursor: pointer;
}

.dropdown-options div:hover {
  background: var(--brand-soft);
}

.human-check {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 310px);
  min-height: 76px;
  margin: 4px 0 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 41, 55, 0.16);
  background: #f8f8f8;
  color: #222;
  cursor: pointer;
}

.human-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-box {
  width: 28px;
  height: 28px;
  border: 2px solid #595959;
  background: #fff;
  display: inline-grid;
  place-items: center;
}

.human-check input:checked + .check-box {
  border-color: var(--brand);
  background: var(--brand);
}

.human-check input:checked + .check-box::after {
  content: '✓';
  color: #fff;
  font-weight: 900;
}

.demo-submit {
  width: 100%;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.demo-form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.demo-form-note a {
  color: var(--brand);
  font-weight: 900;
}

.demo-form-card.is-success {
  box-shadow: 0 28px 78px rgba(21, 155, 103, 0.18);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--brand), rgba(117, 69, 155, 0.15));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a.active {
  color: var(--brand);
}

.site-nav a.active::after {
  transform: scaleX(1);
}

@media (max-width: 1180px) {
  .hero-demo-wrap {
    justify-content: center;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .demo-form-card {
    border-radius: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .human-check {
    width: 100%;
  }
}

.demo-form-card {
  position: relative;
  border-radius: var(--radius-sm);
  transition:
    box-shadow 0.4s ease,
    border 0.4s ease;
}

/* Highlight state */
.demo-form-card.highlight {
  border: 2px solid var(--brand);
  box-shadow:
    0 0 0 4px rgba(117, 69, 155, 0.15),
    0 20px 60px rgba(117, 69, 155, 0.25);
}

/* Optional animated glow */
.demo-form-card.highlight::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 1.2s ease;
}

.hero-contact-box {
  width: 100%;
}

.hero-contact-form {
  padding: 34px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
  color: #fff;
}

.hero-contact-field label,
.hero-contact-head h2,
.hero-contact-head p,
.hero-contact-head span {
  color: #fff;
}
.hero-contact-form .hero-contact-field label {
  color: #fff !important;
}
.hero-contact-field label span {
  color: #ef4444;
}
.hero-contact-head {
  margin-bottom: 24px;
}

.hero-contact-head span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

.hero-contact-head h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
}

.hero-contact-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-contact-field {
  margin-bottom: 18px;
}

.hero-contact-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.hero-contact-field input,
.hero-contact-field textarea {
  width: 100%;
  border: 1px solid #d4d4d8;
  background: #fff;
  padding: 15px 18px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: 0.2s ease;
}

.hero-contact-field textarea {
  min-height: 130px;
  resize: none;
}

.hero-contact-field input:focus,
.hero-contact-field textarea:focus {
  border-color: var(--brand);
}

.hero-contact-btn {
  width: 100%;
  height: 56px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  transition: 0.2s ease;
}

.hero-contact-btn:hover {
  background: var(--brand-dark);
}

.hero-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-contact-field.custom-dropdown {
  position: relative;
}

/* SAME STYLE AS INPUT */
.hero-contact-field .dropdown-selected {
  width: 100%;
  height: 54px;
  padding: 0 36px 0 16px;
  border: 1px solid #d4d4d8;
  background: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #000;
  position: relative;
  transition: 0.2s ease;
}

.hero-contact-field .dropdown-selected::after {
  content: '▾';
  position: absolute;
  right: 14px;
  font-size: 22px;
  color: #6b7280;
  transition: 0.25s ease;
}

.dropdown.active .dropdown-selected::after {
  transform: rotate(-180deg);
}

.dropdown.active .dropdown-selected {
  border-color: var(--brand);
}

/* DROPDOWN MENU */
.hero-contact-field .dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #d4d4d8;
  z-index: 50;
  display: none;
}

.dropdown.active .dropdown-menu {
  display: block;
}

.hero-contact-field .dropdown-options div {
  padding: 12px 16px;
  cursor: pointer;
  color: var(--ink);
  transition: 0.2s ease;
}

.hero-contact-field .dropdown-options div:hover {
  background: var(--brand-soft);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-contact-row {
    grid-template-columns: 1fr;
  }
}

.hero-contact-location-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

@media (max-width: 991px) {
  .hero-contact-location-row {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  background: var(--brand-soft);
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-soft);
}

.footer-bottom div {
  color: var(--ink-soft);
}

.footer-bottom span {
  color: var(--brand);
  font-weight: 600;
  margin-left: 6px;
}
