.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-\[1000\] { z-index: 1000; }
.z-\[2000\] { z-index: 2000; }

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.hidden.flex,
.hidden.grid,
.hidden.inline-flex,
.hidden.block { display: none; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-\[5px\] { gap: 5px; }
.gap-x-16 { column-gap: 4rem; }
.gap-y-16 { row-gap: 4rem; }
.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-16 > * + * { margin-top: 4rem; }
.space-y-24 > * + * { margin-top: 6rem; }

.order-1 { order: 1; }
.order-2 { order: 2; }

.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.h-5 { height: 1.25rem; }
.h-72 { height: 18rem; }
.h-full { height: 100%; }
.h-\[2px\] { height: 2px; }
.h-\[72px\] { height: 72px; }
.h-\[320px\] { height: 320px; }
.h-\[340px\] { height: 340px; }
.h-\[420px\] { height: 420px; }
.h-\[480px\] { height: 480px; }
.h-\[92vh\] { height: 92vh; }
.min-h-\[640px\] { min-height: 640px; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

.max-w-\[280px\] { max-width: 280px; }
.max-w-\[520px\] { max-width: 520px; }
.max-w-\[560px\] { max-width: 560px; }
.max-w-\[700px\] { max-width: 700px; }
.max-w-\[720px\] { max-width: 720px; }
.max-w-\[760px\] { max-width: 760px; }
.max-w-\[900px\] { max-width: 900px; }
.max-w-\[1100px\] { max-width: 1100px; }
.max-w-\[1200px\] { max-width: 1200px; }
.max-w-\[1240px\] { max-width: 1240px; }
.max-w-\[1400px\] { max-width: 1400px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-\[2px\] { margin-top: 2px; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-28 { margin-top: 7rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.p-2 { padding: 0.5rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-10 { padding: 2.5rem; }
.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-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-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-\[72px\] { padding-top: 72px; }
.pt-20 { padding-top: 5rem; }
.pb-0 { padding-bottom: 0; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }

.overflow-hidden { overflow: hidden; }
.break-all { word-break: break-all; }
.pointer-events-none { pointer-events: none; }
.shrink-0 { flex-shrink: 0; }
.object-cover { object-fit: cover; }

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

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-transparent { border-color: transparent; }
.border-\[\#ddd\] { border-color: #ddd; }
.border-\[\#eee\] { border-color: #eee; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/40 { border-color: rgba(255,255,255,0.4); }
.border-neutral-200 { border-color: #e5e5e5; }

.bg-white { background-color: #fff; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-\[\#F5F5F5\] { background-color: #F5F5F5; }
.bg-\[\#1E3A5F\] { background-color: #1E3A5F; }
.bg-\[\#1A1A1A\] { background-color: #1A1A1A; }
.bg-\[\#0f1f33\] { background-color: #0f1f33; }
.bg-\[\#eaeaea\] { background-color: #eaeaea; }
.bg-white\/90 { background-color: rgba(255,255,255,0.9); }
.bg-white\/95 { background-color: rgba(255,255,255,0.95); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-black\/75 { --tw-gradient-from: rgba(0,0,0,0.75); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via, rgba(0,0,0,0)); --tw-gradient-to: rgba(0,0,0,0); }
.from-black\/70 { --tw-gradient-from: rgba(0,0,0,0.7); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via, rgba(0,0,0,0)); --tw-gradient-to: rgba(0,0,0,0); }
.via-black\/45 { --tw-gradient-via: rgba(0,0,0,0.45); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(0,0,0,0)); }
.via-black\/20 { --tw-gradient-via: rgba(0,0,0,0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(0,0,0,0)); }
.to-black\/25 { --tw-gradient-to: rgba(0,0,0,0.25); }
.to-transparent { --tw-gradient-to: transparent; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-serif { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.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-\[15px\] { font-size: 15px; }
.text-\[1\.05rem\] { font-size: 1.05rem; }
.text-\[1\.1rem\] { font-size: 1.1rem; }
.text-\[1\.15rem\] { font-size: 1.15rem; }
.text-\[clamp\(1\.8rem\,3vw\,2\.4rem\)\] { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.text-\[clamp\(1\.8rem\,3vw\,2\.6rem\)\] { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.text-\[clamp\(2rem\,3vw\,2\.8rem\)\] { font-size: clamp(2rem, 3vw, 2.8rem); }
.text-\[clamp\(2\.6rem\,5vw\,4\.4rem\)\] { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.05\] { line-height: 1.05; }
.tracking-tight { letter-spacing: -0.015em; }
.tracking-\[-0\.01em\] { letter-spacing: -0.01em; }
.tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }

.text-black { color: #000; }
.text-white { color: #fff; }
.text-white\/40 { color: rgba(255,255,255,0.72); }
.text-white\/50 { color: rgba(255,255,255,0.8); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.82); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.text-\[\#1A1A1A\] { color: #1A1A1A; }
.text-\[\#1E3A5F\] { color: #1E3A5F; }
.text-\[\#555\] { color: #555; }
.text-\[\#666\] { color: #666; }
.text-\[\#777\] { color: #777; }
.text-gray-500 { color: #6b7280; }
.text-neutral-500 { color: #737373; }
.text-neutral-600 { color: #525252; }
.text-green-600 { color: #16a34a; }

.opacity-0 { opacity: 0; }
.translate-y-6 { transform: translateY(1.5rem); }
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-duration: 200ms; transition-timing-function: ease; }
.transition-all { transition-property: all; transition-duration: 200ms; transition-timing-function: ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.ease-\[cubic-bezier\(0\.22\,1\,0\.36\,1\)\] { transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.08); }

.hover\:bg-\[\#2a5080\]:hover { background-color: #2a5080; }
.hover\:bg-\[\#eaeaea\]:hover { background-color: #eaeaea; }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:border-\[\#1E3A5F\]:hover { border-color: #1E3A5F; }
.hover\:text-\[\#1E3A5F\]:hover { color: #1E3A5F; }
.hover\:text-white:hover { color: #fff; }
.hover\:opacity-70:hover { opacity: 0.7; }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:scale-\[1\.03\]:hover { transform: scale(1.03); }
.hover\:scale-\[1\.04\]:hover { transform: scale(1.04); }
.hover\:underline:hover { text-decoration: underline; }
.focus\:border-\[\#1E3A5F\]:focus { border-color: #1E3A5F; }
.focus\:outline-none:focus { outline: none; }

.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-\[1\.06\] { transform: scale(1.06); }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }

.menu { list-style: none; margin: 0; padding: 0; }
.menu > li { list-style: none; }

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:inline-block { display: inline-block; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .md\:h-\[520px\] { height: 520px; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:gap-10 { gap: 2.5rem; }
}

@media (max-width: 767.98px) {
  .md\:hidden:not(.hidden) { display: block; }
}
