/* ==========================================================================
   Ceylon Computer Service - Enterprise Premium Enhancements (Laravel)
   Refined typography, depth, gradients, and micro-interactions
   ========================================================================== */

:root {
  --primary: #0B3D6B;
  --primary-dark: #072847;
  --primary-light: #1565C0;
  --accent: #00D4E8;
  --accent-soft: rgba(0, 212, 232, 0.12);
  --gold: #C9A227;
  --surface-elevated: rgba(255, 255, 255, 0.88);
  --mesh-1: radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0, 212, 232, 0.18) 0%, transparent 60%);
  --mesh-2: radial-gradient(ellipse 60% 50% at 90% 10%, rgba(21, 101, 192, 0.22) 0%, transparent 55%);
  --mesh-3: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(11, 61, 107, 0.15) 0%, transparent 60%);
  --font-display: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-enterprise: 16px;
  --shadow-enterprise: 0 4px 6px -1px rgba(11, 61, 107, 0.06), 0 20px 40px -12px rgba(11, 61, 107, 0.12);
  --shadow-enterprise-lg: 0 8px 16px -4px rgba(11, 61, 107, 0.08), 0 32px 64px -16px rgba(11, 61, 107, 0.16);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

body {
  font-family: var(--font-body);
  background: #F4F7FB;
  background-image: var(--mesh-1), var(--mesh-2);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* Premium Header */
.site-header {
  border-bottom: 1px solid rgba(11, 61, 107, 0.06);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(11, 61, 107, 0.05), var(--shadow-enterprise);
}
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, #0E4A7A 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Enterprise Hero */
.hero-enterprise {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-enterprise__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #072847 0%, #0B3D6B 35%, #1565C0 70%, #0088A0 100%);
}
.hero-enterprise__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-1), var(--mesh-2), var(--mesh-3);
  opacity: 0.9;
}
.hero-enterprise__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
}
.hero-enterprise__content {
  position: relative;
  z-index: 2;
}
.hero-enterprise__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  margin-bottom: 1.75rem;
}
.hero-enterprise__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
  box-shadow: 0 0 12px var(--accent);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-enterprise h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.hero-enterprise h1 .highlight {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-enterprise .lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.125rem;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-enterprise__visual {
  position: relative;
  z-index: 2;
}
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  aspect-ratio: 1;
}
.hero-showcase__ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite;
}
.hero-showcase__ring:nth-child(2) {
  inset: 20%;
  animation-direction: reverse;
  animation-duration: 25s;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.hero-showcase__center {
  position: absolute;
  inset: 30%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 0 60px rgba(0, 212, 232, 0.2);
}
.hero-showcase__orb {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-enterprise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow-enterprise);
  animation: float 5s ease-in-out infinite;
}
.hero-showcase__orb:nth-child(4) { top: 5%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hero-showcase__orb:nth-child(5) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.8s; }
.hero-showcase__orb:nth-child(6) { bottom: 10%; left: 50%; transform: translateX(-50%); animation-delay: 1.6s; }
.hero-showcase__orb:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 2.4s; }

/* Premium Cards */
.card-enterprise {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(15, 76, 129, 0.12));
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 76, 129, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  position: relative;
}
.section-enterprise .card-enterprise::before {
  display: none;
}
.card-enterprise:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 76, 129, 0.08);
  border-color: rgba(15, 76, 129, 0.2);
}

/* Stats bar premium */
.stats-enterprise {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.stats-enterprise::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.stat-enterprise {
  text-align: center;
  color: #fff;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.stat-enterprise__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: break-word;
}

.stat-enterprise__label {
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  opacity: 0.85;
  margin-top: 0.5rem;
  font-weight: 500;
  line-height: 1.35;
}

/* Section headers */
.section-enterprise .section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-enterprise .badge {
  background: var(--accent-soft);
  color: #0088A0;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 212, 232, 0.2);
}

/* Buttons premium */
.btn-enterprise {
  background: linear-gradient(135deg, var(--accent) 0%, #00A8BD 100%);
  color: #fff;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 212, 232, 0.35);
  transition: all var(--transition-smooth);
}
.btn-enterprise:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 232, 0.45);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  transition: all var(--transition-smooth);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* Product card premium */
.product-card-premium {
  background: #fff;
  border-radius: var(--radius-enterprise);
  border: 1px solid rgba(11, 61, 107, 0.08);
  overflow: hidden;
  transition: all var(--transition-smooth);
}
.product-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-enterprise-lg);
}
.product-card-premium__media {
  position: relative;
  display: grid;
}

.product-card-premium__media > .product-card-premium__image,
.product-card-premium__media > .product-card__footer {
  grid-area: 1 / 1;
}

.product-card-premium__image {
  background: linear-gradient(145deg, #F8FAFC 0%, #EEF2F7 100%);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.product-card-premium__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 61, 107, 0.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.product-card-premium .product-card__footer {
  align-self: end;
  justify-self: stretch;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.875rem 1rem;
  margin: 0;
}

.product-card-premium .product-card__footer .card-action-link {
  position: relative;
  z-index: 3;
}

@media (hover: hover) {
  .product-card-premium .product-card__footer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .product-card-premium:hover .product-card-premium__image::after {
    opacity: 1;
  }

  .product-card-premium:hover .product-card__footer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (hover: none) {
  .product-card-premium .product-card__footer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .product-card-premium__image::after {
    opacity: 1;
    background: linear-gradient(to top, rgba(11, 61, 107, 0.35) 0%, transparent 55%);
  }
}

.product-card-premium__body {
  padding: 1.25rem;
}

.product-card-premium__title {
  font-size: 1rem;
  margin: 0.5rem 0;
  text-align: center;
}

.product-card-premium__title a {
  color: var(--text, #1a2332);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card-premium__title a:hover {
  color: var(--primary, #0f4c81);
}

.product-card-premium .product-card__rating {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.product-card-premium .price-current,
.product-card-premium .price-old {
  text-align: center;
}

.product-card-premium .price-old {
  margin-top: 0.25rem;
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2.5rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-bar__item svg { color: var(--accent); }

/* Page header premium */
.page-header-premium {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0E5A8A 100%);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mesh-1);
}
.page-header-premium h1 {
  color: #fff;
  font-weight: 800;
  position: relative;
}
.page-header-premium p {
  color: rgba(255,255,255,0.85);
  position: relative;
}

/* Alert flash messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.alert-success {
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.25);
  color: #2E7D32;
}

/* Dark mode refinements */
[data-theme="dark"] {
  --surface-elevated: rgba(21, 29, 46, 0.95);
}
[data-theme="dark"] body {
  background: #0A0F18;
  background-image: var(--mesh-1);
}
[data-theme="dark"] .card-enterprise,
[data-theme="dark"] .product-card-premium {
  background: var(--surface-elevated);
  border-color: rgba(255,255,255,0.08);
}

/* Laravel pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  justify-content: center;
  margin-top: 2rem;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(11, 61, 107, 0.12);
  color: var(--primary);
  transition: all 0.2s;
}
.pagination a:hover, .pagination .active span {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (max-width: 1024px) {
  .hero-enterprise { min-height: auto; padding: 5rem 0 3rem; }
  .hero-enterprise__visual { margin-top: 1.5rem; }
}

/* ===== Service Detail Pages ===== */
.service-detail-media {
  margin: 1.25rem 0 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border, rgba(15, 76, 129, 0.12));
  box-shadow: 0 8px 24px rgba(15, 76, 129, 0.08);
  position: relative;
}

.service-detail-media__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.service-detail-icon {
  font-size: 4rem;
  margin: 1rem 0;
  line-height: 1;
}
.service-detail-overview p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.service-info-card {
  padding: 2rem;
}
.service-info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-soft);
}
.service-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.service-info-list li:last-child { border-bottom: none; }
.service-info-list .label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.service-info-list .value {
  font-weight: 600;
  color: var(--text);
  text-align: right;
}
.price-highlight {
  color: var(--primary) !important;
  font-size: 1.125rem !important;
  font-family: var(--font-display);
}
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.brand-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--accent-soft);
  color: #0088A0;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 232, 0.2);
}
.service-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0E5A8A 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.service-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mesh-1);
}
.service-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
.service-cta-inner h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.service-cta-inner p {
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 520px;
}

/* Pre-footer CTA — flat buttons, no glow/shadow */
.service-cta-section .btn-enterprise {
  background: var(--accent);
  box-shadow: none;
}

.service-cta-section .btn-enterprise:hover,
.service-cta-section .btn-enterprise:focus-visible {
  background: #00a5bb;
  box-shadow: none;
  transform: none;
  color: #fff;
}

.service-cta-section .btn-outline-light {
  box-shadow: none;
}

.service-cta-section .btn-outline-light:hover,
.service-cta-section .btn-outline-light:focus-visible {
  box-shadow: none;
  transform: none;
}

.service-list-card { overflow: hidden; }
.service-list-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}
.service-list-card__icon { font-size: 2.5rem; }
.service-list-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.service-related-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-smooth);
  overflow: hidden;
  height: 100%;
}
.service-related-card:hover {
  color: inherit;
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.35);
}
.service-related-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(15, 76, 129, 0.04);
  position: relative;
  isolation: isolate;
}
.service-related-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.12) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: service-media-shimmer 4.5s ease-in-out infinite;
  z-index: 2;
}
.service-related-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  animation: service-media-breathe 4.2s ease-in-out infinite;
}
.service-related-card:hover .service-related-media__img {
  transform: scale(1.05);
  animation: none;
}
.service-related-card h3,
.service-related-card p,
.service-related-card .service-card__link {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.service-related-card h3 {
  margin: 1rem 0 0.5rem;
}
.service-related-card .service-card__link {
  padding-bottom: 1.25rem;
  margin-top: auto;
}
.service-related-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-value-card {
  padding: 2rem;
  text-align: center;
}
.about-value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.content-block p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.content-block h3 {
  margin: 2rem 0 1rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .service-cta-inner { flex-direction: column; text-align: center; }
  .service-info-list li { flex-direction: column; align-items: flex-start; }
  .service-info-list .value { text-align: left; }
}

/* Content pages */
.content-intro {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.contact-dept-card,
.brand-category-card,
.brand-partner-card,
.review-stat-card,
.job-card,
.policy-section {
  padding: 1.75rem;
}
.contact-dept-card__icon,
.brand-category-card__icon,
.process-step-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* Contact page */
.contact-page .content-intro {
  margin-bottom: 2.5rem;
}

.contact-stat-bar {
  margin-top: 0.5rem;
}

.contact-stat-card {
  padding: 1.5rem 1.25rem;
  justify-content: center;
}

.contact-stat-card__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.contact-stat-card__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-dept-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.65rem;
}

.contact-dept-card__desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.contact-dept-card__links {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.contact-dept-card__links li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
}

.contact-dept-card__links li:last-child {
  margin-bottom: 0;
}

.contact-dept-card__link-icon {
  flex-shrink: 0;
  line-height: 1.5;
}

.contact-dept-card__links a {
  color: var(--primary);
  text-decoration: none;
  word-break: break-word;
}

.contact-dept-card__links a:hover {
  color: var(--accent);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-details-panel__header,
.contact-form-panel__header {
  margin-bottom: 1.5rem;
}

.contact-details-panel__header h2,
.contact-form-panel__header h3 {
  margin: 0.75rem 0 0.5rem;
}

.contact-details-panel__header p,
.contact-form-panel__header p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.contact-info-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.contact-info-card p a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-card p a:hover {
  color: var(--accent);
}

.contact-info-card__note {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-light);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.contact-info-card--highlight {
  border-color: rgba(0, 188, 212, 0.35);
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.04), rgba(0, 188, 212, 0.06));
}

.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-form-panel .form-card {
  height: 100%;
}

.contact-form-alert {
  margin-bottom: 1.25rem;
}

.contact-form-privacy {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-map-overlay {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  margin: 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--border);
  box-shadow: none;
}

.contact-map-overlay__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 188, 212, 0.1);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-map-overlay h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.contact-map-overlay p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.contact-quick-cta {
  align-items: center;
}

.contact-quick-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
}

.contact-quick-cta__actions .btn {
  min-height: 52px;
  white-space: nowrap;
}

.contact-quick-cta__actions .btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.contact-quick-cta__actions .btn-outline-light:hover,
.contact-quick-cta__actions .btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-details-panel {
    order: 2;
  }

  .contact-form-panel {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-action-buttons,
  .contact-quick-cta__actions {
    flex-direction: column;
  }

  .contact-action-buttons .btn,
  .contact-quick-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-map-iframe {
    height: 300px;
  }

  .service-cta-inner.contact-quick-cta {
    flex-direction: column;
    text-align: center;
  }

  .contact-quick-cta__actions {
    justify-content: center;
    width: 100%;
  }
}

.brand-partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-bottom: 0.75rem;
}
.brand-partner-card__img {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.brand-partner-card__text {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}
.brand-category-card__brands {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.review-stat-card__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.review-stat-card__label {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.testimonial-card {
  padding: 2rem;
  text-align: center;
}
.testimonial-card__text {
  font-style: italic;
  margin: 1rem 0;
  line-height: 1.75;
}
.testimonial-card__author h4 {
  margin-bottom: 0.25rem;
}
.testimonial-card__author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.gallery-item__visual {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.gallery-item__caption {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
}
.gallery-section__title {
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.job-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.job-list .job-card { margin-bottom: 1rem; }
.policy-content .policy-section { margin-bottom: 1rem; }
.policy-content .policy-section h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.policy-content .policy-section p {
  margin: 0;
  line-height: 1.85;
  color: var(--text-muted);
}
.policy-updated { font-size: 0.875rem; }
.map-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.map-placeholder__inner { text-align: center; }
.spec-table { overflow: hidden; }
.spec-table table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table th,
.spec-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.spec-table th {
  width: 35%;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.04);
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }
.product-detail-image {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-detail-image__icon { font-size: 8rem; }
.product-detail-image__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
}
.product-detail-price .price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 0.75rem;
  font-size: 1.125rem;
}
.product-detail-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.blog-article { padding: 2.5rem; }
.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.blog-article__excerpt {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.blog-article__content p {
  line-height: 1.85;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.content-note { padding: 1.5rem 2rem; }
.faq-category__title {
  color: var(--primary);
  margin-bottom: 1rem;
}
.process-step-card { padding: 1.5rem; }

/* ==========================================================================
   Navigation — Simple Dropdown Submenus
   ========================================================================== */

.nav-menu > li > button.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9375rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  font-family: inherit;
}

.nav-menu > li > button.nav-trigger .nav-chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.nav-menu > li.has-dropdown:hover > .nav-trigger,
.nav-menu > li.has-dropdown:focus-within > .nav-trigger {
  color: var(--primary);
  background: rgba(15, 76, 129, 0.08);
}

.nav-menu > li.has-dropdown:hover > .nav-trigger .nav-chevron,
.nav-menu > li.has-dropdown:focus-within > .nav-trigger .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Invisible hover bridge — keeps dropdown open while moving cursor to items */
.nav-menu > li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: max(100%, 280px);
  height: 0.625rem;
  z-index: 999;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 260px;
  max-width: 320px;
  max-height: 420px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(15, 76, 129, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s;
  pointer-events: none;
  z-index: 1000;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.nav-dropdown__label {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.nav-dropdown li a:hover {
  background: linear-gradient(90deg, rgba(15, 76, 129, 0.1), rgba(0, 188, 212, 0.08));
  color: var(--primary);
  padding-left: 1.1rem;
}

.nav-dropdown__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  background: var(--bg-alt);
  border-radius: 6px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  overflow: hidden;
}

.nav-dropdown li a:hover .nav-dropdown__icon {
  transform: scale(1.08);
}

.nav-dropdown__divider {
  height: 1px;
  margin: 0.4rem 0.5rem;
  background: var(--border);
}

.nav-dropdown__all {
  font-weight: 700 !important;
  color: var(--primary) !important;
}

/* Professional card grids */
.cards-grid {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card-enterprise {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Service listing cards */
.service-card-pro {
  overflow: hidden;
  position: relative;
}

.service-card-pro__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary, #0f4c81);
  background: rgba(15, 76, 129, 0.06);
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: 6px;
}

.service-card-pro__watermark {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  text-transform: lowercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
  max-width: calc(100% - 2.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="light"] .service-card-pro__watermark {
  color: rgba(11, 61, 107, 0.06);
}

.service-card-pro__top,
.service-card-pro__body {
  position: relative;
  z-index: 1;
}

.service-card-pro__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.service-card-pro__icon {
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(15, 76, 129, 0.06);
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: 10px;
}

/* Service card image media */
.service-card-pro__media {
  margin: 0 0 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(15, 76, 129, 0.04);
  border: 1px solid rgba(15, 76, 129, 0.08);
  position: relative;
}

.service-card-pro__media--animated {
  isolation: isolate;
}

.service-card-pro__media-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: service-media-shimmer 4.5s ease-in-out infinite;
  z-index: 2;
}

.service-card-pro__media--animated .service-card-pro__image,
.service-card-pro__media--animated .service-detail-media__img {
  animation: service-media-breathe 4s ease-in-out infinite;
}

.service-card-pro:hover .service-card-pro__media--animated .service-card-pro__image {
  animation: none;
}

.service-card-pro__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  position: relative;
  z-index: 1;
}

.service-card-pro:hover .service-card-pro__image {
  transform: scale(1.06);
}

.service-detail-media.service-card-pro__media--animated .service-detail-media__img {
  animation: service-media-breathe 4.5s ease-in-out infinite;
}

.service-detail-media:hover .service-detail-media__img {
  animation: none;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

@keyframes service-media-shimmer {
  0%, 100% { transform: translateX(-120%); opacity: 0; }
  12% { opacity: 1; }
  45% { transform: translateX(120%); opacity: 1; }
  55%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes service-media-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .service-card-pro__media-glow,
  .service-card-pro__media--animated .service-card-pro__image,
  .service-card-pro__media--animated .service-detail-media__img {
    animation: none !important;
  }
}

.service-card-pro__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-pro__body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.65rem;
}

.service-card-pro__body h3 a {
  color: var(--text);
  text-decoration: none;
}

.service-card-pro__body h3 a:hover {
  color: var(--primary);
}

.service-card-pro__body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.service-card-pro__meta {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.service-card-pro__meta li {
  padding: 0.2rem 0;
}

.service-card-pro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary, #0f4c81);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.service-card-pro__link:hover {
  color: var(--accent, #00bcd4);
  gap: 0.4rem;
}

/* Home featured services — high-impact card variant */
.service-card-pro--home.card-enterprise {
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgb(30, 41, 59);
  border-radius: 1rem;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.service-card-pro--home.card-enterprise:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

[data-theme="light"] .service-card-pro--home.card-enterprise {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 4px 24px rgba(15, 76, 129, 0.06);
}

[data-theme="light"] .service-card-pro--home.card-enterprise:hover {
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.18);
}

.service-card-pro--home .service-card-pro__visual {
  position: relative;
  margin: 0 0 1.25rem;
}

.service-card-pro--home .service-card-pro__media {
  margin: 0;
  border-radius: 0.75rem;
  border-color: rgba(6, 182, 212, 0.15);
}

.service-card-pro__tag--overlay {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 3;
  margin: 0;
  padding: 0.28rem 0.6rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  color: #f1f5f9;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

[data-theme="light"] .service-card-pro__tag--overlay {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 76, 129, 0.12);
  box-shadow: 0 2px 8px rgba(15, 76, 129, 0.08);
}

[data-theme="dark"] .service-card-pro__tag--overlay,
html.dark .service-card-pro__tag--overlay {
  color: #f1f5f9;
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.service-card-pro--home .service-card-pro__body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.service-card-pro--home .service-card-pro__body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.service-card-pro--home .service-card-pro__body p {
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-card-pro--home .service-card-pro__link {
  margin-top: auto;
  gap: 0.35rem;
}

.service-card-pro--home .service-card-pro__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card-pro--home:hover .service-card-pro__link .service-card-pro__arrow {
  transform: translateX(4px);
}

[data-theme="dark"] .service-card-pro--home .service-card-pro__body h3 a,
html.dark .service-card-pro--home .service-card-pro__body h3 a {
  color: #f1f5f9;
}

[data-theme="dark"] .service-card-pro--home .service-card-pro__body p,
html.dark .service-card-pro--home .service-card-pro__body p {
  color: #94a3b8;
}

/* Services listing page cards */
.service-card-pro--listing.card-enterprise {
  height: 100%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.service-card-pro--listing.card-enterprise:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.15);
}

.service-card-pro--listing .service-card-pro__tag {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  z-index: 2;
}

.service-card-pro--listing .service-card-pro__media {
  margin-top: 0;
}

.service-card-pro--listing .service-card-pro__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card-pro--listing:hover .service-card-pro__link .service-card-pro__arrow {
  transform: translateX(4px);
}

[data-theme="light"] .service-card-pro--home .service-card-pro__body p {
  color: var(--text-muted);
}

[data-theme="dark"] .service-card-pro__tag,
html.dark .service-card-pro__tag {
  color: #67e8f9;
  background: rgba(0, 188, 212, 0.08);
  border-color: rgba(0, 188, 212, 0.15);
}

[data-theme="dark"] .service-card-pro__icon,
html.dark .service-card-pro__icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Products AJAX loading */
.products-grid-container {
  transition: opacity 0.2s ease;
}
.products-grid-container.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

/* Mobile nav accordion */
.mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.mobile-nav__list > li > a {
  display: block; padding: 0.9rem 0; color: var(--text);
  font-weight: 500; border-bottom: 1px solid var(--border); text-decoration: none;
}
.mobile-nav__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.9rem 0; background: none; border: none;
  border-bottom: 1px solid var(--border); color: var(--text);
  font-weight: 600; font-size: 1rem; font-family: inherit; cursor: pointer; text-align: left;
}
.mobile-nav__chevron { transition: transform var(--transition); opacity: 0.6; }
.mobile-nav__accordion.open .mobile-nav__chevron { transform: rotate(180deg); }
.mobile-nav__panel { display: none; padding: 0.5rem 0 1rem; border-bottom: 1px solid var(--border); }
.mobile-nav__accordion.open .mobile-nav__panel { display: block; }
.mobile-nav__sub-link {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 0.75rem; margin: 0.15rem 0; border-radius: var(--radius-sm);
  color: var(--text-muted); font-size: 0.875rem; text-decoration: none;
  transition: all var(--transition);
}
.mobile-nav__sub-link:hover { background: rgba(15, 76, 129, 0.06); color: var(--primary); }
.mobile-nav__sub-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  background: var(--bg-alt);
  border-radius: 6px;
}
.mobile-nav__view-all {
  display: inline-block; margin-top: 0.5rem; padding: 0.5rem 0.75rem;
  font-size: 0.8125rem; font-weight: 700; color: var(--primary); text-decoration: none;
}

@media (max-width: 1200px) {
  .cards-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav-dropdown { display: none !important; }
}

@media (max-width: 768px) {
  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4 { grid-template-columns: 1fr; }
  .cards-grid { gap: 1.25rem; }
}
