/* ========================================
   Jardón Pro Services
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B2D50;
  --navy-light: #243B66;
  --teal: #4CB8B3;
  --teal-hover: #3AA8A3;
  --teal-deep: #2E918D;
  --teal-light: #E8F6F5;
  --teal-50: #F0FAF9;
  --blue: var(--teal);
  --blue-hover: var(--teal-hover);
  --blue-deep: var(--teal-deep);
  --blue-light: var(--teal-light);
  --blue-50: var(--teal-50);
  --dark: #0F1A2E;
  --text: #1B2D50;
  --text-body: #4A5568;
  --text-light: #94A3B8;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFB;
  --bg-warm: #FAFAF9;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --green: #059669;
  --green-light: #ECFDF5;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.06), 0 2px 4px -2px rgba(15,23,42,0.04);
  --shadow-lg: 0 10px 20px -4px rgba(15,23,42,0.08), 0 4px 8px -4px rgba(15,23,42,0.03);
  --shadow-xl: 0 20px 40px -8px rgba(15,23,42,0.1), 0 8px 16px -4px rgba(15,23,42,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--blue-hover); }

/* --- Type Scale --- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  font-weight: 400;
}
h4, h5, h6 {
  font-family: var(--font);
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  letter-spacing: 0;
  line-height: 1.25;
}
h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Focus --- */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo img { flex-shrink: 0; width: 34px; height: auto; }
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.15s var(--ease);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 600; }
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 3.5px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-dropdown:hover > a::after { opacity: 1; transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: all 0.2s var(--ease-out);
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: var(--radius);
  color: var(--text-body);
  transition: background 0.12s var(--ease), color 0.12s var(--ease);
}
.nav-dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--text);
}

/* Mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background 0.15s var(--ease);
}
.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 1px;
  transition: all 0.25s var(--ease);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 2px rgba(27,45,80,0.2);
}
.btn-primary:hover {
  background: var(--navy-light);
  color: #fff;
  box-shadow: 0 4px 16px rgba(27,45,80,0.25);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--navy);
  background: var(--teal-light);
}
.btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.btn-white:hover {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}
.nav-links .btn.btn-nav {
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  background: var(--teal) !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 2px 8px rgba(76,184,179,0.25);
  letter-spacing: 0;
  line-height: 1;
}
.nav-links .btn.btn-nav:hover {
  background: var(--teal-hover) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(76,184,179,0.35);
  transform: translateY(-1px);
}
.btn-block { width: 100%; }

/* --- Hero --- */
.hero {
  padding: calc(var(--nav-h) + 72px) 0 112px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(76,184,179,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(27,45,80,0.03) 0%, transparent 100%),
    linear-gradient(180deg, var(--teal-50) 0%, var(--bg) 80%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  margin-bottom: 20px;
  max-width: 560px;
}
.hero h1 .highlight {
  color: var(--teal);
  position: relative;
}
.hero-text {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-light);
}
.hero-phone a { color: var(--text); font-weight: 600; }
.hero-visual {
  position: relative;
}
.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.hero-image-badge svg { width: 16px; height: 16px; color: var(--teal); }
.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.hero-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.hero-thumb:hover { border-color: var(--teal); }
.hero-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

/* Service card images */
.service-card-img {
  margin: -32px -28px 20px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card-img img {
  transform: scale(1.03);
}

/* Photo showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.showcase-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.showcase-item:hover img { transform: scale(1.03); }
.showcase-item:first-child { grid-row: 1 / -1; }
.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(15,26,46,0.7));
  color: #fff;
}
.showcase-overlay p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--bg) 100%);
  text-align: center;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--text-light); }
.page-hero .breadcrumb a:hover { color: var(--blue); }
.page-hero .breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 17px;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- Sections --- */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-spacious { padding: 112px 0; }
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: border-color 0.2s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover {
  border-color: rgba(76,184,179,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--blue); }
.service-card h3 { margin-bottom: 8px; }
.service-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.service-card .learn-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.service-card .learn-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease-spring);
}
.service-card:hover .learn-more svg { transform: translateX(3px); }

/* --- Trust / Stats --- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 72px;
}
.trust-item {
  background: var(--bg);
  text-align: center;
  padding: 32px 20px;
}
.trust-item:first-child { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.trust-item:last-child { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.trust-icon svg { width: 18px; height: 18px; color: var(--teal); }
.trust-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.trust-label {
  font-size: 13px;
  color: var(--text-light);
}

/* --- Feature List --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.feature-item {
  display: flex;
  gap: 14px;
}
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 18px; height: 18px; color: var(--blue); }
.feature-icon.alt { background: var(--teal-light); }
.feature-icon.alt svg { color: var(--teal); }
.feature-item h4 { margin-bottom: 3px; }
.feature-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  border-radius: var(--radius-2xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* --- Service Area --- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.area-tag:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-1px);
}
.area-tag svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

/* --- Government Page --- */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.credential-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.credential-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  margin-bottom: 14px;
}
.credential-card h3 { margin-bottom: 8px; }
.credential-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* --- Portfolio --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.portfolio-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease);
}
.portfolio-item:hover { border-color: var(--blue); }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-placeholder {
  text-align: center;
  padding: 24px;
}
.portfolio-placeholder svg { width: 40px; height: 40px; color: var(--border); margin-bottom: 8px; }
.portfolio-placeholder p { font-size: 13px; color: var(--text-light); }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
}
.contact-info-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  transition: all 0.2s var(--ease);
}
.contact-info-card:hover {
  border-color: var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.contact-info-card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .icon svg { width: 18px; height: 18px; color: var(--blue); }
.contact-info-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1px;
}
.contact-info-card p { font-size: 14px; color: var(--text-body); }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.8;
}
.about-visual {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.25s var(--ease);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-card .icon svg { width: 24px; height: 24px; color: var(--blue); }
.value-card h3 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 13px; line-height: 1.7; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #F59E0B;
  fill: #F59E0B;
}
.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
  font-style: normal;
}
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-brand .logo {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-brand .logo span { color: var(--teal); }
.footer h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s var(--ease);
}
.footer ul a:hover { color: #fff; }
.footer ul li { font-size: 14px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger:nth-child(2) { transition-delay: 0.06s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.18s; }
.reveal-stagger:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger:nth-child(6) { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a {
    padding: 12px 0;
    font-size: 15px;
  }
  .nav-links.open .btn-primary {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
  .nav-links.open .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
  }
  .nav-toggle { display: block; }
  .nav-logo img { width: 28px; }

  .hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 48px; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.03em; }
  .hero-text { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-lg { padding: 12px 24px; font-size: 14px; width: 100%; }
  .hero-phone { margin-top: 20px; padding-top: 16px; font-size: 12px; }
  .hero-image img { height: 280px; }
  .hero-thumbs { gap: 8px; }
  .hero-thumb img { height: 60px; }
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .showcase-item:first-child { grid-row: auto; grid-column: 1 / -1; }
  .service-card-img { margin: -24px -20px 16px; }
  .service-card-img img { height: 150px; }

  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
  .section-spacious { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 15px; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }
  .testimonials-grid,
  .value-grid,
  .credential-grid { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 20px 12px; }
  .trust-icon { width: 32px; height: 32px; margin-bottom: 8px; }
  .trust-icon svg { width: 16px; height: 16px; }
  .trust-value { font-size: 13px; }
  .trust-item:first-child { border-radius: var(--radius-xl) 0 0 0; }
  .trust-item:nth-child(2) { border-radius: 0 var(--radius-xl) 0 0; }
  .trust-item:nth-child(3) { border-radius: 0 0 0 var(--radius-xl); }
  .trust-item:last-child { border-radius: 0 0 var(--radius-xl) 0; }
  .area-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .area-tag { padding: 12px 14px; font-size: 13px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-banner { padding: 36px 20px; border-radius: var(--radius-xl); }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 14px; margin-bottom: 24px; }
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-actions .btn-lg { width: 100%; }

  .page-hero { padding: calc(var(--nav-h) + 36px) 0 36px; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero p { font-size: 15px; }

  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .map-container iframe { height: 280px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-badge { font-size: 11px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; border-radius: var(--radius-xl); }
  .trust-item { border-radius: 0 !important; }
  .trust-item:first-child { border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important; }
  .trust-item:last-child { border-radius: 0 0 var(--radius-xl) var(--radius-xl) !important; }
}

/* --- Service Detail --- */
.service-detail { padding: 72px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}
.service-content h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}
.service-content p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.8;
}
.service-content ul {
  margin: 14px 0 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-content ul li {
  font-size: 14px;
  line-height: 1.7;
}
.service-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.service-sidebar .sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-card ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: all 0.12s var(--ease);
}
.sidebar-card ul a:hover,
.sidebar-card ul a.active {
  background: var(--blue-light);
  color: var(--blue);
}
.sidebar-card ul a.active { font-weight: 600; }

@media (max-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* --- Checklist --- */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.65;
}
.check-list li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Inline CTA --- */
.inline-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* --- NAICS Table --- */
.naics-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.naics-table thead th {
  text-align: left;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.naics-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
}
.naics-table tbody tr:hover { background: var(--bg-alt); }

/* --- Map --- */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 28px;
}
.map-container iframe {
  width: 100%;
  height: 360px;
  border: none;
}

/* Stats row (kept for inner pages) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* --- Service Page Callouts --- */
.callout-box {
  background: var(--teal-50);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.callout-box p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0;
}
.callout-box strong { font-weight: 700; }

.stat-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat-inline-item {
  text-align: center;
  padding: 20px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.stat-inline-item .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-inline-item .label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* --- About Placeholder --- */
.about-visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-light);
}
.about-visual-placeholder svg { opacity: 0.3; }
.about-visual-placeholder p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* --- Footer Tagline --- */
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 10px;
}

/* --- Mobile hero card condensing --- */
@media (max-width: 768px) {
  .hero-visual { gap: 8px; }
  .hero-card { padding: 16px; }
  .hero-card.featured { padding: 18px; }
  .hero-card-icon { width: 32px; height: 32px; margin-bottom: 10px; }
  .hero-card-icon svg { width: 16px; height: 16px; }
  .hero-card h3 { font-size: 13px; }
  .hero-card p { font-size: 12px; line-height: 1.4; }
  .hero-image img { height: 220px; }
  .hero-thumbs { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}

@media (max-width: 768px) {
  .stat-inline { grid-template-columns: 1fr; }
}

/* --- Guarantee Banner --- */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--green-light);
  border: 1px solid rgba(5,150,105,0.15);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.guarantee-icon svg { width: 24px; height: 24px; color: var(--green); }
.guarantee-banner h4 {
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--text);
}
.guarantee-banner p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  box-shadow: var(--shadow-md);
}
.process-step h4 {
  font-size: 15px;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  line-height: 1.4;
  transition: color 0.15s var(--ease);
}
.faq-question:hover { color: var(--teal); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  color: var(--teal);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

/* --- Urgency Badge --- */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(76,184,179,0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.urgency-badge svg { width: 14px; height: 14px; }

/* --- SMS Button --- */
.btn-sms {
  background: var(--green);
  color: #fff;
  box-shadow: 0 1px 3px rgba(5,150,105,0.2);
}
.btn-sms:hover {
  background: #047857;
  color: #fff;
  box-shadow: 0 4px 12px rgba(5,150,105,0.25);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .guarantee-banner { flex-direction: column; text-align: center; padding: 20px; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  .faq-question { font-size: 15px; padding: 16px 0; }
}

/* --- Trust Bar (above fold) --- */
.trust-bar {
  background: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}
.trust-bar-item svg {
  color: var(--teal);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-bar-inner { gap: 16px 24px; justify-content: center; }
  .trust-bar-item { font-size: 12px; }
}

/* --- Sticky Mobile CTA --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.mobile-cta-inner {
  display: flex;
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s var(--ease);
}
.mobile-cta-call {
  background: var(--teal);
  color: #fff;
}
.mobile-cta-call:hover { background: var(--teal-hover); color: #fff; }
.mobile-cta-text {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.mobile-cta-text:hover { background: rgba(255,255,255,0.15); color: #fff; }

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* --- Before/After Gallery --- */
.ba-section { padding: 48px 0; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.ba-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}
.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider .ba-after {
  clip-path: inset(0 50% 0 0);
}
.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.ba-slider .ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.ba-slider .ba-handle::before {
  content: '\25C4 \25BA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: var(--navy);
  z-index: 3;
  letter-spacing: 2px;
  white-space: nowrap;
}
.ba-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }
.ba-card-info {
  padding: 16px 20px;
}
.ba-card-info h4 {
  font-size: 15px;
  margin-bottom: 4px;
}
.ba-card-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.blog-card:hover { opacity: 0.85; }
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
}
.blog-card-body {
  padding: 20px;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.blog-coming-soon {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.blog-coming-soon h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.blog-coming-soon p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}
