
    :root {
      --bg: #f3f4f8;
      --bg-alt: #e5ecf8;
      --card: #ffffff;
      --accent: #0086d1;
      --accent-strong: #0072b0;
      --accent-2: #20b856;
      --text: #0f172a;
      --muted: #6b7280;
      --border-soft: rgba(148, 163, 184, 0.35);
      --radius-lg: 18px;
      --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
                   "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top, rgba(191, 219, 254, 0.9) 0, transparent 50%),
        linear-gradient(to bottom, #f9fafb, #e5e7eb);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(249, 250, 251, 0.96), rgba(249, 250, 251, 0.9));
      border-bottom: 1px solid rgba(209, 213, 219, 0.9);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.7rem 0 0.75rem;
      gap: 1.2rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .brand-logo {
      width: 150px;
      height: auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .brand-name {
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-size: 0.78rem;
      color: #111827;
    }

    .brand-tagline {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .nav-links a:hover {
      color: var(--accent-strong);
    }

    .pill-nav {
      padding: 0.42rem 0.95rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: radial-gradient(circle at top left,
                  rgba(191, 219, 254, 0.9),
                  #ffffff);
      color: #0f172a;
      font-weight: 500;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    }

    .pill-nav:hover {
      border-color: var(--accent-strong);
    }

    main {
      padding-bottom: 3.5rem;
    }

    /* Simple load-in animation */
    .animate-in {
      opacity: 0;
      transform: translateY(18px);
      animation: floatUp 0.7s ease-out forwards;
    }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    @keyframes floatUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Hero */
    .hero {
      padding: 3.2rem 0 3.1rem;
      background:
        radial-gradient(circle at top left, rgba(191, 219, 254, 1) 0, transparent 55%),
        radial-gradient(circle at 80% 0, rgba(167, 243, 208, 0.7) 0, transparent 50%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(0, 1.1fr);
      gap: 2.4rem;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.3rem 0.85rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(255, 255, 255, 0.9);
      color: var(--muted);
      font-size: 0.78rem;
      margin-bottom: 1rem;
    }

    .badge-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: radial-gradient(circle, #22c55e 0, #15803d 60%, #052e16 100%);
      box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.32);
    }

    h1 {
      font-size: clamp(2.3rem, 3vw + 1.6rem, 3rem);
      letter-spacing: -0.04em;
      line-height: 1.05;
      margin-bottom: 0.9rem;
      color: #020617;
    }

    .hero-highlight {
      background: linear-gradient(to right, #0369a1, #16a34a);
      background-clip: text;           /* standard */
      -webkit-background-clip: text;   /* required for Chrome/Safari */
      color: transparent;
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 40rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin: 1.6rem 0 0.9rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.7rem 1.6rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #ffffff;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.03);
      box-shadow: 0 22px 55px rgba(30, 64, 175, 0.55);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      font-size: 0.86rem;
      margin-top: 0.25rem;
    }

    .meta-pill {
      padding: 0.24rem 0.75rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(209, 213, 219, 0.9);
      color: var(--muted);
    }

    .hero-card {
      position: relative;
      border-radius: 24px;
      background: radial-gradient(circle at top left, #e0f2fe 0, #ffffff 55%);
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.6);
      padding: 1.5rem 1.4rem 1.25rem;
      overflow: hidden;
    }

    .hero-card-inner {
      position: relative;
      z-index: 1;
    }

    .hero-card-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.8rem;
    }

    .hero-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: #0f172a;
    }

    .hero-card-tag {
      padding: 0.16rem 0.6rem;
      border-radius: 999px;
      font-size: 0.74rem;
      border: 1px solid rgba(245, 158, 11, 0.8);
      background: linear-gradient(to right, #fefce8, #fef9c3);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      color: #92400e;
      white-space: nowrap;
    }

    .hero-card-tag span {
      color: #f59e0b;
    }

    .hero-card p {
      font-size: 0.85rem;
      color: #374151;
      margin-bottom: 0.75rem;
    }

    .hero-rating {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.84rem;
      margin-bottom: 0.8rem;
      color: #374151;
    }

    .stars {
      font-size: 0.96rem;
      color: #f59e0b;
    }

    .hero-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      font-size: 0.76rem;
      color: var(--muted);
      padding-top: 0.7rem;
      border-top: 1px dashed rgba(148, 163, 184, 0.8);
    }

    .hero-strip span {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(209, 213, 219, 0.9);
    }

    /* Sections */
    section {
      padding: 2.9rem 0 2.7rem;
    }

    .section-header {
      margin-bottom: 1.6rem;
    }

    .eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    h2.section-title {
      font-size: 1.5rem;
      letter-spacing: -0.03em;
      margin-top: 0.15rem;
      margin-bottom: 0.3rem;
      color: #020617;
    }

    .section-desc {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 32rem;
    }

    /* Services */
    .section--services {
      background:
        radial-gradient(circle at top left, #bfdbfe 0, transparent 55%),
        linear-gradient(to bottom, #f9fafb, #e5e7eb);
      border-top: 1px solid rgba(209, 213, 219, 0.95);
      border-bottom: 1px solid rgba(209, 213, 219, 0.95);
    }

    .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

    .service-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .service-img-wrap {
      position: relative;
      overflow: hidden;
    }

    .service-img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      display: block;
      transform: scale(1.02);
      transition: transform 0.35s ease, filter 0.35s ease;
      filter: saturate(1.05);
    }

    .service-card:hover .service-img {
      transform: scale(1.06);
      filter: saturate(1.15);
    }

    .service-badge {
      position: absolute;
      left: 0.8rem;
      bottom: 0.8rem;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      background: rgba(0, 0, 0, 0.45);
      color: #f9fafb;
      border: 1px solid rgba(249, 250, 251, 0.8);
    }

    .service-body {
      padding: 0.9rem 1rem 1rem;
    }

    .service-title {
      font-size: 1rem;
      margin-bottom: 0.35rem;
      color: #111827;
    }

    .service-text {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.6rem;
    }

    .service-columns {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.35rem 1.2rem;
      font-size: 0.86rem;
      color: #4b5563;
    }

    .service-columns ul {
      list-style: none;
    }

    .service-columns li::before {
      content: "• ";
      color: var(--accent-strong);
    }

    /* DHA section */
    .section--dha {
      background:
        radial-gradient(circle at 100% 0, rgba(191, 219, 254, 0.9) 0, transparent 55%),
        linear-gradient(to bottom, #f9fafb, #e5e7eb);
    }

    .dha-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
      gap: 2.1rem;
      align-items: center;
    }

    .dha-text p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.7rem;
    }

    .dha-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 0.3rem;
    }

    .dha-pill {
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      font-size: 0.76rem;
      border: 1px solid rgba(148, 163, 184, 0.9);
      background: rgba(255, 255, 255, 0.95);
      color: #374151;
    }

    .dha-card {
      background: var(--card);
      border-radius: 22px;
      padding: 0.9rem;
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: var(--shadow-soft);
    }

    .dha-card img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      display: block;
    }

    /* Locations */
    .section--locations {
      background: linear-gradient(to bottom, #f9fafb, #e5e7eb);
      border-top: 1px solid rgba(209, 213, 219, 0.95);
      border-bottom: 1px solid rgba(209, 213, 219, 0.95);
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .location-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(209, 213, 219, 0.95);
      padding: 1rem 1.1rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
    }

    .location-card h3 {
      margin-bottom: 0.3rem;
      letter-spacing: -0.02em;
      color: #111827;
    }

    .location-card p {
      margin-bottom: 0.4rem;
      color: #374151;
    }

    .location-meta {
      font-size: 0.84rem;
      color: var(--muted);
    }

    /* Insights / Blog */
    .section--insights {
      background:
        radial-gradient(circle at 0 20%, rgba(191, 219, 254, 0.75) 0, transparent 55%),
        linear-gradient(to bottom, #f9fafb, #e5e7eb);
      border-top: 1px solid rgba(209, 213, 219, 0.95);
      border-bottom: 1px solid rgba(209, 213, 219, 0.95);
    }

    .insights-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.4rem;
    }

    .insights-actions {
      display: flex;
      gap: 0.6rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.62rem 1.1rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      background: rgba(255, 255, 255, 0.9);
      color: #0f172a;
      font-weight: 600;
      font-size: 0.9rem;
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
      cursor: pointer;
      transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
    }

    .btn-ghost:hover {
      transform: translateY(-1px);
      border-color: var(--accent-strong);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
    }

    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .insight-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      cursor: pointer;
    }

    .insight-img {
      width: 100%;
      height: 170px;
      object-fit: cover;
      display: block;
      transform: scale(1.02);
      transition: transform 0.35s ease, filter 0.35s ease;
      filter: saturate(1.05);
    }

    .insight-card:hover .insight-img {
      transform: scale(1.06);
      filter: saturate(1.15);
    }

    .insight-body {
      padding: 0.95rem 1rem 1.05rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      flex: 1;
    }

    .insight-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.8rem;
    }

    .insight-tag {
      padding: 0.18rem 0.6rem;
      border-radius: 999px;
      background: rgba(239, 246, 255, 0.9);
      border: 1px solid rgba(59, 130, 246, 0.25);
      color: #1d4ed8;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-size: 0.68rem;
    }

    .insight-title {
      font-size: 1rem;
      letter-spacing: -0.02em;
      color: #111827;
      line-height: 1.25;
    }

    .insight-excerpt {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .insight-link {
      margin-top: auto;
      color: var(--accent-strong);
      font-weight: 700;
      font-size: 0.88rem;
    }

    /* Insights modal */
    .modal {
      position: fixed;
      inset: 0;
      background: rgba(2, 6, 23, 0.55);
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding: 5.5rem 1.2rem 2rem;
      z-index: 80;
    }

    .modal.is-open { display: flex; }

    .modal-panel {
      width: min(980px, 100%);
      background: #ffffff;
      border-radius: 22px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      box-shadow: 0 30px 90px rgba(15, 23, 42, 0.35);
      overflow: hidden;
    }

    .modal-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.95rem 1.1rem;
      border-bottom: 1px solid rgba(209, 213, 219, 0.9);
      background: linear-gradient(to bottom, rgba(249, 250, 251, 0.96), rgba(249, 250, 251, 0.9));
    }

    .modal-title {
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0f172a;
      font-size: 1rem;
    }

    .modal-close {
      border: 1px solid rgba(148, 163, 184, 0.8);
      background: rgba(255, 255, 255, 0.95);
      border-radius: 999px;
      padding: 0.45rem 0.9rem;
      font-weight: 700;
      cursor: pointer;
    }

    .modal-content {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
      gap: 0;
      min-height: 520px;
    }

    .modal-list {
      border-right: 1px solid rgba(209, 213, 219, 0.9);
      background: #f9fafb;
      padding: 0.9rem;
      overflow: auto;
      max-height: calc(100vh - 12rem);
    }

    .modal-list-item {
      padding: 0.8rem 0.85rem;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: #ffffff;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
      margin-bottom: 0.75rem;
      cursor: pointer;
    }

    .modal-list-item:hover { border-color: rgba(59, 130, 246, 0.35); }

    .modal-list-kicker {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      color: var(--muted);
      font-size: 0.78rem;
      margin-bottom: 0.3rem;
    }

    .modal-list-item h4 {
      font-size: 0.95rem;
      color: #0f172a;
      letter-spacing: -0.02em;
      line-height: 1.25;
      margin-bottom: 0.35rem;
    }

    .modal-list-item p {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .modal-article {
      padding: 1.2rem 1.35rem 1.35rem;
      overflow: auto;
      max-height: calc(100vh - 12rem);
    }

    .modal-hero {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
      margin-bottom: 0.95rem;
    }

    .article-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.84rem;
      margin-bottom: 0.35rem;
    }

    .article h2 {
      font-size: 1.6rem;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: #020617;
      margin-bottom: 0.65rem;
    }

    .article p {
      color: #334155;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }

    .article h3 {
      margin-top: 1.1rem;
      margin-bottom: 0.45rem;
      color: #0f172a;
      letter-spacing: -0.02em;
      font-size: 1.05rem;
    }

    .article ul {
      margin: 0.35rem 0 0.85rem 1.1rem;
      color: #334155;
    }

    .article-cta {
      margin-top: 1.2rem;
      padding: 0.95rem 1rem;
      border-radius: 18px;
      background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), #ffffff);
      border: 1px solid rgba(22, 163, 74, 0.35);
      box-shadow: 0 18px 40px rgba(22, 163, 74, 0.16);
    }

    .article-cta strong { color: #052e16; }

    @media (max-width: 960px) {
      .insights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .modal-content { grid-template-columns: minmax(0, 1fr); }
      .modal-list { border-right: none; border-bottom: 1px solid rgba(209, 213, 219, 0.9); }
    }

    @media (max-width: 640px) {
      .insights-grid { grid-template-columns: minmax(0, 1fr); }
      .modal { padding-top: 5rem; }
      .modal-hero { height: 200px; }
    }

    /* CTA / Contact */
    .section--cta {
      background:
        radial-gradient(circle at bottom, rgba(187, 247, 208, 0.9) 0, transparent 60%),
        linear-gradient(to bottom, #f9fafb, #e5e7eb);
    }

    .cta-card {
      background: radial-gradient(circle at top left,
                   rgba(16, 185, 129, 0.25),
                   #ffffff);
      border-radius: 24px;
      padding: 1.4rem 1.6rem 1.5rem;
      border: 1px solid rgba(22, 163, 74, 0.6);
      box-shadow: 0 20px 50px rgba(22, 163, 74, 0.25);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.2rem;
    }

    .cta-text {
      max-width: 30rem;
    }

    .cta-text h2 {
      font-size: 1.35rem;
      margin-bottom: 0.3rem;
      color: #052e16;
    }

    .cta-text p {
      font-size: 0.9rem;
      color: #14532d;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.88rem;
    }

    .cta-mail,
    .cta-phone {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      background: #ffffff;
      color: #0f172a;
      font-weight: 600;
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
      border: 1px solid rgba(209, 213, 219, 0.9);
    }

    .cta-mail span,
    .cta-phone span {
      font-size: 1.1rem;
    }

    .cta-note {
      color: #14532d;
      max-width: 19rem;
    }

    footer {
      padding: 1.4rem 0 1.3rem;
      font-size: 0.78rem;
      color: var(--muted);
      background: #f3f4f6;
      border-top: 1px solid rgba(209, 213, 219, 0.95);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.9rem;
      align-items: center;
    }

    .footer-inner a {
      color: #4b5563;
    }

    .footer-inner a:hover {
      color: var(--accent-strong);
    }

    /* Responsive */
    @media (max-width: 960px) {
      .hero-grid,
      .dha-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 780px) {
      .nav {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links {
        width: 100%;
        justify-content: space-between;
      }
      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .locations-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero {
        padding-top: 2.7rem;
      }
      .cta-card {
        padding: 1.2rem 1.2rem 1.4rem;
      }
    }

    @media (max-width: 520px) {
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .cta-card {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Ensure pages with short content push footer down */
.page-wrap {
  min-height: calc(100vh - 140px); /* header + footer buffer */
}
.section--insights {
  padding-bottom: 4.5rem;
}
.insights-subline {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.insights-topics {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.topic-pill {
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.75);
  color: #334155;
  font-size: 0.78rem;
}

.insights-note {
  color: var(--muted);
  font-size: 0.82rem;
}
/* Sticky footer layout for pages that have short content */
body.has-sticky-footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.has-sticky-footer main {
  flex: 1;
}
/* Insights quick links (professional, text-forward) */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.quick-link-item {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quick-link-item:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.quick-link-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
}

.quick-link-desc {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: #475569;
}

@media (max-width: 640px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
  }
}