/* ============================================
   Проф Рем Монтаж — Custom CSS
   Replaces Tailwind CSS CDN
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}

body {
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  color: #1f2937; /* text-gray-800 */
  background-color: #F5F7FA;
  overflow-x: hidden;
  line-height: 1.5;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: inherit; }
button, input, select, textarea { font-family: inherit; font-size: 100%; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button { cursor: pointer; background: transparent; border: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* --- Font Face --- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Alpine.js cloak replacement --- */
[data-cloak] { display: none !important; }

/* --- Hero Background --- */
.hero-bg {
  background: linear-gradient(rgba(15, 40, 98, 0.85), rgba(15, 40, 98, 0.7)), url('/bg2-min.png');
  background-size: cover;
  background-position: center;
}

/* --- Custom scrollbar --- */
.mega-menu-scroll::-webkit-scrollbar { width: 6px; }
.mega-menu-scroll::-webkit-scrollbar-track { background: #f1f1f1; }
.mega-menu-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.mega-menu-scroll::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ============================================
   Layout & Display
   ============================================ */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }

/* Flex */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-12 { row-gap: 3rem; }

/* Order */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* ============================================
   Sizing
   ============================================ */
.w-full { width: 100%; }
.w-1\/3 { width: 33.333%; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.w-\[900px\] { width: 900px; }

.h-0\.5 { height: 0.125rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-px { height: 1px; }
.h-\[400px\] { height: 400px; }

.min-h-screen { min-height: 100vh; }
.min-h-\[400px\] { min-height: 400px; }
.min-w-full { min-width: 100%; }

.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }

.max-h-\[85vh\] { max-height: 85vh; }
.max-h-full { max-height: 100%; }
.max-h-\[400px\] { max-height: 400px; }

/* ============================================
   Spacing
   ============================================ */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }
.-mt-20 { margin-top: -5rem; }
.-mt-32 { margin-top: -8rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.-mb-6 { margin-bottom: -1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-auto { margin-left: auto; }
.-mr-20 { margin-right: -5rem; }
.-mr-32 { margin-right: -8rem; }

/* Padding */
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-\[68px\] { padding-top: 68px; }
.pb-2 { padding-bottom: 0.5rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }

/* Space Between */
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* Divide */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-gray-100 > * + * { border-color: #f3f4f6; }

/* ============================================
   Positioning
   ============================================ */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-12 { top: 3rem; }
.top-20 { top: 5rem; }
.top-full { top: 100%; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-6 { bottom: 1.5rem; }
.left-0 { left: 0; }
.-left-4 { left: -1rem; }
.left-6 { left: 1.5rem; }

/* Z-index */
.z-10 { z-index: 10; }
.-z-10 { z-index: -10; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }

/* ============================================
   Typography
   ============================================ */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { overflow-wrap: break-word; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.underline { text-decoration-line: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.decoration-dotted { text-decoration-style: dotted; }
.decoration-gray-300 { text-decoration-color: #d1d5db; }

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Prose */
.prose { max-width: 65ch; }
.prose p { margin-top: 1.25em; margin-bottom: 1.25em; }
.prose strong { font-weight: 700; }
.prose ul { list-style-type: disc; padding-left: 1.625em; }
.prose ol { list-style-type: decimal; padding-left: 1.625em; }
.prose li { margin-top: 0.5em; margin-bottom: 0.5em; }
.prose h2 { margin-top: 2em; margin-bottom: 1em; }
.prose h3 { margin-top: 1.6em; margin-bottom: 0.6em; }
.prose h4 { margin-top: 1.5em; margin-bottom: 0.5em; }

/* List styles */
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-inside { list-style-position: inside; }

/* ============================================
   Colors — Text
   ============================================ */
.text-white { color: #fff; }
.text-white\/30 { color: rgba(255, 255, 255, 0.3); }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-green-400 { color: #4ade80; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }
.text-orange-100 { color: #ffedd5; }
.text-red-600 { color: #dc2626; }
.text-blue-200 { color: #bfdbfe; }
.text-\[\#0F2862\] { color: #0F2862; }
.text-\[\#FF4500\] { color: #FF4500; }

/* ============================================
   Colors — Background
   ============================================ */
.bg-white { background-color: #fff; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-500\/20 { background-color: rgba(239, 68, 68, 0.2); }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-500\/20 { background-color: rgba(34, 197, 94, 0.2); }
.bg-green-600 { background-color: #16a34a; }
.bg-orange-50 { background-color: #fff7ed; }
.bg-\[\#0a1c45\] { background-color: #0a1c45; }
.bg-\[\#0F2862\] { background-color: #0F2862; }
.bg-\[\#0F2862\]\/10 { background-color: rgba(15, 40, 98, 0.1); }
.bg-\[\#0F2862\]\/5 { background-color: rgba(15, 40, 98, 0.05); }
.bg-\[\#1B3A4B\] { background-color: #1B3A4B; }
.bg-\[\#F5F7FA\] { background-color: #F5F7FA; }
.bg-\[\#FF4500\] { background-color: #FF4500; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-orange-100 { background-color: #ffedd5; }
.bg-orange-50\/50 { background-color: rgba(255, 247, 237, 0.5); }
.bg-red-100 { background-color: #fee2e2; }

/* Gradient */
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-\[\#0F2862\] { --tw-gradient-from: #0F2862; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 40, 98, 0)); }
.from-\[\#0F2862\]\/5 { --tw-gradient-from: rgba(15, 40, 98, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 40, 98, 0)); }
.from-\[\#0F2862\]\/90 { --tw-gradient-from: rgba(15, 40, 98, 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 40, 98, 0)); }
.from-\[\#FF4500\] { --tw-gradient-from: #FF4500; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 69, 0, 0)); }
.from-white { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.via-white\/80 { --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 255, 255, 0.8), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.to-\[\#1a3a7a\] { --tw-gradient-to: #1a3a7a; }
.to-\[\#e03e00\] { --tw-gradient-to: #e03e00; }
.to-\[\#FF4500\]\/5 { --tw-gradient-to: rgba(255, 69, 0, 0.05); }

/* ============================================
   Borders
   ============================================ */
.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #e5e7eb; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: #e5e7eb; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-dashed { border-style: dashed; }
.border-collapse { border-collapse: collapse; }

.border-gray-50 { border-color: #f9fafb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-200\/50 { border-color: rgba(229, 231, 235, 0.5); }
.border-gray-300 { border-color: #d1d5db; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-green-500\/30 { border-color: rgba(34, 197, 94, 0.3); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
.border-\[\#0F2862\] { border-color: #0F2862; }
.border-\[\#0F2862\]\/10 { border-color: rgba(15, 40, 98, 0.1); }
.border-\[\#FF4500\] { border-color: #FF4500; }
.border-\[\#FF4500\]\/20 { border-color: rgba(255, 69, 0, 0.2); }
.border-blue-100 { border-color: #dbeafe; }

/* ============================================
   Border Radius
   ============================================ */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-r-lg { border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

/* ============================================
   Shadows
   ============================================ */
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-orange-500\/20 { --tw-shadow-color: rgba(249, 115, 22, 0.2); box-shadow: 0 10px 15px -3px var(--tw-shadow-color); }
.shadow-orange-500\/30 { --tw-shadow-color: rgba(249, 115, 22, 0.3); box-shadow: 0 10px 15px -3px var(--tw-shadow-color); }
.shadow-orange-900\/30 { --tw-shadow-color: rgba(124, 45, 18, 0.3); box-shadow: 0 20px 25px -5px var(--tw-shadow-color); }

/* ============================================
   Effects
   ============================================ */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.disabled\:opacity-50:disabled { opacity: 0.5; }

.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.blur-3xl { filter: blur(64px); }
.filter { filter: var(--tw-filter); }

.fill-current { fill: currentColor; }
.object-cover { object-fit: cover; }
.pointer-events-none { pointer-events: none; }
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

/* ============================================
   Overflow
   ============================================ */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* ============================================
   Transforms
   ============================================ */
.transform { transform: var(--tw-transform); }
.rotate-3 { transform: rotate(3deg); }
.rotate-180 { transform: rotate(180deg); }

/* ============================================
   Transitions & Animations
   ============================================ */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ============================================
   Hover States
   ============================================ */
.hover\:bg-\[\#0a1c45\]:hover { background-color: #0a1c45; }
.hover\:bg-\[\#e03e00\]:hover { background-color: #e03e00; }
.hover\:bg-\[\#FF4500\]:hover { background-color: #FF4500; }
.hover\:bg-blue-50\/30:hover { background-color: rgba(239, 246, 255, 0.3); }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:border-\[\#FF4500\]:hover { border-color: #FF4500; }
.hover\:text-\[\#FF4500\]:hover { color: #FF4500; }
.hover\:text-gray-600:hover { color: #4b5563; }
.hover\:text-white:hover { color: #fff; }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hover\:border-\[\#FF4500\]\/30:hover { border-color: rgba(255, 69, 0, 0.3); }
.hover\:pl-1:hover { padding-left: 0.25rem; }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:decoration-\[\#FF4500\]:hover { text-decoration-color: #FF4500; }

/* ============================================
   Focus States
   ============================================ */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color, #3b82f6); }
.focus\:ring-blue-900:focus { --tw-ring-color: #1e3a8a; }
.focus\:border-transparent:focus { border-color: transparent; }

/* ============================================
   Group Hover States
   ============================================ */
.group:hover .group-hover\:bg-blue-50 { background-color: #eff6ff; }
.group:hover .group-hover\:border-\[\#FF4500\] { border-color: #FF4500; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-\[\#0F2862\] { color: #0F2862; }
.group:hover .group-hover\:text-\[\#FF4500\] { color: #FF4500; }
.group:hover .group-hover\:text-gray-900 { color: #111827; }
.group:hover .group-hover\:text-green-700 { color: #15803d; }
.group:hover .group-hover\:text-orange-600 { color: #ea580c; }
.group:hover .group-hover\:text-red-600 { color: #dc2626; }
.group:hover .group-hover\:text-teal-600 { color: #0d9488; }
.group:hover .group-hover\:text-yellow-500 { color: #eab308; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:bg-\[\#FF4500\] { background-color: #FF4500; }
.group:hover .group-hover\:bg-blue-100 { background-color: #dbeafe; }
.group:hover .group-hover\:bg-green-100 { background-color: #dcfce7; }
.group:hover .group-hover\:bg-orange-100 { background-color: #ffedd5; }
.group:hover .group-hover\:bg-red-100 { background-color: #fee2e2; }

/* ============================================
   Responsive — sm (640px+)
   ============================================ */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================================
   Responsive — md (768px+)
   ============================================ */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:gap-8 { gap: 2rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:space-x-3 > * + * { margin-left: 0.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-left { text-align: left; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:p-10 { padding: 2.5rem; }
}

/* ============================================
   Responsive — lg (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:p-16 { padding: 4rem; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-1\/3 { width: 33.333%; }
  .lg\:w-2\/3 { width: 66.667%; }
  .lg\:h-\[500px\] { height: 500px; }
  .lg\:h-auto { height: auto; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}

/* ============================================
   Table Styles
   ============================================ */
table.min-w-full { min-width: 100%; }
table th, table td { padding: 0.75rem 1rem; text-align: left; }

/* ============================================
   SEO expand/collapse
   ============================================ */
.seo-content { max-height: 400px; overflow: hidden; transition: max-height 0.5s ease-in-out; }
.seo-content.expanded { max-height: none; }
.seo-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 8rem; background: linear-gradient(to top, #fff, rgba(255,255,255,0.8), transparent); pointer-events: none; }
.seo-content.expanded + .seo-fade,
.seo-content.expanded ~ .seo-fade { display: none; }

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer.open { max-height: 500px; }

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu { max-height: 85vh; overflow-y: auto; }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.mobile-submenu.open { max-height: 2000px; }

/* ============================================
   Modal
   ============================================ */
.modal-overlay { display: none; }
.modal-overlay.active { display: flex; }
.modal-content { transform: scale(0.9); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
.modal-overlay.active .modal-content { transform: scale(1); opacity: 1; }

/* ============================================
   Mega Menu
   ============================================ */
.mega-menu { display: none; opacity: 0; transform: translateY(0.5rem); transition: opacity 0.2s ease, transform 0.2s ease; }
.mega-menu.active { display: block; opacity: 1; transform: translateY(0); }

/* ============================================
   Misc utility overrides
   ============================================ */
.ring-2 { box-shadow: 0 0 0 2px; }
.ring-red-500 { --tw-ring-color: #ef4444; box-shadow: 0 0 0 2px #ef4444; }
