/* Layout utilities (Tailwind classes not in compiled theme.css) */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1280px) {
  .container { max-width: 1400px; }
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:w-16 { width: 4rem; }
  .md\:h-16 { height: 4rem; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:hidden { display: none !important; }
}

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-20 { top: 5rem; }
.-bottom-1 { bottom: -0.25rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-20 { height: 5rem; }
.h-40 { height: 10rem; }
.w-20 { width: 5rem; }
.h-14 { height: 3.5rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-28 { width: 7rem; }
.h-28 { height: 7rem; }
.min-w-\[3\.5rem\] { min-width: 3.5rem; }
.min-h-\[80px\] { min-height: 80px; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.h-6 { height: 1.5rem; }
.w-6 { width: 1.5rem; }
.h-7 { height: 1.75rem; }
.w-7 { width: 1.75rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-12 { height: 3rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.shrink-0 { flex-shrink: 0; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-max { max-width: max-content; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-2 { padding: 0.5rem; }
.p-8 { padding: 2rem; }
.pt-24 { padding-top: 6rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
@media (min-width: 1024px) { .lg\:gap-16 { gap: 4rem; } }

.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.min-h-full { min-height: 100%; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

@media (min-width: 768px) {
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:pt-0 { padding-top: 0; }
}
@media (min-width: 1024px) {
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
}
@media (min-width: 1280px) {
  .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

.bg-background { background-color: hsl(var(--background)); }
.bg-transparent { background-color: transparent; }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-secondary-foreground\/5 { background-color: hsl(var(--secondary-foreground) / 0.05); }
.bg-border { background-color: hsl(var(--border)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-secondary\/80 { --tw-gradient-from: hsl(var(--secondary) / 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-secondary\/60 { --tw-gradient-via: hsl(var(--secondary) / 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to); }
.to-secondary\/90 { --tw-gradient-to: hsl(var(--secondary) / 0.9); }
.to-transparent { --tw-gradient-to: transparent; }

.text-foreground { color: hsl(var(--foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-secondary-foreground\/40 { color: hsl(var(--secondary-foreground) / 0.4); }
.text-secondary-foreground\/60 { color: hsl(var(--secondary-foreground) / 0.6); }
.text-secondary-foreground\/70 { color: hsl(var(--secondary-foreground) / 0.7); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-primary-foreground\/80 { color: hsl(var(--primary-foreground) / 0.8); }
.text-card-foreground { color: hsl(var(--card-foreground)); }

.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-border { border-color: hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-secondary-foreground\/10 { border-color: hsl(var(--secondary-foreground) / 0.1); }
.border-primary-foreground { border-color: hsl(var(--primary-foreground)); }
.border-primary\/40 { border-color: hsl(var(--primary) / 0.4); }
.border-input { border-color: hsl(var(--input)); }

.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.whitespace-nowrap { white-space: nowrap; }
.last\:border-b-0:last-child { border-bottom-width: 0; }
.last\:flex-none:last-child { flex: none; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.w-auto { width: auto; }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); }

/* Responsive flex direction */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

/* Specific utilities */
.h-\[120\%\] { height: 120%; }
.h-\[400px\] { height: 400px; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.border-2 { border-width: 2px; }
.rotate-45 { transform: rotate(45deg); }
.grayscale { filter: grayscale(100%); }
.contrast-125 { filter: contrast(1.25); }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.px-\[calc\(100\%\/6\)\] { padding-left: calc(100% / 6); padding-right: calc(100% / 6); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-y-full { transform: translateY(-100%); }
@media (min-width: 1024px) {
  .lg\:h-\[500px\] { height: 500px; }
}
.h-0\.5 { height: 0.125rem; }
.w-0 { width: 0; }
.w-1\.5 { width: 0.375rem; }
.h-1\.5 { height: 0.375rem; }
.h-11 { height: 2.75rem; }
.max-w-sm { max-width: 24rem; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.border-t { border-top-width: 1px; }
.pt-8 { padding-top: 2rem; }
.italic { font-style: italic; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.font-sans { font-family: 'Inter', system-ui, sans-serif; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.from-primary\/40 { --tw-gradient-from: hsl(var(--primary) / 0.4); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-transparent { --tw-gradient-via: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }

.group:hover .group-hover\:w-full { width: 100%; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }
.hover\:bg-primary:hover { background-color: hsl(var(--primary)); }
.hover\:bg-accent:hover { background-color: hsl(var(--accent)); }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-primary-foreground:hover { color: hsl(var(--primary-foreground)); }
.hover\:text-accent-foreground:hover { color: hsl(var(--accent-foreground)); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

@keyframes pulse {
  50% { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.font-heading {
  font-family: 'Poppins', system-ui, sans-serif;
}

.font-subheading {
  font-family: 'Montserrat', system-ui, sans-serif;
}

.entire-navbar.is-scrolled {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px hsl(var(--color-black) / 0.12);
}

.entire-navbar.is-scrolled .entire-nav-link {
  color: hsl(var(--foreground)) !important;
}

.entire-navbar.is-scrolled .entire-nav-link:hover {
  color: hsl(var(--primary)) !important;
}

.entire-navbar.is-scrolled [data-mobile-menu-toggle],
.entire-navbar [data-mobile-menu-toggle] {
  color: hsl(var(--foreground)) !important;
}

/* Ensure nav icons inherit color and are visible */
.entire-navbar [data-mobile-menu-toggle],
.entire-navbar [data-mobile-menu-toggle] svg {
  color: inherit;
}
.entire-navbar [data-mobile-menu-toggle] svg {
  flex-shrink: 0;
}

.entire-repeatable-item.is-empty {
  display: none !important;
}

/* Customizer preview: show empty items as placeholders (not on live site) */
body.entire-customizer-preview .entire-repeatable-item.is-empty {
  display: flex !important;
  opacity: 0.6;
  border: 2px dashed hsl(var(--border));
  min-height: 120px;
  align-items: center;
  justify-content: center;
  background: hsl(var(--muted) / 0.5);
}

body.entire-customizer-preview [data-who-carousel].is-empty {
  display: block !important;
}

.entire-who-slide {
  display: none;
  position: relative;
}

.entire-who-slide.is-active {
  display: block;
}

[data-who-carousel].is-empty {
  display: none !important;
}

.entire-who-radial {
  background: radial-gradient(
    ellipse at center,
    hsl(var(--brand-red-light) / 0.3) 0%,
    transparent 70%
  );
}

.group:hover .entire-who-frame {
  box-shadow:
    0 0 30px hsl(var(--primary) / 0.4),
    inset 0 0 30px hsl(var(--brand-red-light) / 0.15);
}

.entire-process-circle.is-active,
.entire-process-mobile-circle.is-active {
  background-color: hsl(var(--primary));
  box-shadow: 0 0 20px hsl(var(--primary) / 0.4);
}

.entire-process-circle-text.is-active,
.entire-process-mobile-circle-text.is-active {
  color: hsl(var(--primary-foreground));
}

.entire-process-title.is-active {
  color: hsl(var(--primary));
}

/* Process track: grid layout for alignment with content columns */
@media (min-width: 768px) {
  [data-process-track] {
    display: grid !important;
    position: relative;
    --col: calc((100% - 4rem) / 3);
  }
  /* Segment 1: from right edge of circle 01 to left edge of circle 02 */
  [data-process-track]::before {
    content: "";
    position: absolute;
    left: calc((var(--col) + 5rem) / 2);
    width: calc(var(--col) - 3rem);
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: hsl(var(--primary));
    border-radius: 9999px;
    z-index: 0;
  }
  /* Segment 2: from right edge of circle 02 to left edge of circle 03 */
  [data-process-track]::after {
    content: "";
    position: absolute;
    left: calc(var(--col) + 2rem + (var(--col) + 5rem) / 2);
    width: calc(var(--col) - 3rem);
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: hsl(var(--primary));
    border-radius: 9999px;
    z-index: 0;
  }
  /* Center circles in each grid cell */
  [data-process-track] > [data-process-node] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
}

.text-white {
  color: hsl(var(--color-white)) !important;
}

.text-white\/70 {
  color: hsl(var(--color-white) / 0.7) !important;
}

.text-white\/80 {
  color: hsl(var(--color-white) / 0.8) !important;
}

.border-white\/30 {
  border-color: hsl(var(--color-white) / 0.3) !important;
}

.hover\:bg-white\/10:hover {
  background-color: hsl(var(--color-white) / 0.1) !important;
}

.hover\:text-white:hover {
  color: hsl(var(--color-white)) !important;
}

.via-white\/20 {
  --tw-gradient-to: hsl(var(--color-white) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--color-white) / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.bg-black\/70 {
  background-color: hsl(var(--color-black) / 0.7) !important;
}

