/* ===================================================================
   UISTUDIOZ WORDPRESS THEME – MAIN STYLESHEET
   Converted from React/Tailwind source
   =================================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --color-white: #FFFFFF;
  --color-bg: #FDFDFD;
  --color-slate-50: #F8FAFC;
  --color-slate-100: #F1F5F9;
  --color-slate-200: #E2E8F0;
  --color-slate-400: #94A3B8;
  --color-slate-500: #64748B;
  --color-slate-600: #45556C;
  --color-slate-700: #334155;
  --color-slate-900: #0F172A;

  --color-indigo-50: #EEF2FF;
  --color-indigo-100: #E0E7FF;
  --color-indigo-200: #C7D2FE;
  --color-indigo-400: #818CF8;
  --color-indigo-600: #4F46E5;
  --color-indigo-700: #4338CA;

  --color-blue-50: #EFF6FF;

  /* Typography */
  --font-sans: "Manrope", sans-serif;
  ;

  /* Spacing */
  --section-py: 5rem;
  --container-max: 83.625rem;
  /* 1280px */
  --container-px: 1.5rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .25);
  --shadow-indigo: 0 20px 40px rgba(79, 70, 229, .25);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-slate-900);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

ul,
ol {
  list-style: none;
}

/* ── Utilities ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

.section-padding {
  padding: var(--section-py) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  transition: background-color 0.3s, border-color 0.3s, padding 0.3s;
  border: 1px solid rgba(79, 57, 246, 0.08);

}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-slate-100);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--color-indigo-600);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(12deg);
}

.nav-logo-icon span {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-slate-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 1.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-slate-700);
  border-radius: var(--radius-full);
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.nav-link:hover {
  /* background: var(--color-slate-100); */
  color: var(--color-slate-900);
}

/* Services Mega Dropdown */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  width: 50rem;
  box-shadow: var(--shadow-2xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
  display: grid;
  visibility: visible;
  opacity: 1;
}

.nav-dropdown-col h6 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-slate-400);
  margin-bottom: 0.75rem;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-700);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.nav-dropdown-item:hover {
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--color-indigo-600);
  color: #fff !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--color-indigo-700);
  transform: translateY(-1px);
}

/* Mobile menu */
.nav-mobile-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--color-slate-700);
}

.nav-mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 200;
  flex-direction: column;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  align-self: flex-end;
  color: #fff;
  margin-bottom: 2rem;
}

.mobile-menu-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: block;
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta-wrap {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 12rem 0 8rem;
  }

  .hero-badge {
    margin-bottom: 60px;
  }
}

.hero-bg-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 37.5rem;
  height: 37.5rem;
  background: var(--color-indigo-50);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  transform: translate(50%, -50%);
}

.hero-bg-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 25rem;
  height: 25rem;
  background: var(--color-blue-50);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  transform: translate(-50%, 50%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--color-indigo-50);
  border: 1px solid var(--color-indigo-100);
  margin-bottom: 40px;
  animation: fadeInUp 0.5s ease forwards;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-indigo-600);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-indigo-700);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-slate-900);
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s 0.1s ease both;
}

.main-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-slate-900);
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s 0.1s ease both;
}

.highlight {
  color: var(--color-indigo-600);
}

.hero h1 .highlight {
  color: var(--color-indigo-600);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--color-slate-600);
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.5s 0.2s ease both;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeInUp 0.5s 0.3s ease both;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-indigo-600);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.0625rem;
  box-shadow: 0 20px 40px rgba(79, 70, 229, .3);
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--color-indigo-700);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #fff;
  color: var(--color-slate-900);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.0625rem;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--color-slate-50);
}

.btn-secondary svg {
  color: var(--color-indigo-600);
}

.hero-image-wrap {
  position: relative;
  max-width: 75rem;
  margin: 0 auto;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-image-frame {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2.5rem;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}

.hero-image-frame img {
  border-radius: 1.875rem;
  width: 100%;
  border: 1px solid var(--color-slate-100);
}

/* ── LOGOS MARQUEE ── */
.logos-section {
  padding: 50px 0 90px;
  background-color: var(--color-white);
  margin-bottom: 140px;
}

.logos-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-slate-400);
  margin-bottom: 2rem;
}

.logos-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem 3rem;
  margin-top: 80px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-slate-400);
  letter-spacing: -.025em;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.logo-item:hover {
  opacity: 1;
}

.logo-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}

/* ── SERVICES ── */
.services-section {
  padding: var(--section-py) 0;
  background: var(--color-slate-50);

}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-indigo-600);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-slate-900);
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--color-slate-600);
  line-height: 1.7;
}

.section-header {
  text-align: center;
  max-width: 45.313rem;
  margin: 0 auto 3.125rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 1.875rem;
  background: #fff;
  /* border: 1px solid var(--color-slate-100); */
  border-radius: var(--radius-2xl);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  border-color: var(--color-indigo-200);
  box-shadow: 0 20px 40px rgba(79, 70, 229, .07);
  transform: translateY(-4px);
}

.service-icon {
  width: 4.125rem;
  height: 4.125rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(3deg);
}

.service-icon.blue {
  background: #EFF6FF;
  color: #2563EB;
}

.service-icon.indigo {
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
}

.service-icon.slate {
  background: var(--color-slate-50);
  color: var(--color-slate-600);
}

.service-icon.purple {
  background: #F5F3FF;
  color: #7C3AED;
}

.service-icon svg {
  width: 2.313rem;
  height: 2.313rem;
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
}

.service-card p {
  /* font-size: 0.875rem; */
  color: var(--color-slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-indigo-600);
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover .service-link {
  opacity: 1;
}

/* ── WHY US ── */
.why-us-section {
  padding: var(--section-py) 0;
  background: #fff;
}

.why-us-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .why-us-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.why-us-header .section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 32rem;
}

.why-us-header-right {
  font-size: 1.125rem;
  color: var(--color-slate-600);
  max-width: 22rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-100);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  background: #fff;
  border-color: var(--color-indigo-100);
  box-shadow: 0 20px 40px rgba(79, 70, 229, .07);
}

.why-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #fff;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s, color 0.3s;
  color: var(--color-slate-700);
}

.why-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.why-card:hover .why-card-icon {
  background: var(--color-indigo-600);
  color: #fff;
}

.why-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--color-slate-600);
  line-height: 1.7;
}

/**/
.client-profile-box .client-profile-icon {
  width: 64px;
  height: 64px;
}

.client-profile-box:hover .client-profile-icon {
  background-color: #4f46e5 !important;
  color: #fff;
}

.client-profile-box .client-profile-icon svg {
  width: 32px;
  height: 32px;
}

.client-profile-box:hover a {
  text-decoration-color: #4f46e5 !important;
}

/**/
/* --- Transformation Section (dark bg) --- */
.transform-section {
  padding: 96px 0;
  background: #0F172B;
  /* dark background */
  color: #fff;
  overflow: hidden;
  position: relative;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  ul {
    padding: 0;
  }

  &::before {
    /* Container */
    content: "";
    position: absolute;
    width: 500px;
    height: 456px;
    left: -170px;
    bottom: -60px;
    /* z-index: 1; */
    background: rgba(21, 93, 252, 0.1);
    filter: blur(120px);
    border-radius: 3.35544e+07px;

  }

  &::after {
    /* Container */
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: 1265px;
    top: 0.12px;

    background: rgba(79, 57, 246, 0.1);
    filter: blur(120px);
    border-radius: 3.35544e+07px;

  }
}

@media (min-width: 768px) {
  .transform-section {
    padding: 128px 0;
  }
}

/* heading block */
.transform-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

/* --- GRID (before/after columns) --- */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);


}

@media (min-width: 768px) {
  .transform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.transform-col {
  padding: 40px 24px;
}

@media (min-width: 480px) {
  .transform-col {
    padding: 40px 32px;
  }
}

@media (min-width: 1024px) {
  .transform-col {
    padding: 40px 64px;
  }
}

.transform-col:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .transform-col:first-child {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .transform-col:last-child {
    background: rgba(79, 70, 229, 0.1);
    /* indigo with low opacity */
  }
}

/* column headings */
.col-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.col-heading-before {
  color: #90A1B9;
  /* neutral-400 equivalent */
}

.col-heading-after {
  color: #7C86FF;
  /* light indigo */
}

/* circle numbers */
.transform-num {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  /* changed to inline-flex to respect flex container */
  align-items: center;
  justify-content: center;
}

.transform-num-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.transform-num-indigo {
  background: #4f46e5;
  color: #fff;
}

/* lists */
.transform-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  /* remove default bullet */
}

.transform-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
}

.transform-item-before {
  color: #94a3b8;
  /* neutral-400 */
}

.transform-item-after {
  color: #ffffff;
  font-weight: 500;
}

.transform-item svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* specific icon colors */
.icon-before {
  color: #ef4444;
  /* red */
}

.icon-after {
  color: #a5b4fc;
  /* light indigo */
}

/* metrics strip */
.metrics-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .metrics-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.metric-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  /* slate-500 */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.metric-icon {
  width: 32px;
  height: 32px;
  color: rgba(165, 180, 252, 0.5);
  /* #a5b4fc with 0.5 opacity */
}

/* small adjustments for mobile */
@media (max-width: 480px) {
  .transform-item {
    font-size: 16px;
    gap: 12px;
  }

  .col-heading {
    font-size: 18px;
  }
}

/* ── OUTCOMES ── */
.outcomes-section {
  padding: var(--section-py) 0;
  background: var(--color-indigo-600);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.outcomes-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50rem;
  height: 50rem;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  filter: blur(120px);
  transform: translate(50%, -50%);
}

.outcomes-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 37.5rem;
  height: 37.5rem;
  background: rgba(129, 140, 248, .1);
  border-radius: 50%;
  filter: blur(120px);
  transform: translate(-50%, 50%);
}

.outcomes-section .section-label {
  color: var(--color-indigo-200);
}

.outcomes-section .section-heading {
  color: #fff;
}

.outcomes-section .section-header {
  position: relative;
  z-index: 1;
}

.outcomes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.outcome-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.outcome-value {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -.05em;
  margin-bottom: 1rem;
}

.outcome-label {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.outcome-desc {
  font-size: 0.875rem;
  color: rgba(224, 231, 255, .7);
  line-height: 1.5;
}

/* ── PROCESS ── */
.process-section {
  padding: var(--section-py) 0;
  background: var(--color-slate-50);
  overflow: hidden;
  position: relative;
}

.process-section--services{
  background-color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
.process-grid--services{
  grid-template-columns: repeat(6, 1fr);
}
  .process-grid::before {
    content: '';
    position: absolute;
    top: 3.75rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-slate-200);
    z-index: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.process-icon {
  width: 6rem;
  height: 6rem;
  background: #fff;
  border: 4px solid var(--color-slate-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: background 0.3s;
  color: var(--color-indigo-600);
}

.process-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.process-step:hover .process-icon {
  background: var(--color-indigo-600);
  color: #fff;
}

.process-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--color-slate-900);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  border: 4px solid var(--color-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--color-slate-600);
  max-width: 15rem;
}


/* --- Work Grid (homepage) --- */
.work-section {
  padding: 96px 0;
  background: #fff;
}

@media (min-width: 768px) {
  .work-section {
    padding: 128px 0;
  }
}

.work-header {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #155DFC;
  font-weight: 700;
  transition: gap 0.2s;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  flex-shrink: 0;
}

.work-view-all:hover {
  gap: 12px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  cursor: pointer;
}

.work-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.work-card:hover .work-img-wrap img {
  transform: scale(1.05);
}

.work-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 70, 229, 0.2);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.work-card:hover .work-img-overlay {
  opacity: 1;
}

.work-img-overlay span {
  background: #fff;
  color: #0f172a;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.work-result-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-result-badge svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

.work-result-badge span {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-card-info {
  padding: 0 16px;
}

.work-card-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.work-card:hover .work-card-info h4 {
  color: #4f46e5;
}

.work-card-info p {
  color: #64748b;
  font-weight: 600;
}


/* --= =-- */
.work-project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.work-project-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: all 0.4s;
}

.work-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.work-project-overlay-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.work-project-category {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f172a;
  z-index: 11;
}

.work-project-card:hover .work-project-overlay {
  opacity: 1;
}

.work-project-card:hover .work-project-img {
  transform: scale(1.05);
}

.work-project-card:hover .work-project-title {
  color: var(--color-indigo-600);
}

.work-project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-project-stat {
  padding: 4px 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
}

.work-project-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  transition: color 0.2s;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .work-project-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* -------------------------------------------------------
   BOOK A CALL PAGE
   ------------------------------------------------------- */
.bac-page {
  background: #fdfdfd;
  min-height: 100vh;
}

.bac-hero {
  padding: 128px 24px 96px;
  position: relative;
  overflow: hidden;
}

.bac-hero-glow-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(79, 70, 229, 0.03);
  transform: skewX(-12deg) translateX(25%);
  pointer-events: none;
}

.bac-hero-glow-bl {
  position: absolute;
  top: 25%;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(79, 70, 229, 0.08);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}

.bac-hero-inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .bac-hero-inner {
    grid-template-columns: 1fr;
  }
}

.bac-left h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.bac-left h1 span {
  color: #4f46e5;
}

.bac-left p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}

.bac-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.bac-benefit {
  display: flex;
  gap: 16px;
}

.bac-benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bac-benefit-icon svg {
  width: 16px;
  height: 16px;
  color: #4f46e5;
}

.bac-benefit-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.bac-benefit-desc {
  font-size: 14px;
  color: #64748b;
}

.bac-social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bac-avatars {
  display: flex;
}

.bac-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #e2e8f0;
  overflow: hidden;
  margin-left: -12px;
}

.bac-avatar:first-child {
  margin-left: 0;
}

.bac-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bac-sp-text p:first-child {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.bac-sp-text p:last-child {
  font-size: 12px;
  color: #64748b;
}

/* Calendar card */
.bac-cal-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.bac-cal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .bac-cal-grid {
    grid-template-columns: 1fr;
  }
}

.bac-cal-left {
  padding: 32px;
  border-right: 1px solid #f1f5f9;
}

.bac-cal-right {
  padding: 32px;
  background: rgba(248, 250, 252, 0.5);
}

.bac-cal-heading {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.bac-cal-sub {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* Pure JS Calendar */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-nav-title {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #f1f5f9;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cal-nav-btn:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.cal-nav-btn svg {
  width: 16px;
  height: 16px;
  color: #64748b;
}

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

.cal-weekday {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  padding: 4px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.15s;
}

.cal-day:hover:not(.cal-day--past):not(.cal-day--empty) {
  background: #f8fafc;
  color: #4f46e5;
}

.cal-day--past {
  color: #e2e8f0;
  cursor: not-allowed;
}

.cal-day--empty {
  cursor: default;
}

.cal-day--today {
  color: #4f46e5;
  font-weight: 900;
}

.cal-day--selected {
  background: #4f46e5 !important;
  color: #fff !important;
}

.cal-tz {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 12px;
  color: #94a3b8;
}

.cal-tz svg {
  width: 16px;
  height: 16px;
}

/* Time slots */
.time-slots-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}

.time-slots-list::-webkit-scrollbar {
  width: 4px;
}

.time-slots-list::-webkit-scrollbar-track {
  background: transparent;
}

.time-slots-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}

.time-slot {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.time-slot:hover {
  border-color: #4f46e5;
  color: #4f46e5;
}

.time-slot.selected {
  background: #4f46e5;
  color: #fff;
  border-color: #4f46e5;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.bac-confirm-btn {
  width: 100%;
  margin-top: 24px;
  padding: 20px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.bac-confirm-btn:hover {
  background: #4338ca;
}

.bac-confirm-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

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

/* Trust badges below calendar */
.bac-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  opacity: 0.4;
  filter: grayscale(1) contrast(1.25);
}

.bac-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.bac-trust-badge svg {
  width: 20px;
  height: 20px;
}

/* FAQ section */
.bac-faq-section {
  padding: 96px 24px;
  border-top: 1px solid #f1f5f9;
}

.bac-faq-inner {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.bac-faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 48px;
}

.bac-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}

@media (max-width: 640px) {
  .bac-faq-grid {
    grid-template-columns: 1fr;
  }
}

.bac-faq-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  transition: border-color 0.2s;
}

.bac-faq-card:hover {
  border-color: rgba(79, 70, 229, 0.3);
}

.bac-faq-q {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  font-size: 16px;
  transition: color 0.2s;
}

.bac-faq-card:hover .bac-faq-q {
  color: #4f46e5;
}

.bac-faq-a {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
}

/* CTA footer */
.bac-cta {
  padding: 80px 24px;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.bac-cta-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(50%, -50%);
}

.bac-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.bac-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.bac-cta-sub {
  color: #64748b;
}

.bac-cta-btn {
  padding: 20px 40px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
  text-decoration: none;
  display: inline-block;
}

.bac-cta-btn:hover {
  background: #4338ca;
  color: #fff;
}


/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--color-slate-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonials-section .swiper {
  padding: 2rem 30px;
 /* height: 100%; */
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: box-shadow 0.3s;
min-height: 380px;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #F59E0B;
  margin-bottom: 1rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-slate-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-indigo-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-indigo-600);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-slate-900);
  margin-bottom: 0;
}

.author-role {
  font-size: 0.8125rem;
  color: var(--color-slate-500);
  margin: 0;
}

/* ── FAQ ── */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--color-slate-50);
}

.faq-container {
  max-width: 50rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--color-indigo-200);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}

.faq-question {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-slate-900);
  flex: 1;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-400);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}

.faq-icon svg {
  width: 1rem;
  height: 1rem;
}

.faq-item.open .faq-icon {
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-body {
  max-height: 300px;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-slate-600);
  line-height: 1.7;
  border-top: 1px solid var(--color-slate-50);
  padding-top: 1rem;
}

/* ── CONTACT CTA ── */
.cta-section {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--color-slate-100);
  background: rgba(248, 250, 252, 0.5);
}

.cta-inner {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}

.cta-icon-wrap {
  width: 4rem;
  height: 4rem;
  background: var(--color-indigo-100);
  color: var(--color-indigo-600);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.cta-icon-wrap svg {
  width: 2rem;
  height: 2rem;
}

.cta-section .section-heading {
  font-size: 2.5rem;
}

.cta-section .section-sub {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.cta-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-btn-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* ── FINAL CTA BANNER ── */
.cta-banner-section {
  padding: var(--section-py) 0;
  overflow: hidden;
}

.cta-banner {
  background: var(--color-slate-900);
  border-radius: 3rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 6rem;
  }
}

.cta-banner-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(79, 70, 229, .1);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(50%, -50%);
}

.cta-banner-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(37, 99, 235, .1);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, 50%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2rem;
}

.cta-banner h2 .highlight {
  color: var(--color-indigo-400);
}

.cta-banner-desc {
  font-size: 1.125rem;
  color: rgba(148, 163, 184, 1);
  margin-bottom: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cta-banner-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  background: #fff;
  color: var(--color-slate-900);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-2xl);
  transition: background 0.2s;
}

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

.spots-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, .6);
}

.spots-avatars {
  display: flex;
}

.spots-avatars span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #334155;
  border: 2px solid var(--color-slate-900);
  margin-left: -0.5rem;
  display: block;
}

.spots-avatars span:first-child {
  margin-left: 0;
}

.spots-badge p {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ── FOOTER ── */
#site-footer {
  background: #fff;
  border-top: 1px solid var(--color-slate-100);
  padding: 5rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  font-size: 1.125rem;
  color: var(--color-slate-500);
  line-height: 1.7;
  margin: 2rem 0;
  max-width: 22rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-400);
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--color-indigo-600);
  color: #fff;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-slate-900);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

.footer-col a {
  font-size: 0.9375rem;
  color: var(--color-slate-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-indigo-600);
}

.footer-col a svg {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity 0.2s, transform 0.2s;
}

.footer-col a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-slate-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-slate-400);
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--color-slate-600);
}

/* ── CONTACT PAGE ── */
.contact-hero {
  padding: 8rem 0 4rem;
  background: var(--color-slate-50);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-hero-inner {
  max-width: 40rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  padding: var(--section-py) 0;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  background: var(--color-indigo-50);
  color: var(--color-indigo-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-info-item h5 {
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: var(--color-slate-600);
  font-size: 0.9375rem;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-slate-900);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-indigo-600);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .1);
}

.form-group textarea {
  min-height: 7rem;
  resize: vertical;
}

/* ── SERVICES PAGE SECTIONS ── */


.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(79, 70, 229, .1);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-indigo-600);
  margin-bottom: 1.5rem;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background: #fff;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.category-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

/* ── BLOG PAGE ── */
.blog-hero {
  padding: 8rem 0 4rem;
  background: var(--color-slate-50);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: var(--section-py) 0;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #fff;
  border: 1px solid var(--color-slate-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: box-shadow 0.3s;
  text-decoration: none;
}

.blog-card:hover {
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-slate-100);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.post-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-indigo-600);
  background: var(--color-indigo-50);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card-meta {
  font-size: 0.8125rem;
  color: var(--color-slate-400);
}

/* ── SINGLE POST ── */
.single-post-hero {
  padding: 8rem 0 4rem;
  background: var(--color-slate-50);
}

.single-post-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: var(--section-py) var(--container-px);
}

.single-post-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.single-post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.single-post-content p {
  color: var(--color-slate-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.single-post-content ul {
  list-style: disc;
}

.single-post-content ol {
  list-style: decimal;
}

.single-post-content li {
  color: var(--color-slate-700);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.single-post-content a {
  color: var(--color-indigo-600);
  text-decoration: underline;
}

.single-post-content img {
  border-radius: var(--radius-xl);
  margin: 2rem 0;
}

.single-post-content blockquote {
  border-left: 4px solid var(--color-indigo-600);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--color-indigo-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-slate-700);
}

/* ── PAGE HEADER (for inner pages) ── */
.page-hero {
  padding: 140px 0 70px;
  background: var(--color-slate-50);
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-slate-400);
  margin-bottom: 1.5rem;
}

.page-hero-breadcrumb a {
  transition: color 0.2s;
}

.page-hero-breadcrumb a:hover {
  color: var(--color-indigo-600);
}

.page-hero-breadcrumb span {
  color: var(--color-slate-300);
}

@media (min-width: 992px) {
  .page-hero {
    padding: 160px 0 110px;
  }
}

/* ── WP ALIGNMENT ── */
.alignleft {
  float: left;
  margin: 0 2rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 2rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

/* ── ADMIN BAR OFFSET ── */
.admin-bar #site-header {
  top: 32px;
}

@media (max-width: 782px) {
  #site-header {
    padding: 10px 16px;
  }

  .admin-bar #site-header {
    top: 46px;
  }
}

/* --- Stack --- */
.stack-section {
  padding: 96px 0;
  background: #fff;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .stack-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .stack-grid-4{
     grid-template-columns: repeat(4, 1fr) !important;
  }

  .stack-grid-5{
      grid-template-columns: repeat(5, 1fr) !important;
  }
}

.stack-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--color-slate-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.2s;
}

.stack-card:hover {
  border-color: #e0e7ff;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.05);
}

.stack-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-icon svg {
  width: 24px;
  height: 24px;
}

.stack-card span {
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
}

.stack-icon-webflow {
  background: #eff6ff;
  color: #2563eb;
}

.stack-icon-figma {
  background: #faf5ff;
  color: #7c3aed;
}

.stack-icon-wordpress {
  background: #eff6ff;
  color: #1d4ed8;
}

.stack-icon-html {
  background: #fff7ed;
  color: #ea580c;
}

.stack-icon-js {
  background: #DBEAFE;
  color: #ca8a04;
}

.stack-icon-shopify {
  background: #f0fdf4;
  color: #16a34a;
}

/**/
.svc-hero-section {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--color-slate-50) 0%, var(--color-indigo-50) 100%);
  position: relative;
  overflow: hidden;
  background: #fff;

  &::before {
    /* Container */
    content: "";
    position: absolute;
    width: 942px;
    height: 600px;
    left: 531px;
    top: 160px;

    background: rgba(97, 95, 255, 0.1);
    filter: blur(168.5px);

  }
}

.svc-hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
}

.svc-hero-btn {
  margin-top: 41px;
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
}

.svc-hero-bg-circle {
  position: absolute;
  top: 0;
  left: 25%;
  width: 600px;
  height: 600px;
  background: #6366f1;
  filter: blur(150px);
  border-radius: 50%;
}

.svc-hero-relative {
  position: relative;
  z-index: 1;
}

.svc-hero-mock {
  background: #0f172a;
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid #1e293b;
  position: relative;
}

.svc-hero-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0 8px;
}

.svc-hero-mock__dots {
  display: flex;
  gap: 6px;
}

.svc-hero-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.svc-hero-mock__dot--red {
  background: #ef4444;
}

.svc-hero-mock__dot--amber {
  background: #f59e0b;
}

.svc-hero-mock__dot--green {
  background: #22c55e;
}

.svc-hero-mock__title {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-family: monospace;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.svc-hero-mock__screen {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #334155;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-hero-mock__screen-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100px;

  svg {
    width: 24px;
    height: 24px;
    color: #fff;
  }
}

.svc-hero-mock__screen-card--dim {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.03);
}

.svc-hero-mock__screen-card--indigo {
  background: rgba(79, 70, 229, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
}

.svc-hero-mock__card-label {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.svc-hero-mock-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #4f46e5;
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
  border: 1px solid #6366f1;
  display: none;
}

@media (min-width: 768px) {
  .svc-hero-mock-badge {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .svc-hero-section {
    padding: 170px 0 150px;
  }
}

.svc-hero-mock-badge__val {
  font-size: 24px;
  font-weight: 900;
}

.svc-hero-mock-badge__lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Services grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-two-col {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.svc-card:hover {
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.05);
}

.svc-card__icon {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
  color: #64748b;
}

.svc-card:hover .svc-card__icon {
  background: #4f46e5;
  color: #fff;
}

.svc-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.svc-card__desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 32px;
}

.svc-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4f46e5;
  font-weight: 700;
  font-size: 14px;
  transition: gap 0.2s;
}

.svc-card:hover .svc-card__link {
  gap: 12px;
}

.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}


/**/

.contact-form-section {
  padding: 48px 24px 96px;
  background: #fff;
}

.contact-form-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 96px;
}

@media (max-width: 1024px) {
  .contact-form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: 48px;
  padding: 56px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.05);
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 32px;
  }
}

.cf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 640px) {
  .cf-grid-2 {
    grid-template-columns: 1fr;
  }
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.cf-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  padding-left: 4px;
}

.cf-input {
  width: 100%;
  height: 64px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  color: #0f172a;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.cf-input:focus {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background: #fff;
  border-color: #e2e8f0;
}

.cf-select {
  appearance: none;
  cursor: pointer;
}

.cf-textarea {
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  color: #0f172a;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  resize: none;
  transition: all 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}

.cf-textarea:focus {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background: #fff;
}

.cf-submit {
  width: 100%;
  padding: 24px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.cf-submit:hover {
  background: #4338ca;
  transform: translateY(-2px);
}

.cf-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

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

.cf-note {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 24px;
}

/* Success state */
.cf-success {
  text-align: center;
  padding: 64px 0;
}

.cf-success-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.cf-success-icon svg {
  width: 40px;
  height: 40px;
  color: #16a34a;
}

.cf-success h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.cf-success p {
  font-size: 18px;
  color: #64748b;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Contact trust panel */
.contact-trust-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-trust-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 32px;
}

.contact-trust-title span {
  color: #4f46e5;
}

.contact-trust-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-trust-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-trust-icon svg {
  width: 24px;
  height: 24px;
  color: #4f46e5;
}

.contact-trust-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.contact-trust-item-desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.contact-quote-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 32px;
  padding: 32px;
}

.contact-quote-text {
  font-size: 16px;
  color: #475569;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}

.contact-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
}

.contact-quote-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.contact-quote-role {
  font-size: 10px;
  font-weight: 900;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ===============================
   Decision Section
================================= */
.decision {
  padding: 100px 0;
  background-color: var(--color-slate-50);
}

/* Header */
.decision-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.decision-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.decision-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.decision-header p {
  color: #64748b;
  font-size: 16px;
}

/* Grid Layout */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */

.decision-card {
  background: rgba(238, 242, 255, 0.2);
  border-radius: 28px;
  padding: 40px;
  border: 2px solid #E0E7FF;
  transition: 0.3s ease;
}

.decision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.decision-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #0f172a;
}

.decision-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.decision-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  color: #45556C;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

/* Custom Bullet */
.decision-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url('../images/check.svg');
  background-size: contain;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 992px) {
  .decision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .decision {
    padding: 60px 0;
  }

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .decision-header h2 {
    font-size: 26px;
  }

  .decision-card {
    padding: 28px;
    border-radius: 20px;
  }
}

/*----------- Section ------------*/
.timeline-section {
  background: var(--color-slate-50);
  padding: 90px 0;
}

.timeline-header {
  margin-bottom: 50px;
}

.timeline-header p {
  color: #6b7280;
  font-size: 14px;
  max-width: 500px;
}

/* Cards wrapper */
.timeline-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.timeline-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 40px;
  border: 1px solid #E2E8F0;
  transition: 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Label */
.card-label {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 900;
  color: #90A1B9;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

/* Timeline Text */
.timeline-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 16px;
}

.timeline-card p {
  font-size: 16px;
  color: #45556C;
}

/* Bottom Note */
.timeline-note {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #90A1B9;
  letter-spacing: 1.2px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
  .timeline-cards {
    grid-template-columns: 1fr;
  }

  .timeline-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .timeline-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
  }

  .timeline-cards {
    gap: 20px;
  }

  .timeline-section {
    padding: 60px 0;
  }

  .timeline-header {
    margin-bottom: 30px;
  }
}

/* Section */
.industries {
  padding: 100px 20px;
}

/* Container */
.industries-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.industries-header {
  text-align: center;
  margin-bottom: 70px;
}

.industries-header h2 {
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #7b8ba6;
}

/* Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  text-align: center;
}

/* Item */
.industry-item h3 {
  margin-top: 23px;
  font-size: 16px;
  font-weight: 700;
  color: #0F172B;
}

/* Icon Circle */
.industry-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 24px;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #90A1B9;
  transition: all 0.3s ease;
  border: 1px solid #F1F5F9;
}

/* Hover Effect */
.industry-item:hover .industry-icon {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}


/* Section */
.feature-combo {
  padding: 90px 0;
}

.feature-combo__container {
  padding: 90px 40px;
  border-radius: 64px;
  background: #0F172B;
  color: #ffffff;
  position: relative;

  &::before {
    /* Container */
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: 0;
    top: 0px;
    pointer-events: none;
    background: rgba(79, 57, 246, 0.1);
    filter: blur(120px);
    border-radius: 3.35544e+07px;
  }

  &::after {
    /* Container */
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: 0;
    bottom: 0;
    background: rgba(21, 93, 252, 0.1);
    filter: blur(120px);
    border-radius: 3.35544e+07px;
    pointer-events: none;
  }
}

/* Grid */
.feature-combo__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap;
}

/* Card */
.feature-combo__card {
  padding: 40px;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 335px;
  align-items: flex-start;
}

.feature-combo__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Badge */
.feature-combo__badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  background: rgba(97, 95, 255, 0.2);
  border-radius: 3.35544e+07px;
  font-weight: 800;
  color: #A3B3FF;
}

/* Text */
.feature-combo__title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 800;
}

.feature-combo__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #90A1B9;
}

.feature-combo__bottom {
  margin-top: auto;
}

.feature-combo__note {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-weight: 700;
  color: #CAD5E2;
}

/* Divider */
.feature-combo__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

/* Footer */
.feature-combo__footer {
  margin-top: 60px;
}

.feature-combo__heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 13px;
}

.feature-combo__subtext {
  color: rgba(255, 255, 255, 0.6);
}