/* ═══════════════════════════════════════════════════════
   THREATNOVA SECURITY — STATIC HTML/CSS/JS BUILD
   Design system: Tailwind-equivalent utilities + custom design
   ═══════════════════════════════════════════════════════ */

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-space: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --bg: #F8FAFC;
  --fg: #0F172A;
  --card: #FFFFFF;
  --muted: #F1F5F9;
  --muted-fg: #64748B;
  --border: rgba(0,0,0,0.08);

  --primary: #0891B2;
  --primary-fg: #FFFFFF;
  --accent: #6366F1;
  --destructive: #DC2626;

  --nova-cyan: #0891B2;
  --nova-blue: #2563EB;
  --nova-purple: #6366F1;
  --nova-green: #059669;
  --nova-red: #DC2626;
  --nova-orange: #EA580C;
  --nova-pink: #D946EF;
  --nova-teal: #0D9488;
  --nova-indigo: #8B5CF6;

  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
}

/* ─── Reset & Base ─── */
* { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* ─── Custom scrollbar ─── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #F8FAFC; }
::-webkit-scrollbar-thumb { background: rgba(8,145,178,0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(8,145,178,0.45); }

/* ═══════════════════════════════════════════════════════
   UTILITY CLASSES (Tailwind-equivalent essentials)
   ═══════════════════════════════════════════════════════ */

/* Layout */
.container { width: 100%; max-width: 80rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }
.container-sm { max-width: 56rem; }
.container-md { max-width: 64rem; }
.container-lg { max-width: 72rem; }
.container-xl { max-width: 80rem; }

.mx-auto { margin: 0 auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[5\] { z-index: 5; }
.z-\[1\] { z-index: 1; }

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

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }

/* Flex utilities */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }
.self-center { align-self: center; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-12 { grid-column: span 12 / span 12; }
.col-start-1 { grid-column-start: 1; }

/* Gaps */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-x-12 { column-gap: 3rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-10 { padding-right: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

/* Width/Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-full { max-width: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-\[600px\] { min-height: 600px; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.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; }

/* Font sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }

/* Font weights */
.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Letter spacing */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Line height */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-\[1\.05\] { line-height: 1.05; }

/* Text colors */
.text-white { color: #FFFFFF; }
.text-black { color: #000000; }
.text-gray-900 { color: #0F172A; }
.text-gray-800 { color: #1E293B; }
.text-gray-700 { color: #334155; }
.text-gray-600 { color: #475569; }
.text-gray-500 { color: #64748B; }
.text-gray-400 { color: #94A3B8; }
.text-gray-300 { color: #CBD5E1; }
.text-gray-200 { color: #E2E8F0; }
.text-gray-100 { color: #F1F5F9; }
.text-cyan-600 { color: #0891B2; }
.text-cyan-500 { color: #06B6D4; }
.text-cyan-700 { color: #0E7490; }
.text-blue-600 { color: #2563EB; }
.text-blue-500 { color: #3B82F6; }
.text-indigo-600 { color: #4F46E5; }
.text-indigo-500 { color: #6366F1; }
.text-purple-600 { color: #9333EA; }
.text-emerald-600 { color: #059669; }
.text-emerald-500 { color: #10B981; }
.text-amber-500 { color: #F59E0B; }
.text-amber-400 { color: #FBBF24; }
.text-rose-500 { color: #F43F5E; }
.text-red-600 { color: #DC2626; }
.text-pink-600 { color: #DB2777; }
.text-fuchsia-600 { color: #C026D3; }
.text-orange-600 { color: #EA580C; }
.text-teal-600 { color: #0D9488; }
.text-slate-900 { color: #0F172A; }

/* Background colors */
.bg-white { background-color: #FFFFFF; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }
.bg-bg { background-color: var(--bg); }
.bg-muted { background-color: var(--muted); }
.bg-card { background-color: var(--card); }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-100 { background-color: #F3F4F6; }
.bg-gray-200 { background-color: #E5E7EB; }
.bg-gray-900 { background-color: #111827; }
.bg-slate-50 { background-color: #F8FAFC; }
.bg-slate-100 { background-color: #F1F5F9; }
.bg-slate-900 { background-color: #0F172A; }
.bg-cyan-50 { background-color: #ECFEFF; }
.bg-cyan-100 { background-color: #CFFAFE; }
.bg-cyan-500 { background-color: #06B6D4; }
.bg-cyan-600 { background-color: #0891B2; }
.bg-blue-50 { background-color: #EFF6FF; }
.bg-blue-100 { background-color: #DBEAFE; }
.bg-blue-600 { background-color: #2563EB; }
.bg-indigo-50 { background-color: #EEF2FF; }
.bg-indigo-100 { background-color: #E0E7FF; }
.bg-indigo-600 { background-color: #4F46E5; }
.bg-purple-50 { background-color: #FAF5FF; }
.bg-purple-100 { background-color: #F3E8FF; }
.bg-emerald-50 { background-color: #ECFDF5; }
.bg-emerald-100 { background-color: #D1FAE5; }
.bg-emerald-500 { background-color: #10B981; }
.bg-amber-50 { background-color: #FFFBEB; }
.bg-amber-100 { background-color: #FEF3C7; }
.bg-rose-50 { background-color: #FFF1F2; }
.bg-red-50 { background-color: #FEF2F2; }
.bg-red-100 { background-color: #FEE2E2; }
.bg-orange-50 { background-color: #FFF7ED; }
.bg-orange-100 { background-color: #FFEDD5; }
.bg-pink-50 { background-color: #FDF2F8; }
.bg-pink-100 { background-color: #FCE7F3; }
.bg-fuchsia-50 { background-color: #FDF4FF; }
.bg-teal-50 { background-color: #F0FDFA; }
.bg-teal-100 { background-color: #CCFBF1; }

/* Borders */
.border { border: 1px solid var(--border); }
.border-0 { border: none; }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-l { border-left: 1px solid var(--border); }
.border-r { border-right: 1px solid var(--border); }
.border-gray-100 { border-color: #F3F4F6; }
.border-gray-200 { border-color: #E5E7EB; }
.border-gray-300 { border-color: #D1D5DB; }
.border-cyan-100 { border-color: #CFFAFE; }
.border-cyan-200 { border-color: #A5F3FC; }
.border-cyan-400 { border-color: #22D3EE; }
.border-blue-100 { border-color: #DBEAFE; }
.border-indigo-100 { border-color: #E0E7FF; }
.border-emerald-100 { border-color: #D1FAE5; }
.border-emerald-200 { border-color: #A7F3D0; }

/* Border radius */
.rounded { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }
.rounded-t-2xl { border-top-left-radius: var(--radius-2xl); border-top-right-radius: var(--radius-2xl); }
.rounded-b-2xl { border-bottom-left-radius: var(--radius-2xl); border-bottom-right-radius: var(--radius-2xl); }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-cyan-200 { box-shadow: 0 4px 6px -1px rgba(8,145,178,0.15); }
.shadow-cyan-500\/20 { box-shadow: 0 10px 25px rgba(8,145,178,0.2); }

/* Display responsive helpers */
@media (min-width: 640px) {
  .sm\:flex { display: flex !important; }
  .sm\:hidden { display: none !important; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:grid { display: grid; }
  .sm\:text-left { text-align: left; }
  .sm\:text-center { text-align: center; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-center { justify-content: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:w-auto { width: auto; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
}
@media (min-width: 768px) {
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
  .md\:grid { display: grid; }
  .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\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:text-left { text-align: left; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:w-64 { width: 16rem; }
  .md\:w-auto { width: auto; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
  .lg\:grid { display: grid; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:py-40 { padding-top: 10rem; padding-bottom: 10rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Visibility */
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Position offsets */
.top-3 { top: 0.75rem; }
.left-3 { left: 0.75rem; }
.right-3 { right: 0.75rem; }
.bottom-3 { bottom: 0.75rem; }
.top-8 { top: 2rem; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.opacity-\[0\.04\] { opacity: 0.04; }
.opacity-\[0\.06\] { opacity: 0.06; }
.opacity-\[0\.03\] { opacity: 0.03; }

/* Transitions */
.transition { transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition: color 0.15s, background-color 0.15s, border-color 0.15s; }
.transition-transform { transition: transform 0.15s; }
.transition-opacity { transition: opacity 0.15s; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

/* Backdrop blur */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

/* Flex gap helpers */
.flex-wrap { flex-wrap: wrap; }

/* Whitespace */
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-wrap { white-space: pre-wrap; }

/* Vertical align */
.align-middle { vertical-align: middle; }
.align-top { vertical-align: top; }

/* List style */
.list-none { list-style: none; }
.list-disc { list-style: disc; }

/* Mix blend */
.mix-blend-overlay { mix-blend-mode: overlay; }

/* Filter blur */
.blur { filter: blur(8px); }
.blur-sm { filter: blur(4px); }
.blur-md { filter: blur(12px); }
.blur-lg { filter: blur(16px); }
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }
.blur-\[100px\] { filter: blur(100px); }
.blur-\[120px\] { filter: blur(120px); }
.blur-\[150px\] { filter: blur(150px); }

/* Pointer events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Line clamp */
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* User select */
.select-none { user-select: none; }

/* ═══════════════════════════════════════════════════════
   CUSTOM COMPONENT STYLES
   ═══════════════════════════════════════════════════════ */

/* Glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.glass-card-hover:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #0891B2, #6366F1, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text-cyan {
  background: linear-gradient(135deg, #0891B2, #2563EB);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Cyber grid */
.cyber-grid {
  background-image:
    linear-gradient(rgba(8, 145, 178, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 145, 178, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Aurora gradient */
@keyframes aurora {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.aurora-gradient {
  background: linear-gradient(135deg, #F0FDFA, #ECFEFF, #EFF6FF, #F5F3FF, #F0FDFA);
  background-size: 400% 400%;
  animation: aurora 15s ease infinite;
}

/* Domain hero backgrounds */
.domain-hero-webdev { background: linear-gradient(160deg, #F5F3FF 0%, #EEF2FF 30%, #F8FAFC 100%); }
.domain-hero-cyber { background: linear-gradient(160deg, #ECFEFF 0%, #F0FDFA 30%, #F8FAFC 100%); }
.domain-hero-brand { background: linear-gradient(160deg, #FDF4FF 0%, #FAF5FF 30%, #F8FAFC 100%); }
.domain-hero-seo { background: linear-gradient(160deg, #ECFDF5 0%, #F0FDF4 30%, #F8FAFC 100%); }
.domain-hero-marketing { background: linear-gradient(160deg, #FFF7ED 0%, #FFFBEB 30%, #F8FAFC 100%); }
.domain-hero-panel { background: linear-gradient(160deg, #EFF6FF 0%, #F0F9FF 30%, #F8FAFC 100%); }
.domain-hero-hosting { background: linear-gradient(160deg, #F5F3FF 0%, #EDE9FE 30%, #F8FAFC 100%); }
.domain-hero-consultancy { background: linear-gradient(160deg, #F0F9FF 0%, #E0F2FE 30%, #F8FAFC 100%); }
.domain-hero-voice { background: linear-gradient(160deg, #F0FDFA 0%, #CCFBF1 30%, #F8FAFC 100%); }
.domain-hero-degrees { background: linear-gradient(160deg, #FEF2F2 0%, #FEE2E2 30%, #F8FAFC 100%); }

/* Pulse animation */
@keyframes pulse-cyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}
.pulse-cyan { animation: pulse-cyan 2s infinite; }

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

/* Marquee */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track.paused {
  animation-play-state: paused;
}

/* ═══ Redesigned Service Marquee ═══ */
.service-marquee-wrapper {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}
.service-marquee-viewport {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.service-marquee-viewport::before,
.service-marquee-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 5;
  pointer-events: none;
}
.service-marquee-viewport::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.6), transparent);
}
.service-marquee-viewport::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.6), transparent);
}
/* Track: all cards are direct children for consistent gap */
.service-marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
  will-change: transform;
}
.service-marquee-track.paused {
  animation-play-state: paused;
}
.service-marquee-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.service-marquee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.service-marquee-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.service-marquee-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.service-marquee-card-brand {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.2;
}
.service-marquee-card-tag {
  font-size: 0.6875rem;
  color: #64748B;
  line-height: 1.2;
}
/* Mobile adjustments */
@media (max-width: 480px) {
  .service-marquee-viewport { padding: 0.75rem 0.5rem; }
  .service-marquee-viewport::before,
  .service-marquee-viewport::after { display: none; }
}

/* Floating animation */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-anim-5 { animation: float-y 5s ease-in-out infinite; }
.float-anim-6 { animation: float-y 6s ease-in-out infinite; }
.float-anim-4-5 { animation: float-y 4.5s ease-in-out infinite; }
.float-anim-3 { animation: float-y 3s ease-in-out infinite; }

/* Shine animation */
@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
.shine-on-hover { position: relative; overflow: hidden; }
.shine-on-hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
  pointer-events: none;
}
.shine-on-hover:hover::after { transform: translateX(100%); }

/* Gradient border */
.gradient-border {
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(8,145,178,0.3), rgba(99,102,241,0.3), rgba(5,150,105,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #0891B2, #2563EB);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(8,145,178,0.2);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(to right, #06B6D4, #3B82F6);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(8,145,178,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  background: rgba(255,255,255,0.8);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: white;
  border-color: #D1D5DB;
  transform: translateY(-2px);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid transparent;
}
.badge-cyan { background: #ECFEFF; color: #0891B2; border-color: #CFFAFE; }
.badge-blue { background: #EFF6FF; color: #2563EB; border-color: #DBEAFE; }
.badge-indigo { background: #EEF2FF; color: #4F46E5; border-color: #E0E7FF; }
.badge-purple { background: #FAF5FF; color: #9333EA; border-color: #F3E8FF; }
.badge-emerald { background: #ECFDF5; color: #059669; border-color: #D1FAE5; }
.badge-amber { background: #FFFBEB; color: #D97706; border-color: #FEF3C7; }
.badge-rose { background: #FFF1F2; color: #E11D48; border-color: #FFE4E6; }

/* Section spacing */
.section { padding-top: 6rem; padding-bottom: 6rem; }
.section-sm { padding-top: 3rem; padding-bottom: 3rem; }
.section-lg { padding-top: 8rem; padding-bottom: 8rem; }

/* Hero section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #F0FDFA, #EFF6FF, #F5F3FF);
}
/* Icon container */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

/* Card hover */
.card-hover {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  cursor: pointer;
}
.nav-link:hover {
  color: #0F172A;
  background: #F9FAFB;
}
.nav-link.active {
  color: #0891B2;
  background: #ECFEFF;
}

/* Logo — now uses uploaded Logo.png via .navbar-logo-img and .footer-logo-img */

/* ═══ Navbar Logo (uploaded Logo.png) ═══ */
.navbar-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.navbar-logo-link:hover {
  opacity: 0.85;
}
.navbar-logo-img {
  height: 3rem;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .navbar-logo-img {
    height: 2.25rem;
    max-width: 180px;
  }
}


/* Mega menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 720px;
  background: white;
  border: 1px solid #F3F4F6;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  padding: 1.5rem;
  display: none;
  z-index: 100;
}
.nav-item-wrapper:hover .mega-menu {
  display: block;
  animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}
.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}
.mega-menu-item:hover {
  background: #F9FAFB;
}
.mega-menu-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 40;
  overflow-y: auto;
  padding: 1rem;
}
.mobile-menu.open {
  display: block;
}

/* Footer */
.footer {
  position: relative;
  border-top: 1px solid #F3F4F6;
  background: white;
  overflow: hidden;
}
.footer-link {
  display: block;
  font-size: 0.875rem;
  color: #64748B;
  padding: 0.25rem 0;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-link:hover {
  color: #0891B2;
}

/* Horizontal footer grid — redesigned */
.footer-horizontal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-horizontal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-horizontal-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links-col h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 1rem;
  font-family: var(--font-space);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  color: #94A3B8;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid #F3F4F6;
}
.footer-social-btn:hover {
  color: #0891B2;
  background: #ECFEFF;
  border-color: #CFFAFE;
  transform: translateY(-2px);
}

/* ═══ Footer Logo (uploaded Logo.png) ═══ */
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer-logo-img {
  height: 3.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ═══ Footer Global Badge (replaces broken image) ═══ */
.footer-global-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ECFEFF, #EFF6FF);
  border: 1px solid #CFFAFE;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  width: fit-content;
}
.footer-global-badge svg {
  color: #0891B2;
  width: 1rem;
  height: 1rem;
}

/* ═══ Footer Contact Info ═══ */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item:hover {
  color: #0891B2;
}
.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-sm);
  background: #F1F5F9;
  color: #0891B2;
  flex-shrink: 0;
}
.footer-contact-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* ═══ Footer Offices ═══ */
.footer-offices {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: #F8FAFC;
  border: 1px solid #F3F4F6;
}
.footer-office-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.footer-office-flag {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}
.footer-office-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.footer-office-city {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}
.footer-office-coming {
  padding-top: 0.625rem;
  border-top: 1px dashed #E2E8F0;
}
.footer-office-coming .footer-office-label {
  color: #0891B2;
}

/* ═══ Redesigned Newsletter Subscribe Box ═══ */
.newsletter-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  padding: 2rem;
}
.newsletter-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8,145,178,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.newsletter-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .newsletter-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.newsletter-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}
.newsletter-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0891B2, #6366F1);
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(8,145,178,0.3);
}
.newsletter-icon-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}
.newsletter-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
  font-family: var(--font-space);
}
.newsletter-subtitle {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-width: 28rem;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .newsletter-form {
    width: auto;
    min-width: 24rem;
  }
}
.newsletter-input-wrap {
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 0.375rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-input-wrap:focus-within {
  border-color: #22D3EE;
  box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.625rem 1rem;
  color: white;
  font-size: 0.875rem;
  font-family: inherit;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #0891B2, #6366F1);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(8,145,178,0.3);
}
.newsletter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(8,145,178,0.4);
}
.newsletter-submit:active {
  transform: translateY(0);
}
.newsletter-submit.success {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.newsletter-submit-icon svg {
  width: 1rem;
  height: 1rem;
}
.newsletter-hint {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
@media (min-width: 768px) {
  .newsletter-hint {
    text-align: right;
  }
}

/* Icon size helpers */
.icon-xs { width: 0.75rem; height: 0.75rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }
.icon-2xl { width: 2.5rem; height: 2.5rem; }
.icon-3xl { width: 3rem; height: 3rem; }

/* Floating Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #0891B2, #2563EB);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(8,145,178,0.4);
  transition: all 0.2s;
}
.chat-widget:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(8,145,178,0.5);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, #0891B2, #6366F1, #059669);
  z-index: 100;
  width: 0;
  transition: width 0.1s;
}

/* Particle canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Three.js canvas */
.three-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Loading shimmer */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Fallback: if JS doesn't run within 3s, show all reveal elements */
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal:not(.visible) {
  animation: reveal-fallback 0.6s cubic-bezier(0.22, 1, 0.36, 1) 3s forwards;
}
/* When JS adds .visible, cancel the fallback animation */
.reveal.visible {
  animation: none;
}

/* Stat counter */
.stat-counter {
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
@media (min-width: 640px) {
  .stat-counter { font-size: 2.5rem; }
}

/* Section heading */
.section-heading {
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #0F172A;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .section-heading { font-size: 2.25rem; line-height: 2.5rem; }
}

/* Subheading text */
.section-sub {
  color: #64748B;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* Avatar */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, #06B6D4, #2563EB);
  color: white;
  font-weight: 700;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #0F172A;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: none;
}
.toast.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Hover transform utilities */
.hover\:translate-y-1:hover { transform: translateY(0.25rem); }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.10); }
.hover\:bg-gray-50:hover { background-color: #F9FAFB; }
.hover\:bg-white:hover { background-color: #FFFFFF; }
.hover\:text-gray-900:hover { color: #0F172A; }
.hover\:text-cyan-600:hover { color: #0891B2; }
.hover\:text-blue-600:hover { color: #2563EB; }
.hover\:border-gray-300:hover { border-color: #D1D5DB; }

/* Group hover */
.group { position: relative; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.10); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:ml-0 { margin-left: 0; }
.group:hover .group-hover\:text-gray-900 { color: #0F172A; }

/* Icon stroke */
svg { stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
svg.fill-current { fill: currentColor; }

/* Print */
@media print {
  .navbar, .footer, .chat-widget, .scroll-progress { display: none !important; }
}

/* Misc helpers */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { -webkit-text-fill-color: transparent; color: transparent; }
.cursor-none { cursor: none; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.bg-gradient-to-br { background: linear-gradient(to bottom right, var(--grad-from, transparent), var(--grad-to, transparent)); }
.bg-gradient-to-r { background: linear-gradient(to right, var(--grad-from, transparent), var(--grad-to, transparent)); }
.from-cyan-500 { --grad-from: #06B6D4; }
.to-blue-600 { --grad-to: #2563EB; }
.from-cyan-600 { --grad-from: #0891B2; }
.from-cyan-50 { --grad-from: #ECFEFF; }
.via-blue-50 { --grad-via: #EFF6FF; }
.to-indigo-50 { --grad-to: #EEF2FF; }

/* Container with gradient line on top */
.gradient-line-top {
  position: relative;
}
.gradient-line-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(34, 211, 238, 0.4), transparent);
}

/* ═══════════════════════════════════════════════════════
   PRODUCTION ENHANCEMENTS
   ═══════════════════════════════════════════════════════ */

/* Three.js canvas containers — new scene types */
.three-particles-canvas,
.three-wave-canvas,
.three-tunnel-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Section with dark background for tunnel/wave scenes */
.section-dark-bg {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: white;
  overflow: hidden;
}
.section-dark-bg .section-heading { color: white; }
.section-dark-bg .section-sub { color: rgba(255,255,255,0.6); }
.section-dark-bg .glass-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}
.section-dark-bg .glass-card h3 { color: white; }
.section-dark-bg .glass-card p { color: rgba(255,255,255,0.7); }

/* Glow text for dark sections */
.glow-text-cyan {
  text-shadow: 0 0 20px rgba(8, 145, 178, 0.5);
}
.glow-text-indigo {
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* Enhanced card hover with glow */
.card-glow-hover {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card-glow-hover:hover {
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.15), 0 0 0 1px rgba(8, 145, 178, 0.1);
}

/* Stagger reveal — children appear one after another */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.stagger-children.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
.stagger-children.visible > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

/* Animated gradient border on hover */
@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-border-animated {
  position: relative;
  background: white;
  border-radius: var(--radius-2xl);
}
.gradient-border-animated::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #0891B2, #6366F1, #059669, #D946EF, #0891B2);
  background-size: 300% 300%;
  animation: gradient-rotate 4s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.gradient-border-animated:hover::before {
  opacity: 1;
}

/* Section divider with animated gradient */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,145,178,0.3), rgba(99,102,241,0.3), transparent);
  margin: 0 auto;
  max-width: 80rem;
}

/* Floating action glow */
@keyframes float-glow {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 25px rgba(8,145,178,0.4); }
  50% { transform: translateY(-4px); box-shadow: 0 20px 35px rgba(8,145,178,0.5); }
}
.float-glow {
  animation: float-glow 3s ease-in-out infinite;
}

/* Scroll indicator with bounce */
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}
.scroll-indicator {
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* Image lazy-load fade-in */
img { transition: opacity 0.3s; }
img[data-loaded="false"] { opacity: 0; }
img[data-loaded="true"] { opacity: 1; }

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Print-friendly */
@media print {
  .navbar, .footer, .chat-widget, .scroll-progress,
  .particle-canvas, .three-particles-canvas, .three-wave-canvas, .three-tunnel-canvas,
  #three-globe, #three-globe-mini, #three-particles, #three-wave, #three-tunnel {
    display: none !important;
  }
  body { background: white; color: black; }
  .glass-card { background: white; border: 1px solid #ddd; box-shadow: none; }
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid #0891B2;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Button hover ripple effect */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  pointer-events: none;
}
.btn-primary:active::after, .btn-secondary:active::after {
  width: 300px;
  height: 300px;
  transition: width 0s, height 0s;
}

/* Navbar link underline animation */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #0891B2, #6366F1);
  transition: width 0.3s, left 0.3s;
  border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
  left: 10%;
}

/* Mega menu item hover slide */
.mega-menu-item {
  transition: transform 0.2s, background-color 0.2s;
}
.mega-menu-item:hover {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   TIMELINE OF WORK (Company Journey)
   ═══════════════════════════════════════════════════════ */
.timeline-wrapper {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #0891B2 10%, #6366F1 50%, #0891B2 90%, transparent);
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .timeline-line {
    left: 1.5rem;
  }
}
.timeline-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.timeline-item-left {
  justify-content: flex-start;
}
.timeline-item-right {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .timeline-item-left,
  .timeline-item-right {
    justify-content: flex-start;
    padding-left: 3.5rem;
  }
}
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: white;
  border: 3px solid #0891B2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0891B2;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(8,145,178,0.2);
  transition: all 0.3s;
}
.timeline-item:hover .timeline-marker {
  background: linear-gradient(135deg, #0891B2, #6366F1);
  color: white;
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(8,145,178,0.3);
}
@media (max-width: 767px) {
  .timeline-marker {
    left: 1.5rem;
  }
}
.timeline-card {
  width: calc(50% - 3rem);
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-item:hover .timeline-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: #CFFAFE;
}
@media (max-width: 767px) {
  .timeline-card {
    width: 100%;
  }
}
.timeline-date {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0891B2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #ECFEFF;
  border: 1px solid #CFFAFE;
  margin-bottom: 0.75rem;
  font-family: var(--font-space);
}
.timeline-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.5rem;
  font-family: var(--font-space);
  line-height: 1.3;
}
.timeline-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   REDESIGNED CONTACT FORM
   ═══════════════════════════════════════════════════════ */
.contact-form-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}
.contact-form-card {
  position: relative;
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0891B2, #6366F1, #059669);
}
.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #F3F4F6;
}
.contact-form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0891B2, #6366F1);
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(8,145,178,0.25);
}
.contact-form-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.25rem;
  font-family: var(--font-space);
}
.contact-form-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.5;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.contact-field-full {
  grid-column: 1 / -1;
}
.contact-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.01em;
}
.contact-required {
  color: #DC2626;
}
.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: #0F172A;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}
.contact-input::placeholder {
  color: #94A3B8;
}
.contact-input:hover {
  border-color: #CBD5E1;
  background: white;
}
.contact-input:focus {
  border-color: #0891B2;
  background: white;
  box-shadow: 0 0 0 4px rgba(8,145,178,0.1);
}
.contact-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.contact-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #0891B2, #2563EB);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(8,145,178,0.25);
  margin-top: 0.5rem;
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8,145,178,0.35);
  background: linear-gradient(135deg, #06B6D4, #3B82F6);
}
.contact-submit:active {
  transform: translateY(0);
}
.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.contact-submit-icon svg {
  width: 1rem;
  height: 1rem;
}
.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: #94A3B8;
  text-align: center;
}
.contact-form-footer svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #0891B2;
  flex-shrink: 0;
}
.contact-link {
  color: #0891B2;
  text-decoration: none;
  font-weight: 500;
}
.contact-link:hover {
  text-decoration: underline;
}
