
    :root {
      --black: #050505;
      --navy: #0b1220;
      --navy-2: #111827;
      --ink: #0f172a;
      --gold: #d4af37;
      --gold-2: #f3d36b;
      --cream: #f8f3e7;
      --white: #ffffff;
      --muted: #64748b;
      --rose: #b45309;
      --shadow: 0 24px 70px rgba(2, 6, 23, 0.22);
      --radius: 22px;
      --max: 1240px;
      --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-heading: "Playfair Display", Georgia, serif;
    }

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

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--white);
      background: var(--navy);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img, svg { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }

    h1, h2, h3 {
      margin: 0;
      font-family: var(--font-heading);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    p { margin-top: 0; }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .skip-link {
      position: fixed;
      top: -100px;
      left: 1rem;
      z-index: 2000;
      padding: 0.75rem 1rem;
      border-radius: 999px;
      background: var(--gold);
      color: var(--ink);
      font-weight: 800;
      text-decoration: none;
      transition: top 0.2s ease;
    }

    .skip-link:focus { top: 1rem; }

    .container {
      width: min(100%, var(--max));
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    .section { padding: clamp(72px, 8vw, 118px) 0; }

    .section-light {
      background: var(--cream);
      color: var(--ink);
    }

    .section-dark {
      background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 30%),
        linear-gradient(180deg, #0b1220 0%, #111827 100%);
    }

    .section-warning {
      background: #fff8e5;
      color: #33240a;
      border-block: 1px solid rgba(146, 64, 14, 0.16);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      width: fit-content;
      margin-bottom: 1rem;
      padding: 0.48rem 0.85rem;
      border: 1px solid rgba(212, 175, 55, 0.38);
      border-radius: 999px;
      color: var(--gold-2);
      background: rgba(212, 175, 55, 0.08);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .section-light .eyebrow,
    .section-warning .eyebrow {
      color: #8a6500;
      background: rgba(212, 175, 55, 0.14);
      border-color: rgba(138, 101, 0, 0.18);
    }

    .section-title {
      max-width: 980px;
      margin-bottom: 1rem;
      font-size: clamp(2rem, 4vw, 3.45rem);
    }

    .section-lead {
      max-width: 940px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 1.04rem;
      line-height: 1.85;
    }

    .section-light .section-lead,
    .section-warning .section-lead {
      color: #475569;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      min-height: 48px;
      padding: 0.82rem 1.16rem;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 800;
      text-decoration: none;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: #111827;
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      box-shadow: 0 16px 38px rgba(212, 175, 55, 0.23);
    }

    .btn-primary:hover { box-shadow: 0 22px 46px rgba(212, 175, 55, 0.3); }

    .btn-secondary {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.06);
    }

    .btn-secondary:hover {
      border-color: rgba(212, 175, 55, 0.4);
      background: rgba(212, 175, 55, 0.1);
    }

    .btn-dark {
      color: var(--white);
      background: var(--navy);
      border-color: var(--navy);
    }

    .brand-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 12px 26px rgba(2, 6, 23, 0.12);
    }

    .brand-topbar {
      background: #000000;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.82rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .brand-topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .topbar-contact, .topbar-social {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .topbar-contact a, .topbar-contact span, .topbar-social a {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      text-decoration: none;
    }

    .topbar-contact a:hover, .topbar-social a:hover { color: var(--gold-2); }

    .main-header {
      background: #ffffff;
      color: #111827;
    }

    .logo-row {
      min-height: 84px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }

    .logo-link {
      grid-column: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .logo-link img {
      width: min(340px, 74vw);
      height: auto;
    }

    .search-area {
      position: relative;
      grid-column: 3;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .search-toggle, .mobile-menu-toggle {
      width: 44px;
      height: 44px;
      display: inline-grid;
      place-items: center;
      border: 0;
      border-radius: 12px;
      background: transparent;
      color: #111827;
    }

    .search-toggle:hover, .mobile-menu-toggle:hover {
      background: rgba(212, 175, 55, 0.12);
      color: #8a6500;
    }

    .search-panel {
      position: absolute;
      top: calc(100% + 0.75rem);
      right: 0;
      z-index: 10;
      display: none;
      width: min(340px, calc(100vw - 2rem));
      padding: 0.8rem;
      border: 1px solid rgba(15, 23, 42, 0.1);
      border-radius: 16px;
      background: #ffffff;
      box-shadow: 0 20px 46px rgba(2, 6, 23, 0.18);
    }

    .search-panel.is-open { display: block; }

    .search-panel form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.5rem;
    }

    .search-panel input {
      min-height: 42px;
      border-radius: 12px;
    }

    .menu-row { border-top: 1px solid rgba(15, 23, 42, 0.06); }

    .primary-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.28rem;
    }

    .primary-nav > a,
    .nav-item > button {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      background: transparent;
      color: #98a1b2;
      font-size: 0.94rem;
      font-weight: 700;
      text-decoration: none;
      padding: 0 0.75rem;
      white-space: nowrap;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .primary-nav > a:hover,
    .primary-nav > a[aria-current="page"],
    .nav-item > button:hover,
    .nav-item > button[aria-expanded="true"] {
      color: #111827;
      background: rgba(212, 175, 55, 0.1);
    }

    .nav-item { position: relative; }

    .nav-item > button::after {
      content: "";
      margin-left: 0.35rem;
      color: #8a6500;
      font-size: 0.75rem;
    }

    .mega-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      z-index: 20;
      display: none;
      min-width: 280px;
      max-width: 390px;
      max-height: 70vh;
      overflow: auto;
      transform: translateX(-50%);
      padding: 0.65rem;
      border: 1px solid rgba(15, 23, 42, 0.1);
      border-radius: 18px;
      background: #ffffff;
      box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
    }

    .nav-item:hover .mega-menu,
    .nav-item:focus-within .mega-menu,
    .nav-item.is-open .mega-menu {
      display: grid;
      gap: 0.25rem;
    }

    .mega-menu a {
      padding: 0.62rem 0.72rem;
      border-radius: 12px;
      color: #475569;
      font-size: 0.88rem;
      font-weight: 650;
      text-decoration: none;
      line-height: 1.35;
    }

    .mega-menu a:hover,
    .mega-menu a[aria-current="page"] {
      background: rgba(212, 175, 55, 0.12);
      color: #111827;
    }

    .nav-cta {
      color: #111827 !important;
      background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
      border-radius: 999px;
      margin-left: 0.35rem;
      box-shadow: 0 10px 22px rgba(212,175,55,0.18);
    }

    .mobile-menu-toggle {
      display: none;
      grid-column: 1;
      justify-self: flex-start;
    }

    .mobile-menu-toggle span,
    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      content: "";
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-menu-toggle span::before { transform: translateY(-7px); }
    .mobile-menu-toggle span::after { transform: translateY(5px); }
    .mobile-menu-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
    .mobile-menu-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(90deg); }
    .mobile-menu-toggle[aria-expanded="true"] span::after { opacity: 0; }

    .hero {
      position: relative;
      overflow: hidden;
      padding: clamp(78px, 9vw, 132px) 0 clamp(78px, 8vw, 118px);
      background:
        linear-gradient(135deg, rgba(6, 16, 31, 0.92), rgba(17, 24, 39, 0.90)),
        url("assets/images/slider/Business and Commercial Lawyer In Lahore Pakistan.jpg") center/cover no-repeat;
    }

    .hero::after {
      position: absolute;
      inset: auto -10% -22% -10%;
      height: 260px;
      content: "";
      background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.16), transparent 68%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.86fr);
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }

    .hero h1 {
      max-width: 960px;
      font-size: clamp(2.55rem, 5.8vw, 5.05rem);
    }

    .hero h1 span {
      color: var(--gold-2);
      font-style: italic;
    }

    .hero-copy {
      max-width: 850px;
      margin: 1.25rem 0 1.6rem;
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.08rem;
      line-height: 1.86;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 1.6rem;
    }

    .client-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      max-width: 860px;
    }

    .client-badges span {
      padding: 0.48rem 0.7rem;
      border-radius: 999px;
      color: rgba(255,255,255,0.86);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      font-size: 0.82rem;
      font-weight: 750;
    }

    .visual-panel {
      position: relative;
      min-height: 580px;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(212, 175, 55, 0.24);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
        rgba(2, 6, 23, 0.45);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      padding: 1.2rem;
      display: grid;
      align-content: end;
    }

    .visual-panel::before {
      position: absolute;
      inset: 0;
      content: "";
      background:
        radial-gradient(circle at 18% 20%, rgba(212, 175, 55, 0.24), transparent 26%),
        radial-gradient(circle at 80% 80%, rgba(244, 114, 182, 0.10), transparent 28%);
      z-index: 0;
    }

    .marriage-stack {
      position: absolute;
      inset: 1.2rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
      align-content: start;
      opacity: 0.95;
    }

    .marriage-chip {
      padding: 0.9rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
    }

    .marriage-chip strong {
      display: block;
      color: #fff;
      font-size: 0.96rem;
      line-height: 1.25;
      margin-bottom: 0.35rem;
    }

    .marriage-chip span {
      display: block;
      color: rgba(255, 255, 255, 0.74);
      font-size: 0.79rem;
      line-height: 1.45;
    }

    .quick-answer {
      position: relative;
      z-index: 1;
      padding: 1.25rem;
      border-radius: 22px;
      background: rgba(11, 18, 32, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(16px);
    }

    .quick-answer h2, .quick-answer h3 {
      margin-bottom: 0.65rem;
      color: var(--gold-2);
      font-family: var(--font-body);
      font-size: 0.88rem;
      line-height: 1.4;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .quick-answer p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.96rem;
    }

    .trust-strip {
      background: var(--cream);
      color: var(--ink);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(15,23,42,0.08);
    }

    .trust-strip-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .trust-item {
      padding: 0.8rem;
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(15,23,42,0.08);
      color: #475569;
      font-size: 0.84rem;
      font-weight: 750;
      line-height: 1.45;
      text-align: center;
    }

    .answer-grid,
    .service-grid,
    .risk-grid,
    .process-grid,
    .document-grid,
    .audience-grid,
    .link-grid,
    .safety-grid {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }

    .answer-grid,
    .process-grid,
    .document-grid,
    .audience-grid,
    .safety-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-grid,
    .risk-grid,
    .link-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .answer-card,
    .risk-card,
    .document-card,
    .audience-card,
    .safety-card,
    .link-card,
    .content-card,
    .process-step,
    .finder-card,
    .result-card {
      padding: 1.15rem;
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 16px 42px rgba(15,23,42,0.06);
    }

    .answer-card h3,
    .risk-card h3,
    .document-card h3,
    .audience-card h3,
    .safety-card h3,
    .link-card strong,
    .process-step h3 {
      margin-bottom: 0.55rem;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.45;
      letter-spacing: 0;
    }

    .answer-card p,
    .risk-card p,
    .document-card p,
    .audience-card p,
    .safety-card p,
    .link-card span,
    .content-card p,
    .process-step p {
      margin-bottom: 0;
      color: #475569;
      font-size: 0.94rem;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      min-height: 100%;
      color: var(--white);
      padding: 1.2rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.06);
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      border-color: rgba(212, 175, 55, 0.36);
      background: rgba(255, 255, 255, 0.09);
    }

    .service-card .num {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 1rem;
      border-radius: 14px;
      background: rgba(212, 175, 55, 0.12);
      color: var(--gold-2);
      font-weight: 900;
    }

    .service-card h3 {
      margin-bottom: 0.65rem;
      color: #fff;
      font-size: 1.25rem;
      line-height: 1.22;
    }

    .service-card p {
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.74);
      font-size: 0.92rem;
    }

    .service-card a {
      color: var(--gold-2);
      font-size: 0.9rem;
      font-weight: 800;
      text-decoration: none;
    }

    .service-card a:hover { text-decoration: underline; }

    .grid-2 {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: start;
    }

    .content-card { padding: clamp(1.25rem, 3vw, 2rem); }

    .content-card.dark {
      color: var(--white);
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.12);
    }

    .content-card h3 {
      margin-bottom: 0.85rem;
      font-size: 1.35rem;
    }

    .check-list {
      display: grid;
      gap: 0.75rem;
      margin: 1.25rem 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 1.75rem;
      color: #334155;
    }

    .section-dark .check-list li,
    .content-card.dark .check-list li,
    .result-card .check-list li {
      color: rgba(255, 255, 255, 0.78);
    }

    .check-list li::before {
      position: absolute;
      left: 0;
      top: 0.08rem;
      content: "-";
      color: #8a6500;
      font-weight: 900;
    }

    .section-dark .check-list li::before,
    .content-card.dark .check-list li::before,
    .result-card .check-list li::before {
      color: var(--gold-2);
    }

    .warning-list {
      display: grid;
      gap: 0.75rem;
      margin: 1.2rem 0 0;
      padding: 0;
      list-style: none;
    }

    .warning-list li {
      position: relative;
      padding-left: 1.75rem;
      color: #4b3412;
      font-size: 0.95rem;
    }

    .warning-list li::before {
      position: absolute;
      left: 0;
      top: 0.05rem;
      content: "!";
      display: inline-grid;
      place-items: center;
      width: 1rem;
      height: 1rem;
      border-radius: 50%;
      background: #f59e0b;
      color: #1f1300;
      font-size: 0.74rem;
      font-weight: 900;
    }

    .finder-layout {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .finder-card { background: rgba(255,255,255,0.88); }

    .result-card {
      color: var(--white);
      background:
        radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 34%),
        linear-gradient(135deg, #07101f, #111827);
      border-color: rgba(212,175,55,0.26);
    }

    .result-card h3 {
      color: var(--white);
      margin-bottom: 0.6rem;
    }

    .result-card p { color: rgba(255,255,255,0.76); }

    .result-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
      margin: 1rem 0;
    }

    .metric-box {
      padding: 0.9rem;
      border-radius: 16px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .metric-box strong {
      display: block;
      color: var(--gold-2);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.25rem;
    }

    .metric-box span {
      color: #fff;
      font-weight: 900;
    }

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

    .field { display: grid; gap: 0.35rem; }
    .field.full { grid-column: 1 / -1; }

    label {
      color: var(--ink);
      font-size: 0.88rem;
      font-weight: 800;
    }

    input, select, textarea {
      width: 100%;
      min-height: 48px;
      padding: 0.82rem 0.9rem;
      border: 1px solid rgba(15, 23, 42, 0.14);
      border-radius: 14px;
      background: #ffffff;
      color: var(--ink);
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }

    textarea {
      min-height: 132px;
      resize: vertical;
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(138, 101, 0, 0.55);
      box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
    }

    .process-grid { counter-reset: step; }

    .process-step {
      position: relative;
      background: rgba(15, 23, 42, 0.06);
      counter-increment: step;
    }

    .process-step::before {
      display: inline-grid;
      place-items: center;
      width: 40px;
      height: 40px;
      margin-bottom: 1rem;
      border-radius: 13px;
      background: var(--navy);
      color: var(--gold-2);
      content: counter(step);
      font-weight: 900;
    }

    .location-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .location-panel {
      padding: 1.3rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.06);
    }

    .location-panel h3 {
      margin-bottom: 0.8rem;
      font-size: 1.35rem;
    }

    .location-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .location-list li {
      padding: 0.42rem 0.62rem;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.78);
      background: rgba(255, 255, 255, 0.07);
      font-size: 0.82rem;
    }

    .link-card {
      color: var(--ink);
      text-decoration: none;
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .link-card:hover {
      transform: translateY(-4px);
      border-color: rgba(212, 175, 55, 0.36);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    }

    .link-card strong { display: block; }

    .faq-list {
      display: grid;
      gap: 0.85rem;
      margin-top: 2rem;
    }

    details {
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.84);
    }

    summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.15rem;
      color: var(--ink);
      font-weight: 850;
      cursor: pointer;
      list-style: none;
    }

    summary::-webkit-details-marker { display: none; }

    summary::after {
      content: "+";
      color: #8a6500;
      font-size: 1.35rem;
      line-height: 1;
      font-weight: 900;
    }

    details[open] summary::after { content: "-"; }

    details p {
      margin: 0;
      padding: 0 1.15rem 1.15rem;
      color: #475569;
    }

    .cta-band {
      padding: clamp(1.5rem, 4vw, 3rem);
      border: 1px solid rgba(212, 175, 55, 0.22);
      border-radius: 30px;
      background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 34%),
        linear-gradient(135deg, #07101f, #111827);
      box-shadow: var(--shadow);
    }

    .cta-band h2 {
      margin-bottom: 0.75rem;
      font-size: clamp(2rem, 4vw, 3.3rem);
    }

    .cta-band p {
      max-width: 980px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.02rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: clamp(1.5rem, 4vw, 3rem);
      align-items: start;
    }

    .contact-info {
      display: grid;
      gap: 1rem;
    }

    .info-item {
      padding: 1rem;
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.84);
    }

    .info-item strong {
      display: block;
      margin-bottom: 0.25rem;
      color: var(--ink);
    }

    .info-item a, .info-item span {
      color: #475569;
      text-decoration: none;
    }

    .info-item a:hover { color: #8a6500; }

    .form-card {
      padding: 1.25rem;
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    }

    .consent {
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
      color: #475569;
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .consent input {
      width: 18px;
      min-width: 18px;
      height: 18px;
      min-height: 18px;
      margin-top: 0.15rem;
    }

    .form-note {
      margin: 0.85rem 0 0;
      color: #64748b;
      font-size: 0.86rem;
    }

    .map-wrap {
      margin-top: 1rem;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.10);
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
      background: #ffffff;
    }

    .map-wrap iframe {
      width: 100%;
      min-height: 360px;
      display: block;
    }

    .site-footer {
      padding: 70px 0 28px;
      background: #07101f;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
      gap: 2rem;
    }

    .footer-grid h3, .footer-grid h4 { margin: 0 0 0.9rem; }
    .footer-grid h3 { font-size: 1.45rem; }

    .footer-grid h4 {
      color: var(--gold-2);
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .footer-grid p, .footer-grid li, .footer-grid a {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.92rem;
      text-decoration: none;
    }

    .footer-grid a:hover { color: var(--gold-2); }

    .footer-logo img {
      width: min(260px, 100%);
      height: auto;
      margin-bottom: 1rem;
    }

    .footer-grid ul {
      display: grid;
      gap: 0.55rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-bottom {
      display: grid;
      gap: 0.7rem;
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.84rem;
    }

    .floating-whatsapp, .sticky-home-btn {
      position: fixed;
      z-index: 1200;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      min-height: 56px;
      padding: 0 1rem;
      border-radius: 999px;
      font-weight: 900;
      text-decoration: none;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .floating-whatsapp {
      left: 18px;
      bottom: 18px;
      background: linear-gradient(135deg, #25d366, #15a84f);
      color: #ffffff;
      box-shadow: 0 18px 42px rgba(37, 211, 102, 0.3);
    }

    .sticky-home-btn {
      right: 18px;
      bottom: 18px;
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: #0b1220;
      box-shadow: 0 18px 42px rgba(212, 175, 55, 0.28);
    }

    .floating-whatsapp:hover, .sticky-home-btn:hover { transform: translateY(-3px); }

    .floating-whatsapp svg, .sticky-home-btn svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    @media (max-width: 1180px) {
      .primary-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.15rem;
      }

      .primary-nav::-webkit-scrollbar { height: 4px; }
      .primary-nav::-webkit-scrollbar-thumb {
        background: rgba(212, 175, 55, 0.32);
        border-radius: 999px;
      }

      .trust-strip-grid,
      .answer-grid,
      .process-grid,
      .document-grid,
      .audience-grid,
      .safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-grid,
      .risk-grid,
      .link-grid,
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-grid,
      .grid-2,
      .finder-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .visual-panel { min-height: 520px; }
    }

    @media (max-width: 860px) {
      .brand-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 0.7rem 1.25rem;
      }

      .logo-row { min-height: 76px; }

      .mobile-menu-toggle { display: inline-grid; }

      .logo-link img { width: min(260px, 58vw); }

      .menu-row { display: none; }

      .menu-row.is-open { display: block; }

      .primary-nav {
        display: grid;
        gap: 0.25rem;
        padding: 0.75rem 0 1rem;
        overflow: visible;
      }

      .primary-nav > a,
      .nav-item > button {
        width: 100%;
        justify-content: space-between;
        min-height: 48px;
        border-radius: 12px;
      }

      .nav-item { width: 100%; }

      .mega-menu {
        position: static;
        width: 100%;
        max-width: none;
        min-width: 0;
        max-height: none;
        transform: none;
        box-shadow: none;
        border-radius: 14px;
        margin: 0.15rem 0 0.5rem;
        background: #f8fafc;
      }

      .nav-item:hover .mega-menu,
      .nav-item:focus-within .mega-menu {
        display: none;
      }

      .nav-item.is-open .mega-menu { display: grid; }

      .search-area { justify-self: flex-end; }

      .hero-actions, .cta-actions { flex-direction: column; }

      .btn { width: 100%; }

      .client-badges span {
        width: 100%;
        text-align: center;
      }

      .trust-strip-grid,
      .answer-grid,
      .service-grid,
      .risk-grid,
      .process-grid,
      .document-grid,
      .audience-grid,
      .safety-grid,
      .location-box,
      .form-grid,
      .footer-grid,
      .link-grid,
      .result-metrics {
        grid-template-columns: 1fr;
      }

      .visual-panel { min-height: 470px; }

      .marriage-stack {
        grid-template-columns: 1fr;
        opacity: 0.56;
      }

      .floating-whatsapp {
        left: 12px;
        bottom: 12px;
        width: 56px;
        padding: 0;
        border-radius: 50%;
      }

      .sticky-home-btn {
        right: 12px;
        bottom: 12px;
        width: 56px;
        padding: 0;
        border-radius: 50%;
      }

      .floating-whatsapp span, .sticky-home-btn span { display: none; }

      .site-footer { padding-bottom: 92px; }

      .map-wrap iframe { min-height: 300px; }
    }

    @media (max-width: 460px) {
      .container { padding: 0 1rem; }
      .hero h1 { font-size: 2.24rem; }
      .logo-link img { width: min(230px, 56vw); }
      .search-toggle, .mobile-menu-toggle { width: 40px; height: 40px; }
      .quick-answer { padding: 1rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
    }
  
    .primary-nav .nav-item > button::after { content: ""; width: 0; height: 0; margin-left: 0.38rem; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; transform: translateY(1px); }
    .primary-nav .nav-item.is-open > button::after { transform: translateY(1px) rotate(180deg); }
    .eyebrow { max-width: 100%; white-space: normal; line-height: 1.25; }
    .topbar-contact a, .topbar-contact span { min-width: 0; white-space: normal; }
    @media (max-width: 700px) { html, body { overflow-x: hidden; } .topbar-contact span:last-child { display: none; } .container { padding-left: 1.25rem; padding-right: 2.35rem; } .logo-row { padding-right: 1.25rem; } .brand-topbar-inner, .topbar-contact { align-items: flex-start; } .topbar-contact { gap: 0.55rem 0.85rem; } .hero .eyebrow { display: block; width: 100%; max-width: 320px; white-space: normal; } .container, .hero-grid, .hero-grid > *, .visual-panel, .content-card, .finder-card, .result-card, .form-card { max-width: 100%; min-width: 0; } .hero-grid, .grid-2, .finder-layout, .contact-grid { grid-template-columns: minmax(0, 1fr) !important; } .hero h1, .hero-copy, .hero-actions, .client-badges { width: 100% !important; max-width: 320px !important; } .hero-copy, .section-lead, .service-card p, .answer-card p, .audience-card p { overflow-wrap: break-word; word-break: normal; } .hero-actions .btn { max-width: 100%; white-space: normal; text-align: center; padding-left: 4.25rem; padding-right: 1.25rem; } }
  
    @media (min-width: 701px) {
      .topbar-contact a,
      .topbar-contact span {
        white-space: nowrap;
      }

      .topbar-contact span:last-child {
        max-width: 380px;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }

    @media (max-width: 700px) {
      .topbar-contact a,
      .topbar-contact span {
        white-space: normal;
      }
    }
  
    @media (min-width: 861px) {
      .hero h1 {
        max-width: 780px;
        font-size: clamp(2.45rem, 4.65vw, 4.45rem);
      }

      .hero-copy {
        max-width: 720px;
      }
    }
  
    @media (min-width: 861px) {
      .hero h1 {
        max-width: 780px;
        font-size: clamp(2.35rem, 4.25vw, 4.05rem);
      }

      .hero-copy {
        max-width: 720px;
        margin: 1rem 0 1.1rem;
        line-height: 1.68;
      }
    }
  
    @media (min-width: 701px) {
      .topbar-contact span:last-child {
        display: inline-block;
        max-width: 260px;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
      }
    }
  

/* Law Firm Collaboration Network complete page */
.breadcrumb-bar {
  background: #fff;
  color: #475569;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.86rem;
}
.breadcrumb-bar .container { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.breadcrumb-bar a { color: #8a6500; text-decoration: none; font-weight: 800; }
.breadcrumb-bar a:hover { text-decoration: underline; }
.section-nav {
  position: sticky;
  top: 176px;
  z-index: 800;
  background: rgba(11, 18, 32, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.section-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.section-nav a {
  flex: 0 0 auto;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 850;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
}
.section-nav a:hover, .section-nav a.is-active {
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.section-nav .section-nav-cta { margin-left: auto; color: #111827; background: linear-gradient(135deg, var(--gold), var(--gold-2)); }
.network-hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.20), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(59, 130, 246, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(6, 16, 31, 0.97), rgba(17, 24, 39, 0.95)),
    url("../images/og-law-firm-collaboration-network.png") center/cover no-repeat;
}
.network-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 86%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.global-visual {
  min-height: 640px;
  padding: 1.1rem;
  align-content: stretch;
  grid-template-rows: auto 1fr auto auto;
  gap: 1rem;
}
.network-panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.86);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.network-status {
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
}
.network-map {
  position: relative;
  z-index: 2;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(212,175,55,0.16), transparent 18%),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    rgba(2,6,23,0.32);
  background-size: auto, 44px 44px, 44px 44px, auto;
}
.network-map::before {
  content: "";
  position: absolute;
  inset: 16% 9%;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 48% 52% 50% 50%;
  transform: rotate(-8deg);
}
.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 8px rgba(212,175,55,0.13), 0 0 34px rgba(212,175,55,0.52);
  animation: pulseNode 2.4s ease-in-out infinite;
}
.node::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  top: -5px;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}
.node.pk { left: 48%; top: 48%; }
.node.uk { left: 42%; top: 30%; animation-delay: .2s; }
.node.us { left: 20%; top: 40%; animation-delay: .4s; }
.node.ae { left: 57%; top: 55%; animation-delay: .7s; }
.node.apac { left: 76%; top: 58%; animation-delay: 1s; }
.node.eu { left: 48%; top: 24%; animation-delay: 1.2s; }
.line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.75), transparent); transform-origin: left center; opacity: .85; animation: glowLine 3.2s ease-in-out infinite; }
.line.l1 { left: 21%; top: 43%; width: 180px; transform: rotate(-10deg); }
.line.l2 { left: 44%; top: 33%; width: 140px; transform: rotate(36deg); animation-delay: .4s; }
.line.l3 { left: 50%; top: 52%; width: 130px; transform: rotate(12deg); animation-delay: .8s; }
.line.l4 { left: 58%; top: 58%; width: 150px; transform: rotate(2deg); animation-delay: 1.2s; }
.line.l5 { left: 48%; top: 28%; width: 110px; transform: rotate(90deg); animation-delay: 1.6s; }
@keyframes pulseNode { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.16); } }
@keyframes glowLine { 0%, 100% { opacity: .35; } 50% { opacity: .95; } }
.network-kpi-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.network-kpi {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 0.8rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.network-kpi strong { color: var(--gold-2); font-size: 1.45rem; display: block; font-weight: 950; }
.network-kpi span { color: rgba(255,255,255,0.74); font-size: 0.8rem; line-height: 1.4; }
.network-answer { position: relative; z-index: 2; }
.model-grid, .benefit-grid, .pricing-grid, .metric-grid, .testimonial-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.model-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.model-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.model-card::after { content: ""; position: absolute; inset: auto -20% -30% -20%; height: 90px; background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%); }
.model-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.38); background: rgba(255,255,255,0.10); }
.model-number {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(243,211,107,0.08));
  color: var(--gold-2);
  font-weight: 950;
  font-size: 1.25rem;
}
.model-card h3 { color: #fff; font-family: var(--font-body); font-size: 1.12rem; letter-spacing: 0; line-height: 1.35; margin-bottom: .65rem; }
.model-card p { color: rgba(255,255,255,0.74); font-size: .92rem; margin: 0; }
.icon-card { position: relative; overflow: hidden; }
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 950;
}
.marketing-grid .answer-card { background: #fff; }
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 30px;
  border: 1px solid rgba(15,23,42,0.10);
  background: #fff;
  box-shadow: 0 22px 58px rgba(15,23,42,0.08);
  color: var(--ink);
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.featured-package {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 30%),
    #fff;
  border-color: rgba(212,175,55,0.38);
  box-shadow: 0 30px 70px rgba(138,101,0,0.16);
}
.package-badge {
  align-self: flex-start;
  margin-top: .35rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(212,175,55,0.14);
  color: #8a6500;
  font-size: .78rem;
  font-weight: 900;
}
.package-label { color: #8a6500; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; font-size: .76rem; }
.package-top h3 { margin: .55rem 0 .65rem; font-size: clamp(1.55rem, 3vw, 2.1rem); }
.package-top p, .package-section p { color: #475569; margin-bottom: 0; }
.price { display: flex; align-items: baseline; gap: .35rem; margin: .75rem 0; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 950; letter-spacing: -.04em; color: var(--navy); }
.price span { font-size: .85rem; color: #8a6500; letter-spacing: .08em; }
.price small { font-size: .9rem; color: #64748b; font-weight: 800; letter-spacing: 0; }
.package-section { padding-top: 1rem; border-top: 1px solid rgba(15,23,42,0.08); }
.package-section > strong { display: block; color: var(--ink); margin-bottom: .7rem; }
.support-pill { margin-top: auto; border: 1px solid rgba(138,101,0,0.18); background: rgba(212,175,55,0.10); color: #6b4d00; border-radius: 999px; padding: .65rem .85rem; font-weight: 900; font-size: .88rem; }
.package-btn { width: 100%; }
.comparison-wrap {
  margin-top: 1.4rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 42px rgba(15,23,42,0.06);
}
.comparison-wrap h3 { margin: 0 0 .85rem; font-family: var(--font-body); font-size: 1.1rem; letter-spacing: 0; }
.comparison-table { display: grid; gap: .35rem; }
.comparison-table [role="row"] { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: .5rem; align-items: center; }
.comparison-table span { padding: .7rem; border-radius: 12px; background: #fff; color: #475569; font-size: .9rem; font-weight: 700; }
.comparison-head span { color: #111827; background: rgba(212,175,55,0.16); font-weight: 950; }
.metric-card {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  text-align: center;
}
.metric-card strong { display: block; color: var(--gold-2); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; margin-bottom: .5rem; }
.metric-card span { color: rgba(255,255,255,0.74); font-weight: 800; }
.testimonial-card {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 16px 42px rgba(15,23,42,0.06);
}
.testimonial-card h3 { font-family: var(--font-body); font-size: 1.05rem; letter-spacing: 0; margin-bottom: .6rem; }
.testimonial-card p { color: #475569; margin-bottom: .8rem; }
.testimonial-card span { display: inline-flex; color: #8a6500; font-size: .8rem; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.sticky-join-btn {
  position: fixed;
  z-index: 1200;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: rgba(11,18,32,.92);
  border: 1px solid rgba(212,175,55,.36);
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(2,6,23,.22);
  backdrop-filter: blur(14px);
}
.sticky-join-btn:hover { color: var(--gold-2); }
@media (min-width: 1181px) {
  .network-process.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1180px) {
  .section-nav { top: 176px; }
  .model-grid, .benefit-grid, .metric-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; }
  .global-visual { min-height: 560px; }
}
@media (max-width: 860px) {
  .section-nav { top: 76px; }
  .section-nav .section-nav-cta { margin-left: 0; }
  .model-grid, .benefit-grid, .metric-grid, .testimonial-grid, .comparison-table [role="row"] { grid-template-columns: 1fr; }
  .global-visual { min-height: 520px; }
  .network-kpi-row { grid-template-columns: 1fr; }
  .sticky-join-btn { left: 50%; bottom: 12px; min-height: 52px; max-width: 190px; text-align: center; }
  .floating-whatsapp { bottom: 74px; }
  .sticky-home-btn { bottom: 74px; }
}
@media (max-width: 700px) {
  .hero h1, .hero-copy, .hero-actions, .client-badges { max-width: 100% !important; }
  .hero-actions .btn { padding-left: 1.25rem; }
  .container { padding-right: 1.25rem; }
  .network-map { min-height: 260px; }
  .node::after { font-size: .65rem; }
}
@media (max-width: 460px) {
  .price { font-size: 2.25rem; flex-wrap: wrap; }
  .sticky-join-btn { display: none; }
}
