/* ============================================
   EYA Concept — Theme Styles
   Replaces Tailwind utility classes from V8
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --eya-primary: #3B82F6;
  --eya-secondary: #A855F7;
  --eya-bg: #000000;
  --eya-surface: #0a0a0a;
  --eya-surface-high: #080808;
  --eya-surface-highest: #111111;
  --eya-surface-bright: #1a1a1a;
  --eya-text: #f1f5f9;
  --eya-text-muted: #94a3b8;
  --eya-text-dim: #475569;
  --eya-primary-container: #1E3A8A;
  --eya-ghost: rgba(59, 130, 246, 0.15);
  --eya-ghost-hover: rgba(59, 130, 246, 0.40);
  --eya-radius: 2px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body {
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--eya-text);
  background-color: var(--eya-bg);
  overflow-x: hidden;
}
/* WordPress block theme wrapper — prevent horizontal overflow */
.wp-site-blocks { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Selection */
::selection { background: var(--eya-primary-container); color: #fff; }

/* --- Layout --- */
.max-w-7xl { max-width: 1280px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.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; }
.top-6 { top: 1.5rem; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.\!z-\[60\], .z-\[60\] { z-index: 60; }

/* --- Flexbox --- */
.flex { display: flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.h-fit { height: fit-content; }

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

/* --- Gap --- */
.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-24 { gap: 6rem; }

/* --- Spacing (Padding) --- */
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.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; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-12 { padding-top: 3rem; }
.pt-24 { padding-top: 6rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-12 { padding-bottom: 3rem; }

/* --- Spacing (Margin) --- */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.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-24 { margin-bottom: 6rem; }
.mb-32 { margin-bottom: 8rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-8 { margin-top: 2rem; }

/* --- Typography — Font Family --- */
.font-headline { font-family: Montserrat, sans-serif; }
.font-body { font-family: Inter, sans-serif; }
.font-label { font-family: Inter, sans-serif; }

/* --- Typography — Weight --- */
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* --- Typography — Size --- */
.text-\[10px\] { font-size: 10px; }
.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; }

/* --- Typography — Style --- */
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[0\.9\] { line-height: 0.9; }
.whitespace-nowrap { white-space: nowrap; }
.select-none { user-select: none; }
.resize-none { resize: none; }

/* --- Typography — Max Width --- */
.max-w-sm { max-width: 24rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

/* --- Colors — Text --- */
.text-white { color: #ffffff; }
.text-primary { color: var(--eya-primary); }
.text-secondary { color: var(--eya-secondary); }
.text-on-surface { color: var(--eya-text); }
.text-on-surface-variant { color: var(--eya-text-muted); }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-transparent { color: transparent; }

/* --- Colors — Background --- */
.bg-black { background-color: #000000; }
.bg-surface { background-color: var(--eya-bg); }
.bg-surface-container { background-color: var(--eya-surface); }
.bg-surface-container-high { background-color: var(--eya-surface-high); }
.bg-surface-container-highest { background-color: var(--eya-surface-highest); }
.bg-primary { background-color: var(--eya-primary); }
.bg-secondary { background-color: var(--eya-secondary); }
.bg-tertiary-container { background-color: var(--eya-primary); }
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }

/* Background with opacity */
.bg-primary\/5 { background-color: rgba(59, 130, 246, 0.05); }
.bg-primary\/\[0\.05\] { background-color: rgba(59, 130, 246, 0.05); }
.bg-primary\/\[0\.06\] { background-color: rgba(59, 130, 246, 0.06); }
.bg-primary\/10 { background-color: rgba(59, 130, 246, 0.10); }
.bg-primary\/15 { background-color: rgba(59, 130, 246, 0.15); }
.bg-secondary\/10 { background-color: rgba(168, 85, 247, 0.10); }
.bg-secondary\/\[0\.04\] { background-color: rgba(168, 85, 247, 0.04); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-surface-container\/40 { background-color: rgba(10, 10, 10, 0.40); }
.bg-surface-container\/20 { background-color: rgba(10, 10, 10, 0.20); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.40); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.80); }
.bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }

/* --- Borders --- */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-y { border-top-width: 1px; border-top-style: solid; border-bottom-width: 1px; border-bottom-style: solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.10); }
.border-primary { border-color: var(--eya-primary); }
.border-primary\/20 { border-color: rgba(59, 130, 246, 0.20); }
.border-primary\/40 { border-color: rgba(59, 130, 246, 0.40); }
.border-primary\/50 { border-color: rgba(59, 130, 246, 0.50); }
.rounded-full { border-radius: 9999px; }

/* --- Sizing --- */
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.w-auto { width: auto; }
.h-auto { height: auto; }
.min-h-\[540px\] { min-height: 540px; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }

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

/* --- Filters --- */
.grayscale { filter: grayscale(100%); }
.blur-\[80px\] { filter: blur(80px); }
.blur-\[100px\] { filter: blur(100px); }
.blur-\[120px\] { filter: blur(120px); }
.blur-\[150px\] { filter: blur(150px); }
.blur-\[180px\] { filter: blur(180px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* --- Opacity --- */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-40 { opacity: 0.4; }
.opacity-\[0\.08\] { opacity: 0.08; }
.opacity-\[0\.12\] { opacity: 0.12; }
.opacity-25 { opacity: 0.25; }

/* --- Transforms --- */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.top-1\/4 { top: 25%; }
.bottom-1\/4 { bottom: 25%; }
.left-1\/3 { left: 33.333%; }
.right-1\/4 { right: 25%; }

/* --- Transitions --- */
.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; 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-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

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

/* --- Gradient Utilities --- */
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops, #000, transparent)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops, #000, transparent)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops, #000, transparent)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-black { --tw-gradient-from: #000; --tw-gradient-stops: #000, transparent; }
.from-primary { --tw-gradient-from: var(--eya-primary); --tw-gradient-stops: var(--eya-primary), transparent; }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from, #000), transparent, var(--tw-gradient-to, transparent); }
.via-primary\/60 { --tw-gradient-stops: var(--tw-gradient-from), rgba(59,130,246,0.6), var(--tw-gradient-to, transparent); }
.to-transparent { --tw-gradient-to: transparent; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* --- Pseudo-positioned helpers --- */
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* --- Specific position values (used in hero stars) --- */
.top-\[15\%\] { top: 15%; }
.top-\[20\%\] { top: 20%; }
.top-\[25\%\] { top: 25%; }
.top-\[35\%\] { top: 35%; }
.top-\[40\%\] { top: 40%; }
.top-\[50\%\] { top: 50%; }
.top-\[60\%\] { top: 60%; }
.top-\[70\%\] { top: 70%; }
.top-\[80\%\] { top: 80%; }
.top-\[10\%\] { top: 10%; }
.left-\[22\%\] { left: 22%; }
.left-\[12\%\] { left: 12%; }
.left-\[30\%\] { left: 30%; }
.left-\[45\%\] { left: 45%; }
.left-\[55\%\] { left: 55%; }
.left-\[70\%\] { left: 70%; }
.right-\[18\%\] { right: 18%; }
.right-\[10\%\] { right: 10%; }
.right-\[25\%\] { right: 25%; }
.right-\[35\%\] { right: 35%; }

/* Star/nebula sizing */
.w-\[2px\] { width: 2px; }
.w-\[3px\] { width: 3px; }
.h-\[2px\] { height: 2px; }
.h-\[3px\] { height: 3px; }
.w-\[140vw\] { width: 140vw; }
.h-\[140vh\] { height: 140vh; }
.w-\[350px\] { width: 350px; }
.h-\[350px\] { height: 350px; }
.w-\[400px\] { width: 400px; }
.h-\[400px\] { height: 400px; }
.w-\[500px\] { width: 500px; }
.h-\[500px\] { height: 500px; }
.w-\[600px\] { width: 600px; }
.h-\[600px\] { height: 600px; }
.w-\[800px\] { width: 800px; }
.h-\[800px\] { height: 800px; }
.w-64 { width: 16rem; }
.h-64 { height: 16rem; }
.w-\[340px\] { width: 340px; }
.h-\[340px\] { height: 340px; }
.h-\[60vh\] { height: 60vh; }
.w-\[40px\] { width: 40px; }

/* --- Negative positions --- */
.-top-8 { top: -2rem; }
.-left-8 { left: -2rem; }
.-left-4 { left: -1rem; }
.-left-2 { left: -0.5rem; }
.-top-4 { top: -1rem; }
.-top-24 { top: -6rem; }
.-right-24 { right: -6rem; }
.-z-10 { z-index: -10; }
.-inset-\[1px\] { top: -1px; right: -1px; bottom: -1px; left: -1px; }
.-translate-y-1 { transform: translateY(-0.25rem); }

/* --- Specific font sizes --- */
.text-\[120px\] { font-size: 120px; }
.text-\[15vw\] { font-size: 15vw; }

/* --- Hover States --- */
.hover\:text-white:hover { color: #fff; }
.hover\:text-primary:hover { color: var(--eya-primary); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-primary:hover { background-color: var(--eya-primary); }
.hover\:bg-primary\/5:hover { background-color: rgba(59, 130, 246, 0.05); }
.hover\:bg-primary\/15:hover { background-color: rgba(59, 130, 246, 0.15); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-surface-container-high:hover { background-color: var(--eya-surface-high); }
.hover\:border-primary\/40:hover { border-color: rgba(59, 130, 246, 0.40); }
.hover\:border-primary\/50:hover { border-color: rgba(59, 130, 246, 0.50); }
/* Service card hover lift — needs to override .reveal.active transform */
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem) !important; }
.hover\:grayscale-0:hover { filter: grayscale(0%); }
.hover\:scale-105:hover { transform: scale(1.05) !important; }
.hover\:scale-110:hover { transform: scale(1.1) !important; }
.hover\:shadow-\[0_0_20px_rgba\(59\2c 130\2c 246\2c 0\.3\)\]:hover { box-shadow: 0 0 20px rgba(59,130,246,0.3); }
.hover\:shadow-\[0_0_20px_rgba\(59\2c 130\2c 246\2c 0\.4\)\]:hover { box-shadow: 0 0 20px rgba(59,130,246,0.4); }
.hover\:shadow-\[0_0_25px_rgba\(59\2c 130\2c 246\2c 0\.3\)\]:hover { box-shadow: 0 0 25px rgba(59,130,246,0.3); }
.hover\:shadow-\[0_0_25px_rgba\(59\2c 130\2c 246\2c 0\.4\)\]:hover { box-shadow: 0 0 25px rgba(59,130,246,0.4); }
.hover\:shadow-\[0_0_30px_rgba\(59\2c 130\2c 246\2c 0\.4\)\]:hover { box-shadow: 0 0 30px rgba(59,130,246,0.4); }

/* Group hover */
.group:hover .group-hover\:text-primary { color: var(--eya-primary); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:grayscale-0 { filter: grayscale(0%); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:bg-primary\/15 { background-color: rgba(59, 130, 246, 0.15); }

/* Group focus-within */
.group:focus-within .group-focus-within\:text-primary { color: var(--eya-primary); }

/* Active */
.active\:scale-95:active { transform: scale(0.95); }

/* --- Animate pulse --- */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* --- Shadow utilities --- */
.shadow-\[0_0_8px_rgba\(59\2c 130\2c 246\2c 0\.6\)\] {
  box-shadow: 0 0 8px rgba(59,130,246,0.6);
}

/* --- Form Resets --- */
.focus\:ring-0:focus { box-shadow: none; outline: none; }
.focus\:border-primary:focus { border-color: var(--eya-primary); }
.placeholder\:text-slate-800::placeholder { color: #1e293b; }
.appearance-none { appearance: none; -webkit-appearance: none; }

/* === RESPONSIVE: md (768px+) === */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex-row { flex-direction: row; }
  .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-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:p-24 { padding: 6rem; }
  .md\:gap-24 { gap: 6rem; }
  .md\:mt-16 { margin-top: 4rem; }
  .md\:mt-24 { margin-top: 6rem; }
  .md\:sticky { position: sticky; }
  .md\:top-32 { top: 8rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-\[120px\] { font-size: 120px; }
  .md\:text-\[160px\] { font-size: 160px; }
  .md\:text-\[20vw\] { font-size: 20vw; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:h-20 { height: 5rem; }
  .md\:right-16 { right: 4rem; }
  .md\:top-16 { top: 4rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:col-span-4 { grid-column: span 4; }
  .md\:col-span-8 { grid-column: span 8; }
}

/* Hide mobile-only on desktop */
.md\:hidden { }
@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
}

/* === NAVIGATION DROPDOWNS === */
.nav-dropdown-menu {
  z-index: 100;
}
.nav-dropdown-menu.active {
  display: block;
}
.dd-chevron.dd-open {
  transform: rotate(180deg);
}

/* Additional responsive utilities */
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.gap-10 { gap: 2.5rem; }
.gap-1 { gap: 0.25rem; }
.min-w-\[220px\] { min-width: 220px; }
.pt-3 { padding-top: 0.75rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-40 { padding-top: 10rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.gap-6 { gap: 1.5rem; }
.h-12 { height: 3rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }

/* Nebula responsive sizing */
.w-\[300px\] { width: 300px; }
.h-\[300px\] { height: 300px; }
.w-\[250px\] { width: 250px; }
.h-\[250px\] { height: 250px; }
.w-\[200px\] { width: 200px; }
.h-\[200px\] { height: 200px; }

/* Badge positioning */
.top-10 { top: 2.5rem; }
.right-10 { right: 2.5rem; }

@media (min-width: 768px) {
  .md\:w-\[600px\] { width: 600px; }
  .md\:h-\[600px\] { height: 600px; }
  .md\:w-\[500px\] { width: 500px; }
  .md\:h-\[500px\] { height: 500px; }
  .md\:w-\[350px\] { width: 350px; }
  .md\:h-\[350px\] { height: 350px; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:pt-40 { padding-top: 10rem; }
  .md\:p-24 { padding: 6rem; }
  .md\:pb-12 { padding-bottom: 3rem; }
  .md\:pt-12 { padding-top: 3rem; }
  .md\:mb-32 { margin-bottom: 8rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-2 { margin-bottom: 0.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:top-16 { top: 4rem; }
  .md\:right-16 { right: 4rem; }
  .md\:h-20 { height: 5rem; }
}

/* === GLOBAL SUBPAGE PADDING === */
/* WordPress block layouts have no horizontal padding by default.
   Apply px-6 (24px) on mobile, px-12 (48px) on desktop to every
   content wrapper so text never touches screen edges.
   Scoped to .wp-site-blocks to avoid affecting homepage patterns
   which handle their own padding via px-6 classes. */
.wp-site-blocks > main.wp-block-group,
.wp-site-blocks .wp-block-post-content.is-layout-constrained,
.wp-site-blocks .wp-block-query.is-layout-constrained,
.wp-site-blocks .wp-block-post-template {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .wp-site-blocks > main.wp-block-group,
  .wp-site-blocks .wp-block-post-content.is-layout-constrained,
  .wp-site-blocks .wp-block-query.is-layout-constrained,
  .wp-site-blocks .wp-block-post-template {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* === BLOCK CONTENT STYLING (for service/about/solution pages) === */
.wp-block-post-content {
  color: var(--eya-text-muted);
}
.wp-block-post-content h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: var(--eya-text);
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.wp-block-post-content h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: var(--eya-text);
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.wp-block-post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.wp-block-post-content ul,
.wp-block-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.wp-block-post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.wp-block-post-content li::marker {
  color: var(--eya-primary);
}
.wp-block-post-content strong {
  color: var(--eya-text);
  font-weight: 600;
}
.wp-block-post-content a {
  color: var(--eya-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wp-block-post-content a:hover {
  color: var(--eya-text);
}
.wp-block-post-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin: 3rem 0;
}
.wp-block-post-content .wp-block-separator {
  border-top-color: rgba(255,255,255,0.05);
}
