:root {
  --font-sans: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Sora', 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --color-primary: #1b8e4c;
  --color-primary-light: #31a964;
  --color-primary-dark: #2f7549;
  --color-secondary: #1d6e92;
  --color-secondary-dark: #1a2f59;
  --color-accent: #1d6e92;
  --color-teal: #1d6e92;
  --color-surface: #f4f8f4;
  --color-surface-elevated: #fbfefc;
  --color-ink: #102033;
  --color-ink-mid: #3f5265;
  --color-ink-light: #697a8a;
  --color-ink-soft: #a8b5bf;
  --color-line: #d7e3dd;
  --shadow-soft: 0 24px 60px rgba(26, 47, 89, 0.08);
  --shadow-medium: 0 34px 90px rgba(26, 47, 89, 0.14);
  --site-header-height: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 14%, #f7fbff 100%);
  overflow-x: hidden;
  padding-top: var(--site-header-height);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[style*="font-family:'Inter'"],
[style*="font-family:'DM Sans'"],
[style*="font-family:DM Sans"] {
  font-family: var(--font-sans) !important;
}

[class~="antialiased"] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class~="absolute"] { position: absolute; }
[class~="relative"] { position: relative; }
[class~="fixed"] { position: fixed; }
[class~="sticky"] { position: sticky; }
[class~="left-1/2"] { left: 50%; }
[class~="top-0"] { top: 0; }
[class~="top-3"] { top: 0.75rem; }
[class~="top-5"] { top: 1.25rem; }
[class~="top-[27px]"] { top: 27px; }
[class~="bottom-6"] { bottom: 1.5rem; }
[class~="right-3"] { right: 0.75rem; }
[class~="right-5"] { right: 1.25rem; }
[class~="right-[14%]"] { right: 14%; }
[class~="-right-2"] { right: -0.5rem; }
[class~="left-3"] { left: 0.75rem; }
[class~="left-[14%]"] { left: 14%; }
[class~="-top-2"] { top: -0.5rem; }
[class~="bottom-3"] { bottom: 0.75rem; }
[class~="z-10"] { z-index: 10; }
[class~="z-50"] { z-index: 50; }
[class~="block"] { display: block; }
[class~="hidden"] { display: none !important; }
[class~="flex"] { display: flex; }
[class~="grid"] { display: grid; }
[class~="inline-flex"] { display: inline-flex; }
[class~="flex-1"] { flex: 1 1 0%; }
[class~="flex-col"] { flex-direction: column; }
[class~="flex-wrap"] { flex-wrap: wrap; }
[class~="flex-shrink-0"] { flex-shrink: 0; }
[class~="items-center"] { align-items: center; }
[class~="items-start"] { align-items: flex-start; }
[class~="justify-between"] { justify-content: space-between; }
[class~="justify-center"] { justify-content: center; }
[class~="grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
[class~="grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
[class~="gap-0"] { gap: 0; }
[class~="gap-1"] { gap: 0.25rem; }
[class~="gap-1.5"] { gap: 0.375rem; }
[class~="gap-2"] { gap: 0.5rem; }
[class~="gap-2.5"] { gap: 0.625rem; }
[class~="gap-3"] { gap: 0.75rem; }
[class~="gap-4"] { gap: 1rem; }
[class~="gap-5"] { gap: 1.25rem; }
[class~="gap-6"] { gap: 1.5rem; }
[class~="gap-8"] { gap: 2rem; }
[class~="gap-10"] { gap: 2.5rem; }
[class~="gap-14"] { gap: 3.5rem; }
[class~="w-2"] { width: 0.5rem; }
[class~="w-4"] { width: 1rem; }
[class~="w-5"] { width: 1.25rem; }
[class~="w-6"] { width: 1.5rem; }
[class~="w-9"] { width: 2.25rem; }
[class~="w-10"] { width: 2.5rem; }
[class~="w-11"] { width: 2.75rem; }
[class~="w-14"] { width: 3.5rem; }
[class~="w-20"] { width: 5rem; }
[class~="w-auto"] { width: auto; }
[class~="w-fit"] { width: fit-content; }
[class~="w-full"] { width: 100%; }
[class~="h-2"] { height: 0.5rem; }
[class~="h-5"] { height: 1.25rem; }
[class~="h-6"] { height: 1.5rem; }
[class~="h-9"] { height: 2.25rem; }
[class~="h-10"] { height: 2.5rem; }
[class~="h-11"] { height: 2.75rem; }
[class~="h-14"] { height: 3.5rem; }
[class~="h-20"] { height: 5rem; }
[class~="h-[68px]"] { height: 68px; }
[class~="h-full"] { height: 100%; }
[class~="h-px"] { height: 1px; }
[class~="min-w-0"] { min-width: 0; }
[class~="min-w-[24px]"] { min-width: 24px; }
[class~="max-w-xs"] { max-width: 20rem; }
[class~="max-w-sm"] { max-width: 24rem; }
[class~="max-w-lg"] { max-width: 32rem; }
[class~="max-w-2xl"] { max-width: 42rem; }
[class~="max-w-7xl"] { max-width: 80rem; }
[class~="mx-auto"] { margin-left: auto; margin-right: auto; }
[class~="ml-0.5"] { margin-left: 0.125rem; }
[class~="ml-1.5"] { margin-left: 0.375rem; }
[class~="ml-12"] { margin-left: 3rem; }
[class~="ml-auto"] { margin-left: auto; }
[class~="mr-1"] { margin-right: 0.25rem; }
[class~="mr-1.5"] { margin-right: 0.375rem; }
[class~="mr-2"] { margin-right: 0.5rem; }
[class~="mb-1"] { margin-bottom: 0.25rem; }
[class~="mb-2"] { margin-bottom: 0.5rem; }
[class~="mb-2.5"] { margin-bottom: 0.625rem; }
[class~="mb-3"] { margin-bottom: 0.75rem; }
[class~="mb-4"] { margin-bottom: 1rem; }
[class~="mb-5"] { margin-bottom: 1.25rem; }
[class~="mb-6"] { margin-bottom: 1.5rem; }
[class~="mb-8"] { margin-bottom: 2rem; }
[class~="mb-12"] { margin-bottom: 3rem; }
[class~="mb-14"] { margin-bottom: 3.5rem; }
[class~="mb-16"] { margin-bottom: 4rem; }
[class~="mt-0.5"] { margin-top: 0.125rem; }
[class~="mt-1"] { margin-top: 0.25rem; }
[class~="mt-3"] { margin-top: 0.75rem; }
[class~="mt-4"] { margin-top: 1rem; }
[class~="mt-5"] { margin-top: 1.25rem; }
[class~="mt-6"] { margin-top: 1.5rem; }
[class~="mt-12"] { margin-top: 3rem; }
[class~="mt-14"] { margin-top: 3.5rem; }
[class~="p-1"] { padding: 0.25rem; }
[class~="p-3"] { padding: 0.75rem; }
[class~="p-4"] { padding: 1rem; }
[class~="p-5"] { padding: 1.25rem; }
[class~="p-6"] { padding: 1.5rem; }
[class~="p-7"] { padding: 1.75rem; }
[class~="p-8"] { padding: 2rem; }
[class~="p-10"] { padding: 2.5rem; }
[class~="px-2"] { padding-left: 0.5rem; padding-right: 0.5rem; }
[class~="px-2.5"] { padding-left: 0.625rem; padding-right: 0.625rem; }
[class~="px-3"] { padding-left: 0.75rem; padding-right: 0.75rem; }
[class~="px-4"] { padding-left: 1rem; padding-right: 1rem; }
[class~="px-5"] { padding-left: 1.25rem; padding-right: 1.25rem; }
[class~="px-7"] { padding-left: 1.75rem; padding-right: 1.75rem; }
[class~="px-8"] { padding-left: 2rem; padding-right: 2rem; }
[class~="py-0.5"] { padding-top: 0.125rem; padding-bottom: 0.125rem; }
[class~="py-1"] { padding-top: 0.25rem; padding-bottom: 0.25rem; }
[class~="py-1.5"] { padding-top: 0.375rem; padding-bottom: 0.375rem; }
[class~="py-2"] { padding-top: 0.5rem; padding-bottom: 0.5rem; }
[class~="py-2.5"] { padding-top: 0.625rem; padding-bottom: 0.625rem; }
[class~="py-3"] { padding-top: 0.75rem; padding-bottom: 0.75rem; }
[class~="py-3.5"] { padding-top: 0.875rem; padding-bottom: 0.875rem; }
[class~="py-16"] { padding-top: 4rem; padding-bottom: 4rem; }
[class~="py-20"] { padding-top: 5rem; padding-bottom: 5rem; }
[class~="pt-5"] { padding-top: 1.25rem; }
[class~="pt-6"] { padding-top: 1.5rem; }
[class~="pt-16"] { padding-top: 4rem; }
[class~="pb-5"] { padding-bottom: 1.25rem; }
[class~="pb-6"] { padding-bottom: 1.5rem; }
[class~="space-y-2"] > * + * { margin-top: 0.5rem; }
[class~="space-y-2.5"] > * + * { margin-top: 0.625rem; }
[class~="space-y-3"] > * + * { margin-top: 0.75rem; }
[class~="space-y-3.5"] > * + * { margin-top: 0.875rem; }
[class~="overflow-hidden"] { overflow: hidden; }
[class~="overflow-y-auto"] { overflow-y: auto; }
[class~="rounded-lg"] { border-radius: 0.5rem; }
[class~="rounded-xl"] { border-radius: 0.75rem; }
[class~="rounded-full"] { border-radius: 9999px; }
[class~="rounded-[12px]"] { border-radius: 12px; }
[class~="rounded-[13px]"] { border-radius: 13px; }
[class~="rounded-[14px]"] { border-radius: 14px; }
[class~="rounded-[16px]"] { border-radius: 16px; }
[class~="rounded-[20px]"] { border-radius: 20px; }
[class~="rounded-[24px]"] { border-radius: 24px; }
[class~="rounded-[28px]"] { border-radius: 28px; }
[class~="!rounded-[9px]"] { border-radius: 9px !important; }
[class~="!rounded-[10px]"] { border-radius: 10px !important; }
[class~="border"] { border: 1px solid transparent; }
[class~="border-2"] { border: 2px solid transparent; }
[class~="border-b"] { border-bottom: 1px solid transparent; }
[class~="border-t"] { border-top: 1px solid transparent; }
[class~="border-white"] { border-color: rgba(255, 255, 255, 1); }
[class~="border-gray-100"] { border-color: #f3f4f6; }
[class~="border-gray-200"] { border-color: #e5e7eb; }
[class~="border-gray-800"] { border-color: #1f2937; }
[class~="border-blue-50"] { border-color: #eff6ff; }
[class~="border-blue-100"] { border-color: #dbeafe; }
[class~="border-green-50"] { border-color: #dcfce7; }
[class~="border-green-100"] { border-color: #bbf7d0; }
[class~="border-green-200"] { border-color: #86efac; }
[class~="border-green-400"] { border-color: #4ade80; }
[class~="border-indigo-50"] { border-color: #eef2ff; }
[class~="border-indigo-100"] { border-color: #e0e7ff; }
[class~="border-indigo-200"] { border-color: #c7d2fe; }
[class~="border-orange-100"] { border-color: #ffedd5; }
[class~="border-pink-50"] { border-color: #fdf2f8; }
[class~="border-purple-100"] { border-color: #f3e8ff; }
[class~="border-red-100"] { border-color: #fee2e2; }
[class~="border-red-200"] { border-color: #fecaca; }
[class~="border-amber-50"] { border-color: #fffbeb; }
[class~="border-cyan-50"] { border-color: #ecfeff; }
[class~="border-emerald-50"] { border-color: #ecfdf5; }
[class~="border-fuchsia-50"] { border-color: #fdf4ff; }
[class~="border-rose-50"] { border-color: #fff1f2; }
[class~="border-teal-50"] { border-color: #ccfbf1; }
[class~="border-teal-100"] { border-color: #99f6e4; }
[class~="border-violet-50"] { border-color: #f5f3ff; }
[class~="border-yellow-50"] { border-color: #fefce8; }
[class~="border-opacity-15"][class~="border-white"] { border-color: rgba(255, 255, 255, 0.15); }
[class~="border-opacity-20"][class~="border-white"] { border-color: rgba(255, 255, 255, 0.2); }
[class~="border-opacity-30"][class~="border-green-400"] { border-color: rgba(74, 222, 128, 0.3); }
[class~="bg-transparent"] { background-color: transparent; }
[class~="bg-white"] { background-color: #fff; }
[class~="bg-ink"] { background-color: var(--color-ink); }
[class~="bg-primary"] { background-color: var(--color-primary); }
[class~="bg-gray-50"] { background-color: #f9fafb; }
[class~="bg-gray-100"] { background-color: #f3f4f6; }
[class~="bg-blue-50"] { background-color: #eff6ff; }
[class~="bg-green-50"] { background-color: #f0fdf4; }
[class~="bg-green-100"] { background-color: #dcfce7; }
[class~="bg-green-400"] { background-color: #4ade80; }
[class~="bg-green-500"] { background-color: #22c55e; }
[class~="bg-indigo-50"] { background-color: #eef2ff; }
[class~="bg-indigo-100"] { background-color: #e0e7ff; }
[class~="bg-orange-50"] { background-color: #fff7ed; }
[class~="bg-pink-50"] { background-color: #fdf2f8; }
[class~="bg-purple-50"] { background-color: #faf5ff; }
[class~="bg-red-50"] { background-color: #fef2f2; }
[class~="bg-teal-50"] { background-color: #f0fdfa; }
[class~="bg-amber-50"] { background-color: #fffbeb; }
[class~="bg-yellow-50"] { background-color: #fefce8; }
[class~="bg-primary"][class~="bg-opacity-20"] { background-color: rgba(0, 110, 191, 0.2); }
[class~="bg-white"][class~="bg-opacity-10"] { background-color: rgba(255, 255, 255, 0.1); }
[class~="bg-white"][class~="bg-opacity-15"] { background-color: rgba(255, 255, 255, 0.15); }
[class~="bg-white"][class~="bg-opacity-20"] { background-color: rgba(255, 255, 255, 0.2); }
[class~="bg-green-500"][class~="bg-opacity-85"] { background-color: rgba(34, 197, 94, 0.85); }
[class~="text-center"] { text-align: center; }
[class~="text-xs"] { font-size: 0.75rem; line-height: 1rem; }
[class~="text-[11px]"] { font-size: 11px; line-height: 1rem; }
[class~="text-sm"] { font-size: 0.875rem; line-height: 1.35rem; }
[class~="text-base"] { font-size: 1rem; line-height: 1.6rem; }
[class~="text-lg"] { font-size: 1.125rem; line-height: 1.75rem; }
[class~="text-xl"] { font-size: 1.25rem; line-height: 1.8rem; }
[class~="text-2xl"] { font-size: 1.5rem; line-height: 2rem; }
[class~="text-3xl"] { font-size: 1.875rem; line-height: 2.25rem; }
[class~="text-4xl"] { font-size: 2.25rem; line-height: 2.6rem; }
[class~="font-400"] { font-weight: 400; }
[class~="font-500"] { font-weight: 500; }
[class~="font-600"] { font-weight: 600; }
[class~="font-700"] { font-weight: 700; }
[class~="font-800"] { font-weight: 800; }
[class~="font-900"] { font-weight: 900; }
[class~="font-black"] { font-weight: 900; }
[class~="font-extrabold"] { font-weight: 800; }
[class~="leading-[1.1]"] { line-height: 1.1; }
[class~="leading-tight"] { line-height: 1.25; }
[class~="leading-snug"] { line-height: 1.375; }
[class~="leading-relaxed"] { line-height: 1.7; }
[class~="tracking-wider"] { letter-spacing: 0.06em; }
[class~="tracking-widest"] { letter-spacing: 0.22em; }
[class~="uppercase"] { text-transform: uppercase; }
[class~="line-through"] { text-decoration: line-through; }
[class~="truncate"] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
[class~="text-white"] { color: #fff; }
[class~="text-primary"] { color: var(--color-primary); }
[class~="text-accent"] { color: var(--color-accent); }
[class~="text-ink"] { color: var(--color-ink); }
[class~="text-ink-mid"] { color: var(--color-ink-mid); }
[class~="text-ink-light"] { color: var(--color-ink-light); }
[class~="text-blue-100"] { color: #dbeafe; }
[class~="text-blue-200"] { color: #bfdbfe; }
[class~="text-blue-500"] { color: #3b82f6; }
[class~="text-green-300"] { color: #86efac; }
[class~="text-green-400"] { color: #4ade80; }
[class~="text-green-500"] { color: #22c55e; }
[class~="text-green-600"] { color: #16a34a; }
[class~="text-amber-500"] { color: #f59e0b; }
[class~="text-orange-500"] { color: #f97316; }
[class~="text-pink-400"] { color: #f472b6; }
[class~="text-pink-500"] { color: #ec4899; }
[class~="text-pink-600"] { color: #db2777; }
[class~="text-purple-600"] { color: #9333ea; }
[class~="text-red-600"] { color: #dc2626; }
[class~="text-indigo-500"] { color: #6366f1; }
[class~="text-indigo-600"] { color: #4f46e5; }
[class~="text-cyan-500"] { color: #06b6d4; }
[class~="text-fuchsia-500"] { color: #d946ef; }
[class~="text-violet-400"] { color: #a78bfa; }
[class~="text-emerald-500"] { color: #10b981; }
[class~="text-rose-400"] { color: #fb7185; }
[class~="text-yellow-300"] { color: #fde047; }
[class~="text-yellow-400"] { color: #facc15; }
[class~="text-yellow-500"] { color: #eab308; }
[class~="text-yellow-700"] { color: #a16207; }
[class~="text-teal"] { color: var(--color-teal); }
[class~="text-gray-400"] { color: #9ca3af; }
[class~="text-gray-500"] { color: #6b7280; }
[class~="opacity-50"] { opacity: 0.5; }
[class~="opacity-70"] { opacity: 0.7; }
[class~="opacity-80"] { opacity: 0.8; }
[class~="shadow-sm"] { box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08); }
[class~="shadow-md"] { box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1); }
[class~="shadow-lg"] { box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14); }
[class~="shadow-xl"] { box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16); }
[class~="shadow-2xl"] { box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18); }
[class~="outline-none"] { outline: none; }
[class~="cursor-pointer"] { cursor: pointer; }
[class~="transition-all"] { transition: all 0.25s ease; }
[class~="transition-colors"] { transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease; }
[class~="backdrop-blur-md"] { -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
[class~="backdrop-blur-sm"] { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
[class~="hover:bg-primary"]:hover { background-color: var(--color-primary); }
[class~="hover:bg-blue-50"]:hover { background-color: #eff6ff; }
[class~="hover:bg-gray-200"]:hover { background-color: #e5e7eb; }
[class~="hover:bg-red-50"]:hover { background-color: #fef2f2; }
[class~="hover:bg-white"]:hover { background-color: #fff; }
[class~="hover:text-primary"]:hover { color: var(--color-primary); }
[class~="hover:text-white"]:hover { color: #fff; }
[class~="hover:text-accent"]:hover { color: var(--color-accent); }
[class~="hover:border-primary"]:hover { border-color: var(--color-primary); }
[class~="hover:bg-opacity-18"][class~="bg-white"]:hover { background-color: rgba(255, 255, 255, 0.18); }
[class~="hover:bg-opacity-20"][class~="bg-white"]:hover { background-color: rgba(255, 255, 255, 0.2); }
[class~="hover:bg-opacity-100"][class~="bg-green-500"]:hover { background-color: rgba(34, 197, 94, 1); }
[class~="focus:border-primary"]:focus { border-color: var(--color-primary); }
[class~="focus:bg-white"]:focus { background-color: #fff; }
[class~="focus-within:border-primary"]:focus-within { border-color: var(--color-primary); }

@media (min-width: 640px) {
  [class~="sm:block"] { display: block !important; }
  [class~="sm:flex"] { display: flex !important; }
  [class~="sm:inline-flex"] { display: inline-flex !important; }
  [class~="sm:flex-row"] { flex-direction: row !important; }
  [class~="sm:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  [class~="sm:px-6"] { padding-left: 1.5rem; padding-right: 1.5rem; }
  [class~="sm:text-5xl"] { font-size: 3rem; line-height: 1; }
}

@media (min-width: 768px) {
  [class~="md:block"] { display: block !important; }
  [class~="md:flex"] { display: flex !important; }
  [class~="md:flex-row"] { flex-direction: row !important; }
  [class~="md:items-end"] { align-items: flex-end !important; }
  [class~="md:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  [class~="md:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  [class~="md:grid-cols-4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  [class~="lg:hidden"] { display: none !important; }
  [class~="lg:flex"] { display: flex !important; }
  [class~="lg:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  [class~="lg:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  [class~="lg:grid-cols-4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  [class~="lg:grid-cols-5"] { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  [class~="lg:col-span-2"] { grid-column: span 2 / span 2; }
  [class~="lg:px-8"] { padding-left: 2rem; padding-right: 2rem; }
  [class~="lg:py-28"] { padding-top: 7rem; padding-bottom: 7rem; }
  [class~="lg:p-14"] { padding: 3.5rem; }
  [class~="lg:text-4xl"] { font-size: 2.25rem; line-height: 2.6rem; }
  [class~="lg:text-[3.5rem]"] { font-size: 3.5rem; line-height: 1.05; }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.72;
    transform: scale(0.96);
  }
}

[class~="animate-pulse"] { animation: pulse 1.8s ease-in-out infinite; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f4f8fc; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #006ebf, #00b4d8); border-radius: 10px; }

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #006ebf;
}

.gradient-text {
  background: linear-gradient(135deg, #006ebf 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg { background: linear-gradient(135deg, #006ebf 0%, #00508a 100%); }
.gradient-bg-teal { background: linear-gradient(135deg, #006ebf 0%, #00a896 100%); }
.gradient-bg-accent { background: linear-gradient(135deg, #0084e2 0%, #00b4d8 100%); }

#topbar {
  background: linear-gradient(90deg, #002d52 0%, #003a66 60%, #004d85 100%);
  max-height: 120px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.32s ease, padding-top 0.32s ease, padding-bottom 0.32s ease;
}
#topbar a { transition: color 0.2s; }
#topbar a:hover { color: #7fd4f8; }
.topbar-dot { width: 4px; height: 4px; border-radius: 50%; background: #00b4d8; opacity: 0.6; }

#navbar {
  transition: box-shadow 0.35s, background 0.35s, border-color 0.35s;
  border-bottom: 1px solid rgba(0, 110, 191, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

#navbar.scrolled {
  box-shadow: 0 16px 48px rgba(0, 110, 191, 0.12);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(0, 110, 191, 0.14);
}

#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 700;
}

#siteHeader.header-condensed #topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3b5166;
  transition: color 0.25s;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #006ebf, #00b4d8);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: #006ebf; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 28px 72px rgba(10, 37, 64, 0.16), 0 0 0 1px rgba(0, 110, 191, 0.08);
  min-width: 240px;
  z-index: 100;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.nav-item:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-size: 0.84rem;
  color: #3b5166;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, #e8f6fb, #f0fafd);
  color: #006ebf;
}

.dropdown-menu a .dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #e8f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #0a7fd6 0%, #005cab 100%);
  color: #fff;
  border-radius: 16px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.25s;
  box-shadow: 0 16px 34px rgba(0, 110, 191, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(0, 110, 191, 0.34);
  background: linear-gradient(135deg, #1393f0, #006ebf);
}

.btn-outline {
  border: 1.5px solid rgba(0, 110, 191, 0.18);
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.08);
}

.btn-outline:hover {
  background: #fff;
  color: #006ebf;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(0, 110, 191, 0.14);
  border-color: rgba(0, 110, 191, 0.28);
}

#hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #032747 0%, #075a9a 46%, #0f87c9 78%, #11b7a8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 31, 55, 0.78) 0%, rgba(5, 68, 118, 0.72) 40%, rgba(8, 78, 130, 0.56) 60%, rgba(4, 17, 34, 0.5) 100%),
    linear-gradient(180deg, rgba(9, 18, 34, 0.14), rgba(9, 18, 34, 0.38)),
    url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1600') center center / cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

#hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -18% auto;
  width: 38vw;
  height: 38vw;
  max-width: 520px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(15, 183, 168, 0.28) 0%, rgba(15, 183, 168, 0.08) 48%, transparent 72%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb-1 { width: 650px; height: 650px; background: rgba(0, 180, 216, 0.22); top: -140px; right: -100px; animation: driftOne 18s ease-in-out infinite alternate; }
.hero-orb-2 { width: 450px; height: 450px; background: rgba(0, 84, 226, 0.18); bottom: -120px; left: -80px; animation: driftTwo 22s ease-in-out infinite alternate; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(0, 168, 150, 0.15); top: 50%; left: 30%; transform: translateY(-50%); animation: driftThree 20s ease-in-out infinite alternate; }
.hero-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px); background-size: 38px 38px; pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 40px; padding: 8px 20px; font-size: 0.76rem; font-weight: 600; color: #fff; letter-spacing: 0.05em; }
.hero-shell { width: 100%; display: flex; align-items: center; padding-top: 2.25rem; padding-bottom: 2rem; }
.hero-copy { max-width: 32rem; }
.hero-copy p { text-wrap: balance; }
.hero-actions { align-items: center; }
.hero-actions .btn-primary,
.hero-actions .btn-outline { min-height: 58px; padding-left: 1.55rem; padding-right: 1.55rem; }
.hero-actions .btn-outline { border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.12); color: #fff; box-shadow: 0 18px 42px rgba(4, 24, 46, 0.12); }
.hero-actions .btn-outline:hover { background: #fff; color: #0d1b2a; border-color: transparent; }
.stat-card { background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)); backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 22px; padding: 20px 22px; text-align: center; transition: all 0.3s; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14); }
.stat-card:hover { background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)); transform: translateY(-3px); }

.hero-side-panel { width: min(100%, 34rem); margin-left: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.search-bar { background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); border-radius: 28px; box-shadow: 0 34px 80px rgba(7, 35, 66, 0.2); overflow: hidden; border: 1px solid rgba(213, 228, 240, 0.95); position: relative; }
.search-bar::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 110px; background: linear-gradient(180deg, rgba(234, 244, 252, 0.78), rgba(255, 255, 255, 0)); pointer-events: none; }
.hero-search-shell { padding: 1.1rem; }
.search-card-head { position: relative; z-index: 1; }
.search-card-icon { width: 52px; height: 52px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0969b6, #0e8de8); box-shadow: 0 18px 32px rgba(0, 110, 191, 0.22); flex-shrink: 0; }
.search-card-kicker { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: #6b86a3; font-weight: 700; margin-bottom: 0.15rem; }
.search-card-copy { font-size: 0.8rem; color: #6b7f93; line-height: 1.5; margin-top: 0.28rem; }
.search-mode-switch { background: #eef4f9; border: 1px solid #d7e3ee; border-radius: 18px; padding: 6px; gap: 8px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8); }
.search-tab { font-size: 0.88rem; font-weight: 700; padding: 10px 16px; border-radius: 14px; cursor: pointer; transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1); color: #5a7494; letter-spacing: -0.01em; position: relative; border: 1px solid transparent; background: transparent; min-height: 48px; display: flex; align-items: center; justify-content: center; }
.search-tab:focus { outline: none; }
.search-tab:focus-visible { box-shadow: 0 0 0 3px rgba(0, 110, 191, 0.18); }
.search-tab:not(.active):hover { background: rgba(255, 255, 255, 0.72); color: #0d1b2a; transform: translateY(-1px); }
.search-tab.active { background: #fff; color: #0d1b2a; box-shadow: 0 16px 26px rgba(7, 35, 66, 0.12); border-color: #d7e4ef; }
.search-input { border: none; outline: none; font-size: 0.94rem; color: #0d1b2a; width: 100%; font-family: var(--font-sans); }
.search-input::placeholder { color: #b0c2d1; }
.search-input-row { background: #fff; border: 1px solid #d8e4ee; border-radius: 18px; padding: 8px 8px 8px 18px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92); }
.search-input-row:focus-within { border-color: #90bee7; box-shadow: 0 0 0 4px rgba(0, 110, 191, 0.08); }
.search-input-row .btn-primary { min-width: 108px; min-height: 44px; justify-content: center; }
.search-pill { display: inline-block; background: #f1f7fc; color: #4c6a87; font-size: 0.74rem; font-weight: 700; padding: 7px 13px; border-radius: 999px; cursor: pointer; transition: all 0.2s; border: 1px solid #d7e6f2; }
.search-pill:hover { background: #fff; color: #006ebf; transform: translateY(-1px); border-color: #9fc7ea; box-shadow: 0 10px 22px rgba(0, 110, 191, 0.08); }
.search-trust-grid { border-top: 1px solid #e5eef5; }
.search-trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 10px 6px 0; }
.search-trust-icon { width: 42px; height: 42px; border-radius: 14px; display: flex; align-items: center; justify-content: center; border: 1px solid; box-shadow: 0 12px 24px rgba(10, 37, 64, 0.06); }

.marquee-wrap { overflow: hidden; white-space: nowrap; background: linear-gradient(90deg, #edf6ff 0%, #e8f6fb 50%, #edf6ff 100%); padding: 13px 0; border-top: 1px solid #d0e9f4; border-bottom: 1px solid #d0e9f4; }
.marquee-inner { display: inline-block; animation: marqueeAnim 32s linear infinite; }
@keyframes marqueeAnim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 7px; margin: 0 26px; font-size: 0.79rem; font-weight: 600; color: #006ebf; }
.marquee-sep { color: #00b4d8; opacity: 0.4; font-size: 0.7rem; }

.section-heading { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.025em; line-height: 1.13; }
.feature-card { background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); border-radius: 24px; padding: 32px 28px; border: 1px solid var(--color-line); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #006ebf, #00b4d8); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; border-radius: 22px 22px 0 0; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-7px); box-shadow: 0 28px 54px rgba(0, 110, 191, 0.13); border-color: #c5ddf5; }
.feature-icon { width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }

.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; align-items: stretch; }
@media (min-width: 640px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .pkg-grid { grid-template-columns: repeat(4, 1fr); } }

.pkg-card { background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); border-radius: 24px; border: 1px solid var(--color-line); overflow: hidden; transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s, opacity 0.24s ease; display: flex; flex-direction: column; height: 100%; position: relative; box-shadow: var(--shadow-soft); }
.pkg-card::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px; background: linear-gradient(90deg, #0a7fd6, #6bc7ff); opacity: 0; transform: scaleX(0.4); transform-origin: left; transition: opacity 0.3s, transform 0.3s; }
.pkg-card:hover::before { opacity: 1; transform: scaleX(1); }
.pkg-card:hover { transform: translateY(-7px); box-shadow: 0 30px 60px rgba(0, 110, 191, 0.14); border-color: #a8cdeb; }
.pkg-card-img { flex-shrink: 0; position: relative; height: 164px; display: flex; align-items: center; justify-content: center; overflow: hidden; isolation: isolate; }
.pkg-card-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 0.45s ease; z-index: 0; }
.pkg-card-img-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 22, 36, 0.08), rgba(7, 22, 36, 0.42)); z-index: 1; }
.pkg-card-img-icon { font-size: 3.5rem; opacity: 0.26; transition: transform 0.4s, opacity 0.4s; position: relative; z-index: 2; color: rgba(255, 255, 255, 0.96); text-shadow: 0 10px 24px rgba(8, 20, 34, 0.22); }
.pkg-card:hover .pkg-card-img-icon { transform: scale(1.08) rotate(-4deg); opacity: 0.38; }
.pkg-card:hover .pkg-card-photo { transform: scale(1.08); }
.pkg-card-body { padding: 18px 18px 0 18px; flex: 1; display: flex; flex-direction: column; }
.pkg-card-title { font-family: var(--font-sans); font-weight: 700; font-size: 0.88rem; color: #0d1b2a; line-height: 1.35; margin-bottom: 10px; flex-shrink: 0; }
.pkg-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; flex-shrink: 0; }
.pkg-card-price { flex-shrink: 0; margin-bottom: 0; }
.pkg-card-footer { padding: 14px 18px 18px 18px; flex-shrink: 0; }
.pkg-card-footer .flex { width: 100%; }
.pkg-count-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 14px;
  background: #fff;
  color: #556d82;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(214, 230, 243, 0.95);
  box-shadow: 0 8px 18px rgba(13, 27, 42, 0.08);
}

.badge-off { background: linear-gradient(135deg, #e63946, #c9212e); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; padding: 3px 10px; border-radius: 30px; }
.badge-popular { background: linear-gradient(135deg, #f5a623, #e8930a); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; padding: 3px 9px; border-radius: 30px; }
.test-tag { display: inline-block; background: #eff7ff; color: #006ebf; font-size: 0.7rem; font-weight: 500; padding: 3px 10px; border-radius: 20px; border: 1px solid #d5ebff; }

.add-cart-btn { background: linear-gradient(135deg, #006ebf, #0084e2); color: #fff; border: none; border-radius: 12px; padding: 10px 18px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.25s; width: 100%; font-family: var(--font-sans); display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.add-cart-btn:hover { box-shadow: 0 8px 22px rgba(0, 110, 191, 0.38); transform: translateY(-2px); }
.view-info-btn { background: #fff; color: #006ebf; border: 2px solid #c5ddf5; border-radius: 12px; padding: 9px 18px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.25s; width: 100%; font-family: var(--font-sans); display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.view-info-btn:hover { background: #eff7ff; border-color: #006ebf; }

.test-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 24px;
  border: 1px solid var(--color-line);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.test-card-media {
  position: relative;
  height: 164px;
  overflow: hidden;
}

.test-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 36, 0.05), rgba(7, 22, 36, 0.28));
}

.test-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.test-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #006ebf, #00b4d8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.test-card:hover::after { transform: scaleX(1); }
.test-card:hover { border-color: #a8cdeb; box-shadow: 0 24px 44px rgba(0, 110, 191, 0.11); transform: translateY(-4px); }
.test-card:hover .test-card-media img { transform: scale(1.06); }
.test-card-body { flex: 1; display: flex; flex-direction: column; padding: 22px 22px 0; }
.test-card-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 16px 22px 22px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  justify-content: space-between;
  min-width: 0;
}

.test-icon-wrap { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.test-card-title { font-size: 1.4rem; font-weight: 800; color: #0d1b2a; line-height: 1.2; }
.test-card-copy { font-size: 0.94rem; color: #6b7f93; line-height: 1.7; margin-top: 0.45rem; }
.test-card-price {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 auto;
}

.test-card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.test-price-main { font-size: 2rem; font-weight: 800; color: #006ebf; line-height: 1; letter-spacing: -0.03em; }
.test-price-old { font-size: 0.88rem; color: #90a5b8; text-decoration: line-through; }
.test-price-save { font-size: 0.76rem; color: #16a34a; font-weight: 700; }
.test-card-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex: 0 0 min(236px, 100%);
  min-width: 0;
}
.test-card-actions > .view-info-btn,
.test-card-actions > .add-cart-btn {
  width: auto;
  min-width: 0;
  flex: 1 1 0;
}
.test-card-footer .add-cart-btn {
  width: auto;
  min-height: 48px;
  padding-inline: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-card-footer .view-info-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-grid {
  display: grid;
  gap: 24px;
  position: relative;
}

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

.process-grid::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 92px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 110, 191, 0.12), rgba(0, 180, 216, 0.8), rgba(0, 110, 191, 0.12));
  border-radius: 999px;
  z-index: 0;
}

.process-grid::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 83px;
  height: 20px;
  background: radial-gradient(circle at left center, rgba(0, 132, 226, 0.18), transparent 20%),
    radial-gradient(circle at 33% center, rgba(0, 180, 216, 0.2), transparent 18%),
    radial-gradient(circle at 66% center, rgba(0, 168, 150, 0.18), transparent 18%),
    radial-gradient(circle at right center, rgba(0, 132, 226, 0.18), transparent 20%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.step-num { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, #006ebf, #00b4d8); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; flex-shrink: 0; box-shadow: 0 6px 20px rgba(0, 110, 191, 0.3); }
.step-card { background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); border-radius: 24px; border: 1px solid var(--color-line); padding: 28px 22px; text-align: center; transition: all 0.3s; box-shadow: var(--shadow-soft); position: relative; z-index: 1; }
.step-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0, 110, 191, 0.12); border-color: #c5ddf5; }

.testi-card { background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); border-radius: 24px; border: 1px solid var(--color-line); padding: 28px; transition: all 0.3s; display: flex; flex-direction: column; height: 100%; box-shadow: var(--shadow-soft); }
.testi-card:hover { box-shadow: 0 24px 48px rgba(0, 110, 191, 0.11); transform: translateY(-4px); border-color: #c5ddf5; }
.star { color: #f59e0b; font-size: 0.85rem; }
.testi-quote { color: #c5ddf5; font-size: 2.5rem; line-height: 1; font-family: Georgia, serif; }

.cta-section { background: linear-gradient(140deg, #002544 0%, #005faf 45%, #0096c7 80%, #00a896 100%); position: relative; overflow: hidden; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; pointer-events: none; }
.customize-section { background: linear-gradient(135deg, #e8f5ff 0%, #edf9fc 100%); }
footer { background: linear-gradient(180deg, #0d1b2a 0%, #081422 100%); }
.footer-layout {
  display: grid;
  gap: 2.5rem;
}
.footer-links-group {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .footer-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1.15fr);
    align-items: start;
  }
  .footer-links-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.75rem;
  }
}
.footer-link { font-size: 0.84rem; color: #5a7494; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-link::before { content: '→'; font-size: 0.65rem; opacity: 0; transition: all 0.2s; }
.footer-link:hover { color: #00b4d8; }
.footer-link:hover::before { opacity: 1; }
.social-btn { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #5a7494; transition: all 0.25s; font-size: 0.9rem; }
.social-btn:hover { background: linear-gradient(135deg, #006ebf, #00b4d8); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0, 110, 191, 0.4); }

.cart-drawer { position: fixed; top: 0; right: -430px; width: 430px; height: 100vh; background: #fff; box-shadow: -10px 0 50px rgba(0, 0, 0, 0.18); z-index: 1000; transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.45); z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(3px); }
.cart-overlay.open { opacity: 1; pointer-events: all; }

#mobileOverlay { z-index: 540; background: rgba(8, 20, 34, 0.38); -webkit-backdrop-filter: none; backdrop-filter: none; }

.mobile-menu { position: fixed; inset: 0 0 0 auto; right: -100%; width: min(92vw, 330px); height: 100vh; background: rgba(255, 255, 255, 0.98); z-index: 720; transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1); padding: 0 24px 28px; box-shadow: -18px 0 52px rgba(0, 0, 0, 0.16); overflow-y: auto; border-left: 1px solid rgba(220, 232, 242, 0.85); }
.mobile-menu.open { right: 0; }
.mobile-menu-header { position: sticky; top: 0; z-index: 4; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0 16px; margin-bottom: 18px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 82%, rgba(255, 255, 255, 0) 100%); border-bottom: 1px solid #eef3f8; }
.mobile-menu-close { width: 42px; height: 42px; border-radius: 14px; background: #f3f8fc; border: 1px solid #d9e7f2; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(10, 37, 64, 0.08); transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; position: relative; z-index: 5; flex-shrink: 0; }
.mobile-menu-close:hover { background: #e9f4ff; border-color: #9bcaf0; transform: translateY(-1px); }
.mobile-menu-links { padding-bottom: 12px; }
.mobile-nav-link { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border-radius: 14px; font-weight: 500; font-size: 0.9rem; color: #3b5166; transition: all 0.2s; }
.mobile-nav-link:hover,
.mobile-nav-link.active { background: linear-gradient(90deg, #eff7ff, #e8f6fb); color: #006ebf; }

body.mobile-menu-open #mobileMenuBtn { opacity: 0; pointer-events: none; transform: scale(0.92); }

.pkg-tab { border: 1.5px solid #d8e8f4; border-radius: 12px; padding: 9px 20px; font-size: 0.83rem; font-weight: 600; transition: all 0.25s; color: #6b7f93; cursor: pointer; background: #fff; }
.pkg-tab.active { background: linear-gradient(135deg, #006ebf, #0084e2); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(0, 110, 191, 0.28); }
.pkg-tab:hover:not(.active) { border-color: #91c5f0; color: #006ebf; background: #f4f9ff; }

.float-btn { position: fixed; z-index: 200; border-radius: 50%; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22); transition: all 0.25s; cursor: pointer; }
.float-btn:hover { transform: scale(1.1) translateY(-2px); }

.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in { opacity: 0; }
.slide-left { opacity: 0; transform: translateX(-40px); }
.slide-right { opacity: 0; transform: translateX(40px); }
.scale-in { opacity: 0; transform: scale(0.92); transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), transform 0.62s cubic-bezier(0.22, 1, 0.36, 1); }
.feature-card.reveal-ready { opacity: 0; transform: translateY(36px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s; }
.fade-up.is-visible,
.scale-in.is-visible,
.feature-card.reveal-ready.is-visible { opacity: 1; transform: none; }

.counter-val { font-family: var(--font-sans); }
#scrollTop { opacity: 0; pointer-events: none; }
#scrollTop.show { opacity: 1; pointer-events: all; }
.hero-pill { background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; padding: 7px 16px; font-size: 0.75rem; color: #fff; display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.trust-strip { background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); border-radius: 24px; box-shadow: var(--shadow-soft); border: 1px solid var(--color-line); }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border-right: 1px solid #edf4fb; flex: 1; }
.trust-item:last-child { border-right: none; }
.price-block { display: flex; align-items: baseline; gap: 6px; }
.price-main { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 800; color: #006ebf; }
.price-old { font-size: 0.75rem; color: #b0c2d1; text-decoration: line-through; }
.price-save { font-size: 0.72rem; color: #16a34a; font-weight: 600; }
.logo-mark { background: linear-gradient(135deg, #006ebf, #00b4d8); border-radius: 12px; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; flex-shrink: 0; }
.logo-mark::after { content: ''; position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; background: rgba(255, 255, 255, 0.18); border-radius: 50%; }
.brand-link {
  min-width: 0;
}

.brand-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.brand-logo-header {
  width: 190px;
  max-width: none;
  max-height: 72px;
  object-fit: contain;
}

.brand-logo-mobile {
  width: 170px;
  max-width: none;
  max-height: 68px;
  object-fit: contain;
}

.footer-brand-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 45px rgba(4, 24, 42, 0.22);
}

.brand-logo-footer {
  width: 100px;
}
.bg-soft { background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%); }
.bg-soft-rev { background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%); }
.stat-pill { background: linear-gradient(135deg, #eff7ff, #e0f5ff); border: 1px solid #d0e9f9; border-radius: 16px; padding: 20px; text-align: center; }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 2rem;
  background:
    linear-gradient(130deg, rgba(4, 28, 49, 0.64) 0%, rgba(6, 72, 122, 0.54) 45%, rgba(11, 145, 193, 0.34) 100%),
    var(--hero-image, radial-gradient(circle at 12% 18%, rgba(127, 221, 255, 0.25), transparent 18%));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 18, 31, 0.1), rgba(5, 18, 31, 0.28)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 22%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.22;
  pointer-events: none;
}

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

.page-hero-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .page-hero.has-search .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 2rem;
  }
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #d8f1ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #fff;
  max-width: none;
}

.page-hero p {
  max-width: 38rem;
  color: rgba(236, 248, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.7;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.page-hero .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.page-hero .btn-outline:hover {
  background: #fff;
  color: #0d1b2a;
  border-color: transparent;
}

.hero-search-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 227, 241, 0.82);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(8, 34, 58, 0.22);
  padding: 1.15rem;
  backdrop-filter: blur(18px);
}

.hero-search-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
}

.hero-search-head > div {
  min-width: 0;
}

.hero-search-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a7fd6, #00b4d8);
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 110, 191, 0.22);
  flex-shrink: 0;
}

.hero-search-meta {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.35rem;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a7fd6, #009bd6);
  border: 1px solid rgba(0, 110, 191, 0.18);
  box-shadow: 0 10px 24px rgba(0, 110, 191, 0.16);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
}

.hero-search-title {
  margin-top: 0.15rem;
  color: #0d1b2a;
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d8e4ee;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-search-bar input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #0d1b2a;
  font-size: 0.94rem;
}

.hero-search-bar input::placeholder {
  color: #92a7b8;
}

.hero-search-hint {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-search-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #d7e6f2;
  background: #f3f9ff;
  color: #4c6a87;
  font-size: 0.74rem;
  font-weight: 700;
}

.search-empty-state {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px dashed #c8ddee;
  color: #5f768a;
  font-size: 0.84rem;
}

.pagination-nav {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pagination-btn {
  min-width: 46px;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #d5e5f2;
  background: #fff;
  color: #20415f;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(13, 27, 42, 0.06);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s, background-color 0.22s, color 0.22s;
}

.pagination-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: #8fc3ea;
  box-shadow: 0 16px 30px rgba(0, 110, 191, 0.12);
}

.pagination-btn.active {
  background: linear-gradient(135deg, #006ebf, #0084e2);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 110, 191, 0.18);
}

.pagination-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.page-metrics {
  display: grid;
  gap: 16px;
  margin-top: 2.5rem;
}

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

.page-metric {
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-metric strong {
  display: block;
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: -0.04em;
}

.page-metric span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: rgba(225, 245, 255, 0.82);
}

.section-shell {
  padding: 4.75rem 0;
}

.content-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .content-grid.two-up {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .content-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.info-card,
.detail-card,
.blog-card,
.faq-card,
.contact-card,
.legal-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

  .info-card,
  .detail-card,
  .faq-card,
  .contact-card,
  .legal-card {
    padding: 1.75rem;
  }

  .info-card.gradient-bg,
  .detail-card.gradient-bg {
    background: linear-gradient(135deg, #006ebf 0%, #00508a 100%);
    border-color: transparent;
    box-shadow: 0 26px 56px rgba(0, 110, 191, 0.22);
    color: #fff;
  }

  .info-card.gradient-bg,
  .detail-card.gradient-bg {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
  }

  .info-card.gradient-bg h2,
  .info-card.gradient-bg h3,
  .info-card.gradient-bg p,
  .info-card.gradient-bg strong,
  .info-card.gradient-bg span,
  .detail-card.gradient-bg h2,
  .detail-card.gradient-bg h3,
  .detail-card.gradient-bg p,
  .detail-card.gradient-bg strong,
  .detail-card.gradient-bg span {
    color: inherit;
  }

  .info-card.gradient-bg .text-blue-100,
  .detail-card.gradient-bg .text-blue-100 {
    color: #dbeafe;
  }

  .info-card.gradient-bg .customize-mock-item,
  .detail-card.gradient-bg .customize-mock-item {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
  }

.blog-card {
  overflow: hidden;
}

/* .card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eff7ff;
  color: #006ebf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
} */

.card-title {
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0d1b2a;
}

.card-text {
  color: #6b7f93;
  line-height: 1.8;
  font-size: 0.96rem;
}

.icon-bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 1.5rem;
}

.icon-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon-bullet-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #eff7ff;
  border: 1px solid #d5ebff;
  color: #006ebf;
}

.split-points {
  display: grid;
  gap: 18px;
}

.brochure-service-grid {
  display: grid;
  gap: 22px;
}

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

@media (min-width: 1100px) {
  .brochure-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.brochure-service-card {
  position: relative;
  padding: 1.7rem;
  border-radius: 24px;
  border: 1px solid #dce8f2;
  background:
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.brochure-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(0, 110, 191, 0.14);
  border-color: #bfdaf0;
}

.brochure-service-media {
  margin: -1.7rem -1.7rem 1.15rem;
  height: 176px;
  overflow: hidden;
  border-radius: 24px 24px 18px 18px;
  position: relative;
  background: linear-gradient(135deg, #edf6ff, #dff1fb);
}

.brochure-service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 31, 0.06), rgba(5, 18, 31, 0.28));
}

.brochure-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.brochure-service-card:hover .brochure-service-media img {
  transform: scale(1.07);
}

.brochure-service-icon {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 28px rgba(0, 110, 191, 0.18);
}

.brochure-service-card h3 {
  margin-top: 0.95rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #0d1b2a;
}

.brochure-service-card p {
  margin-top: 0.8rem;
  color: #6b7f93;
  line-height: 1.75;
  font-size: 0.94rem;
  flex: 1 1 auto;
}

@media (max-width: 640px) {
  .brochure-service-media {
    height: 168px;
  }

  .brochure-service-card {
    border-radius: 22px;
  }
}

/* ========================================================================== 
   LabEdge premium clinical editorial system
   ========================================================================== */
:root {
  --le-green: #1B8E4C;
  --le-green-dark: #2F7549;
  --le-blue: #1D6E92;
  --le-navy: #1A2F59;
  --le-deep: #0c1d34;
  --le-ink: #122238;
  --le-muted: #667686;
  --le-line: #dce6e2;
  --le-mist: #f2f7f4;
  --le-warm: #f8faf7;
  --le-serif: 'Newsreader', Georgia, serif;
}

html { scroll-padding-top: 104px; }
body {
  color: var(--le-ink);
  background: #fff;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before { display: none; }
body, button, input, textarea, select { font-family: 'Manrope', sans-serif; }
h1, h2, h3, h4, .section-heading, .card-title, .plan-title, .hero-search-title {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.045em;
}
h1 em, h2 em, h3 em {
  font-family: var(--le-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}
a, button { -webkit-tap-highlight-color: transparent; }
.le-container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.le-section { padding: 118px 0; }

/* Shared header */
#siteHeader { position: relative; z-index: 100; }
#topbar {
  padding: 9px 24px !important;
  background: var(--le-navy) !important;
  border: 0;
}
#topbar .max-w-7xl { max-width: 1240px; }
#topbar a, #topbar span { color: rgba(255,255,255,.72); }
#topbar i { color: #79d19c !important; }
#topbar .bg-white { background: rgba(255,255,255,.1); }
#navbar {
  height: 92px;
  background: rgba(255,255,255,.94) !important;
  border-bottom: 1px solid rgba(18,34,56,.08);
  backdrop-filter: blur(20px);
}
#navbar .h-\[68px\] { height: 92px; }
.brand-logo-header { width: 210px; max-width: none; max-height: 76px; object-fit: contain; }
.nav-link {
  color: #405063;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.nav-link::after { bottom: -17px; height: 2px; background: var(--le-green); }
.nav-link:hover, .nav-link.active { color: var(--le-navy); }
.dropdown-menu {
  min-width: 260px;
  padding: 12px;
  border: 1px solid rgba(18,34,56,.08);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(12,29,52,.16);
}
.dropdown-menu a { border-radius: 11px; font-size: 13px; }
.dropdown-menu a:hover { background: var(--le-mist); color: var(--le-green-dark); }
#cartBtn, #mobileMenuBtn {
  border: 1px solid #dce5e1 !important;
  border-radius: 50% !important;
  background: #fff;
}
#navbar .btn-primary {
  min-height: 44px;
  border-radius: 12px;
  background: var(--le-green);
  box-shadow: 0 10px 25px rgba(27,142,76,.18);
}
#navbar .btn-primary:hover { background: var(--le-green-dark); }

/* Homepage hero */
.premium-home #hero { min-height: auto; }
.le-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.le-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .13;
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.le-hero-video-shell {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.le-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
  transform: scale(1.04);
}
.le-hero-video-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 42, 0.308) 0%, rgba(11, 27, 49, 0.314) 42%, rgba(11, 27, 49, 0.336) 100%),
    linear-gradient(180deg, rgba(27, 142, 77, 0.115), rgba(7, 24, 42, 0.153));
}
.le-hero-orbit { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; pointer-events: none; }
.le-hero-orbit-one { width: 560px; height: 560px; right: -180px; top: -230px; }
.le-hero-orbit-two { width: 880px; height: 880px; right: -260px; top: -365px; }
.le-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 78px;
}
.le-hero-copy { padding: 32px 0 118px; }
.le-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--le-green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.le-eyebrow span { width: 28px; height: 2px; background: var(--le-green); }
.le-eyebrow-light { color: #b9e6ca; }
.le-eyebrow-light span { background: #72d498; }
.le-hero h1 {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(3.4rem, 5.2vw, 5.7rem);
  line-height: .98;
  color: #fff;
}
.le-hero h1 em { display: block; color: #8bddaa; }
.le-hero-copy > p {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(235,244,250,.77);
  font-size: 17px;
  line-height: 1.8;
}
.le-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.le-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.le-button:hover { transform: translateY(-3px); }
.le-button-accent { color: #fff; background: var(--le-green); box-shadow: 0 18px 38px rgba(27,142,76,.24); }
.le-button-accent:hover { background: #21a65b; box-shadow: 0 22px 46px rgba(27,142,76,.32); }
.le-button-ghost { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.le-button-ghost:hover { background: rgba(255,255,255,.13); }
.le-proof-row { display: flex; gap: 0; margin-top: 46px; }
.le-proof-row > div { display: flex; flex-direction: column; gap: 4px; min-width: 132px; padding-right: 24px; margin-right: 24px; border-right: 1px solid rgba(255,255,255,.14); }
.le-proof-row > div:last-child { border: 0; margin: 0; padding: 0; }
.le-proof-row strong { font-family: 'Sora', sans-serif; font-size: 17px; color: #fff; }
.le-proof-row span { font-size: 11px; color: rgba(255,255,255,.55); }
.le-hero-visual { position: relative; align-self: stretch; min-height: 650px; }
.le-hero-image-wrap {
  position: absolute;
  inset: 24px 0 0;
  overflow: hidden;
  border-radius: 210px 210px 28px 28px;
  box-shadow: 0 36px 90px rgba(2,11,22,.42);
}
.le-hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.le-image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,26,44,.62), transparent 47%), linear-gradient(135deg, rgba(27,142,76,.16), transparent 40%); }
.le-hero-monogram { position: absolute; right: -26px; top: 72px; color: rgba(255,255,255,.1); font-family: 'Sora'; font-size: 112px; font-weight: 800; letter-spacing: -.09em; }
.le-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 14px;
  color: var(--le-ink);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 48px rgba(2,13,28,.18);
  backdrop-filter: blur(16px);
}
.le-floating-card strong, .le-floating-card small { display: block; }
.le-floating-card strong { font-size: 12px; }
.le-floating-card small { margin-top: 2px; color: var(--le-muted); font-size: 9px; }
.le-floating-card-top { top: 118px; left: -34px; }
.le-floating-card-bottom { right: -24px; bottom: 72px; }
.le-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--le-green); box-shadow: 0 0 0 7px rgba(27,142,76,.12); }
.le-float-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: #fff; background: var(--le-navy); }
.le-search-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  margin-bottom: -56px;
  padding: 22px 24px 22px 28px;
  color: var(--le-ink);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(12,29,52,.16);
}
.le-search-intro span, .le-search-intro strong { display: block; }
.le-search-intro span { color: var(--le-green); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.le-search-intro strong { margin-top: 5px; font-family: 'Sora'; font-size: 14px; }
.le-search-control { display: flex; align-items: center; gap: 13px; min-height: 58px; padding-left: 18px; border: 1px solid #dfe8e3; border-radius: 12px; background: #f8faf8; }
.le-search-control > i { color: var(--le-green); }
.le-search-control input { flex: 1; min-width: 0; color: var(--le-ink); font-size: 13px; outline: none; background: transparent; }
.le-search-control button { align-self: stretch; padding: 0 22px; border-radius: 0 11px 11px 0; color: #fff; background: var(--le-navy); font-size: 12px; font-weight: 800; }
.le-search-links { display: flex; gap: 6px; flex-wrap: wrap; max-width: 188px; }
.le-search-links button { padding: 7px 10px; border-radius: 999px; color: #496071; background: var(--le-mist); font-size: 10px; font-weight: 700; }
.le-search-links button:hover { color: #fff; background: var(--le-green); }

/* Assurance strip */
.le-ad-row {
  padding: 34px 0;
  background: #fff;
  border-bottom: 1px solid var(--le-line);
}

.le-ad-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.le-ad-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(18, 34, 56, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(12, 29, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.le-ad-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 142, 76, 0.24);
  box-shadow: 0 26px 60px rgba(12, 29, 52, 0.12);
}

.le-ad-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.le-trust-bar { padding: 30px 0 30px; border-bottom: 1px solid var(--le-line); background: #fff; }
.le-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.le-trust-grid > div { display: flex; align-items: center; gap: 14px; padding: 8px 28px; border-right: 1px solid var(--le-line); }
.le-trust-grid > div:first-child { padding-left: 0; }
.le-trust-grid > div:last-child { border: 0; }
.le-trust-grid i { display: grid; width: 40px; height: 40px; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--le-green); background: #eaf5ee; }
.le-trust-grid strong, .le-trust-grid span { display: block; }
.le-trust-grid strong { font-size: 12px; color: var(--le-ink); }
.le-trust-grid span { color: #7b8996; font-size: 10px; line-height: 1.5; }

/* Section language */
.le-section-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .62fr); align-items: end; gap: 80px; margin-bottom: 52px; }
.le-section-head h2, .le-experience-copy h2, .le-process-intro h2 {
  max-width: 780px;
  margin-top: 17px;
  font-size: clamp(2.35rem, 3.8vw, 4.4rem);
  line-height: 1.08;
  color: var(--le-ink);
}
.le-section-head h2 em, .le-experience-copy h2 em { color: var(--le-green-dark); }
.le-section-head > p { color: var(--le-muted); font-size: 14px; line-height: 1.85; }
.le-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--le-green-dark); font-size: 12px; font-weight: 800; }
.le-text-link i { transition: transform .2s; }
.le-text-link:hover i { transform: translateX(4px); }

/* Services */
.le-services { background: var(--le-warm); }
.le-service-grid { display: grid; grid-template-columns: 1.28fr .86fr .86fr; grid-auto-rows: 320px; gap: 18px; }
.le-service-card { position: relative; overflow: hidden; border-radius: 18px; color: #fff; background: var(--le-navy); }
.le-service-card-wide { grid-row: span 2; }
.le-service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.le-service-card:hover img { transform: scale(1.045); }
.le-service-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,22,39,.92) 0%, rgba(7,22,39,.25) 70%, rgba(7,22,39,.05)); }
.le-service-content { position: absolute; z-index: 2; inset: auto 28px 26px; }
.le-service-card-wide .le-service-content { inset: auto 40px 40px; }
.le-service-content span { font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: #8fe0ad; }
.le-service-content h3 { max-width: 500px; margin-top: 9px; color: inherit; font-size: 21px; line-height: 1.2; }
.le-service-card-wide h3 { font-size: 31px; }
.le-service-content p { max-width: 500px; margin-top: 12px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.7; }
.le-service-content b { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 11px; }
.le-service-content b i { font-size: 9px; transition: transform .2s; }
.le-service-card:hover b i { transform: translateX(4px); }
.le-service-card-light { color: var(--le-ink); background: #fff; border: 1px solid var(--le-line); }
.le-service-card-light .le-service-content p { color: var(--le-muted); }
.le-service-card-light .le-service-content b { color: var(--le-green-dark); }
.le-service-icon { position: absolute; top: 28px; right: 28px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: #fff; background: var(--le-green); font-size: 20px; }
.le-service-card-dark { background: linear-gradient(140deg, var(--le-navy), #1c4e69); }
.le-service-mark { position: absolute; right: 25px; top: 5px; color: rgba(255,255,255,.08); font-family: 'Sora'; font-size: 150px; font-weight: 200; line-height: 1; }

/* Plans */
.le-plans { color: #fff; background: linear-gradient(135deg, #0b1d35 0%, #162e50 58%, #1c4e69 100%); }
.le-section-head-light h2 { color: #fff; }
.le-section-head-light h2 em { color: #8bddaa; }
.le-section-head-light > p { color: rgba(235,244,250,.68); }
.le-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.le-pricing-grid .pricing-spotlight-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  box-shadow: none;
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.le-pricing-grid .pricing-spotlight-card.is-featured { transform: translateY(-12px); border-color: rgba(139,221,170,.55); background: #fff; box-shadow: 0 30px 70px rgba(2,11,23,.28); }
.le-pricing-grid .pricing-spotlight-head { min-height: 300px; padding: 26px; background: transparent; }
.le-pricing-grid .pricing-spotlight-head::after { display: none; }
.le-pricing-grid .is-featured .pricing-spotlight-head { background: linear-gradient(140deg, var(--le-green-dark), var(--le-green)); }
.le-pricing-grid .pricing-ribbon { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; background: rgba(255,255,255,.1); font-size: 9px; }
.le-pricing-grid .pricing-package-type { margin-top: 24px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.le-pricing-grid .pricing-spotlight-head h3 { margin-top: 7px; font-size: 23px; }
.le-pricing-grid .pricing-spotlight-head > p:not(.pricing-package-type) { min-height: 42px; margin-top: 10px; font-size: 11px; line-height: 1.65; }
.le-pricing-grid .pricing-spotlight-stat { display: inline-flex; width: auto; margin-top: 18px; padding: 8px 11px; border-radius: 8px; font-size: 12px; font-weight: 800; }
.le-pricing-grid .pricing-spotlight-price { margin-top: 10px; padding: 0; border: 0; background: transparent; }
.le-pricing-grid .pricing-spotlight-price strong { display: inline; margin-left: 6px; font-size: 27px; }
.le-pricing-grid .pricing-price-old { margin-left: 8px; }
.le-pricing-grid .pricing-spotlight-body { display: flex; flex: 1; flex-direction: column; padding: 25px 26px 27px; color: rgba(255,255,255,.74); }
.le-pricing-grid .is-featured .pricing-spotlight-body { color: var(--le-muted); }
.le-pricing-grid .pricing-feature-list { margin: 0; gap: 11px; }
.le-pricing-grid .pricing-feature-list li { color: inherit; font-size: 11px; line-height: 1.55; }
.le-pricing-grid .pricing-feature-list i { color: #72d498; }
.le-pricing-grid .is-featured .pricing-feature-list i { color: var(--le-green); }
.le-pricing-grid .pricing-spotlight-meta { margin-top: auto; padding-top: 18px; border-color: rgba(255,255,255,.1); color: inherit; font-size: 9px; }
.le-pricing-grid .is-featured .pricing-spotlight-meta { border-color: var(--le-line); }
.le-pricing-grid .pricing-spotlight-actions { margin-top: 17px; gap: 8px; }
.le-pricing-grid .plan-btn-secondary, .le-pricing-grid .plan-btn-primary { min-height: 45px; border-radius: 10px; font-size: 11px; }
.le-pricing-grid .plan-btn-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.18); box-shadow: none; }
.le-pricing-grid .is-featured .plan-btn-secondary { color: var(--le-navy); border-color: var(--le-line); background: #fff; }
.le-pricing-grid .plan-btn-primary { background: var(--le-green); box-shadow: none; }
.le-plans-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.62); font-size: 11px; }
.le-plans-footer a { color: #a9e8bf; font-weight: 800; }

/* Experience */
.le-experience { overflow: hidden; background: #fff; }
.le-experience-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 104px; align-items: center; }
.le-experience-visual { position: relative; min-height: 650px; }
.le-experience-image-main { position: absolute; inset: 0 75px 70px 0; overflow: hidden; border-radius: 16px; }
.le-experience-image-main img, .le-experience-image-small img { width: 100%; height: 100%; object-fit: cover; }
.le-experience-image-small { position: absolute; right: 0; bottom: 0; width: 245px; height: 205px; overflow: hidden; border: 10px solid #fff; border-radius: 15px; box-shadow: 0 22px 54px rgba(12,29,52,.16); }
.le-experience-stat { position: absolute; left: -24px; top: 54px; padding: 18px 22px; color: #fff; background: var(--le-green); border-radius: 12px; box-shadow: 0 16px 38px rgba(27,142,76,.25); }
.le-experience-stat strong, .le-experience-stat span { display: block; }
.le-experience-stat strong { font-family: 'Sora'; font-size: 17px; }
.le-experience-stat span { margin-top: 4px; font-size: 9px; color: rgba(255,255,255,.75); }
.le-experience-copy h2 { margin-top: 17px; }
.le-lead { margin-top: 25px; color: var(--le-muted); font-size: 14px; line-height: 1.9; }
.le-value-list { margin: 34px 0; border-top: 1px solid var(--le-line); }
.le-value-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 17px; padding: 20px 0; border-bottom: 1px solid var(--le-line); }
.le-value-list b { color: var(--le-green); font-family: 'Sora'; font-size: 11px; }
.le-value-list strong, .le-value-list small { display: block; }
.le-value-list strong { font-size: 13px; }
.le-value-list small { margin-top: 5px; color: var(--le-muted); font-size: 11px; line-height: 1.6; }

/* Popular tests */
.le-popular-tests { background: var(--le-mist); }
.le-popular-tests .le-section-head { align-items: center; }
.le-test-list { border-top: 1px solid #cfdcd6; }
.le-test-row { display: grid; grid-template-columns: 56px 1fr 210px 48px; gap: 20px; align-items: center; min-height: 112px; border-bottom: 1px solid #cfdcd6; transition: padding .25s, background .25s; }
.le-test-row:hover { padding-inline: 18px; background: rgba(255,255,255,.62); }
.le-test-number { color: #94a49d; font-family: 'Sora'; font-size: 10px; }
.le-test-name { display: flex; align-items: center; gap: 17px; min-width: 0; }
.le-test-name > i { display: grid; width: 42px; height: 42px; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--le-green); background: #fff; }
.le-test-name h3 { font-size: 14px; letter-spacing: -.02em; }
.le-test-name p { margin-top: 4px; max-width: 550px; overflow: hidden; color: var(--le-muted); font-size: 10px; text-overflow: ellipsis;word-wrap: break-word;word-spacing: normal;word-break: break-word; }
.le-test-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.le-test-meta span { color: var(--le-muted); font-size: 9px; }
.le-test-meta strong { font-family: 'Sora'; font-size: 14px; }
.le-test-add { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #c8d7d0; border-radius: 50%; color: var(--le-green-dark); background: transparent; transition: all .2s; }
.le-test-add:hover { color: #fff; border-color: var(--le-green); background: var(--le-green); transform: rotate(90deg); }

/* Process and closing */
.le-process { color: #fff; background: var(--le-navy); }
.le-process-intro { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 55px; }
.le-process-intro h2 { max-width: 770px; color: #fff; }
.le-process-intro h2 em { color: #8bddaa; }
.le-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.13); }
.le-process-grid > div { position: relative; min-height: 270px; padding: 35px 28px 24px; border-right: 1px solid rgba(255,255,255,.13); }
.le-process-grid > div:last-child { border: 0; }
.le-process-grid span { position: absolute; right: 20px; top: 26px; color: rgba(255,255,255,.24); font-family: 'Sora'; font-size: 10px; }
.le-process-grid i { color: #7ddda0; font-size: 24px; }
.le-process-grid h3 { margin-top: 20px; color: #fff; font-size: 17px; }
.le-process-grid p { margin-top: 10px; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.7; }
.le-closing { padding: 88px 0; background: #fff; }
.le-closing-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 54px 60px; border-radius: 18px; color: #fff; background: linear-gradient(120deg, var(--le-green-dark), var(--le-green) 48%, #1f7b67); box-shadow: 0 26px 64px rgba(27,142,76,.18); }
.le-closing-copy > span { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.le-closing-copy h2 { margin-top: 10px; color: #fff; font-size: clamp(1.8rem, 3vw, 3.2rem); }
.le-closing-copy p { margin-top: 11px; color: rgba(255,255,255,.72); font-size: 12px; }
.le-closing-actions { display: flex; align-items: center; gap: 20px; flex: 0 0 auto; }
.le-closing-actions .le-button-accent { color: var(--le-navy); background: #fff; box-shadow: none; }
.le-closing-phone { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 12px; font-weight: 800; }
.le-closing-phone > i { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.le-closing-phone small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.6); font-size: 8px; text-transform: uppercase; }

/* Interior page polish */
.page-hero {
  min-height: 440px;
  padding: 0 0 70px;
  align-items: end;
  background-position: center;
}
.page-hero::before { background: linear-gradient(90deg, rgba(7,24,42,.95) 0%, rgba(12,35,59,.78) 50%, rgba(12,35,59,.28) 100%); }
.page-hero::after { opacity: .1; background-size: 72px 72px; }
.page-hero-inner { max-width: 820px; }
.page-hero h1 { max-width: 800px; font-size: clamp(2.65rem, 5vw, 4.8rem); line-height: 1.04; color: #fff; }
.page-hero-copy p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; }
.breadcrumb { width: fit-content; padding: 8px 12px; border-radius: 8px; font-size: 10px; }
.section-shell { padding-top: 104px; padding-bottom: 104px; }
.section-shell.bg-soft, .bg-soft { background: var(--le-mist); }
.section-shell.bg-white { background: #fff; }
.section-heading { line-height: 1.12; }
/* .card-kicker { border-radius: 7px; background: #e9f5ed; color: var(--le-green-dark); } */
.info-card, .detail-card, .contact-card, .legal-card, .faq-item, .blog-card, .test-card, .plan-card, .brochure-service-card {
  border: 1px solid var(--le-line);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(12,29,52,.06);
}
.feature-card:hover, .brochure-service-card:hover, .test-card:hover, .plan-card:hover, .pricing-spotlight-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(12,29,52,.1); }
.plan-card-head { background: linear-gradient(140deg, var(--le-navy), #1c4e69) !important; }
.add-cart-btn, .btn-primary, .plan-btn-primary { border-radius: 11px; background: var(--le-green); box-shadow: 0 12px 28px rgba(27,142,76,.16); }
.add-cart-btn:hover, .btn-primary:hover, .plan-btn-primary:hover { background: var(--le-green-dark); }
.view-info-btn, .btn-outline, .plan-btn-secondary { border-radius: 11px; }
.form-control:focus, input:focus, textarea:focus, select:focus { border-color: rgba(27,142,76,.55); box-shadow: 0 0 0 4px rgba(27,142,76,.08); }

/* Footer */
footer {
  padding-top: 82px !important;
  background: #0a1a2d;
}
footer::before { opacity: .07; background-size: 70px 70px; }
.footer-layout { grid-template-columns: 1fr 1.55fr .9fr !important; gap: 64px; }
.footer-brand-panel { display: inline-flex; padding: 14px 16px; border-radius: 12px; background: #fff; }
.brand-logo-footer { width: 180px; }
.footer-link { color: rgba(255,255,255,.55); font-size: 11px; }
.footer-link:hover { color: #8bddaa; transform: translateX(3px); }
.social-btn { width: 35px; height: 35px; border-radius: 50%; }
footer .border-t { border-color: rgba(255,255,255,.1); }

@media (max-width: 1100px) {
  .le-hero-grid { gap: 42px; }
  .le-hero h1 { font-size: 4.25rem; }
  .le-hero-visual { min-height: 590px; }
  .le-service-grid { grid-template-columns: 1fr 1fr; }
  .le-service-card-wide { grid-row: span 2; }
  .le-service-card-dark { grid-column: span 2; }
  .le-experience-grid { gap: 62px; }
  .footer-layout { grid-template-columns: 1fr 1.5fr !important; }
  .footer-layout > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 899px) {
  #topbar { display: none; }
  #navbar, #navbar .h-\[68px\] { height: 82px; }
  .brand-logo-header { width: 178px; max-height: 70px; }
  .le-section { padding: 86px 0; }
  .le-hero-grid { grid-template-columns: 1fr; }
  .le-hero-copy { padding-bottom: 24px; }
  .le-hero-copy > p { max-width: 720px; }
  .le-hero-visual { min-height: 560px; }
  .le-hero-image-wrap { inset: 0 8% 0; border-radius: 180px 180px 24px 24px; }
  .le-floating-card-top { left: 3%; }
  .le-floating-card-bottom { right: 3%; }
  .le-search-panel { grid-template-columns: 1fr; gap: 14px; margin-top: 42px; padding: 22px; }
  .le-search-intro { display: none; }
  .le-search-links { max-width: none; }
  .le-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .le-trust-grid > div:nth-child(2) { border: 0; }
  .le-section-head { grid-template-columns: 1fr; gap: 20px; }
  .le-section-head > p { max-width: 620px; }
  .le-pricing-grid { grid-template-columns: 1fr; }
  .le-pricing-grid .pricing-spotlight-card.is-featured { transform: none; }
  .le-experience-grid { grid-template-columns: 1fr; }
  .le-experience-visual { min-height: 560px; }
  .le-process-intro { display: block; }
  .le-process-grid { grid-template-columns: repeat(2, 1fr); }
  .le-process-grid > div:nth-child(2) { border-right: 0; }
  .le-process-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .le-closing-inner { align-items: flex-start; flex-direction: column; padding: 44px; }
  .footer-layout { grid-template-columns: 1fr !important; }
  .footer-layout > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .le-container { width: min(100% - 32px, 1240px); }
  .le-section { padding: 70px 0; }
  .le-hero h1 { font-size: clamp(2.75rem, 13.5vw, 4rem); }
  .le-hero-copy > p { margin-top: 22px; font-size: 14px; line-height: 1.75; }
  .le-hero-actions { flex-direction: column; }
  .le-hero-actions .le-button { width: 100%; }
  .le-proof-row { justify-content: space-between; gap: 10px; }
  .le-proof-row > div { min-width: 0; margin-right: 10px; padding-right: 10px; }
  .le-proof-row span { font-size: 8px; }
  .le-ad-row { padding: 24px 0; }
  .le-ad-grid { grid-template-columns: 1fr; gap: 16px; }
  .le-ad-card { border-radius: 14px; }
  .le-hero-visual { min-height: 430px; }
  .le-hero-image-wrap { inset-inline: 0; border-radius: 130px 130px 18px 18px; }
  .le-floating-card { padding: 11px 12px; }
  .le-floating-card-top { top: 70px; left: -4px; }
  .le-floating-card-bottom { right: -4px; bottom: 30px; }
  .le-hero-monogram { display: none; }
  .le-search-panel { width: calc(100% - 32px); margin-bottom: -45px; }
  .le-search-control { display: grid; grid-template-columns: 18px 1fr; padding: 12px 12px 0; }
  .le-search-control button { grid-column: 1 / -1; min-height: 46px; margin-inline: -12px; border-radius: 0 0 11px 11px; }
  .le-trust-bar { padding-top: 78px; }
  .le-trust-grid { gap: 18px 0; }
  .le-trust-grid > div { align-items: flex-start; padding: 4px 12px; }
  .le-trust-grid > div:nth-child(odd) { padding-left: 0; }
  .le-trust-grid i { width: 34px; height: 34px; }
  .le-section-head h2, .le-experience-copy h2, .le-process-intro h2 { font-size: 2.35rem; }
  .le-service-grid { display: flex; flex-direction: column; }
  .le-service-card { min-height: 280px; }
  .le-service-card-wide { min-height: 430px; }
  .le-service-card-dark { min-height: 300px; }
  .le-service-card-wide .le-service-content { inset: auto 25px 26px; }
  .le-service-card-wide h3 { font-size: 26px; }
  .le-plans-footer { align-items: flex-start; flex-direction: column; }
  .le-experience-visual { min-height: 440px; }
  .le-experience-image-main { inset: 0 30px 45px 0; }
  .le-experience-image-small { width: 180px; height: 145px; border-width: 7px; }
  .le-experience-stat { left: -7px; top: 28px; }
  .le-test-row { grid-template-columns: 34px 1fr 42px; gap: 10px; padding: 17px 0; }
  .le-test-meta { 
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 8px 16px;
   }
  .le-test-add { grid-column: 3; grid-row: 1 / span 2; }
  .le-test-name p { max-width: 210px; }
  .le-process-grid { grid-template-columns: 1fr; }
  .le-process-grid > div { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .le-process-grid > div:last-child { border-bottom: 0; }
  .le-process-grid h3 { margin-top: 20px; }
  .le-closing { padding: 48px 0; }
  .le-closing-inner { padding: 32px 24px; }
  .le-closing-actions { align-items: flex-start; flex-direction: column; width: 100%; }
  .le-closing-actions .le-button { width: 100%; }
  .page-hero { min-height: 380px; padding-bottom: 46px; }
  .section-shell { padding-top: 72px; padding-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .le-hero-video { display: none; }
}

.brochure-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #006ebf, #00b4d8);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 110, 191, 0.22);
}

.brochure-commitment-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .brochure-commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.brochure-commitment-pill {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff7ff, #e7fbfb);
  border: 1px solid #d5ebff;
  color: #0d1b2a;
  font-weight: 700;
  text-align: center;
}

.brochure-contact-stack {
  display: grid;
  gap: 14px;
}

.brochure-contact-panel {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(220, 232, 242, 0.8);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.brochure-contact-panel strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #0d1b2a;
  font-size: 0.94rem;
}

.brochure-contact-panel span {
  display: block;
  color: #6b7f93;
  line-height: 1.7;
  font-size: 0.92rem;
}

.brochure-contact-panel-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.brochure-contact-panel-dark strong,
.brochure-contact-panel-dark span,
.brochure-contact-panel-dark a {
  color: #f7fbff;
}

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

.mini-stat-grid {
  display: grid;
  gap: 14px;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .mini-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mini-stat {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff7ff, #e6fbff);
  border: 1px solid #d2e9fb;
}

.mini-stat strong {
  display: block;
  font-size: 1.4rem;
  color: #006ebf;
  letter-spacing: -0.04em;
}

.mini-stat span {
  display: block;
  margin-top: 0.25rem;
  color: #5f768a;
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  border: 1px solid #dce8f2;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  color: #0d1b2a;
  margin-bottom: 0.65rem;
}

.faq-item p {
  color: #6b7f93;
  line-height: 1.8;
  font-size: 0.95rem;
}

.blog-cover {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(0, 110, 191, 0.92), rgba(0, 180, 216, 0.85)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 26%);
  position: relative;
}

.blog-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
}

.blog-body {
  padding: 1.6rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #5f768a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-card h2,
.legal-card h3 {
  color: #0d1b2a;
}

.legal-card h2 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.legal-card h3 {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: #6b7f93;
  line-height: 1.8;
  font-size: 0.96rem;
}

.legal-card ul {
  padding-left: 1.1rem;
  margin-top: 0.85rem;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

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

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 18px;
  background: #f4f9ff;
  border: 1px solid #d8e8f4;
  color: #355268;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.surface-input {
  width: 100%;
  border: 2px solid #f1f5f9;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #f9fbfd;
  color: #0d1b2a;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.surface-input:focus {
  outline: none;
  background: #fff;
  border-color: #006ebf;
  box-shadow: 0 0 0 4px rgba(0, 110, 191, 0.08);
}

.form-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #355268;
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-item .step-num {
  width: 46px;
  height: 46px;
  font-size: 0.95rem;
}

.detail-richtext,
.detail-richtext p,
.detail-richtext li {
  color: #5f768a;
  line-height: 1.8;
  font-size: 0.96rem;
}

.detail-richtext p + p,
.detail-richtext ul,
.detail-richtext ol {
  margin-top: 0.85rem;
}

.detail-richtext ul,
.detail-richtext ol {
  padding-left: 1.15rem;
}

.detail-richtext.compact p,
.detail-richtext.compact li {
  font-size: 0.92rem;
}

.detail-price-panel,
.detail-list-card {
  padding: 1.45rem;
  border-radius: 22px;
  border: 1px solid #dce8f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.detail-price-image {
  margin-bottom: 1.2rem;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #dbe8f3;
  background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
}

.detail-price-image img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.detail-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-items-list {
  display: grid;
  gap: 12px;
}

.checkout-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #dbe7f2;
  background: #f8fbff;
}

.checkout-item-copy h4 {
  font-size: 1rem;
  line-height: 1.35;
  color: #0d1b2a;
}

.checkout-item-copy p {
  margin-top: 0.2rem;
  color: #6b7f93;
  font-size: 0.85rem;
}

.checkout-item-type {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.4rem;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf5ff;
  color: #006ebf;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid #d5e5f2;
  background: #fff;
  color: #20415f;
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #006ebf;
  border-color: #006ebf;
  color: #fff;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #355268;
  font-size: 0.95rem;
}

.summary-row + .summary-row {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e3edf5;
}

@media (min-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1.05fr 0.95fr !important;
  }
}

@media (max-width: 768px) {
  .cart-drawer { width: 100vw; right: -100vw; }
  .cart-drawer.open { right: 0; }
  #hero { min-height: 50vh; }
  .trust-item { border-right: none; border-bottom: 1px solid #edf4fb; }
  .hero-badge { max-width: 100%; white-space: normal; line-height: 1.45; }
  #hero .grid.grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #hero .grid.grid-cols-3 .stat-card:last-child { grid-column: 1 / -1; }
  #hero .grid.grid-cols-2 { grid-template-columns: 1fr; }
  #hero .search-bar { padding: 20px; }
  .hero-shell { padding-top: 3.25rem; padding-bottom: 4rem; }
  .hero-side-panel { width: 100%; }
  #topbar .topbar-dot { display: none; }
  .process-grid::before,
  .process-grid::after { display: none; }
  .test-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .test-card-actions {
    width: 100%;
    flex: 1 1 auto;
  }
  .test-card-footer .add-cart-btn,
  .test-card-footer .view-info-btn {
    width: 100%;
  }
  .checkout-item-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout-item-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  html,
  body { overflow-x: hidden; }
  .brand-logo-header,
  .brand-logo-mobile { width: 160px; max-width: none; max-height: 64px; }
  .hero-actions { flex-direction: column; }
  .hero-actions > a { width: 100%; justify-content: center; }
  .hero-badge { display: flex; flex-wrap: wrap; max-width: 100%; padding: 10px 14px; }
  .search-mode-switch { flex-direction: column; }
  .search-mode-switch .search-tab { width: 100%; }
  .search-card-head { flex-direction: column; align-items: flex-start; }
  .search-input-row { flex-direction: column; align-items: stretch; }
  .search-input-row .btn-primary { width: 100%; justify-content: center; }
  .page-hero {
    min-height: 50vh;
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
  .page-hero-content,
  .page-hero-inner,
  .page-hero-copy { min-width: 0; }
  .breadcrumb { max-width: 100%; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.35rem); }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions a { width: 100%; justify-content: center; }
  .hero-search-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-search-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-search-bar .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .form-grid[style*="repeat(2,minmax(0,1fr))"] {
    grid-template-columns: 1fr !important;
  }
}

.glow-hover { transition: box-shadow 0.3s; }
.glow-hover:hover { box-shadow: 0 0 0 3px rgba(0, 110, 191, 0.15); }
.customize-mock-item { display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 14px; padding: 11px 16px; transition: all 0.2s; }
.customize-mock-item:hover { background: rgba(255, 255, 255, 0.16); }
#toast { opacity: 0; transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease; }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0) !important; }

@keyframes driftOne {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-18px, 16px, 0); }
}

@keyframes driftTwo {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(22px, -18px, 0); }
}

@keyframes driftThree {
  0% { transform: translate3d(0, -50%, 0); }
  100% { transform: translate3d(12px, calc(-50% - 16px), 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3,
  .marquee-inner,
  .animate-pulse { animation: none !important; }
  .fade-up,
  .scale-in,
  .feature-card.reveal-ready,
  #toast { transition: none !important; }
}

body {
  background:
    radial-gradient(circle at top left, rgba(27, 142, 76, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(29, 110, 146, 0.12), transparent 24%),
    linear-gradient(180deg, #f5faf6 0%, #ffffff 12%, #f7fbf9 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 47, 89, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 47, 89, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at top, black, transparent 82%);
  opacity: 0.45;
}

h1, h2, h3, h4, .section-heading, .card-title, .plan-title, .hero-search-title {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-soft {
  background:
    radial-gradient(circle at top right, rgba(29, 110, 146, 0.08), transparent 26%),
    linear-gradient(180deg, #f6fbf8 0%, #eef5f1 100%);
}

#topbar {
  background:
    linear-gradient(90deg, rgba(26, 47, 89, 0.98) 0%, rgba(28, 78, 105, 0.95) 52%, rgba(29, 110, 146, 0.92) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#navbar {
  background: rgba(255, 255, 255, 0.84) !important;
  border-bottom: 1px solid rgba(26, 47, 89, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#navbar.scrolled {
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
  border-color: rgba(26, 47, 89, 0.1);
}

.brand-logo-header,
.brand-logo-mobile,
.brand-logo-footer {
  filter: drop-shadow(0 12px 24px rgba(16, 32, 51, 0.08));
}

.nav-link,
.mobile-nav-link,
.footer-link {
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: rgba(16, 32, 51, 0.8);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-secondary-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-menu,
.cart-drawer {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.btn-primary,
.add-cart-btn,
.plan-btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 16px 34px rgba(29, 110, 146, 0.22);
}

.btn-primary:hover,
.add-cart-btn:hover,
.plan-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(29, 110, 146, 0.26);
}

.btn-outline,
.view-info-btn,
.plan-btn-secondary {
  border: 1px solid rgba(26, 47, 89, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-secondary-dark);
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.06);
}

.btn-outline:hover,
.view-info-btn:hover,
.plan-btn-secondary:hover {
  border-color: rgba(29, 110, 146, 0.28);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.gradient-bg,
.gradient-bg-teal {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

#hero {
  position: relative;
  min-height: calc(100vh - 140px);
  background:
    radial-gradient(circle at 12% 20%, rgba(27, 142, 76, 0.18), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(125, 219, 181, 0.2), transparent 18%),
    linear-gradient(135deg, #10233d 0%, #1a2f59 34%, #1c4e69 68%, #1d6e92 100%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.22;
}

.hero-grid {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 52%);
}

.hero-shell {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ecfdf3;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-copy p,
.page-hero-copy p {
  max-width: 40rem;
}

.hero-side-panel,
.search-bar,
.hero-search-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 34px 70px rgba(12, 27, 55, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero-side-panel {
  border-radius: 30px;
}

.search-card-icon,
.hero-search-badge {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  box-shadow: 0 16px 34px rgba(29, 110, 146, 0.2);
}

.search-tab.active {
  background: linear-gradient(135deg, rgba(27, 142, 76, 0.12) 0%, rgba(29, 110, 146, 0.16) 100%);
  color: var(--color-secondary-dark);
}

.search-pill,
.hero-search-pill,
/* .card-kicker, */
.checkout-item-type {
  background: linear-gradient(135deg, rgba(27, 142, 76, 0.08) 0%, rgba(29, 110, 146, 0.12) 100%);
  color: var(--color-secondary-dark);
  border: 1px solid rgba(29, 110, 146, 0.12);
}

.marquee-wrap {
  background: linear-gradient(90deg, rgba(16, 32, 51, 0.98) 0%, rgba(26, 47, 89, 0.96) 100%);
  color: rgba(240, 247, 255, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card,
.info-card,
.detail-card,
.blog-card,
.faq-card,
.contact-card,
.legal-card,
.faq-item,
.test-card,
.brochure-service-card {
  border-color: rgba(26, 47, 89, 0.08);
  box-shadow: 0 20px 48px rgba(16, 32, 51, 0.08);
}

.feature-card,
.info-card,
.detail-card,
.faq-item,
.contact-card,
.legal-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(251, 255, 253, 0.98) 100%);
}

.feature-card:hover,
.brochure-service-card:hover,
.test-card:hover,
.plan-card:hover,
.pricing-spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(16, 32, 51, 0.12);
}

.icon-bullet-badge,
.brochure-service-icon,
.test-icon-wrap,
.step-num {
  background: linear-gradient(135deg, rgba(27, 142, 76, 0.12) 0%, rgba(29, 110, 146, 0.16) 100%);
  color: var(--color-secondary-dark);
  border-color: rgba(29, 110, 146, 0.12);
}

.trust-strip,
.page-metric,
.mini-stat,
.detail-price-panel,
.detail-list-card,
.checkout-item-row {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 250, 247, 0.98) 100%);
  border: 1px solid rgba(26, 47, 89, 0.08);
}

.trust-item strong,
.mini-stat strong,
.page-metric strong {
  color: var(--color-secondary-dark);
}

.pricing-showcase-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(27, 142, 76, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(29, 110, 146, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fcfa 0%, #eff6f2 100%);
}

.home-page #special-packages,
.home-page #smart-packages {
  display: none;
}

.pricing-showcase-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), transparent 35%, rgba(255, 255, 255, 0.32));
  pointer-events: none;
}

.pricing-spotlight-grid,
.pkg-grid {
  display: grid;
  gap: 28px;
}

.pricing-spotlight-grid {
  position: relative;
  z-index: 1;
}

.plan-card,
.pricing-spotlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(26, 47, 89, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.plan-card-head,
.pricing-spotlight-head {
  position: relative;
  padding: 1.7rem;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #1a2f59 0%, #1c4e69 50%, #1d6e92 100%);
}

.plan-card-head::after,
.pricing-spotlight-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 142, 76, 0.2), transparent 42%);
  pointer-events: none;
}

.plan-card-head {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    var(--plan-gradient, linear-gradient(135deg, #1a2f59 0%, #1c4e69 50%, #1d6e92 100%));
}

.plan-head-top,
.pricing-ribbon {
  position: relative;
  z-index: 1;
}

.plan-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.plan-chip,
.pricing-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-chip-highlight,
.pricing-spotlight-card.is-featured .pricing-ribbon {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.16);
}

.plan-title,
.pricing-spotlight-head h3 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.18;
}

.plan-subtitle,
.pricing-spotlight-head p {
  position: relative;
  z-index: 1;
  margin-top: 0.7rem;
  color: rgba(240, 248, 255, 0.88);
  line-height: 1.75;
}

.plan-stats-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 1.35rem;
}

.plan-stat-block,
.pricing-spotlight-stat,
.pricing-spotlight-price {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.plan-stat-block strong,
.pricing-spotlight-stat,
.pricing-spotlight-price strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  color: #fff;
}

.plan-stat-block span,
.pricing-package-type,
.pricing-price-label,
.pricing-price-old {
  color: rgba(236, 246, 255, 0.84);
  font-size: 0.82rem;
}

.plan-price-block strong,
.pricing-spotlight-price strong {
  margin-top: 0.15rem;
}

.plan-price-old,
.pricing-price-old {
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  text-decoration: line-through;
}

.plan-card-body,
.pricing-spotlight-body {
  padding: 1.7rem;
}

.plan-mini-tags,
.plan-feature-list,
.pricing-feature-list {
  display: grid;
  gap: 12px;
}

.plan-mini-tags {
  grid-template-columns: repeat(auto-fit, minmax(110px, max-content));
  gap: 10px;
}

.plan-mini-tags:empty {
  display: none;
}

.plan-mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(27, 142, 76, 0.1) 0%, rgba(29, 110, 146, 0.1) 100%);
  color: var(--color-secondary-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.plan-feature-list,
.pricing-feature-list {
  margin-top: 1.2rem;
  list-style: none;
}

.plan-feature-list li,
.pricing-feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--color-ink-mid);
  line-height: 1.7;
}

.plan-feature-list i,
.pricing-feature-list i {
  margin-top: 0.25rem;
  color: var(--color-primary);
}

.plan-footer-note,
.pricing-spotlight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 47, 89, 0.08);
  color: var(--color-ink-light);
  font-size: 0.86rem;
}

.plan-actions,
.pricing-spotlight-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1.25rem;
}

.plan-btn-secondary,
.plan-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 18px;
  font-weight: 800;
}

.pricing-spotlight-card.is-featured {
  transform: translateY(-10px);
  box-shadow: 0 34px 70px rgba(29, 110, 146, 0.18);
}

.pricing-spotlight-card.is-featured .pricing-spotlight-head {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #2f7549 0%, #1b8e4c 28%, #1c4e69 68%, #1d6e92 100%);
}

.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: end;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

.page-hero::before {
  background:
    linear-gradient(135deg, rgba(16, 32, 51, 0.86) 0%, rgba(26, 47, 89, 0.72) 40%, rgba(28, 78, 105, 0.56) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #edf7ff;
}

.footer-layout {
  display: grid;
  gap: 34px;
}

footer {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(27, 142, 76, 0.16), transparent 24%),
    linear-gradient(135deg, #10233d 0%, #1a2f59 38%, #163e5a 100%);
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.16;
}

footer > .max-w-7xl {
  position: relative;
  z-index: 1;
}

.footer-brand-panel,
.brochure-contact-panel-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.social-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.social-btn:hover,
.footer-link:hover {
  color: #c5ffe0;
}

footer .text-blue-500 {
  color: #9fd6ee;
}

footer .text-blue-500:hover {
  color: #c5ffe0;
}

.float-btn {
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(16, 32, 51, 0.18);
}

#toast {
  background: rgba(16, 32, 51, 0.94);
  backdrop-filter: blur(12px);
}

@media (min-width: 900px) {
  .footer-layout {
    grid-template-columns: 1.05fr 1.15fr 0.95fr;
    align-items: start;
  }

  .pricing-spotlight-grid,
  .pkg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .pricing-spotlight-grid,
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #hero {
    min-height: auto;
  }

  .plan-stats-row,
  .plan-actions,
  .pricing-spotlight-actions {
    grid-template-columns: 1fr;
  }

  .pricing-spotlight-card.is-featured {
    transform: none;
  }
}

/* Legal pages */
.legal-summary-section {
  padding-bottom: 3.75rem;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.legal-summary-card {
  min-height: 100%;
}

.legal-summary-card h2 {
  margin-top: 1.25rem;
  color: var(--le-navy, #102033);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.legal-summary-card p {
  margin-top: 0.65rem;
  color: #63798b;
  font-size: 0.9rem;
  line-height: 1.75;
}

.legal-content-section {
  padding-top: 5rem;
}

.legal-page-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  max-width: 1160px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  padding: 1.35rem;
  border: 1px solid var(--le-line, #dce8f2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(12, 29, 52, 0.06);
}

.legal-toc nav {
  display: grid;
  gap: 4px;
  margin-top: 1.2rem;
}

.legal-toc nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: baseline;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  color: #526b7e;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.legal-toc nav a span {
  color: var(--le-green, #1b8e4c);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.legal-toc nav a:hover {
  color: var(--le-navy, #102033);
  background: #eef8f2;
  transform: translateX(3px);
}

.legal-updated {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.25rem;
  padding: 0.9rem;
  border-radius: 12px;
  background: #eef8f2;
  color: var(--le-green, #1b8e4c);
}

.legal-updated i {
  font-size: 0.95rem;
}

.legal-updated strong,
.legal-updated span {
  display: block;
}

.legal-updated strong {
  color: var(--le-navy, #102033);
  font-size: 0.73rem;
}

.legal-updated span {
  margin-top: 2px;
  color: #667c8d;
  font-size: 0.7rem;
}

.legal-document {
  padding: clamp(1.5rem, 4vw, 3.25rem);
}

.legal-document-intro {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--le-line, #dce8f2);
}

.legal-document-intro h2 {
  margin-top: 1.35rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.legal-document-intro p {
  max-width: 760px;
  margin-top: 1rem;
}

.legal-document-section {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 2rem 0;
  border-bottom: 1px solid #e7eef4;
  scroll-margin-top: 120px;
}

.legal-section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #eef8f2;
  color: var(--le-green, #1b8e4c);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.legal-card .legal-document-section h3 {
  margin: 0 0 0.85rem;
  color: var(--le-navy, #102033);
  font-size: 1.17rem;
  line-height: 1.35;
}

.legal-card .legal-document-section p + p {
  margin-top: 0.9rem;
}

.legal-card .legal-document-section ul {
  display: grid;
  gap: 0.72rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.legal-card .legal-document-section li {
  position: relative;
  padding-left: 1.45rem;
}

.legal-card .legal-document-section li::before {
  content: '\2713';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--le-green, #1b8e4c);
  font-weight: 900;
}

.legal-contact-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.3rem;
  border: 1px solid #cce7d7;
  border-radius: 14px;
  background: #f2fbf6;
}

.legal-card .legal-contact-note h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.legal-card .legal-contact-note p {
  font-size: 0.86rem;
}

.legal-contact-note a {
  color: var(--le-green-dark, #116b38);
  font-weight: 800;
}

.legal-related-section {
  padding-top: 4.5rem;
}

/* ISO certification feature */
.iso-certification-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(1.75rem, 5vw, 4rem);
  border: 1px solid rgba(27, 142, 76, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(27, 142, 76, 0.1), transparent 36%),
    #fff;
  box-shadow: 0 22px 55px rgba(12, 29, 52, 0.08);
}

.iso-certification-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.8rem);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 24px 55px rgba(0, 82, 145, 0.17);
}

.iso-certification-badge::before,
.iso-certification-badge::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.iso-certification-badge::before {
  inset: -12px;
  border: 1px dashed rgba(27, 142, 76, 0.38);
}

.iso-certification-badge::after {
  inset: -22px;
  border: 1px solid rgba(0, 110, 191, 0.08);
}

.iso-certification-badge img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.iso-certification-copy {
  max-width: 720px;
}

.iso-certification-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.iso-certification-points div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.72rem 0.95rem;
  border: 1px solid #d7e9df;
  border-radius: 12px;
  background: #f6fbf8;
  color: #385a48;
  font-size: 0.78rem;
  font-weight: 800;
}

.iso-certification-points i {
  color: var(--le-green, #1b8e4c);
}

/* Footer legal links stay separate from the main column layout. */
.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-legal-row p {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-legal-row p i {
  color: #8bddaa;
}

.footer-legal-row nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

.footer-legal-row nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-legal-row nav a:hover {
  color: #a9e8bf;
}

@media (max-width: 900px) {
  .legal-summary-grid {
    grid-template-columns: 1fr;
  }

  .legal-page-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

  .iso-certification-panel {
    grid-template-columns: 1fr;
  }

  .iso-certification-badge {
    width: min(72vw, 285px);
  }
}

@media (max-width: 640px) {
  .legal-summary-section,
  .legal-content-section,
  .legal-related-section,
  .iso-certification-section {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-document-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legal-contact-note {
    flex-direction: column;
  }

  .iso-certification-panel {
    padding: 1.5rem;
  }

  .iso-certification-points {
    display: grid;
  }

  .footer-legal-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal-row nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    justify-content: start;
  }
}
