/* Lawset Legal — Homepage (index only). Loaded after styles.css. */

body.premium-shell-page.home-page {
  font-family: var(--font-body, 'Poppins', sans-serif);
  background: var(--navy, #f3f8ff);
  color: var(--white, #10243f);
  line-height: 1.7;
}

    /* ===== CSS VARIABLES ===== */
    :root {
      --navy: #f3f8ff;
      --navy-2: #ffffff;
      --navy-3: #e7f2ff;
      --navy-4: #d7eaff;
      --blue: #0b63c7;
      --blue-light: #1976d2;
      --blue-bright: #0a84ff;
      --blue-glow: rgba(10, 132, 255, 0.22);
      --blue-glow-soft: rgba(10, 132, 255, 0.1);
      --gold: #a98219;
      --gold-light: #b89122;
      --white: #10243f;
      --white-90: rgba(16,36,63,0.9);
      --white-70: rgba(16,36,63,0.72);
      --white-50: rgba(16,36,63,0.54);
      --white-20: rgba(16,36,63,0.18);
      --white-10: rgba(16,36,63,0.1);
      --white-05: rgba(16,36,63,0.05);
      --border: rgba(16,36,63,0.12);
      --border-blue: rgba(10, 132, 255, 0.24);
      --font-display: 'Cinzel', serif;
      --font-serif: 'Playfair Display', serif;
      --font-body: 'Poppins', sans-serif;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

    /* ===== LOADING SCREEN ===== */
    .loading-screen {
      position: fixed; inset: 0;
      background: var(--navy);
      z-index: 9999;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 24px;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    .loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loading-logo {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--white);
    }
    .loading-logo span { color: var(--blue-bright); }
    .loading-bar-wrap {
      width: 200px; height: 2px;
      background: var(--white-10);
      border-radius: 2px; overflow: hidden;
    }
    .loading-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--blue), var(--blue-bright));
      animation: loadBar 1.8s ease forwards;
    }
    @keyframes loadBar { from { width: 0; } to { width: 100%; } }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none; cursor: pointer;
      border-radius: 3px;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--blue-bright));
      color: #fff;
      box-shadow: 0 4px 20px var(--blue-glow);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px var(--blue-glow), 0 0 0 1px var(--blue-bright);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--white-20);
    }
    .btn-outline:hover {
      background: var(--white-10);
      border-color: var(--white-50);
      transform: translateY(-2px);
    }
    .btn-gold {
      background: transparent;
      color: var(--gold-light);
      border: 1px solid var(--gold);
      padding: 12px 28px;
    }
    .btn-gold:hover {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 clamp(20px, 3vw, 40px);
      height: 72px;
      display: flex; align-items: center;
      transition: var(--transition-slow);
    }
    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-blue);
      box-shadow: 0 12px 34px rgba(13, 71, 135, 0.12);
    }
    .nav-inner {
      width: 100%; max-width: 1440px;
      margin: 0 auto;
      display: flex; align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: clamp(1rem, 1vw, 1.2rem);
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--white);
      flex-shrink: 0;
      display: flex; align-items: center; gap: 10px;
    }
    .nav-logo img {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}
    .nav-logo-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--blue), var(--blue-bright));
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0;
      flex-shrink: 0;
    }
    .nav-logo span { color: var(--blue-bright); }
    .nav-links {
      display: flex; align-items: center;
      gap: clamp(2px, 0.35vw, 8px);
      flex: 1 1 auto; justify-content: center;
      flex-wrap: nowrap;
      min-width: 0;
    }
    .nav-link {
      font-family: var(--font-body);
      font-size: clamp(0.78rem, 0.72vw, 0.88rem);
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--white-70);
      padding: 8px clamp(6px, 0.55vw, 10px);
      border-radius: 3px;
      transition: var(--transition);
      position: relative;
      white-space: nowrap;
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: 2px; left: 50%; right: 50%;
      height: 1px;
      background: var(--blue-bright);
      transition: var(--transition);
    }
    .nav-link:hover { color: var(--white); }
    .nav-link:hover::after, .nav-link.active::after { left: 10px; right: 10px; }
    .nav-link.active { color: var(--white); }
    .nav-cta { flex-shrink: 0; }
    .btn-consult {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px clamp(14px, 1.2vw, 22px);
      font-family: var(--font-body);
      font-size: clamp(0.72rem, 0.62vw, 0.78rem);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, var(--blue), var(--blue-bright));
      border: none; border-radius: 3px; cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 2px 16px var(--blue-glow);
      white-space: nowrap;
    }
    .btn-consult:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px var(--blue-glow), 0 0 0 1px var(--blue-bright);
    }
    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 8px;
      background: none; border: none;
      z-index: 1100;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: var(--transition);
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    /* Mobile menu */
    .mobile-menu {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(360px, 90vw);
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(30px);
      border-left: 1px solid var(--border-blue);
      z-index: 1050;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex; flex-direction: column;
      padding: 80px 32px 32px;
      overflow-y: auto;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-overlay {
      position: fixed; inset: 0;
      background: rgba(7, 37, 76, 0.35);
      z-index: 1040;
      opacity: 0; visibility: hidden;
      transition: var(--transition);
    }
    .mobile-overlay.open { opacity: 1; visibility: visible; }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
    .mobile-nav-link {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--white-70);
      padding: 14px 16px;
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
      display: flex; align-items: center; gap: 12px;
      border-radius: 4px;
    }
    .mobile-nav-link:hover { color: var(--white); background: var(--white-05); border-color: var(--border-blue); }
    .mobile-nav-link svg { color: var(--blue-bright); flex-shrink: 0; }
    .mobile-cta { margin-top: 24px; }
    .mobile-cta .btn-consult { width: 100%; justify-content: center; padding: 14px; }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      height: 100vh; min-height: 600px;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #ffffff 0%, #e9f4ff 48%, #d9ecff 100%);
    }
    .hero-videos {
      position: absolute; inset: 0;
      z-index: 0;
    }
    .hero-video-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0;
      transform: scale(1.04);
      transition: opacity 1.4s ease, transform 6s ease;
    }
    .hero-video-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.06) brightness(1.08);
    }
    .hero-video-slide.active { opacity: 1; transform: scale(1); }
    /* Simulated cinematic backgrounds */
    .hero-video-slide:nth-child(1) {
      background: linear-gradient(135deg, #ffffff 0%, #eaf4ff 45%, #cfe7ff 100%);
    }
    .hero-video-slide:nth-child(2) {
      background: linear-gradient(135deg, #f8fcff 0%, #e6f3ff 50%, #c8e3ff 100%);
    }
    .hero-video-slide:nth-child(3) {
      background: linear-gradient(145deg, #ffffff 0%, #edf7ff 45%, #d7ecff 100%);
    }
    .hero-video-slide:nth-child(4) {
      background: linear-gradient(155deg, #f7fbff 0%, #e1f0ff 50%, #cae6ff 100%);
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.72) 44%, rgba(232,244,255,0.38) 100%),
        linear-gradient(to bottom, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.08) 55%, rgba(243,248,255,0.78) 100%);
    }
    /* Animated grid lines */
    .hero-grid {
      position: absolute; inset: 0; z-index: 1;
      background-image:
        linear-gradient(rgba(33,150,243,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33,150,243,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridScroll 20s linear infinite;
    }
    @keyframes gridScroll { from { background-position: 0 0; } to { background-position: 80px 80px; } }
    /* Floating orbs */
    .hero-orb {
      position: absolute; border-radius: 50%; z-index: 1;
      filter: blur(80px); pointer-events: none;
      animation: orbFloat 8s ease-in-out infinite;
    }
    .hero-orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(21,101,192,0.3), transparent);
      top: -100px; left: -100px;
      animation-delay: 0s;
    }
    .hero-orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(33,150,243,0.2), transparent);
      bottom: -50px; right: -50px;
      animation-delay: -4s;
    }
    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(20px, -20px); }
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      max-width: 820px;
      padding: clamp(24px, 4vw, 48px) 24px;
      margin: 0 auto;
    }
    .hero-label {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue-bright);
      padding: 8px 20px;
      border: 1px solid rgba(33,150,243,0.3);
      border-radius: 50px;
      margin-bottom: 28px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.8s ease forwards 0.3s;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.05rem, 4.7vw, 4rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 8px;
      text-wrap: balance;
      opacity: 0; transform: translateY(30px);
      animation: fadeUp 0.9s ease forwards 0.5s;
    }
    .hero-title-lg {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5.8vw, 5rem);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: 0.01em;
      color: var(--white);
      margin-bottom: 24px;
      text-wrap: balance;
      opacity: 0; transform: translateY(30px);
      animation: fadeUp 0.9s ease forwards 0.7s;
    }
    .hero-title-lg span {
      background: linear-gradient(135deg, #064d9c, var(--blue), var(--blue-bright));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-subtitle {
      font-size: clamp(0.9rem, 1.8vw, 1.05rem);
      font-weight: 300;
      line-height: 1.8;
      color: var(--white-70);
      max-width: 620px;
      margin: 0 auto 34px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.9s ease forwards 0.9s;
    }
    .hero-btns {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; flex-wrap: wrap;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.9s ease forwards 1.1s;
    }
    .hero-indicators {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex; gap: 10px;
    }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(16,36,63,0.25);
      cursor: pointer;
      transition: var(--transition);
    }
    .hero-dot.active {
      background: var(--blue-bright);
      box-shadow: 0 0 10px var(--blue-bright);
      width: 24px; border-radius: 4px;
    }
    /* Scroll indicator */
    .hero-scroll {
      position: absolute; bottom: 36px; right: 48px;
      z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0; animation: fadeUp 1s ease forwards 1.5s;
    }
    .hero-scroll span {
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--white-50); writing-mode: vertical-rl;
    }
    .hero-scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, var(--blue-bright), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== SECTION COMMONS ===== */
    .section { padding: 100px 40px; }
    .container { max-width: 1280px; margin: 0 auto; }
    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--blue-bright);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 20px;
    }
    .section-subtitle {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--white-70);
      max-width: 560px;
    }
    .text-center { text-align: center; }
    .text-center .section-subtitle { margin: 0 auto; }

    /* Animate on scroll */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

   /* ===== WHO WE ARE ===== */
.who-section { background: var(--navy-2); }

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-visual {
  position: relative;
}

.who-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #e5f2ff 52%, #cde6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* NEW IMAGE STYLE */
.who-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

.who-img:hover {
  transform: scale(1.05);
}

.who-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(21,101,192,0.2), transparent 60%),
    radial-gradient(circle at 70% 20%, rgba(33,150,243,0.15), transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.who-img-icon {
  width: 120px;
  height: 120px;
  opacity: 0.15;
}

.who-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 32px var(--blue-glow);
  z-index: 3;
}

.who-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.who-badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.who-corner {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--blue-bright);
  border-left: 2px solid var(--blue-bright);
  z-index: 3;
}

.who-corner-br {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--blue-bright);
  border-right: 2px solid var(--blue-bright);
  z-index: 3;
}

.who-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.who-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-70);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--white-05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.stat-card:hover {
  background: rgba(21,101,192,0.1);
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 71, 135, 0.12);
}

.stat-icon {
  margin-bottom: 10px;
  color: var(--blue-bright);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
}
    /* ===== WHAT WE DO ===== */
    .services-section {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .services-section-premium .services-section-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .services-section-premium .services-section-bg::before {
      content: '';
      position: absolute;
      width: 520px; height: 520px;
      top: -180px; right: -120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(33,150,243,0.14) 0%, transparent 68%);
      animation: serviceFloat 12s ease-in-out infinite;
    }
    .services-section-premium .services-section-bg::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      bottom: -140px; left: -100px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(21,101,192,0.12) 0%, transparent 70%);
      animation: serviceFloat 14s ease-in-out infinite reverse;
    }
    .services-deco-globe {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: min(680px, 90vw);
      opacity: 0.07;
    }
    .services-section-premium .container { position: relative; z-index: 1; }
    .services-section-premium .service-card {
      backdrop-filter: blur(8px);
      background: rgba(255,255,255,0.04);
    }
    .services-section-premium .service-card .service-watermark {
      position: absolute;
      top: 16px; right: 16px;
      opacity: 0.12;
      color: var(--blue-bright);
      transition: var(--transition);
    }
    .services-section-premium .service-card:hover .service-watermark {
      opacity: 0.28;
      transform: scale(1.05);
    }
    @keyframes serviceFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(18px); }
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .service-card {
      background: var(--white-05);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 36px 28px;
      transition: var(--transition);
      position: relative; overflow: hidden;
      cursor: default;
    }
    .service-card::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--blue-bright));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(33,150,243,0.08), transparent 70%);
      opacity: 0; transition: opacity 0.4s ease;
    }
    .service-card:hover {
      border-color: var(--border-blue);
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(13, 71, 135, 0.14), 0 0 0 1px rgba(33,150,243,0.15);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover::after { opacity: 1; }
    .service-icon {
      width: 52px; height: 52px;
      background: rgba(21,101,192,0.15);
      border: 1px solid rgba(33,150,243,0.2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      color: var(--blue-bright);
      transition: var(--transition);
    }
    .service-card:hover .service-icon {
      background: rgba(21,101,192,0.25);
      box-shadow: 0 0 20px rgba(33,150,243,0.2);
    }
    .service-name {
      font-family: var(--font-serif);
      font-size: 1.1rem; font-weight: 600;
      color: var(--white);
      margin-bottom: 12px;
    }
    .service-desc {
      font-size: 0.85rem; font-weight: 300; line-height: 1.75;
      color: var(--white-50);
    }
    .service-link {
      margin-top: 18px;
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--blue-bright);
      transition: var(--transition);
    }
    .service-link:hover { color: var(--blue); gap: 12px; }
    .services-cta { margin-top: 48px; display: flex; justify-content: center; }

    /* ===== INDUSTRIES ===== */
    .industries-section { background: var(--navy-2); }
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 56px;
    }
    .industry-num {
      font-family: var(--font-display);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
    }
    .industry-name {
      font-size: 0.72rem;
      line-height: 1.35;
      hyphens: auto;
      word-break: break-word;
    }
    .industry-card {
      background: var(--white-05);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px 20px;
      text-align: center;
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
      display: block;
      color: inherit;
    }
    .industry-card:hover {
      background: rgba(21,101,192,0.12);
      border-color: var(--border-blue);
      transform: translateY(-5px);
      box-shadow: 0 14px 30px rgba(13, 71, 135, 0.13);
    }
    .industry-icon {
      width: 56px; height: 56px;
      background: rgba(21,101,192,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      color: var(--blue-bright);
      transition: var(--transition);
    }
    .industry-card:hover .industry-icon {
      background: rgba(21,101,192,0.3);
      box-shadow: 0 0 24px rgba(33,150,243,0.25);
    }
    .industry-name {
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--white-70);
    }
    .industries-cta { margin-top: 48px; display: flex; justify-content: center; }

    /* ===== WHY LAWSET ===== */
    .why-section { background: var(--navy); }
    .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .why-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .why-circle {
      width: 320px; height: 320px; border-radius: 50%;
      border: 1px solid rgba(33,150,243,0.2);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .why-circle::before {
      content: '';
      position: absolute; inset: 15px;
      border-radius: 50%;
      border: 1px solid rgba(33,150,243,0.15);
    }
    .why-circle-center {
      width: 140px; height: 140px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-bright));
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 4px;
      box-shadow: 0 0 60px var(--blue-glow);
    }
    .why-circle-center span:first-child {
      font-family: var(--font-display);
      font-size: 2rem; font-weight: 800;
      color: #fff;
    }
    .why-circle-center span:last-child {
      font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.8); text-align: center;
    }
    .why-orbit {
      position: absolute; inset: 0;
      animation: orbitSpin 20s linear infinite;
    }
    .why-orbit-dot {
      position: absolute; top: -6px; left: 50%;
      width: 12px; height: 12px; margin-left: -6px;
      background: var(--blue-bright);
      border-radius: 50%;
      box-shadow: 0 0 12px var(--blue-bright);
    }
    @keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .why-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px;
      background: var(--white-05);
      border: 1px solid var(--border);
      border-radius: 8px;
      transition: var(--transition);
    }
    .why-item:hover {
      background: rgba(21,101,192,0.1);
      border-color: var(--border-blue);
      transform: translateY(-3px);
    }
    .why-check {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(33,150,243,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--blue-bright);
    }
    .why-item-title {
      font-size: 0.85rem; font-weight: 600;
      color: var(--white); margin-bottom: 4px;
    }
    .why-item-desc {
      font-size: 0.78rem; font-weight: 300; line-height: 1.6;
      color: var(--white-50);
    }
    .why-cta { margin-top: 32px; }

    /* ===== Publications ===== */
    .blog-section { background: var(--navy-2); }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 56px;
    }
    .blog-card {
      background: var(--navy-3);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: var(--transition);
      cursor: pointer;
    }
    .blog-card:hover {
      border-color: var(--border-blue);
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(13, 71, 135, 0.14);
    }
    .blog-img {
      aspect-ratio: 16/9; overflow: hidden;
      position: relative;
    }
    .blog-img-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #ffffff, #d8ecff);
      display: flex; align-items: center; justify-content: center;
      color: rgba(33,150,243,0.3);
      transition: transform 0.5s ease;
    }
    .blog-card:hover .blog-img-placeholder { transform: scale(1.05); }
    .blog-body { padding: 24px; }
    .blog-tags { display: flex; gap: 8px; margin-bottom: 12px; }
    .blog-tag {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--blue-bright);
      padding: 4px 12px;
      background: rgba(33,150,243,0.1);
      border: 1px solid rgba(33,150,243,0.2);
      border-radius: 50px;
    }
    .blog-title {
      font-family: var(--font-serif);
      font-size: 1.05rem; font-weight: 600; line-height: 1.5;
      color: var(--white); margin-bottom: 10px;
    }
    .blog-excerpt {
      font-size: 0.83rem; font-weight: 300; line-height: 1.75;
      color: var(--white-50); margin-bottom: 16px;
    }
    .blog-meta {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.75rem; color: var(--white-50);
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .blog-read-more {
      color: var(--blue-bright); font-weight: 600;
      font-size: 0.78rem; letter-spacing: 0.05em;
      transition: var(--transition);
      display: flex; align-items: center; gap: 6px;
    }
    .blog-card:hover .blog-read-more { gap: 10px; }
    .blog-cta { margin-top: 48px; display: flex; justify-content: center; }

    /* ===== CTA SECTION ===== */
    .cta-section {
      position: relative; overflow: hidden;
      padding: 100px 40px;
      background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 50%, #d7ebff 100%);
    }
    .cta-section::before {
      content: '';
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 600px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    }
    .cta-section::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(21,101,192,0.12), transparent 70%);
      pointer-events: none;
    }
    .cta-inner {
      position: relative; z-index: 1;
      text-align: center;
      max-width: 700px; margin: 0 auto;
    }
    .cta-icon {
      width: 80px; height: 80px;
      background: rgba(21,101,192,0.15);
      border: 1px solid var(--border-blue);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 32px;
      color: var(--blue-bright);
    }
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; letter-spacing: 0.02em;
      color: var(--white); margin-bottom: 16px;
    }
    .cta-subtitle {
      font-size: 1rem; font-weight: 300; line-height: 1.8;
      color: var(--white-70); margin-bottom: 40px;
    }
    /* CTA decorative elements */
    .cta-deco-left, .cta-deco-right {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 120px; height: 120px;
      opacity: 0.08;
    }
    .cta-deco-left { left: 60px; }
    .cta-deco-right { right: 60px; }

    /* ===== FOOTER ===== */
    .footer { background: #ffffff; border-top: 1px solid var(--border); }
    .footer-main {
      padding: clamp(40px, 4.5vw, 52px) 40px clamp(24px, 3vw, 34px);
      display: grid;
      grid-template-columns: minmax(240px, 1.32fr) repeat(3, minmax(0, 1fr)) minmax(220px, 1.06fr);
      gap: clamp(20px, 3vw, 32px);
      align-items: start;
    }
    .footer-col--industries .footer-links-list--cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 14px;
      row-gap: 8px;
    }
    
    .footer-logo {
    width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
}
    .footer-logo-icon {
      width: 32px; height: 32px;
      background: linear-gradient(135deg, var(--blue), var(--blue-bright));
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 0.75rem; font-weight: 800;
      flex-shrink: 0;
    }
    .footer-about {
      font-size: 0.83rem; font-weight: 300; line-height: 1.6;
      color: rgba(16, 36, 63, 0.72); margin-bottom: 12px;
    }
    .footer-socials { display: flex; gap: 10px; }
    .social-link {
      width: 36px; height: 36px;
      background: var(--white-05);
      border: 1px solid var(--border);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      color: var(--white-50);
      transition: var(--transition);
    }
    .social-link:hover {
      background: rgba(21,101,192,0.2);
      border-color: var(--border-blue);
      color: var(--blue-bright);
      transform: translateY(-2px);
    }
    .footer-col-title {
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--white); margin-bottom: 11px;
      padding-bottom: 7px;
      border-bottom: 1px solid var(--border);
    }
    .footer-links-list { display: flex; flex-direction: column; gap: 9px; }
    .footer-link {
      font-size: 0.83rem; font-weight: 300;
      color: rgba(16, 36, 63, 0.72);
      transition: var(--transition);
      display: flex; align-items: center; gap: 6px;
    }
    .footer-link::before {
      content: '';
      width: 0; height: 1px;
      background: var(--blue-bright);
      transition: width 0.3s ease;
    }
    .footer-link:hover { color: var(--white); padding-left: 4px; }
    .footer-link:hover::before { width: 8px; }
    .footer-contact-list { display: flex; flex-direction: column; gap: 9px; }
    .footer-contact-item {
      display: flex; gap: 10px; align-items: flex-start;
    }
    .footer-contact-item svg { color: var(--blue-bright); flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item span {
      font-size: 0.83rem; font-weight: 300; line-height: 1.5;
      color: rgba(16, 36, 63, 0.72);
    }
    .footer-contact-office strong {
      color: rgba(13, 43, 78, 0.9);
    }
    .footer-contact-office + .footer-contact-office { margin-top: 2px; }
    .footer-bottom {
      padding: 16px 40px;
      border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-size: 0.78rem; color: rgba(16, 36, 63, 0.68);
    }
    .footer-legal {
      display: flex; gap: 24px;
    }
    .footer-legal a {
      font-size: 0.75rem; color: rgba(16, 36, 63, 0.64);
      transition: var(--transition);
    }
    .footer-legal a:hover { color: rgba(16, 36, 63, 0.88); }

    /* ===== BACK TO TOP ===== */
    .back-top {
      position: fixed; bottom: 32px; right: 32px;
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--blue), var(--blue-bright));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      opacity: 0; transform: translateY(20px);
      transition: var(--transition);
      z-index: 900;
      border: none;
      box-shadow: 0 4px 16px var(--blue-glow);
    }
    .back-top.visible { opacity: 1; transform: translateY(0); }
    .back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--blue-glow); }
    .back-top svg { color: #fff; }

    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 1200px) {
      .nav-inner { gap: 12px; }
      .nav-logo-icon { width: 34px; height: 34px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-main { grid-template-columns: repeat(3, 1fr); }
      .footer-brand { grid-column: 1 / -1; max-width: 400px; }
    }
    @media (max-width: 1240px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 1024px) {
      .who-inner { grid-template-columns: 1fr; gap: 48px; }
      .why-inner { grid-template-columns: 1fr; gap: 48px; }
      .why-visual { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .industries-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 900px) {
      .industries-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 768px) {
      .section { padding: 72px 24px; }
      .services-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
      .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
      .industry-card { padding: 22px 14px; }
      .stats-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; gap: 32px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; }
      .cta-section { padding: 72px 24px; }
      .cta-deco-left, .cta-deco-right { display: none; }
    }
    @media (max-width: 480px) {
      .industries-grid { gap: 10px; }
      .industry-card { padding: 18px 10px; }
      .industry-num { font-size: 1.45rem; }
      .industry-name { font-size: 0.72rem; letter-spacing: 0.04em; }
    }
    @media (max-width: 600px) {
      .hero-btns { flex-direction: column; align-items: center; }
      .hero-btns .btn { width: 200px; justify-content: center; }
      .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .why-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr; }
      .footer-legal { flex-direction: column; gap: 8px; text-align: center; }
    }
    /* Mobile footer accordion */
    .footer-accordion-title {
      display: none;
      cursor: pointer;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--white); padding: 14px 0;
      border-bottom: 1px solid var(--border);
      align-items: center; justify-content: space-between;
    }
    .footer-accordion-title svg { transition: transform 0.3s ease; }
    .footer-accordion-title.open svg { transform: rotate(180deg); }
    .footer-accordion-content { transition: max-height 0.4s ease, opacity 0.3s ease; overflow: hidden; }
    @media (max-width: 600px) {
      .footer-col-title { display: none; }
      .footer-accordion-title { display: flex; }
      .footer-accordion-content { max-height: 0; opacity: 0; }
      .footer-accordion-content.open { max-height: 400px; opacity: 1; padding-top: 12px; }
    }

    /* Cookie consent */
    .cookie-banner {
      position: fixed; left: 0; right: 0; bottom: 0;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border-blue);
      box-shadow: 0 -10px 28px rgba(13, 71, 135, 0.12);
      z-index: 1200;
      padding: 14px 20px;
      display: flex; align-items: center; justify-content: center; gap: 14px;
      flex-wrap: wrap;
      transform: translateY(120%);
      transition: transform 0.35s ease, opacity 0.35s ease;
      opacity: 0;
    }
    .cookie-banner.visible { transform: translateY(0); opacity: 1; }
    .cookie-banner p { color: var(--white-70); font-size: 0.83rem; margin: 0; }
    .cookie-banner a { color: var(--blue); text-decoration: underline; }
    .cookie-banner .btn { padding: 10px 16px; font-size: 0.75rem; }

    /* Disclaimer modal */
    .disclaimer-modal-overlay {
      position: fixed; inset: 0;
      background: rgba(7, 37, 76, 0.56);
      backdrop-filter: blur(8px);
      z-index: 1300;
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
      opacity: 0; visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .disclaimer-modal-overlay.visible { opacity: 1; visibility: visible; }
    .disclaimer-modal {
      width: min(560px, 100%);
      background: linear-gradient(145deg, #ffffff, #eef6ff);
      border: 1px solid var(--border-blue);
      border-radius: 12px;
      box-shadow: 0 30px 70px rgba(13, 71, 135, 0.25);
      padding: 32px 28px;
      text-align: center;
      transform: translateY(14px) scale(0.96);
      transition: transform 0.35s ease;
    }
    .disclaimer-modal-overlay.visible .disclaimer-modal { transform: translateY(0) scale(1); }
    .disclaimer-modal { text-align: left; padding: 40px 36px 32px; }
    .disclaimer-modal h2 {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2.4vw, 1.55rem);
      margin-bottom: 12px;
      color: #0d2b4e;
    }
    .disclaimer-modal-body p,
    .disclaimer-modal-body li {
      font-size: 0.9rem; line-height: 1.75;
      color: rgba(16, 36, 63, 0.78);
    }
    .disclaimer-modal-body ul { margin: 12px 0 16px; padding-left: 1.2rem; }
    .disclaimer-modal .btn { width: 100%; justify-content: center; margin-top: 8px; }
  