/* Design system: premium healthcare funnel */
/* Off-white canvas, deep navy text, blue/teal accent */

:root {
  --radius: 1rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);
  --radius-4xl: calc(var(--radius) + 16px);

  --background: oklch(0.986 0.005 106);
  --foreground: oklch(0.235 0.055 258);
  --ink: oklch(0.235 0.055 258);
  --surface: oklch(1 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.235 0.055 258);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.235 0.055 258);
  --primary: oklch(0.45 0.135 251);
  --primary-foreground: oklch(0.99 0.005 250);
  --secondary: oklch(0.955 0.014 240);
  --secondary-foreground: oklch(0.3 0.06 256);
  --muted: oklch(0.958 0.008 240);
  --muted-foreground: oklch(0.53 0.03 254);
  --accent: oklch(0.955 0.03 200);
  --accent-foreground: oklch(0.3 0.06 240);
  --teal: oklch(0.66 0.105 195);
  --teal-foreground: oklch(0.21 0.05 240);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.984 0.003 247.858);
  --border: oklch(0.912 0.012 245);
  --input: oklch(0.912 0.012 245);
  --ring: oklch(0.66 0.105 195);

  --gradient-cta: linear-gradient(100deg,
      oklch(0.45 0.135 251) 0%,
      oklch(0.52 0.12 225) 55%,
      oklch(0.62 0.105 196) 100%);
  --gradient-deep: linear-gradient(160deg,
      oklch(0.28 0.075 258) 0%,
      oklch(0.35 0.09 245) 60%,
      oklch(0.4 0.09 220) 100%);
  --gradient-soft: radial-gradient(120% 90% at 85% 0%,
      color-mix(in oklab, var(--teal) 22%, transparent) 0%,
      transparent 60%);
  --shadow-card: 0 1px 2px oklch(0.235 0.055 258 / 0.04), 0 12px 32px -16px oklch(0.235 0.055 258 / 0.16);
  --shadow-lift: 0 24px 60px -28px oklch(0.235 0.055 258 / 0.32);
  --shadow-cta: 0 14px 34px -12px color-mix(in oklab, var(--primary) 55%, transparent);

  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  border-color: var(--border);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

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

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

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

/* ==========================================================================
   Base Utilities (Mobile First - 0px and above)
   ========================================================================== */

.min-h-screen {
  min-height: 100vh;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

.isolate {
  isolation: isolate;
}

.cursor-pointer {
  cursor: pointer;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.inset-0 {
  inset: 0;
}

.-inset-2\.5 {
  inset: -0.625rem;
}

.-inset-3 {
  inset: -0.75rem;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.z-10 {
  z-index: 10;
}

.-z-10 {
  z-index: -10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

/* Flex & Grid */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.min-w-0 {
  min-width: 0;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.place-items-center {
  place-items: center;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

/* Sizing */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-9 {
  height: 2.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.h-12 {
  height: 3rem;
}

.h-13 {
  height: 3.25rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.size-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.size-14 {
  width: 3.5rem;
  height: 3.5rem;
}

.size-16 {
  width: 4rem;
  height: 4rem;
}

.size-20 {
  width: 5rem;
  height: 5rem;
}

.size-24 {
  width: 6rem;
  height: 6rem;
}

.size-full {
  width: 100%;
  height: 100%;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.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-6xl {
  max-width: 72rem;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

.object-cover {
  object-fit: cover;
}

/* Spacing */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.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;
}

.p-3 {
  padding: 0.75rem;
}

.p-3\.5 {
  padding: 0.875rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-14 {
  padding: 3.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.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-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.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-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.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-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.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;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-28 {
  padding-bottom: 7rem;
}

.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-2\.5 {
  margin-top: 0.625rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.bottom-3\.5 {
  bottom: 0.875rem;
}

.bottom-4 {
  bottom: 1rem;
}

.bottom-5 {
  bottom: 1.25rem;
}

.left-1\/2 {
  left: 50%;
}

.left-3 {
  left: 0.75rem;
}

.-right-3 {
  right: -0.75rem;
}

.top-1\/2 {
  top: 50%;
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.ml-0\.5 {
  margin-left: 0.125rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

/* Colors & Backgrounds */
.bg-background {
  background-color: var(--background);
}

.bg-surface {
  background-color: var(--surface);
}

.bg-ink\/45,
.bg-ink-45 {
  background-color: oklch(0.235 0.055 258 / 0.45);
}

.bg-ink\/60,
.bg-ink-60 {
  background-color: oklch(0.235 0.055 258 / 0.6);
}

.bg-ink\/5,
.bg-ink-5 {
  background-color: oklch(0.235 0.055 258 / 0.05);
}

.bg-accent {
  background-color: var(--accent);
}

.bg-accent\/60,
.bg-accent-60 {
  background-color: oklch(0.955 0.03 200 / 0.6);
}

.bg-accent\/70,
.bg-accent-70 {
  background-color: oklch(0.955 0.03 200 / 0.7);
}

.bg-surface\/90,
.bg-surface-90 {
  background-color: oklch(1 0 0 / 0.9);
}

.bg-surface\/95,
.bg-surface-95 {
  background-color: oklch(1 0 0 / 0.95);
}

.bg-background\/85,
.bg-background-85 {
  background-color: oklch(0.986 0.005 106 / 0.85);
}

.bg-background\/95,
.bg-background-95 {
  background-color: oklch(0.986 0.005 106 / 0.95);
}

.bg-teal {
  background-color: var(--teal);
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-teal {
  color: var(--teal);
}

.text-teal-foreground {
  color: var(--teal-foreground);
}

.text-foreground {
  color: var(--foreground);
}

.border-border {
  border-color: var(--border);
}

.border-border\/70,
.border-border-70 {
  border-color: oklch(0.912 0.012 245 / 0.7);
}

.border-primary\/25,
.border-primary-25 {
  border-color: oklch(0.45 0.135 251 / 0.25);
}

.border-t {
  border-top: 1px solid var(--border);
}

.border-b {
  border-bottom: 1px solid var(--border);
}

.border-y {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.border-y-\[10px\] {
  border-top-width: 10px;
  border-bottom-width: 10px;
}

.border-l-\[16px\] {
  border-left-width: 16px;
}

.border-y-\[13px\] {
  border-top-width: 13px;
  border-bottom-width: 13px;
}

.border-l-\[21px\] {
  border-left-width: 21px;
}

.border-y-transparent {
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.border-l-primary {
  border-left-color: var(--primary);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-2xl {
  border-radius: var(--radius-2xl);
}

.rounded-3xl {
  border-radius: var(--radius-3xl);
}

.rounded-\[1\.75rem\] {
  border-radius: 1.75rem;
}

.rounded-\[2rem\] {
  border-radius: 2rem;
}

.rounded-\[2\.5rem\] {
  border-radius: 2.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Typography */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-\[11px\] {
  font-size: 0.6875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-\[2\.15rem\] {
  font-size: clamp(1.75rem, 5.5vw, 2.15rem);
}

.text-\[2\.75rem\] {
  font-size: clamp(1.85rem, 5.5vw, 2.75rem);
}

.text-\[2\.9rem\] {
  font-size: clamp(1.9rem, 6vw, 2.9rem);
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.font-display {
  font-family: var(--font-display);
}

.font-sans {
  font-family: var(--font-sans);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-\[0\.06em\] {
  letter-spacing: 0.06em;
}

.tracking-\[0\.14em\] {
  letter-spacing: 0.14em;
}

.tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}

.leading-\[1\.05\] {
  line-height: 1.05;
}

.leading-\[1\.08\] {
  line-height: 1.08;
}

.leading-\[1\.1\] {
  line-height: 1.1;
}

.leading-snug {
  line-height: 1.375;
}

.leading-relaxed {
  line-height: 1.625;
}

.line-through {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Shadows */
.shadow-\[var\(--shadow-card\)\] {
  box-shadow: var(--shadow-card);
}

.shadow-\[var\(--shadow-lift\)\] {
  box-shadow: var(--shadow-lift);
}

.shadow-\[var\(--shadow-cta\)\] {
  box-shadow: var(--shadow-cta);
}

/* Transitions & Animations */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
  transition-property: transform;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.hover\:bg-primary:hover {
  background-color: var(--primary);
}

.hover\:text-primary-foreground:hover {
  color: var(--primary-foreground);
}

.hover\:-translate-y-0\.5:hover {
  transform: translateY(-0.125rem);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:shadow-\[var\(--shadow-card\)\]:hover {
  box-shadow: var(--shadow-card);
}

.hover\:no-underline:hover {
  text-decoration: none;
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

/* Custom Components */
.surface-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.cta-button {
  background-image: var(--gradient-cta);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-cta);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.deep-gradient {
  background-image: var(--gradient-deep);
}

.soft-glow {
  background-image: var(--gradient-soft);
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--primary) 85%, var(--foreground));
}

.check-icon {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 900;
  color: var(--primary);
}

.check-icon::before {
  content: "✓";
}

.stars {
  display: flex;
  gap: 0.125rem;
  color: var(--teal);
}

.stars::before {
  content: "★★★★★";
}

.play-ring {
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.reveal {
  animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.opacity-0 {
  opacity: 0;
}

/* Accordion styles */
.accordion-icon {
  transition: transform 0.2s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  display: block;
}

/* VSL Player */
.vsl-play-btn:hover span:first-child {
  transform: scale(1.05);
}

.vsl-content {
  display: none;
}

.vsl-player.playing .vsl-content {
  display: grid;
}

.vsl-player.playing .vsl-play-btn {
  display: none;
}

/* Responsive Header defaults */
#header-logo {
  height: 44px;
  width: auto;
  max-height: 44px;
}

/* ==========================================================================
   Small Breakpoint (sm: min-width: 640px)
   ========================================================================== */
@media (min-width: 640px) {
  #header-logo {
    height: 56px;
    max-height: 56px;
  }

  .surface-card {
    border-radius: var(--radius-3xl);
  }

  .sm\:inline {
    display: inline !important;
  }

  .sm\:hidden {
    display: none !important;
  }

  .sm\:inline-flex {
    display: inline-flex !important;
  }

  .sm\:flex {
    display: flex !important;
  }

  .sm\:block {
    display: block !important;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:h-11 {
    height: 2.75rem;
  }

  .sm\:h-14 {
    height: 3.5rem;
  }

  .sm\:h-24 {
    height: 6rem;
  }

  .sm\:size-20 {
    width: 5rem;
    height: 5rem;
  }

  .sm\:size-24 {
    width: 6rem;
    height: 6rem;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:gap-2 {
    gap: 0.5rem;
  }

  .sm\:gap-3 {
    gap: 0.75rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:gap-10 {
    gap: 2.5rem;
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:p-5 {
    padding: 1.25rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:p-7 {
    padding: 1.75rem;
  }

  .sm\:p-8 {
    padding: 2rem;
  }

  .sm\:p-10 {
    padding: 2.5rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .sm\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .sm\:pt-16 {
    padding-top: 4rem;
  }

  .sm\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .sm\:pb-20 {
    padding-bottom: 5rem;
  }

  .sm\:pb-24 {
    padding-bottom: 6rem;
  }

  .sm\:mt-2 {
    margin-top: 0.5rem;
  }

  .sm\:mt-3 {
    margin-top: 0.75rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:mt-5 {
    margin-top: 1.25rem;
  }

  .sm\:mt-7 {
    margin-top: 1.75rem;
  }

  .sm\:mt-8 {
    margin-top: 2rem;
  }

  .sm\:mt-9 {
    margin-top: 2.25rem;
  }

  .sm\:mt-10 {
    margin-top: 2.5rem;
  }

  .sm\:mt-12 {
    margin-top: 3rem;
  }

  .sm\:bottom-5 {
    bottom: 1.25rem;
  }

  .sm\:-inset-3 {
    inset: -0.75rem;
  }

  .sm\:rounded-xl {
    border-radius: var(--radius-xl);
  }

  .sm\:rounded-2xl {
    border-radius: var(--radius-2xl);
  }

  .sm\:rounded-\[2rem\] {
    border-radius: 2rem;
  }

  .sm\:rounded-\[2\.5rem\] {
    border-radius: 2.5rem;
  }

  .sm\:text-xs {
    font-size: 0.75rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
  }

  .sm\:text-base {
    font-size: 1rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
  }

  .sm\:text-2xl {
    font-size: 1.5rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
  }

  .sm\:text-5xl {
    font-size: 3rem;
  }

  .sm\:text-6xl {
    font-size: 3.75rem;
  }

  .sm\:border-y-\[13px\] {
    border-top-width: 13px;
    border-bottom-width: 13px;
  }

  .sm\:border-l-\[21px\] {
    border-left-width: 21px;
  }

  .sm\:no-underline {
    text-decoration: none;
  }
}

/* ==========================================================================
   Medium Breakpoint (md: min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
  #header-logo {
    height: 60px;
    max-height: 60px;
  }

  .md\:inline-flex {
    display: inline-flex !important;
  }

  .md\:flex {
    display: flex;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:gap-3 {
    gap: 0.75rem;
  }

  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none !important;
  }

  .md\:max-w-none {
    max-width: none;
  }

  .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\:grid-cols-\[0\.85fr_1fr\] {
    grid-template-columns: 0.85fr 1fr;
  }

  .md\:grid-cols-\[1fr_0\.9fr\] {
    grid-template-columns: 1fr 0.9fr;
  }

  .md\:p-14 {
    padding: 3.5rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .md\:pb-24 {
    padding-bottom: 6rem;
  }

  .md\:text-base {
    font-size: 1rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
  }

  .md\:text-\[2\.75rem\] {
    font-size: 2.75rem;
  }

  .md\:text-\[2\.9rem\] {
    font-size: 2.9rem;
  }
}

/* ==========================================================================
   Large Breakpoint (lg: min-width: 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .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\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* ==========================================================================
   Mobile-Specific Enhancements (<768px)
   ========================================================================== */
@media (max-width: 767px) {
  .fixed.bottom-0 {
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0.75rem));
  }

  /* Touch target safety */
  .cta-button {
    min-height: 48px;
  }

  /* Prevent any unintentional overflow on very small devices */
  section {
    max-width: 100vw;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}