/* ==========================================================================
   INFINITY PHARMACARE — Complete Standalone Stylesheet
   ========================================================================== */

/* ── CSS Custom Properties ──────────────────────────────────────────────── */
:root {
  --color-primary:        #3D1A6E;
  --color-accent:         #C49A1A;
  --color-accent-hover:   #A07E10;
  --color-bg-light:       #FAFAFA;
  --color-bg-dark:        #3D1A6E;
  --color-bg-ivory:       #F5F3EE;
  --color-text-primary:   #1A1A2E;
  --color-text-secondary: #6B7280;
  --color-text-on-dark:   #F0F0F0;
  --color-border:         #E5E7EB;
  --color-surface:        #FFFFFF;
  --font-heading: 'Clash Display', 'Cabinet Grotesk', system-ui, sans-serif;
  --font-body:    'General Sans', 'DM Sans', system-ui, sans-serif;
  --max-width-site:  1200px;
  --transition-base: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin: 0;
  padding: 0;
}
p { font-family: var(--font-body); margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font-family: var(--font-body); }
[x-cloak] { display: none !important; }

/* ── Accessibility ───────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   UTILITY LAYER
   ========================================================================== */

.block        { display: block; }
.inline-block { display: inline-block; }
.inline-flex  { display: inline-flex; }
.flex         { display: flex; }
.grid         { display: grid; }
.hidden       { display: none; }

.relative  { position: relative; }
.absolute  { position: absolute; }
.fixed     { position: fixed; }
.sticky    { position: sticky; }
.static    { position: static; }
.inset-0   { top: 0; right: 0; bottom: 0; left: 0; }
.top-0     { top: 0; }
.left-0    { left: 0; }
.right-0   { right: 0; }
.bottom-0  { bottom: 0; }
.z-10      { z-index: 10; }
.z-20      { z-index: 20; }
.z-50      { z-index: 50; }
.-z-10     { z-index: -10; }

.flex-col      { flex-direction: column; }
.flex-row      { flex-direction: row; }
.flex-wrap     { flex-wrap: wrap; }
.flex-1        { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow     { flex-grow: 1; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.items-end      { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start   { justify-content: flex-start; }
.justify-end     { justify-content: flex-end; }
.self-center     { align-self: center; }
.mt-auto { margin-top: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.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)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.col-span-2  { grid-column: span 2 / span 2; }
.col-span-full { grid-column: 1 / -1; }

.overflow-hidden     { overflow: hidden; }
.overflow-x-hidden   { overflow-x: hidden; }
.overflow-auto       { overflow: auto; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.list-none           { list-style: none; }
.text-center         { text-align: center; }
.text-left           { text-align: left; }
.text-right          { text-align: right; }
.break-all           { word-break: break-all; }
.no-underline        { text-decoration: none; }
.underline           { text-decoration: underline; }
.object-cover        { object-fit: cover; }
.object-contain      { object-fit: contain; }
.aspect-video        { aspect-ratio: 16 / 9; }
.aspect-square       { aspect-ratio: 1 / 1; }
.cursor-pointer      { cursor: pointer; }
.cursor-default      { cursor: default; }
.cursor-none         { cursor: none; }
.select-none         { user-select: none; }
.appearance-none     { appearance: none; -webkit-appearance: none; }
.outline-none        { outline: none; }
.resize-none         { resize: none; }

.w-auto   { width: auto; }
.w-full   { width: 100%; }
.w-screen { width: 100vw; }
.w-0 { width: 0; } .w-1 { width: 0.25rem; } .w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; } .w-4 { width: 1rem; } .w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; } .w-8 { width: 2rem; } .w-10 { width: 2.5rem; }
.w-12 { width: 3rem; } .w-16 { width: 4rem; } .w-20 { width: 5rem; }
.w-24 { width: 6rem; } .w-32 { width: 8rem; } .w-40 { width: 10rem; }
.w-48 { width: 12rem; } .w-64 { width: 16rem; } .w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-1\/2 { width: 50%; } .w-1\/3 { width: 33.333%; } .w-2\/3 { width: 66.667%; }
.w-1\/4 { width: 25%; } .w-3\/4 { width: 75%; }
.max-w-xs  { max-width: 20rem; } .max-w-sm  { max-width: 24rem; }
.max-w-md  { max-width: 28rem; } .max-w-lg  { max-width: 32rem; }
.max-w-xl  { max-width: 36rem; } .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-7xl { max-width: 80rem; } .max-w-full { max-width: 100%; }
.max-w-none { max-width: none; }
.max-w-site { max-width: var(--max-width-site); }
.min-w-0   { min-width: 0; } .min-w-full { min-width: 100%; }
.mx-auto   { margin-left: auto; margin-right: auto; }

.h-auto   { height: auto; } .h-full { height: 100%; } .h-screen { height: 100vh; }
.h-0 { height: 0; } .h-1 { height: 0.25rem; } .h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; } .h-4 { height: 1rem; } .h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; } .h-8 { height: 2rem; } .h-10 { height: 2.5rem; }
.h-12 { height: 3rem; } .h-16 { height: 4rem; } .h-20 { height: 5rem; }
.h-24 { height: 6rem; } .h-32 { height: 8rem; } .h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.min-h-screen { min-height: 100vh; } .min-h-full { min-height: 100%; }

.gap-0 { gap: 0; } .gap-0\.5 { gap: 0.125rem; } .gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; } .gap-2 { gap: 0.5rem; } .gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; } .gap-16 { gap: 4rem; } .gap-20 { gap: 5rem; }
.gap-px { gap: 1px; }
.gap-x-4 { column-gap: 1rem; } .gap-x-6 { column-gap: 1.5rem; } .gap-x-8 { column-gap: 2rem; }
.gap-y-4 { row-gap: 1rem; } .gap-y-6 { row-gap: 1.5rem; } .gap-y-8 { row-gap: 2rem; }

.p-0 { padding: 0; } .p-1 { padding: 0.25rem; } .p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; } .p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; } .p-16 { padding: 4rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.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; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.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-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-0 { padding-top: 0; } .pt-4 { padding-top: 1rem; } .pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; } .pt-16 { padding-top: 4rem; } .pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-0 { padding-bottom: 0; } .pb-4 { padding-bottom: 1rem; } .pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; } .pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; } .pb-24 { padding-bottom: 6rem; }
.pl-0 { padding-left: 0; } .pl-4 { padding-left: 1rem; } .pl-6 { padding-left: 1.5rem; }
.pr-0 { padding-right: 0; } .pr-4 { padding-right: 1rem; } .pr-6 { padding-right: 1.5rem; }

.m-0 { margin: 0; } .m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-0 { margin-left: 0; margin-right: 0; } .mx-4 { margin-left: 1rem; margin-right: 1rem; }
.my-0 { margin-top: 0; margin-bottom: 0; } .my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; } .my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-0 { margin-top: 0; } .mt-0\.5 { margin-top: 0.125rem; } .mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0; } .mb-0\.5 { margin-bottom: 0.125rem; } .mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-5 { margin-bottom: 1.25rem; } .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; } .mb-20 { margin-bottom: 5rem; }
.ml-0 { margin-left: 0; } .ml-2 { margin-left: 0.5rem; } .ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }
.mr-0 { margin-right: 0; } .mr-2 { margin-right: 0.5rem; } .mr-4 { margin-right: 1rem; }
.mr-auto { margin-right: auto; }
.-mt-4 { margin-top: -1rem; } .-mt-8 { margin-top: -2rem; } .-mb-4 { margin-bottom: -1rem; }

.font-heading { font-family: var(--font-heading); }
.font-body    { font-family: var(--font-body); }
.font-thin       { font-weight: 100; }
.font-light      { font-weight: 300; }
.font-normal     { font-weight: 400; }
.font-medium     { font-weight: 500; }
.font-semibold   { font-weight: 600; }
.font-bold       { font-weight: 700; }
.font-extrabold  { font-weight: 800; }
.font-black      { font-weight: 900; }
.italic { font-style: italic; } .not-italic { font-style: normal; }
.uppercase   { text-transform: uppercase; }
.lowercase   { text-transform: lowercase; }
.capitalize  { text-transform: capitalize; }
.normal-case { text-transform: none; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-normal { white-space: normal; }
.break-words { overflow-wrap: break-word; }

.text-xs   { font-size: 0.75rem;  line-height: 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; }
.text-5xl  { font-size: 3rem;     line-height: 1; }
.text-6xl  { font-size: 3.75rem;  line-height: 1; }
.text-7xl  { font-size: 4.5rem;   line-height: 1; }
.text-8xl  { font-size: 6rem;     line-height: 1; }
.text-\[0\.6rem\] { font-size: 0.6rem; }
.text-\[0\.5rem\] { font-size: 0.5rem; }

.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.375; }
.leading-normal  { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight   { letter-spacing: -0.025em; }
.tracking-normal  { letter-spacing: 0em; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.1em; }
.tracking-\[0\.1em\]  { letter-spacing: 0.1em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\]  { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\]  { letter-spacing: 0.3em; }
.tracking-\[0\.4em\]  { letter-spacing: 0.4em; }

.text-white        { color: #ffffff; }
.text-black        { color: #000000; }
.text-transparent  { color: transparent; }
.text-accent       { color: #C49A1A; }
.text-accent-hover { color: #A07E10; }
.text-text-primary { color: #1A1A2E; }
.text-text-sec     { color: #6B7280; }
.text-primary      { color: #3D1A6E; }
.text-purple       { color: #3D1A6E; }
.text-gold         { color: #C49A1A; }
.text-dark         { color: #1A1A2E; }
.text-gray         { color: #6B7280; }
.text-white\/80    { color: rgba(255,255,255,0.8); }
.text-white\/70    { color: rgba(255,255,255,0.7); }
.text-white\/60    { color: rgba(255,255,255,0.6); }
.text-white\/55    { color: rgba(255,255,255,0.55); }
.text-white\/50    { color: rgba(255,255,255,0.5); }
.text-white\/40    { color: rgba(255,255,255,0.4); }
.text-white\/35    { color: rgba(255,255,255,0.35); }
.text-white\/30    { color: rgba(255,255,255,0.3); }
.text-accent\/15   { color: rgba(196,154,26,0.15); }
.text-accent\/25   { color: rgba(196,154,26,0.25); }
.text-accent\/70   { color: rgba(196,154,26,0.7); }
.text-black\/50    { color: rgba(0,0,0,0.5); }
.text-black\/60    { color: rgba(0,0,0,0.6); }

.bg-white       { background-color: #ffffff; }
.bg-black       { background-color: #000000; }
.bg-transparent { background-color: transparent; }
.bg-primary     { background-color: #3D1A6E; }
.bg-accent      { background-color: #C49A1A; }
.bg-ivory       { background-color: #F5F3EE; }
.bg-gray-50     { background-color: #F9FAFB; }
.bg-gray-100    { background-color: #F3F4F6; }
.bg-purple      { background-color: #3D1A6E; }
.bg-purple-dark { background-color: #1A0A3C; }
.bg-gold        { background-color: #C49A1A; }
.bg-dark        { background-color: #1A1A2E; }
.bg-light       { background-color: #FAFAFA; }
.bg-primary\/90 { background-color: rgba(61,26,110,0.9); }
.bg-accent\/5   { background-color: rgba(196,154,26,0.05); }
.bg-accent\/10  { background-color: rgba(196,154,26,0.1); }
.bg-accent\/15  { background-color: rgba(196,154,26,0.15); }
.bg-accent\/25  { background-color: rgba(196,154,26,0.25); }
.bg-white\/5    { background-color: rgba(255,255,255,0.05); }
.bg-white\/8    { background-color: rgba(255,255,255,0.08); }
.bg-white\/10   { background-color: rgba(255,255,255,0.1); }
.bg-white\/15   { background-color: rgba(255,255,255,0.15); }
.bg-white\/20   { background-color: rgba(255,255,255,0.2); }
.bg-gray-50\/80 { background-color: rgba(249,250,251,0.8); }
.bg-purple\/10  { background-color: rgba(61,26,110,0.1); }
.bg-purple\/20  { background-color: rgba(61,26,110,0.2); }
.bg-gold\/10    { background-color: rgba(196,154,26,0.1); }
.bg-gold\/20    { background-color: rgba(196,154,26,0.2); }
.bg-black\/20   { background-color: rgba(0,0,0,0.2); }
.bg-black\/40   { background-color: rgba(0,0,0,0.4); }
.bg-black\/50   { background-color: rgba(0,0,0,0.5); }

.border     { border-width: 1px; border-style: solid; }
.border-0   { border-width: 0; }
.border-2   { border-width: 2px; border-style: solid; }
.border-t   { border-top-width: 1px; border-top-style: solid; }
.border-b   { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l   { border-left-width: 1px; border-left-style: solid; }
.border-r   { border-right-width: 1px; border-right-style: solid; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-accent       { border-color: #C49A1A; }
.border-gray-100     { border-color: #F3F4F6; }
.border-white        { border-color: #FFFFFF; }
.border-gray         { border-color: #E5E7EB; }
.border-purple       { border-color: #3D1A6E; }
.border-gold         { border-color: #C49A1A; }
.border-white\/10    { border-color: rgba(255,255,255,0.1); }
.border-white\/12    { border-color: rgba(255,255,255,0.12); }
.border-white\/15    { border-color: rgba(255,255,255,0.15); }
.border-white\/20    { border-color: rgba(255,255,255,0.2); }
.border-white\/25    { border-color: rgba(255,255,255,0.25); }
.border-white\/30    { border-color: rgba(255,255,255,0.3); }
.border-white\/40    { border-color: rgba(255,255,255,0.4); }
.border-accent\/20   { border-color: rgba(196,154,26,0.2); }
.border-primary\/20  { border-color: rgba(61,26,110,0.2); }
.border-black\/10    { border-color: rgba(0,0,0,0.1); }

.rounded-none  { border-radius: 0; }
.rounded-sm    { border-radius: 0.125rem; }
.rounded       { border-radius: 0.25rem; }
.rounded-md    { border-radius: 0.375rem; }
.rounded-lg    { border-radius: 0.5rem; }
.rounded-xl    { border-radius: 0.75rem; }
.rounded-2xl   { border-radius: 1rem; }
.rounded-3xl   { border-radius: 1.5rem; }
.rounded-full  { border-radius: 9999px; }

.divide-x > * + *          { border-left-width: 1px; border-left-style: solid; }
.divide-y > * + *          { border-top-width: 1px; border-top-style: solid; }
.divide-white\/10 > * + *  { border-left-color: rgba(255,255,255,0.1); }

.shadow-none { box-shadow: none; }
.shadow-sm   { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow      { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-md   { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg   { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl   { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl  { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

.opacity-0   { opacity: 0; }
.opacity-25  { opacity: 0.25; }
.opacity-50  { opacity: 0.5; }
.opacity-60  { opacity: 0.6; }
.opacity-70  { opacity: 0.7; }
.opacity-75  { opacity: 0.75; }
.opacity-80  { opacity: 0.8; }
.opacity-90  { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.transition         { transition-property: color, background-color, border-color, opacity, box-shadow, transform, filter; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-all     { transition: all 0.15s cubic-bezier(0.4,0,0.2,1); }
.transition-colors  { transition: color 0.15s cubic-bezier(0.4,0,0.2,1), background-color 0.15s cubic-bezier(0.4,0,0.2,1), border-color 0.15s cubic-bezier(0.4,0,0.2,1); }
.transition-opacity { transition: opacity 0.15s cubic-bezier(0.4,0,0.2,1); }
.transition-transform { transition: transform 0.15s cubic-bezier(0.4,0,0.2,1); }
.duration-150  { transition-duration: 150ms; }
.duration-200  { transition-duration: 200ms; }
.duration-300  { transition-duration: 300ms; }
.duration-500  { transition-duration: 500ms; }
.duration-700  { transition-duration: 700ms; }
.ease-in     { transition-timing-function: cubic-bezier(0.4,0,1,1); }
.ease-out    { transition-timing-function: cubic-bezier(0,0,0.2,1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

.scale-95  { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.-translate-y-1  { transform: translateY(-0.25rem); }
.-translate-y-2  { transform: translateY(-0.5rem); }
.translate-y-0   { transform: translateY(0); }
.translate-x-0   { transform: translateX(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-x-full { transform: translateX(-100%); }
.translate-x-full  { transform: translateX(100%); }
.translate-y-full  { transform: translateY(100%); }
.-translate-y-full { transform: translateY(-100%); }
.rotate-90   { transform: rotate(90deg); }
.rotate-180  { transform: rotate(180deg); }
.-rotate-90  { transform: rotate(-90deg); }

.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur    { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

.grayscale         { filter: grayscale(100%); }
.grayscale-0       { filter: grayscale(0%); }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.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; }

.bg-gradient-to-t  { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b  { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-l  { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-r  { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-tl { background-image: linear-gradient(to top left, var(--tw-gradient-stops)); }

.hover\:text-white:hover        { color: #ffffff; }
.hover\:text-accent:hover       { color: #C49A1A; }
.hover\:text-accent-hover:hover { color: #A07E10; }
.hover\:text-gold:hover         { color: #C49A1A; }
.hover\:text-purple:hover       { color: #3D1A6E; }
.hover\:bg-accent:hover         { background-color: #C49A1A; }
.hover\:bg-accent-hover:hover   { background-color: #A07E10; }
.hover\:bg-accent\/5:hover      { background-color: rgba(196,154,26,0.05); }
.hover\:bg-white:hover          { background-color: #FFFFFF; }
.hover\:bg-purple:hover         { background-color: #3D1A6E; }
.hover\:bg-gold:hover           { background-color: #C49A1A; }
.hover\:bg-white\/10:hover      { background-color: rgba(255,255,255,0.1); }
.hover\:bg-white\/20:hover      { background-color: rgba(255,255,255,0.2); }
.hover\:border-white\/50:hover  { border-color: rgba(255,255,255,0.5); }
.hover\:border-white\/60:hover  { border-color: rgba(255,255,255,0.6); }
.hover\:border-gold:hover       { border-color: #C49A1A; }
.hover\:border-white:hover      { border-color: #FFFFFF; }
.hover\:grayscale-0:hover       { filter: grayscale(0%); }
.hover\:opacity-80:hover        { opacity: 0.8; }
.hover\:opacity-90:hover        { opacity: 0.9; }
.hover\:opacity-100:hover       { opacity: 1; }
.hover\:scale-105:hover         { transform: scale(1.05); }
.hover\:-translate-y-1:hover    { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover    { transform: translateY(-0.5rem); }
.hover\:shadow-lg:hover         { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover         { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }

.group { }
.group:hover .group-hover\:text-accent       { color: #C49A1A; }
.group:hover .group-hover\:text-accent-hover { color: #A07E10; }
.group:hover .group-hover\:text-accent\/25   { color: rgba(196,154,26,0.25); }
.group:hover .group-hover\:text-accent\/70   { color: rgba(196,154,26,0.7); }
.group:hover .group-hover\:text-gold         { color: #C49A1A; }
.group:hover .group-hover\:text-white        { color: #FFFFFF; }
.group:hover .group-hover\:scale-105         { transform: scale(1.05); }
.group:hover .group-hover\:opacity-100       { opacity: 1; }
.group:hover .group-hover\:translate-x-1     { transform: translateX(0.25rem); }

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

@media (min-width: 640px) {
  .sm\:flex-row         { flex-direction: row; }
  .sm\:grid-cols-2      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-8      { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .sm\:items-end        { align-items: flex-end; }
  .sm\:justify-between  { justify-content: space-between; }
  .sm\:text-right       { text-align: right; }
}

@media (min-width: 768px) {
  .md\:block         { display: block; }
  .md\:flex          { display: flex; }
  .md\:grid          { display: grid; }
  .md\:hidden        { display: none; }
  .md\:flex-row      { flex-direction: row; }
  .md\:flex-col      { flex-direction: column; }
  .md\:grid-cols-2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .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\:gap-8         { gap: 2rem; }
  .md\:gap-12        { gap: 3rem; }
  .md\:px-8          { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-12         { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-16         { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24         { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:text-left     { text-align: left; }
  .md\:text-4xl      { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl      { font-size: 3rem; line-height: 1; }
  .md\:text-6xl      { font-size: 3.75rem; line-height: 1; }
  .md\:w-1\/2        { width: 50%; }
  .md\:max-w-2xl     { max-width: 42rem; }
  .md\:items-center  { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
}

@media (min-width: 1024px) {
  .lg\:block         { display: block; }
  .lg\:flex          { display: flex; }
  .lg\:grid          { display: grid; }
  .lg\:hidden        { display: none; }
  .lg\:inline-flex   { display: inline-flex; }
  .lg\:flex-row      { flex-direction: row; }
  .lg\:flex-col      { flex-direction: column; }
  .lg\:col-span-2    { grid-column: span 2 / span 2; }
  .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\:grid-cols-5   { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:gap-0         { gap: 0; }
  .lg\:gap-8         { gap: 2rem; }
  .lg\:gap-12        { gap: 3rem; }
  .lg\:gap-16        { gap: 4rem; }
  .lg\:gap-20        { gap: 5rem; }
  .lg\:px-8          { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-10         { padding-left: 2.5rem; padding-right: 2.5rem; }
  .lg\:px-16         { padding-left: 4rem; padding-right: 4rem; }
  .lg\:px-20         { padding-left: 5rem; padding-right: 5rem; }
  .lg\:py-20         { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24         { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28         { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:py-32         { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:pl-0          { padding-left: 0; }
  .lg\:pr-0          { padding-right: 0; }
  .lg\:p-10          { padding: 2.5rem; }
  .lg\:text-lg       { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl       { font-size: 1.25rem;  line-height: 1.75rem; }
  .lg\:text-2xl      { font-size: 1.5rem;   line-height: 2rem; }
  .lg\:text-3xl      { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl      { font-size: 2.25rem;  line-height: 2.5rem; }
  .lg\:text-5xl      { font-size: 3rem;     line-height: 1; }
  .lg\:text-6xl      { font-size: 3.75rem;  line-height: 1; }
  .lg\:text-7xl      { font-size: 4.5rem;   line-height: 1; }
  .lg\:text-left     { text-align: left; }
  .lg\:w-1\/2        { width: 50%; }
  .lg\:max-w-3xl     { max-width: 48rem; }
  .lg\:items-center  { align-items: center; }
  .lg\:items-start   { align-items: flex-start; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:divide-x > * + *         { border-left-width: 1px; border-left-style: solid; }
  .lg\:divide-y-0 > * + *       { border-top-width: 0; }
  .lg\:divide-white\/10 > * + * { border-left-color: rgba(255,255,255,0.1); }
  .first\:lg\:pl-0:first-child  { padding-left: 0; }
  .last\:lg\:pr-0:last-child    { padding-right: 0; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:gap-16      { gap: 4rem; }
  .xl\:px-24       { padding-left: 6rem; padding-right: 6rem; }
  .xl\:text-7xl    { font-size: 4.5rem; line-height: 1; }
  .xl\:text-8xl    { font-size: 6rem; line-height: 1; }
}

/* ==========================================================================
   COMPONENT LAYER
   ========================================================================== */

/* ── Preloader ───────────────────────────────────────────────────────────── */
#ip-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #3D1A6E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
  will-change: opacity, transform;
}
#ip-preloader.is-done {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.preloader-logo {
  width: 160px;
  height: auto;
  display: block;
  animation: preloader-pulse 1.2s ease-in-out infinite;
  will-change: transform, filter;
}
@media (min-width: 768px) { .preloader-logo { width: 220px; } }
@keyframes preloader-pulse {
  0%, 100% { transform: scale(0.80); filter: drop-shadow(0 0 0px rgba(196,154,26,0)); }
  50%       { transform: scale(1.0);  filter: drop-shadow(0 0 32px rgba(196,154,26,0.55)); }
}

/* ── Custom Cursor ───────────────────────────────────────────────────────── */
#ip-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  will-change: transform;
  transform: translate(-200px, -200px);
}
#ip-cursor.is-visible { opacity: 1; }
#ip-cursor.is-hovering .ip-cursor-path { fill: #C49A1A; }
.ip-cursor-path { transition: fill 0.15s ease; }

/* ── Site Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff !important;
  border-bottom: 1px solid #E5E7EB;
}
.site-header.scrolled { background: #ffffff !important; }

.header-inner {
  max-width: var(--max-width-site);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 65px;
}
@media (min-width: 1024px) {
  .header-inner { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  width: 100%;
  gap: 32px;
}

.desktop-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; align-items: center; gap: 2rem; }
}

.nav-link {
  color: #1A1A2E !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  transition: color 0.2s ease;
  text-decoration: none;
}
.nav-link:hover,
.nav-link.is-active,
.nav-link[aria-current="page"],
.desktop-nav a:hover {
  color: #C5973A !important;
}

.header-cta { display: none; }
@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
    align-items: center;
    background: var(--color-accent);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 999px;
    transition: background 0.2s ease;
  }
  .header-cta:hover { background: var(--color-accent-hover); color: #FFFFFF; }
}

.header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #1A1A2E;
}
@media (min-width: 1024px) { .header-hamburger { display: none; } }

.hamburger-bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: currentColor;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-bar--open-1 { transform: rotate(45deg) translateY(7px); }
.hamburger-bar--open-2 { opacity: 0; transform: scaleX(0); }
.hamburger-bar--open-3 { transform: rotate(-45deg) translateY(-7px); }

.mobile-menu-panel {
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) { .mobile-menu-panel { display: none !important; } }

.menu-transition-in  { transition: opacity 0.2s ease-out, transform 0.2s ease-out; }
.menu-transition-out { transition: opacity 0.15s ease-in,  transform 0.15s ease-in; }
.menu-hidden  { opacity: 0; transform: translateY(-0.75rem); }
.menu-visible { opacity: 1; transform: translateY(0); }

.mobile-menu-inner {
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--color-accent); }

.mobile-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.mobile-cta:hover { background: var(--color-accent-hover); color: #FFFFFF; }

/* Logo */
a.logo-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  width: auto !important;
}
a.logo-link img.logo-mark {
  display: inline-block !important;
  height: 32px !important;
  width: auto !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}
a.logo-link span.logo-wordmark {
  display: inline-block !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #1a1a2e !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.logo-img {
  width: 120px;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.logo-link:hover .logo-img { opacity: 0.85; }
@media (min-width: 1024px) { .logo-img { width: 160px; } }

/* Admin bar offset */
body.admin-bar .site-header { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px !important; }
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&family=DM+Sans:wght@300;400;600&display=swap');

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('/wp-content/themes/infinity-pharmacare/assets/images/hero-banner.webp');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 10, 20, 0.85) 0%,
    rgba(13, 10, 20, 0.60) 40%,
    rgba(13, 10, 20, 0) 65%
  );
  z-index: 1;
}
.hero-content-wrap {
  position: absolute;
  top: calc(50% - 60px);
  left: 64px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 560px;
}
.hero-text { max-width: 560px; }
.hero-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C5973A;
  margin-bottom: 16px;
}
.hero-divider {
  width: 36px;
  height: 2px;
  background-color: #C5973A;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 76px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 20px 0;
  white-space: nowrap;
}
.hero-subheadline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 0 40px 0;
}
.hero-bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
}
.hero-orb { border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,154,26,0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  bottom: -150px; right: -150px;
}
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(10px); opacity: 0.2; }
}

@media (max-width: 1024px) {
  .hero-content-wrap { left: 40px; max-width: 480px; top: calc(50% + 40px); }
  .hero-headline { font-size: 52px; white-space: normal; }
  .hero-subheadline { font-size: 15px; }
}
@media (max-width: 640px) {
  .hero-content-wrap { left: 24px; right: 24px; max-width: calc(100% - 48px); top: calc(50% + 30px); }
  .hero-headline { font-size: 34px; white-space: normal; }
  .hero-subheadline { font-size: 14px; max-width: 100%; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 350px; height: 350px; }
}

/* ==========================================================================
   CREDIBILITY BAR
   ========================================================================== */

.credibility-bar {
  background-color: rgba(13, 10, 20, 0.92);
  width: 100%;
  height: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  border: none;
  outline: none;
  margin: 0;
}

.cred-item,
.credibility-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  flex-shrink: 0;
}

.cred-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-item svg,
.credibility-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #C5973A;
  stroke-width: 1.5px;
  fill: none;
  opacity: 1;
}

.cred-text,
.credibility-item .text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.credibility-item .text-block .credential {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: 0;
    display: block;
}

.credibility-item .text-block .descriptor {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
    margin-top: 2px;
    white-space: nowrap;
    letter-spacing: 0;
    display: block;
}
.cred-divider,
.credibility-divider {
  width: 1px;
  height: 43px;
  background-color: rgba(255, 255, 255, 0.15);
  align-self: center;
  flex-shrink: 0;
}

.text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.credential {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff !important;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0;
}

.descriptor {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .credibility-bar {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 16px 24px;
    gap: 0;
  }

  .cred-divider,
  .credibility-divider {
    display: none;
  }

  .cred-item,
  .credibility-item {
    padding: 12px 16px;
    justify-content: center;
  }

  .cred-credential,
  .cred-descriptor,
  .credibility-item .cred-credential,
  .credibility-item .cred-descriptor {
    white-space: normal;
  }
}

/* ── Metamorphosis Section ───────────────────────────────────────────────── */
@keyframes meta-loop-left {
  0%   { opacity: 0; transform: translateX(-300px); }
  48%  { opacity: 1; transform: translateX(0); }
  56%  { opacity: 1; transform: translateX(0); }
  76%  { opacity: 0; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(0); }
}
@keyframes meta-loop-right {
  0%   { opacity: 0; transform: translateX(300px); }
  48%  { opacity: 1; transform: translateX(0); }
  56%  { opacity: 1; transform: translateX(0); }
  76%  { opacity: 0; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(0); }
}
@keyframes meta-logo-in {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes meta-text-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
#metamorphosis-section > div:nth-child(3) > div:first-child,
#metamorphosis-section > div:nth-child(3) > div:last-child { opacity: 0; }
#metamorphosis-section > div:nth-child(5) > img             { opacity: 0; }
#metamorphosis-section > div:nth-child(5) > :not(img)       { opacity: 0; }
#metamorphosis-section.meta-visible > div:nth-child(3) > div:first-child {
  animation: meta-loop-left  2.5s ease-out forwards;
}
#metamorphosis-section.meta-visible > div:nth-child(3) > div:last-child {
  animation: meta-loop-right 2.5s ease-out forwards;
}
#metamorphosis-section.meta-visible > div:nth-child(5) > img {
  animation: meta-logo-in    0.8s ease-out 1.4s both;
}
#metamorphosis-section.meta-visible > div:nth-child(5) > :not(img) {
  animation: meta-text-up    0.8s ease-out 2.2s both;
}
@media (max-width: 767px) {
  #metamorphosis-section > div:nth-child(3) > div:first-child,
  #metamorphosis-section > div:nth-child(3) > div:last-child,
  #metamorphosis-section > div:nth-child(5) > img,
  #metamorphosis-section > div:nth-child(5) > :not(img) {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.meta-loop-body,
.meta-loop-sub,
.meta-bottom,
.animate-up {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Solution Pathway ────────────────────────────────────────────────────── */
.solution-card { transition: box-shadow 0.25s ease; cursor: default; }
.solution-card:hover { box-shadow: 0 8px 32px rgba(61,26,110,0.08); }

/* ── Core Values ─────────────────────────────────────────────────────────── */
.value-card { transition: box-shadow 0.25s ease, transform 0.25s ease; }
.value-card:hover { box-shadow: 0 8px 24px rgba(61,26,110,0.06); transform: translateY(-2px); }

/* ── Network Section ─────────────────────────────────────────────────────── */
.network-block { transition: border-color 0.2s ease; }
.network-block:hover { border-color: var(--color-accent) !important; }

/* ── Download Center ─────────────────────────────────────────────────────── */
.download-bg {
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(196,154,26,0.1) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

/* ── Insight Cards ───────────────────────────────────────────────────────── */
.insight-card,
.insight-preview-card { transition: box-shadow 0.25s ease, transform 0.25s ease; }
.insight-card:hover,
.insight-preview-card:hover { box-shadow: 0 8px 32px rgba(61,26,110,0.08); transform: translateY(-3px); }

/* ── Contact CTA ─────────────────────────────────────────────────────────── */
.contact-cta-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,154,26,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

/* ── Page Templates ──────────────────────────────────────────────────────── */
.page-hero-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.metamorphosis-accent-bg {
  background: radial-gradient(ellipse at center, var(--color-accent) 0%, transparent 60%);
}

/* ── Contact Form (CF7) ──────────────────────────────────────────────────── */
.contact-input { -webkit-appearance: none; appearance: none; transition: border-color var(--transition-base); }
.contact-input:focus { border-color: var(--color-accent); outline: none; box-shadow: 0 0 0 3px rgba(196,154,26,0.1); }
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-primary);
  background: white;
  border-radius: 0;
  transition: border-color var(--transition-base);
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(196,154,26,0.1);
}
.wpcf7-form input[type="submit"] {
  background: var(--color-accent);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  padding: 0.875rem 2.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition-base);
  width: auto;
  letter-spacing: 0.02em;
}
.wpcf7-form input[type="submit"]:hover { background: var(--color-accent-hover); }
.wpcf7-not-valid-tip { font-size: 0.75rem; color: #dc2626; margin-top: 0.25rem; }
.wpcf7-response-output { margin-top: 1rem; padding: 0.75rem 1rem; font-size: 0.875rem; border: 1px solid currentColor; }

/* ── Single Post Content ─────────────────────────────────────────────────── */
.insight-content h2 { font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.insight-content h3 { font-size: 1.375rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.insight-content p  { margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.75; color: var(--color-text-primary); }
.insight-content ul,
.insight-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; list-style: disc; }
.insight-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.insight-content strong { color: var(--color-text-primary); }
.insight-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin: 2rem 0;
}

/* ── Pagination ──────────────────────────────────────────────────────────── */
.nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 3rem; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}
.page-numbers:hover { border-color: var(--color-accent); color: var(--color-accent); }
.page-numbers.current { background: var(--color-accent); color: white; border-color: var(--color-accent); }

/* ── Scroll Animations ───────────────────────────────────────────────────── */
.animate-up { opacity: 0; transform: translateY(40px); }