.page-media-hub {
  display: block;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  /* ===== Reset & Host ===== */


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

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

  & a { text-decoration: none; }

  /* ===== Material Symbols (font loaded in layout.html) ===== */
  .msi {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  }

  .msi.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  }

  /* ===== Shared ===== */
  .container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
  }

  /* ===== Hero Section ===== */
  .hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(25.5rem, calc(100svh - 14rem), 32rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.85rem 0 0.75rem;
    background:
      linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  }

  .hero-noise {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(6, 53, 122, 0.14) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.75;
    pointer-events: none;
  }

  .hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.45;
    pointer-events: none;
  }

  .hero-glow-a {
    width: 16rem;
    height: 16rem;
    top: 2rem;
    right: 8%;
    background: rgba(6, 53, 122, 0.16);
  }

  .hero-glow-b {
    width: 12rem;
    height: 12rem;
    bottom: 1rem;
    left: 8%;
    background: rgba(6, 53, 122, 0.1);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: 1.85rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

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

  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-kicker-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e 0%, #22c55e 100%);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
  }

  .hero h1 {
    max-width: 44rem;
    font-size: clamp(2rem, 3.6vw, 3.45rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.07em;
    line-height: 0.92;
    margin-bottom: 0.75rem;
    text-transform: none;
  }

  .hero h1 span {
    display: block;
    margin-top: 0.25rem;
    color: #06357A;
  }

  .hero-sub {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 0.9rem;
    max-width: 31rem;
  }

  .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
  }

  .hero-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(203, 213, 225, 0.9);
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  }

  .hero-proof-item .msi {
    font-size: 1rem;
    color: #06357A;
  }

  .hero-ctas {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.95rem;
    background: #06357A;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0.9rem;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(6, 53, 122, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
  }

  .btn-primary:hover {
    box-shadow: 0 24px 48px rgba(6, 53, 122, 0.24);
    transform: translateY(-2px);
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.95rem;
    background: rgba(255, 255, 255, 0.72);
    color: #06357A;
    padding: 0.75rem 1.2rem;
    border-radius: 0.9rem;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid rgba(148, 163, 184, 0.35);
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
  }

  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-2px);
  }

  /* Hero visual (right column) */
  .hero-visual {
    position: relative;
  }

  .hero-panel {
    position: relative;
    border-radius: 1.6rem;
    padding: 0.9rem;
    background: #06357A;
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
    border: 6px solid rgba(255, 255, 255, 0.72);
  }

  .hero-panel::after {
    content: "";
    position: absolute;
    inset: 0.8rem;
    border-radius: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
  }

  .hero-panel-bar {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
  }

  .hero-panel-bar span {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
  }

  .hero-panel-label {
    color: rgba(219, 234, 254, 0.88);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
  }

  .hero-panel-title {
    max-width: 18rem;
    color: #eff6ff;
    font-size: clamp(1.2rem, 1.7vw, 1.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
  }

  .hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .hero-panel-card {
    min-height: 6.5rem;
    padding: 0.8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-panel-card-primary {
    background: rgba(255, 255, 255, 0.2);
  }

  .hero-panel-card .msi {
    margin-bottom: auto;
    font-size: 1.2rem;
    color: #dbeafe;
  }

  .hero-panel-card strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
  }

  .hero-panel-card small {
    color: rgba(219, 234, 254, 0.86);
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-panel-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel-metric {
    display: block;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 0.25rem;
  }

  .hero-panel-caption {
    display: block;
    color: rgba(219, 234, 254, 0.82);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
  }

  .hero-stat {
    position: absolute;
    bottom: -0.9rem;
    left: -0.9rem;
    background: #fff;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.13);
    max-width: 14rem;
    border: 1px solid #e2e8f0;
  }

  .hero-stat-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .hero-stat-top .msi {
    font-size: 1.6rem;
    color: #15803d;
  }

  .hero-stat-value {
    font-size: 1.55rem;
    font-weight: 900;
    color: #06357A;
    letter-spacing: -0.05em;
  }

  .hero-stat p {
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }

  .hero-note {
    position: absolute;
    top: 0.8rem;
    right: -0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    color: #f8fafc;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  }

  .hero-note .msi {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
  }

  /* ===== Stats Bar ===== */
  .stats-bar {
    background: #06357A;
    color: #fff;
    padding: 3rem 0;
  }

  .stats-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .stat-item-value {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
  }

  .stat-item-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #dbeafe;
  }

  .stat-divider {
    height: 2rem;
    width: 1px;
    background: rgba(255,255,255,0.2);
  }

  /* ===== Services Section ===== */
  .services {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  }

  .services-layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
  }

  .services-header {
    position: sticky;
    top: 5.5rem;
    padding-right: 1rem;
  }

  .services-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: #06357A;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .services-header h2 {
    font-size: clamp(2.2rem, 3.3vw, 3.4rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.06em;
    line-height: 0.98;
    margin-bottom: 1rem;
  }

  .services-header h2 span {
    color: #06357A;
  }

  .services-sub {
    max-width: 24rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
  }

  .services-progress {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(6, 53, 122, 0.06);
    border: 1px solid rgba(6, 53, 122, 0.12);
    color: #06357A;
  }

  .services-progress-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: #06357A;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
  }

  .services-progress-label {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .services-stack {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding-top: 0.25rem;
  }

  .service-story {
    position: relative;
    padding: 1.35rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    opacity: 0.52;
    transform: translateY(0.5rem);
    filter: saturate(0.82);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease,
      filter 0.35s ease;
    scroll-margin-top: 7rem;
  }

  .service-story.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: saturate(1);
    border-color: rgba(6, 53, 122, 0.3);
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.14);
  }

  .service-story.is-passed {
    opacity: 0.72;
    transform: translateY(0);
  }

  .service-story-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .service-story-number {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .service-story-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(6, 53, 122, 0.08);
    color: #06357A;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-story-icon .msi {
    font-size: 1.45rem;
  }

  .service-story-body {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
    gap: 1.5rem;
    align-items: start;
  }

  .service-story-label {
    color: #06357A;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
  }

  .service-story h3 {
    color: #0f172a;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 0.85rem;
  }

  .service-story p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
  }

  .service-story-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(6, 53, 122, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.22);
  }

  .service-story-list li {
    position: relative;
    padding-left: 1.2rem;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
  }

  .service-story-list li::before {
    content: "";
    position: absolute;
    top: 0.45rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #06357A;
  }

  .service-story-web {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  }

  .service-story-seo {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  }

  .service-story-ai {
    background: linear-gradient(180deg, #0f172a 0%, #162032 100%);
    border-color: #1e293b;
  }

  .service-story-ai.is-active {
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 36px 70px rgba(2, 6, 23, 0.35);
  }

  .service-story-ai .service-story-number,
  .service-story-ai .service-story-label,
  .service-story-ai h3,
  .service-story-ai p,
  .service-story-ai .service-story-list li {
    color: #f8fafc;
  }

  .service-story-ai .service-story-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .service-story-ai .service-story-list {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .service-story-ai .service-story-list li::before {
    background: #ffffff;
  }

  .service-story-social {
    background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
  }

  .service-story-reputation {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
  }

  .service-story.is-active .service-story-number,
  .service-story.is-active .service-story-label {
    color: #06357A;
  }

  /* ===== Why Us Section ===== */
  .why-us {
    padding: 3.5rem 0;
    background: #06357A;
    color: #fff;
    overflow: hidden;
  }

  .why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .why-us h2 {
    font-size: 2.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .why-us h2 span {
    color: #93c5fd;
  }

  .why-us-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .why-us-item {
    display: flex;
    gap: 1rem;
  }

  .why-us-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-us-icon .msi {
    color: #fff;
    font-size: 1.375rem;
  }

  .why-us-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .why-us-item p {
    color: #dbeafe;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .why-us-image {
    position: relative;
  }

  .why-us-image-inner {
    position: relative;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    overflow: hidden;
    background: #0f172a;
    aspect-ratio: 3 / 3.5;
    max-height: 380px;
    transform: scale(1.1);
  }

  .why-us-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .why-us-image-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(6, 53, 122, 0.92);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
  }

  /* ===== Process Section ===== */
  .process {
    padding: 5rem 0;
    background: #f8f9fa;
  }

  .process h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #06357A;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    text-align: center;
  }

  .process-sub {
    text-align: center;
    color: #475569;
    max-width: 36rem;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .process-card {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
  }

  .process-card:hover {
    border-color: #06357A;
    box-shadow: 0 20px 25px -5px rgba(6, 53, 122, 0.1);
    transform: translateY(-4px);
  }

  .process-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #06357A;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
  }

  .process-card-icon {
    display: block;
    margin-bottom: 1rem;
  }

  .process-card-icon .msi {
    font-size: 2rem;
    color: #06357A;
  }

  .process-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #06357A;
    margin-bottom: 0.5rem;
  }

  .process-card p {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.55;
  }

  /* ===== Lead Form Section ===== */
  .lead-section {
    padding: 0;
    background: #fff;
  }

  .lead-section-header {
    background: #06357A;
    color: #fff;
    padding: 4rem 1.5rem 6rem;
    text-align: center;
  }

  .lead-section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    color: #fff;
  }

  .lead-section-header p {
    color: #bfdbfe;
    max-width: 36rem;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .lead-form-wrap {
    max-width: 56rem;
    margin: -3rem auto 0;
    padding: 0 1.5rem 4rem;
    position: relative;
    z-index: 1;
  }

  /* ===== FAQ Section ===== */
  .hub-faq-section {
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
    border-top: 1px solid #dbe6f3;
  }

  .hub-faq-wrap {
    max-width: 52rem;
    margin: 0 auto;
  }

  .hub-faq-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: #06357A;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .hub-faq-wrap h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.05em;
    line-height: 1.02;
    margin-bottom: 0.9rem;
  }

  .hub-faq-sub {
    max-width: 42rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .ms-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ms-faq-item {
    list-style: none;
    border-bottom: 1px solid #dbe6f3;
    background: rgba(255, 255, 255, 0.72);
  }

  .ms-faq-item:first-child {
    border-top: 1px solid #dbe6f3;
  }

  .ms-faq-item summary {
    list-style: none;
  }

  .ms-faq-item summary::-webkit-details-marker {
    display: none;
  }

  .ms-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.2rem 0.15rem;
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
  }

  .ms-faq-trigger:hover {
    color: #06357A;
  }

  .ms-faq-trigger:focus-visible {
    outline: 2px solid #06357A;
    outline-offset: 3px;
    border-radius: 0.35rem;
  }

  .ms-faq-chevron {
    flex-shrink: 0;
    width: 1.3rem;
    height: 1.3rem;
    color: #06357A;
    transition: transform 0.25s ease;
  }

  .ms-faq-item[open] .ms-faq-chevron {
    transform: rotate(180deg);
  }

  .ms-faq-answer {
    margin: 0;
    padding: 0 0.15rem 1.3rem;
    color: #475569;
    font-size: 0.97rem;
    line-height: 1.75;
  }

  /* ===== Newsletter Wrapper ===== */
  .newsletter-wrap {
    display: flex;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    background: #f1f3f5;
  }

  .newsletter-wrap ml-newsletter-form {
    width: 100%;
    max-width: 800px;
  }

  /* ===== Responsive ===== */
  @media (max-width: 1024px) {
    .hero h1 {
      font-size: 2.2rem;
    }

    .why-us h2 {
      font-size: 1.75rem;
    }

    .hero-panel-title {
      max-width: none;
      font-size: 1.35rem;
    }

    .services-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .services-header {
      position: static;
      padding-right: 0;
    }
  }

  @media (max-width: 768px) {
    .hero {
      min-height: auto;
      padding: 1rem 0 1.4rem;
    }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 1.1rem;
    }

    .hero h1 {
      font-size: 1.95rem;
    }

    .hero-sub {
      font-size: 0.92rem;
    }

    .hero-visual {
      order: 0;
    }

    .hero-stat {
      position: relative;
      bottom: auto;
      left: auto;
      margin-top: 1rem;
      max-width: 100%;
    }

    .hero-note {
      position: relative;
      top: auto;
      right: auto;
      margin-top: 1rem;
      width: fit-content;
    }

    .hero-panel {
      padding: 0.85rem;
    }

    .hero-panel-grid {
      grid-template-columns: 1fr 1fr;
    }

    .stats-bar-inner {
      flex-direction: column;
      gap: 1.5rem;
    }

    .stat-divider {
      display: none;
    }

    .services-header h2 {
      font-size: 2rem;
    }

    .services-stack {
      gap: 1.5rem;
    }

    .services-progress {
      margin-top: 1rem;
    }

    .service-story,
    .service-story-body {
      grid-template-columns: 1fr;
    }

    .why-us-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .why-us h2 {
      font-size: 2rem;
    }

    .why-us-image-inner {
      transform: scale(1);
    }

    .process h2 {
      font-size: 1.75rem;
    }

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

    .lead-section-header h2 {
      font-size: 2rem;
    }

    .hub-faq-wrap h2 {
      font-size: 2rem;
    }

    .services { padding: 4rem 0; }
    .why-us { padding: 3rem 0; }
    .process { padding: 3rem 0; }
  }

  @media (max-width: 480px) {
    .hero {
      min-height: auto;
      padding: 0.85rem 0 1.25rem;
    }

    .hero h1 {
      font-size: 1.68rem;
      line-height: 0.98;
    }

    .hero-ctas {
      flex-direction: column;
    }

    .hero-ctas a {
      text-align: center;
      width: 100%;
    }

    .hero-proof {
      gap: 0.6rem;
    }

    .hero-proof-item {
      width: 100%;
      justify-content: flex-start;
    }

    .hero-panel-grid {
      grid-template-columns: 1fr;
    }

    .hero-panel-card {
      min-height: 5.75rem;
    }

    .service-story {
      padding: 1.15rem;
      border-radius: 1.25rem;
      opacity: 1;
      transform: none;
      filter: none;
    }

    .services-sub {
      max-width: none;
    }

    .process-grid {
      grid-template-columns: 1fr;
    }

    .services-header h2 {
      font-size: 1.5rem;
    }

    .why-us-image-badge {
      left: 0.75rem;
      right: 0.75rem;
      bottom: 0.75rem;
      justify-content: center;
      text-align: center;
    }

    .lead-section-header h2 {
      font-size: 1.5rem;
    }

    .hub-faq-section {
      padding: 3.25rem 0 4rem;
    }

    .hub-faq-wrap h2 {
      font-size: 1.6rem;
    }

    .ms-faq-trigger {
      font-size: 0.95rem;
      padding: 1rem 0.1rem;
    }
  }
}
