/* ============================================================
   Insulax Core CSS — Self-contained, no CDN dependency
   Replaces Tailwind CSS CDN for reliable Hostinger deployment
   ============================================================ */

/* Custom Properties */
:root {
  --navy: #0f1f2d;
  --steel: #1e3349;
  --accent: #e8752a;
  --accent-hover: #c7621a;
  --slate2: #2d3a4a;
  --soft: #f6f7f8;
  --muted: #667a8a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white: #ffffff;
  --black: #1a1a1a;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-600: #ea580c;
  --green-50: #f0fdf4;
  --green-600: #16a34a;
  --green-700: #15803d;
  --blue-50: #eff6ff;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --purple-50: #faf5ff;
  --purple-700: #7e22ce;
  --red-50: #fef2f2;
  --red-600: #dc2626;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  background: var(--soft);
  line-height: 1.5;
  min-height: 100vh;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
table { border-collapse: collapse; width: 100%; }

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

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-full { grid-column: 1 / -1; }

/* ============ SPACING (Margin) ============ */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.ml-auto { margin-left: auto; }
.ml-12 { margin-left: 3rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.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; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

/* ============ SPACING (Padding) ============ */
.p-0 { padding: 0; }
.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; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.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; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.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-14 { padding-top: 3.5rem; padding-bottom: 3.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; }
.pl-12 { padding-left: 3rem; }
.pr-12 { padding-right: 3rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pt-6 { padding-top: 1.5rem; }

/* ============ GAP ============ */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.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-16 { gap: 4rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-2 { row-gap: 0.5rem; }
.space-y-0\.5 > * + * { margin-top: 0.125rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* ============ SIZING ============ */
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.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-56 { width: 14rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.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-40 { height: 10rem; }
.h-44 { height: 11rem; }
.h-52 { height: 13rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.max-w-none { max-width: none; }
.max-w-xs { max-width: 20rem; }
.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-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; }
.min-h-screen { min-height: 100vh; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }

/* ============ TYPOGRAPHY ============ */
.text-3xl { font-size: 1.875rem; }
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-none { line-height: 1; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.break-words { word-wrap: break-word; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============ COLORS - Background ============ */
.bg-navy { background-color: var(--navy); }
.bg-steel { background-color: var(--steel); }
.bg-accent { background-color: var(--accent); }
.bg-slate2 { background-color: var(--slate2); }
.bg-soft { background-color: var(--soft); }
.bg-white { background-color: var(--white); }
.bg-black { background-color: var(--black); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-orange-50 { background-color: var(--orange-50); }
.bg-green-50 { background-color: var(--green-50); }
.bg-blue-50 { background-color: var(--blue-50); }
.bg-purple-50 { background-color: var(--purple-50); }
.bg-red-50 { background-color: var(--red-50); }
.bg-navy\/5 { background-color: rgba(15, 31, 45, 0.05); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-accent\/10 { background-color: rgba(232, 117, 42, 0.1); }
.bg-transparent { background-color: transparent; }

/* ============ COLORS - Text ============ */
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-accent { color: var(--accent); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-orange-100 { color: var(--orange-100); }
.text-green-600 { color: var(--green-600); }
.text-green-700 { color: var(--green-700); }
.text-blue-600 { color: var(--blue-600); }
.text-blue-700 { color: var(--blue-700); }
.text-purple-600 { color: #9333ea; }
.text-purple-700 { color: var(--purple-700); }
.text-red-600 { color: var(--red-600); }
.text-muted { color: var(--muted); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-accent\/30 { color: rgba(232, 117, 42, 0.3); }
.text-accent\/40 { color: rgba(232, 117, 42, 0.4); }
.text-accent\/50 { color: rgba(232, 117, 42, 0.5); }
.text-accent\/60 { color: rgba(232, 117, 42, 0.6); }
.text-accent\/70 { color: rgba(232, 117, 42, 0.7); }
.text-accent\/80 { color: rgba(232, 117, 42, 0.8); }

/* ============ COLORS - Border ============ */
.border-accent { border-color: var(--accent); }
.border-navy { border-color: var(--navy); }
.border-gray-100 { border-color: var(--gray-100); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-700 { border-color: var(--gray-700); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/25 { border-color: rgba(255, 255, 255, 0.25); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-white\/60 { border-color: rgba(255, 255, 255, 0.6); }
.border-transparent { border-color: transparent; }
.border-slate2\/50 { border-color: rgba(45, 58, 74, 0.5); }

/* ============ BORDERS ============ */
.border { border: 1px solid var(--gray-200); }
.border-0 { border: 0; }
.border-2 { border-width: 2px; }
.border-b { border-bottom: 1px solid var(--gray-200); }
.border-b-2 { border-bottom-width: 2px; }
.border-t { border-top: 1px solid var(--gray-200); }
.border-y { border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-l-lg { border-radius: 0.5rem 0 0 0.5rem; }
.rounded-r-lg { border-radius: 0 0.5rem 0.5rem 0; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* ============ POSITION ============ */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.top-16 { top: 4rem; }
.top-20 { top: 5rem; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.-bottom-4 { bottom: -1rem; }
.-right-4 { right: -1rem; }
.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\.5 { transform: translateX(-0.375rem); }
.-translate-x-px { transform: translateX(-1px); }

/* ============ SHADOWS ============ */
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); }

/* ============ OPACITY ============ */
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-60 { opacity: 0.6; }
.opacity-100 { opacity: 1; }
.opacity-\[0\.04\] { opacity: 0.04; }
.opacity-\[0\.06\] { opacity: 0.06; }

/* ============ TRANSITIONS ============ */
.transition { transition: all 0.2s ease; }
.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-shadow { transition: box-shadow 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }

/* ============ CURSOR ============ */
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }

/* ============ BACKGROUND GRADIENTS ============ */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-navy { --tw-gradient-from: var(--navy); }
.from-steel { --tw-gradient-from: var(--steel); }
.from-slate2 { --tw-gradient-from: var(--slate2); }
.from-accent { --tw-gradient-from: var(--accent); }
.from-\[\#f6f7f8\] { --tw-gradient-from: #f6f7f8; }
.to-navy { --tw-gradient-to: var(--navy); }
.to-steel { --tw-gradient-to: var(--steel); }
.to-slate2 { --tw-gradient-to: var(--slate2); }
.to-orange-600 { --tw-gradient-to: #ea580c; }
.to-transparent { --tw-gradient-to: transparent; }

/* ============ BACKDROP BLUR ============ */
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ============ OBJECT FIT ============ */
.object-cover { object-fit: cover; }

/* ============ COMPONENT STYLES ============ */

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 117, 42, 0.3);
}

/* Cards */
.card-hover, .product-card {
  transition: all 0.25s ease;
}
.product-card:hover,
.card-hover:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Filter chips */
.filter-chip {
  transition: all 0.15s ease;
  cursor: pointer;
  display: inline-block;
}
.filter-chip:hover {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.filter-chip.active {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* FAQ details */
.faq-details {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}
.faq-details[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232, 117, 42, 0.08);
}
.faq-summary {
  font-weight: 600;
  color: var(--navy);
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  user-select: none;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #999;
  transition: transform 0.2s;
}
.faq-details[open] .faq-summary::after {
  content: '\2212';
  color: var(--accent);
}
.faq-answer {
  padding: 0 24px 20px;
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Article body */
.article-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.article-body p { margin-bottom: 1rem; color: #4a5568; line-height: 1.8; }
.article-body ul, .article-body ol { margin-bottom: 1rem; padding-left: 1.5rem; color: #4a5568; }
.article-body li { margin-bottom: 0.5rem; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.article-body th { background: var(--navy); color: white; padding: 10px 14px; text-align: left; font-size: 0.85rem; }
.article-body td { padding: 10px 14px; border-bottom: 1px solid #e5e7eb; font-size: 0.85rem; color: #4a5568; }
.article-body td:first-child { font-weight: 600; color: var(--navy); }
.article-body strong { color: var(--navy); }

/* Timeline dot */
.timeline-dot {
  box-shadow: 0 0 0 4px rgba(232, 117, 42, 0.15);
}

/* Certification card */
.cert-card {
  transition: all 0.25s;
}
.cert-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Application card */
.app-card {
  transition: all 0.25s;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

/* Blog card */
.blog-card {
  transition: all 0.25s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

/* Trust item */
.trust-item {
  transition: transform 0.2s ease;
}
.trust-item:hover {
  transform: translateY(-2px);
}

/* Thumbnail */
.thumbnail {
  transition: all 0.15s ease;
  cursor: pointer;
  opacity: 0.6;
}
.thumbnail:hover { opacity: 1; }
.thumbnail.active { border-color: var(--accent); opacity: 1; }

/* Tab button */
.tab-btn {
  transition: all 0.2s;
}
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Form elements */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 117, 42, 0.1);
}

/* Background patterns */
.bg-radial-accent {
  background: radial-gradient(circle at 70% 30%, rgba(232, 117, 42, 0.3) 0%, transparent 60%);
}
.bg-stripe-pattern {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.1) 8px, rgba(255, 255, 255, 0.1) 16px);
}
.bg-grid-pattern {
  background-image: repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255, 255, 255, 0.5) 30px, rgba(255, 255, 255, 0.5) 31px);
}

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

/* Blur */
.blur-3xl { filter: blur(64px); }

/* Sticky top */
.sticky-header { top: 0; }
.admin-bar .sticky-header { top: 32px; }

/* ============ RESPONSIVE ============ */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:text-4xl { font-size: 2.25rem; }
  .sm\:text-5xl { font-size: 3rem; }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:mt-0 { margin-top: 0; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:justify-between { justify-content: space-between; }
}
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:w-1\/2 { width: 50%; }
  .md\:pl-12 { padding-left: 3rem; }
  .md\:pr-12 { padding-right: 3rem; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:left-1\/2 { left: 50%; }
  .md\:-translate-x-1\.5 { transform: translateX(-0.375rem); }
  .md\:-translate-x-px { transform: translateX(-1px); }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:items-center { align-items: center; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:gap-0 { gap: 0; }
  .lg\:gap-4 { gap: 1rem; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============ HOVER STATES ============ */
.hover\:text-accent:hover { color: var(--accent); }
.hover\:text-navy:hover { color: var(--navy); }
.hover\:text-white:hover { color: var(--white); }
.hover\:bg-accent:hover { background-color: var(--accent); }
.hover\:bg-orange-50:hover { background-color: var(--orange-50); }
.hover\:bg-orange-700:hover { background-color: #c2410c; }
.hover-dim:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover-text-accent:hover { color: var(--accent); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-gray-100:hover { background-color: var(--gray-100); }
.hover\:bg-navy:hover { background-color: var(--navy); }
.hover\:border-accent:hover { border-color: var(--accent); }
.hover\:border-white\/10:hover { border-color: rgba(255, 255, 255, 0.1); }
.hover\:border-white\/50:hover { border-color: rgba(255, 255, 255, 0.5); }
.hover\:border-white\/60:hover { border-color: rgba(255, 255, 255, 0.6); }
.hover\:border-accent\/30:hover { border-color: rgba(232, 117, 42, 0.3); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:gap-2:hover { gap: 0.5rem; }
.hover\:gap-3:hover { gap: 0.75rem; }

/* Group hover */
.group:hover .group-hover\:text-accent { color: var(--accent); }
.group:hover .group-hover\:gap-2 { gap: 0.5rem; }

/* ============ WORDPRESS CORE ============ */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: #666; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px;
}
.wp-block-image img { max-width: 100%; height: auto; }
.admin-bar .sticky-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .sticky-header { top: 46px; }
}

/* ============ GALLERY GRID (ACF) ============ */
.acf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}
.acf-gallery-grid img {
  width: 100%; height: 120px; object-fit: cover; border-radius: 8px;
}

/* ============ MISC ============ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d0d5dd, transparent);
}

/* Navigation hover dropdown — high specificity, won't be overridden */
header .nav-dropdown { position: relative; }
header .nav-dropdown .nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  padding: 8px 0;
  width: 224px;
  z-index: 100;
  border: 1px solid #f0f0f0;
}
header .nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

/* Clean select dropdown styling */
.whitespace-nowrap { white-space: nowrap; }
.select-clean {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
  cursor: pointer;
}
.text-\[10px\] { font-size: 0.625rem; }
.text-\[11px\] { font-size: 0.6875rem; }
.leading-0 { line-height: 1; }
.text-green-400 { color: #4ade80; }
.list-disc { list-style-type: disc; }
