    :root {
      --navy: #0A1E4E;
      --blue: #1A73E8;
      --green: #3AB54A;
      --mint: #E8F5E9;
      --bg: #FFFFFF;
      --text: #0D1B2A;
      --muted: #5A6A7A;
      --soft: #F0F4FF;
      --teal: #00897B;
      --radius: 14px;
      --shadow: 0 4px 24px rgba(10, 30, 78, .10);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Sora', sans-serif
    }

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

    img {
      max-width: 100%
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px
    }

    .section-label {
      display: inline-block;
      background: var(--mint);
      color: var(--green);
      font-weight: 600;
      font-size: .8rem;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
      letter-spacing: .5px;
      text-transform: uppercase
    }

    .section-heading {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 10px
    }

    .section-subheading {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 900px;
      line-height: 1.7
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: #fff;
      padding: 13px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: .95rem;
      transition: all .3s;
      border: none;
      cursor: pointer
    }

    .btn-primary:hover {
      background: #2da03c;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(58, 181, 74, .3)
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
      padding: 11px 26px;
      border-radius: 50px;
      font-weight: 600;
      font-size: .95rem;
      transition: all .3s;
      cursor: pointer
    }

    .btn-outline:hover {
      background: var(--blue);
      color: #fff;
      transform: translateY(-2px)
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* ── TOP INFO BAR ── */
    .topbar {
      display: none;
      background: var(--navy);
      padding: 7px 0;
      font-size: .78rem;
      color: rgba(255, 255, 255, .8)
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      gap: 24px
    }

    .topbar a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, .8);
      transition: color .2s
    }

    .topbar a:hover {
      color: #fff
    }

    .topbar i {
      font-size: .75rem;
      color: var(--green)
    }

    /* ── NAVBAR ── */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #fff;
      border-bottom: 1px solid transparent;
      transition: all .3s;
      padding: 0
    }

    #navbar.scrolled {
      box-shadow: 0 2px 20px rgba(10, 30, 78, .10);
      border-bottom-color: #e8eaf0
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .nav-logo img {
      height: 52px;
      object-fit: contain;
      max-width: 240px;
      margin: 0
    }

    .logo-fallback {
      font-family: 'Sora', sans-serif;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--navy)
    }

    .logo-fallback span {
      color: var(--green)
    }

    .brand-text {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      color: var(--navy)
    }

    .brand-text span {
      color: var(--green)
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none
    }

    .nav-links > li > a {
      font-weight: 500;
      font-size: .95rem;
      color: var(--text);
      transition: color .2s;
      position: relative
    }

    .nav-links > li > a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--green);
      transition: width .3s
    }

    .nav-links > li > a:hover {
      color: var(--green)
    }

    .nav-links > li > a:hover::after {
      width: 100%
    }

    .nav-cta {
      background: var(--green);
      color: #fff;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 600;
      font-size: .9rem;
      transition: all .3s;
      white-space: nowrap
    }

    .nav-cta:hover {
      background: #2da03c;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(58, 181, 74, .3)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    .mobile-nav {
      display: none;
      background: #fff;
      padding: 0;
      border-top: 1px solid #e8eaf0;
      overflow: hidden;
      max-height: 0;
      transition: max-height .4s ease
    }

    .mobile-nav.open {
      max-height: calc(100vh - 75px);
      overflow-y: auto
    }

    .mobile-nav ul {
      list-style: none;
      padding: 16px 24px
    }

    .mobile-nav li {
      border-bottom: 1px solid #f0f2f5
    }

    .mobile-nav li:last-child {
      border-bottom: none
    }

    .mobile-nav a {
      display: block;
      padding: 13px 0;
      font-weight: 500;
      color: var(--text);
      transition: color .2s
    }

    .mobile-nav a:hover {
      color: var(--green)
    }

    .mobile-nav .nav-cta {
      display: inline-block;
      margin: 12px 0 4px;
      padding: 11px 22px
    }

    /* ── HERO ── */
    #home {
      padding: clamp(80px, 11vh, 130px) 0 clamp(60px, 8vh, 80px);
      background: linear-gradient(135deg, #F0F4FF 0%, #fff 60%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center
    }
    #home > .container {
      width: 100%
    }

    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(#e0e8ff 1px, transparent 1px), linear-gradient(90deg, #e0e8ff 1px, transparent 1px);
      background-size: 40px 40px;
      opacity: .35;
      pointer-events: none
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 60px);
      align-items: center
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1.5px solid #e0e8ff;
      border-radius: 50px;
      padding: 8px 18px;
      font-size: .82rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 22px;
      box-shadow: 0 2px 10px rgba(10, 30, 78, .06)
    }

    .hero-badge i {
      color: #f5a623;
      font-size: .85rem
    }

    .hero-h1 {
      font-size: clamp(2.6rem, 4.2vw + 0.5rem, 4.2rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.12;
      margin-bottom: clamp(14px, 2vh, 24px)
    }

    .hero-h1 em {
      font-style: normal;
      color: var(--green)
    }

    .hero-sub {
      font-size: clamp(1rem, 1.2vw + 0.2rem, 1.18rem);
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: clamp(20px, 2.5vh, 32px);
      max-width: 520px
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: clamp(20px, 3vh, 36px)
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #fff;
      border: 1px solid #e0e8ff;
      border-radius: 30px;
      padding: 8px 16px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--navy);
      box-shadow: 0 2px 8px rgba(10, 30, 78, .05)
    }

    .trust-badge i {
      color: var(--green);
      font-size: .85rem
    }

    /* Hero visual card */
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative
    }

    .filing-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(10, 30, 78, .15);
      padding: clamp(20px, 3vh, 36px) clamp(24px, 2.5vw, 40px);
      width: clamp(280px, 28vw, 340px);
      position: relative;
      z-index: 2;
      animation: floatCard 4s ease-in-out infinite
    }

    @keyframes floatCard {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-12px)
      }
    }

    .filing-card-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px
    }

    .filing-icon {
      width: 48px;
      height: 48px;
      background: var(--mint);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem
    }

    .filing-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy)
    }

    .filing-sub {
      font-size: .78rem;
      color: var(--muted)
    }

    .filing-status {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--mint);
      border-radius: 12px;
      padding: 14px 18px;
      margin-bottom: 18px
    }

    .check-circle {
      width: 36px;
      height: 36px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1rem;
      animation: popIn .5s ease
    }

    @keyframes popIn {
      0% {
        transform: scale(0)
      }

      80% {
        transform: scale(1.2)
      }

      100% {
        transform: scale(1)
      }
    }

    .status-text {
      font-weight: 700;
      color: var(--green);
      font-size: .95rem
    }

    .status-date {
      font-size: .75rem;
      color: var(--muted);
      margin-top: 2px
    }

    .filing-items {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .filing-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: #F7F9FC;
      border-radius: 10px
    }

    .filing-item-label {
      font-size: .82rem;
      color: var(--muted)
    }

    .filing-item-val {
      font-size: .82rem;
      font-weight: 600;
      color: var(--navy)
    }

    .ack-badge {
      display: inline-block;
      background: var(--mint);
      color: var(--green);
      font-size: .72rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px
    }

    .hero-blob {
      position: absolute;
      width: 340px;
      height: 340px;
      background: radial-gradient(circle, rgba(58, 181, 74, .12), transparent 70%);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1
    }

    /* ── SUBPAGE HERO ── */
    .subpage-hero {
      background: linear-gradient(135deg, #0A1E4E 0%, #1A3A6A 100%);
      padding: 80px 0 22px;
      text-align: center;
    }

    .subpage-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.5rem, 2.5vw, 1.9rem);
      font-weight: 800;
      color: #fff;
      margin: 0 0 8px;
      line-height: 1.2;
    }

    .subpage-sub {
      font-size: .93rem;
      color: rgba(255, 255, 255, .72);
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: .78rem;
      font-weight: 600;
      color: #fff;
    }

    /* ── SERVICES ── */
    #services {
      padding: 80px 0;
      background: #fff
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px
    }

    .section-header .section-subheading {
      margin: 0 auto
    }

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

    .service-card {
      border-radius: var(--radius);
      border: 1.5px solid #e8eaf6;
      background: #fff;
      overflow: hidden;
      transition: all .35s;
      cursor: default
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(10, 30, 78, .12);
      border-color: transparent
    }

    .service-card:hover .card-top-bar {
      height: 6px
    }

    .card-top-bar {
      height: 4px;
      transition: height .3s
    }

    .card-body {
      padding: 30px 28px
    }

    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 18px
    }

    .card-title {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px
    }

    .card-desc {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 18px
    }

    hr.card-divider {
      border: none;
      border-top: 1px solid #eef0f6;
      margin-bottom: 18px
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 22px
    }

    .tag {
      background: #F0F4FF;
      color: var(--navy);
      padding: 6px 14px;
      border-radius: 30px;
      font-size: .77rem;
      font-weight: 600;
      transition: all .2s;
      cursor: pointer
    }

    .tag:hover {
      background: var(--green);
      color: #fff
    }

    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--blue);
      font-weight: 700;
      font-size: .9rem;
      transition: gap .2s
    }

    .card-cta:hover {
      gap: 12px
    }

    /* ── WHY US ── */
    #why-us {
      padding: 80px 0;
      background: var(--soft)
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 52px
    }

    .why-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 32px 26px;
      box-shadow: var(--shadow);
      transition: all .35s;
      border: 1.5px solid transparent
    }

    .why-card:hover {
      transform: translateY(-5px);
      border-color: var(--green);
      box-shadow: 0 12px 32px rgba(58, 181, 74, .12)
    }

    .why-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: var(--mint);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 18px
    }

    .why-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px
    }

    .why-body {
      font-size: .87rem;
      color: var(--muted);
      line-height: 1.75
    }

    /* ── HOW IT WORKS ── */
    #how {
      padding: 80px 0;
      background: linear-gradient(180deg, #fff 0%, var(--soft) 100%)
    }

    .steps-wrapper {
      display: flex;
      align-items: flex-start;
      gap: 0;
      margin-top: 56px;
      position: relative
    }

    .steps-wrapper::before {
      content: '';
      position: absolute;
      top: 40px;
      left: calc(16.66% - 0px);
      right: calc(16.66%);
      height: 2px;
      border-top: 2px dashed #c5d2e8;
      z-index: 0
    }

    .step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1
    }

    .step-num {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      box-shadow: 0 8px 24px rgba(58, 181, 74, .3)
    }

    .step-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px
    }

    .step-body {
      font-size: .87rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 220px
    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      padding: 80px 0;
      background: linear-gradient(180deg, var(--soft) 0%, #fff 100%)
    }

    .testi-track-wrap {
      overflow: hidden;
      position: relative;
      margin-top: 52px
    }

    .testi-track-wrap::before,
    .testi-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none
    }

    .testi-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--soft), transparent)
    }

    .testi-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--soft), transparent)
    }

    .testi-track {
      display: flex;
      gap: 24px;
      animation: scrollTestis 30s linear infinite;
      width: max-content
    }

    .testi-track:hover {
      animation-play-state: paused
    }

    @keyframes scrollTestis {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .testi-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px;
      width: 300px;
      flex-shrink: 0;
      box-shadow: var(--shadow);
      border: 1.5px solid #e8eaf6
    }

    .stars {
      color: #f5a623;
      font-size: .9rem;
      margin-bottom: 14px
    }

    .testi-text {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 18px;
      font-style: italic
    }

    .testi-author {
      font-weight: 700;
      color: var(--navy);
      font-size: .9rem
    }

    .testi-loc {
      font-size: .78rem;
      color: var(--muted);
      margin-top: 2px
    }

    /* ── ABOUT ── */
    #about {
      padding: 80px 0;
      background: #fff
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center
    }

    .about-content p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 18px
    }

    .about-content p strong {
      color: var(--navy)
    }

    .about-btn {
      margin-top: 8px
    }

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

    .stat-card {
      background: var(--soft);
      border-radius: var(--radius);
      padding: 28px 22px;
      text-align: center;
      border: 1.5px solid #dde5f8;
      transition: all .3s
    }

    .stat-card:hover {
      background: var(--navy);
      border-color: var(--navy)
    }

    .stat-card:hover .stat-num,
    .stat-card:hover .stat-label {
      color: #fff
    }

    .stat-num {
      font-family: 'Sora', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1
    }

    .stat-suffix {
      font-size: 1.4rem;
      color: var(--green)
    }

    .stat-label {
      font-size: .85rem;
      color: var(--muted);
      margin-top: 6px;
      font-weight: 500
    }

    /* ── CONTACT ── */
    #contact {
      padding: 80px 0;
      background: linear-gradient(180deg, #fff 0%, var(--mint) 100%)
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 56px;
      align-items: start
    }

    .contact-info-title {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 28px
    }

    /* Info cards used in service subpages */
    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: #fff;
      border-radius: 14px;
      padding: 18px 20px;
      margin-bottom: 14px;
      box-shadow: 0 2px 12px rgba(10,30,78,.07)
    }

    .info-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--mint);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--green);
      flex-shrink: 0
    }

    .info-label {
      font-size: .78rem;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 3px
    }

    .info-val {
      font-size: .95rem;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none
    }

    .info-val:hover {
      color: var(--green)
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--navy);
      box-shadow: 0 2px 10px rgba(10, 30, 78, .08);
      flex-shrink: 0;
      transition: transform .2s, color .2s;
      text-decoration: none
    }

    .contact-icon:hover {
      transform: translateY(-2px);
      color: var(--green)
    }

    .contact-text {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.6
    }

    .contact-text a {
      color: var(--navy);
      font-weight: 600;
      transition: color .2s
    }

    .contact-text a:hover {
      color: var(--green)
    }

    .social-row {
      display: flex;
      gap: 12px;
      margin-top: 28px
    }

    .social-btn {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #fff;
      transition: all .3s
    }

    .social-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, .2)
    }

    .social-btn.linkedin {
      background: var(--navy)
    }

    .social-btn.instagram {
      background: linear-gradient(135deg, #e1306c, #f77737)
    }

    .social-btn.whatsapp {
      background: #25D366
    }

    /* Form */
    .contact-form {
      background: #fff;
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 8px 32px rgba(10, 30, 78, .08)
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .form-group {
      margin-bottom: 18px
    }

    .form-group label {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 7px
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid #dde5f8;
      border-radius: 10px;
      font-size: .9rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      outline: none;
      background: #fff;
      transition: border-color .2s
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue)
    }

    .form-group textarea {
      resize: vertical;
      min-height: 90px
    }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--navy);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: all .3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px
    }

    .form-submit:hover {
      background: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(26, 115, 232, .3)
    }

    /* Success banner */
    .form-success {
      display: none;
      background: var(--mint);
      border: 1.5px solid var(--green);
      border-radius: 12px;
      padding: 18px 22px;
      margin-top: 16px;
      text-align: center
    }

    .form-success i {
      color: var(--green);
      font-size: 1.5rem;
      margin-bottom: 8px;
      display: block
    }

    .form-success p {
      color: var(--navy);
      font-weight: 600;
      font-size: .95rem;
      line-height: 1.5
    }

    .form-success.show {
      display: block
    }

    footer {
      background: var(--navy);
      color: #fff;
      padding: 64px 0 0
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px
    }

    .footer-logo-text {
      font-family: 'Sora', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 12px
    }

    .footer-logo-text span {
      color: var(--green)
    }

    .footer-tag {
      font-size: .88rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.7;
      margin-bottom: 6px
    }

    .footer-managed {
      font-size: .8rem;
      color: rgba(255, 255, 255, .4);
      margin-top: 6px
    }

    .footer-col-title {
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
      position: relative;
      padding-bottom: 10px
    }

    .footer-col-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28px;
      height: 2px;
      background: var(--green)
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer-links a {
      font-size: .88rem;
      color: rgba(255, 255, 255, .6);
      transition: color .2s
    }

    .footer-links a:hover {
      color: var(--green)
    }

    .footer-contact-item {
      font-size: .87rem;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5
    }

    .footer-contact-item a {
      color: rgba(255,255,255,.7);
      text-decoration: none;
      transition: color .2s
    }

    .footer-contact-item a:hover { color: var(--green) }

    .footer-logo-img img {
      border-radius: 10px;
      -webkit-mask-image: radial-gradient(ellipse 82% 82% at 50% 50%, black 50%, transparent 100%);
      mask-image: radial-gradient(ellipse 82% 82% at 50% 50%, black 50%, transparent 100%)
    }

    .footer-social-row {
      display: flex;
      gap: 10px;
      margin-top: 16px
    }

    .footer-soc-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.75);
      font-size: .85rem;
      text-decoration: none;
      transition: background .2s, color .2s
    }

    .footer-soc-btn:hover {
      background: var(--green);
      color: #fff
    }

    .footer-contact-item i {
      color: var(--green);
      margin-top: 2px;
      flex-shrink: 0
    }

    .footer-bar {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 20px 0;
      text-align: center;
      font-size: .82rem;
      color: rgba(255, 255, 255, .4)
    }

    .footer-bar span {
      color: rgba(255, 255, 255, .6)
    }

    /* ── FLOATING BUTTONS ── */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
      transition: transform .3s
    }

    .whatsapp-float:hover {
      transform: scale(1.12)
    }

    .whatsapp-float::before {
      content: '';
      position: absolute;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      animation: pulse 2s ease-out infinite;
      z-index: -1
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: .7
      }

      100% {
        transform: scale(2);
        opacity: 0
      }
    }

    .whatsapp-tooltip {
      position: absolute;
      right: 68px;
      background: var(--navy);
      color: #fff;
      padding: 7px 14px;
      border-radius: 8px;
      font-size: .78rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s
    }

    .whatsapp-tooltip::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-right: none;
      border-left-color: var(--navy)
    }

    .whatsapp-float:hover .whatsapp-tooltip {
      opacity: 1
    }

    .scroll-top {
      position: fixed;
      bottom: 90px;
      right: 24px;
      z-index: 999;
      width: 44px;
      height: 44px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: all .3s;
      box-shadow: 0 4px 14px rgba(10, 30, 78, .3);
      border: none
    }

    .scroll-top.visible {
      opacity: 1;
      pointer-events: all
    }

    .scroll-top:hover {
      background: var(--blue);
      transform: translateY(-3px)
    }

    /* ── RESPONSIVE ── */

    /* Large Desktop: > 1280px */
    @media(min-width:1280px) {
      .container {
        max-width: 1260px
      }
    }

    /* ── Tablet landscape / small desktop: 1025px – 1279px ── */
    @media(max-width:1280px) and (min-width:1025px) {
      .hero-h1 {
        font-size: 3.4rem
      }

      .why-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    /* ── Tablet: 768px – 1024px ── */
    @media(max-width:1024px) {
      .hero-h1 {
        font-size: 2.8rem
      }

      .hero-grid {
        gap: 40px
      }

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

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

      .about-grid {
        gap: 40px
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }

      .footer-grid>:first-child {
        grid-column: 1/-1
      }

      .section-heading {
        font-size: 2rem
      }

      #home {
        padding: 100px 0 70px
      }
    }

    /* ── Mobile: < 768px ── */
    @media(max-width:767px) {

      /* Subpage Hero */
      .subpage-hero { padding: 82px 0 14px }
      .subpage-title { font-size: 1.4rem }
      .subpage-sub { font-size: .85rem; max-width: 92vw }

      /* Nav */
      .nav-inner {
        height: 75px
      }

      .nav-logo img {
        height: 55px;
        margin: -5px 0
      }

      .nav-links,
      .nav-cta {
        display: none
      }

      .hamburger {
        display: flex
      }

      .mobile-nav {
        display: block
      }

      /* Sections — reduce vertical padding */
      #home {
        padding: 95px 0 56px
      }

      #services,
      #why-us,
      #how,
      #testimonials,
      #about,
      #contact {
        padding: 64px 0
      }

      footer {
        padding: 48px 0 0
      }

      /* Typography */
      .section-heading {
        font-size: 1.65rem
      }

      .section-subheading {
        font-size: .95rem
      }

      /* Hero */
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center
      }

      .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center
      }

      .hero-h1 {
        font-size: 2.4rem;
        margin-bottom: 16px
      }

      .hero-sub {
        font-size: 1rem;
        margin-bottom: 24px;
        max-width: 100%
      }

      .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin-bottom: 28px
      }

      .hero-btns .btn-primary,
      .hero-btns .btn-outline {
        justify-content: center;
        width: 100%
      }

      .trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 1fr;
        gap: 8px;
        width: 100%;
        max-width: 340px;
        align-items: stretch
      }

      .trust-badge {
        font-size: .68rem;
        padding: 5px 8px;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        line-height: 1.3
      }

      .hero-visual {
        display: none
      }

      .hero-badge {
        font-size: .78rem;
        padding: 7px 14px
      }

      /* Services */
      .services-grid {
        grid-template-columns: 1fr
      }

      .card-illustration {
        height: 90px
      }

      .card-illustration svg {
        width: 78px;
        height: 78px
      }

      .svc-card {
        padding: 28px 22px
      }

      .card-body {
        padding: 24px 20px
      }

      .tag {
        font-size: .73rem;
        padding: 5px 11px
      }

      /* Why Us */
      .why-grid {
        grid-template-columns: 1fr
      }

      .why-card {
        padding: 24px 20px
      }

      .section-header {
        margin-bottom: 40px
      }

      /* How it works */
      .steps-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 8px
      }

      .steps-wrapper::before {
        display: none
      }

      .step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 32px 0;
        gap: 20px;
        width: 100%
      }

      .step:last-child {
        padding-bottom: 0
      }

      .step-num {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        flex-shrink: 0;
        margin-bottom: 0
      }

      .step-title {
        font-size: .95rem;
        margin-bottom: 6px
      }

      .step-body {
        font-size: .85rem;
        max-width: 100%
      }

      .step>div:last-child {
        display: flex;
        flex-direction: column
      }

      /* Testimonials */
      .testi-card {
        width: 270px;
        padding: 22px 18px
      }

      .testi-track-wrap::before,
      .testi-track-wrap::after {
        width: 20px
      }

      /* Keep testimonials scrolling on mobile — never pause on touch */
      .testi-track:hover {
        animation-play-state: running
      }

      /* Active tap color for mobile nav links */
      .mobile-nav a:active {
        color: var(--green)
      }

      /* About */
      .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center
      }

      .about-content {
        display: flex;
        flex-direction: column;
        align-items: center
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
      }

      .stat-card {
        padding: 22px 14px
      }

      .stat-num {
        font-size: 2rem
      }

      /* Contact */
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .contact-form {
        padding: 24px 18px
      }

      .contact-info-title {
        font-size: 1.3rem
      }

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center
      }

      .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%)
      }

      .footer-links {
        align-items: center
      }

      .footer-contact-item {
        justify-content: center
      }

      .footer-bar {
        font-size: .76rem;
        padding: 16px 0
      }

      /* Floating buttons */
      .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
        bottom: 20px;
        right: 16px
      }

      .whatsapp-float::before {
        width: 50px;
        height: 50px
      }

      .whatsapp-tooltip {
        display: none
      }

      .scroll-top {
        bottom: 82px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: .9rem
      }
    }

    /* ── Very small phones: < 380px ── */
    @media(max-width:380px) {
      .container {
        padding: 0 16px
      }

      .hero-h1 {
        font-size: 2rem
      }

      .hero-btns {
        max-width: 100%
      }

      .trust-badges {
        grid-template-columns: 1fr;
        max-width: 100%
      }

      .trust-badge {
        font-size: .7rem;
        padding: 5px 10px
      }

      .section-heading {
        font-size: 1.45rem
      }

      .filing-card {
        width: 100%;
        padding: 24px 18px
      }

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

      .contact-form {
        padding: 18px 14px
      }
    }

    /* ── V2 GLOBAL POLISH ── */
    ::-webkit-scrollbar {
      width: 6px
    }

    ::-webkit-scrollbar-track {
      background: #f0f4ff
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #1A73E8, #3AB54A);
      border-radius: 10px
    }

    ::selection {
      background: #3AB54A;
      color: #fff
    }

    section {
      scroll-margin-top: 90px
    }

    /* ── PAGE LOADER ── */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #0A1E4E;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.4s ease
    }

    #loader.loader--hidden {
      opacity: 0;
      pointer-events: none
    }
    #loader.loader--fast .loader-progress-bar { animation-duration: 0.5s !important }
    #loader.loader--fast .loader-tagline { animation-delay: 0.2s !important; animation-duration: 0.3s !important }
    #loader.loader--fast .loader-logo { animation-duration: 0.3s !important }

    .loader-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 40px 40px
    }

    .loader-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding-bottom: 36px
    }

    .loader-logo {
      width: 220px;
      height: auto;
      border-radius: 18px;
      -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, black 52%, transparent 100%);
      mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, black 52%, transparent 100%);
      animation: loaderLogoIn 0.7s cubic-bezier(.22,1,.36,1) 0.2s both
    }

    @keyframes loaderLogoIn {
      from { opacity: 0; transform: scale(0.82) }
      to   { opacity: 1; transform: scale(1) }
    }

    .loader-tagline {
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem;
      font-weight: 500;
      color: rgba(255,255,255,.55);
      letter-spacing: .18em;
      text-transform: uppercase;
      animation: loaderFadeIn 0.5s ease 1.55s both
    }

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

    @keyframes loaderFadeIn {
      from { opacity: 0 }
      to   { opacity: 1 }
    }

    .loader-progress-wrap {
      width: 220px;
      height: 3px;
      background: rgba(255,255,255,.15);
      border-radius: 4px;
      overflow: hidden
    }

    .loader-progress-bar {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, #3AB54A, #1a5276);
      border-radius: 0 2px 2px 0;
      animation: loaderProgress 2.4s cubic-bezier(.4,0,.2,1) 0.3s forwards
    }

    @keyframes loaderProgress {
      0%   { width: 0 }
      60%  { width: 72% }
      100% { width: 100% }
    }

    /* ── HERO MESH + CANVAS ── */
    #home {
      position: relative;
      overflow: hidden
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(26, 115, 232, .12) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(58, 181, 74, .10) 0%, transparent 50%), radial-gradient(ellipse at 60% 80%, rgba(10, 30, 78, .08) 0%, transparent 55%), linear-gradient(135deg, #F0F4FF 0%, #ffffff 50%, #E8F5E9 100%);
      animation: meshShift 8s ease-in-out infinite alternate
    }

    @keyframes meshShift {
      0% {
        filter: hue-rotate(0deg) brightness(1)
      }

      100% {
        filter: hue-rotate(8deg) brightness(1.03)
      }
    }

    #heroCanvas {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none
    }

    .hero-grid,
    .hero-badge,
    .hero-h1,
    .hero-sub,
    .hero-btns,
    .trust-badges,
    .hero-visual {
      position: relative;
      z-index: 2
    }

    /* ── SERVICES SECTION ── */
    #services {
      background: linear-gradient(135deg, #eef2ff 0%, #f0fdf4 50%, #e8f4ff 100%);
      padding: 100px 0
    }

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

    .services-hint {
      text-align: center;
      font-size: .8rem;
      color: var(--muted);
      margin-top: 18px
    }

    /* ── FLIP CARDS ── */
    .svc-card {
      background: rgba(255, 255, 255, .65);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1.5px solid rgba(255, 255, 255, .75);
      box-shadow: 0 8px 32px rgba(10, 30, 78, .10), inset 0 1px 0 rgba(255, 255, 255, .8);
      border-radius: 24px;
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: transform .25s, box-shadow .25s
    }

    .svc-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(10, 30, 78, .16)
    }

    .card-illustration {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 16px;
      position: relative;
      height: 110px
    }

    .card-illustration::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(10,30,78,.07) 1.2px, transparent 1.2px);
      background-size: 11px 11px;
      border-radius: 10px;
      z-index: 0
    }

    .card-illustration svg {
      width: 96px;
      height: 96px;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 4px 14px rgba(10,30,78,.12))
    }

    .card-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
      flex: 1
    }

    .card-bullets li {
      font-size: .83rem;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.5
    }

    .card-bullets li i {
      color: #3AB54A;
      font-size: .7rem;
      margin-top: 3px;
      flex-shrink: 0
    }

    .card-explore {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--blue);
      font-size: .85rem;
      font-weight: 700;
      text-decoration: none;
      margin-top: auto;
      transition: gap .2s, color .2s
    }

    .card-explore:hover {
      gap: 11px;
      color: var(--navy)
    }

    .card-6:hover {
      border-color: #dc2626 !important;
      box-shadow: 0 16px 48px rgba(220,38,38,.14) !important
    }

    .card-6 .card-explore {
      color: #dc2626
    }

    .card-6 .card-bullets li i {
      color: #dc2626
    }

    .nav-link-svc {
      font-size: .88rem;
      font-weight: 500;
      color: var(--navy);
      text-decoration: none;
      padding: 6px 0;
      cursor: pointer
    }

    /* ── NAV DROPDOWN ── */
    .nav-item-drop {
      position: relative
    }

    .nav-drop-arrow {
      font-size: .6rem;
      margin-left: 3px;
      transition: transform .2s;
      vertical-align: middle
    }

    .nav-item-drop:hover .nav-drop-arrow {
      transform: rotate(180deg)
    }

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

    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      border-radius: 12px;
      min-width: 260px;
      box-shadow: 0 12px 40px rgba(10, 30, 78, .18);
      border: 1px solid rgba(10, 30, 78, .08);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity .2s, transform .2s;
      z-index: 999;
      padding: 18px 0 8px
    }

    .nav-item-drop:hover .nav-dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0)
    }

    .nav-drop-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 20px;
      font-size: .84rem;
      font-weight: 600;
      color: #0A1E4E;
      text-decoration: none;
      white-space: nowrap;
      transition: background .15s, color .15s
    }

    .nav-drop-link i {
      color: #0A1E4E;
      width: 16px;
      text-align: center;
      flex-shrink: 0;
      transition: color .15s
    }

    .nav-drop-link:hover {
      background: #f0fdf4;
      color: #3AB54A
    }

    .nav-drop-link:hover i {
      color: #3AB54A
    }


    .mob-sub {
      padding-left: 28px !important;
      font-size: .82rem !important;
      color: var(--text) !important;
      display: none !important
    }

    .mob-sub.open {
      display: block !important
    }

    .mob-sub:active {
      color: var(--green) !important
    }

    .mob-services-toggle {
      cursor: pointer
    }

    /* ── TOOLS SECTION ── */
    #tools {
      padding: 100px 0;
      background: #fff
    }

    .tools-wrapper {
      max-width: 800px;
      margin: 0 auto;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 40px rgba(10, 30, 78, .10);
      overflow: hidden
    }

    .tool-tabs {
      display: flex;
      border-bottom: 2px solid #eef0f6;
      background: #fafbff
    }

    .tool-tab {
      flex: 1;
      padding: 16px 8px;
      text-align: center;
      font-size: .82rem;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: all .2s;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap
    }

    .tool-tab.active {
      color: #3AB54A;
      border-bottom-color: #3AB54A;
      font-weight: 700
    }

    .tool-tab:hover:not(.active) {
      color: var(--navy)
    }

    .tool-pane {
      display: none;
      padding: 32px
    }

    .tool-pane.active {
      display: block
    }

    .tool-title {
      font-family: 'Sora', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 24px
    }

    .regime-toggle {
      display: flex;
      gap: 0;
      border: 1.5px solid #dde5f8;
      border-radius: 50px;
      overflow: hidden;
      margin-bottom: 18px;
      width: fit-content
    }

    .regime-btn {
      padding: 9px 22px;
      font-size: .85rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      background: #fff;
      color: var(--muted);
      font-family: 'DM Sans', sans-serif;
      transition: all .2s
    }

    .regime-btn.active {
      background: var(--green);
      color: #fff
    }

    .tool-field {
      margin-bottom: 16px
    }

    .tool-field label {
      display: block;
      font-size: .8rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px
    }

    .tool-field input,
    .tool-field select {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid #dde5f8;
      border-radius: 10px;
      font-size: .9rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      outline: none;
      background: #fff;
      transition: border-color .2s, box-shadow .2s
    }

    .tool-field input:focus,
    .tool-field select:focus {
      border-color: #3AB54A;
      box-shadow: 0 0 0 3px rgba(58, 181, 74, .15)
    }

    .tool-btn {
      background: var(--green);
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: .9rem;
      border: none;
      cursor: pointer;
      transition: all .3s;
      font-family: 'DM Sans', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .tool-btn:hover {
      background: #2da03c;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(58, 181, 74, .3)
    }

    .tool-result {
      background: var(--soft);
      border-radius: 14px;
      padding: 22px 24px;
      margin-top: 22px;
      display: none;
      animation: slideUp .35s ease
    }

    .tool-result.show {
      display: block
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

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

    .result-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid #e8eaf0;
      font-size: .88rem
    }

    .result-row:last-of-type {
      border-bottom: none
    }

    .result-row.total {
      font-weight: 800;
      color: var(--navy);
      font-size: 1rem;
      background: var(--mint);
      margin: 8px -4px -4px;
      padding: 12px 10px;
      border-radius: 0 0 10px 10px
    }

    .result-label {
      color: var(--muted)
    }

    .result-val {
      font-weight: 600;
      color: var(--navy)
    }

    .result-wa-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: #fff;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 700;
      text-decoration: none;
      margin-top: 14px;
      width: 100%;
      justify-content: center;
      transition: background .2s
    }

    .result-wa-btn:hover {
      background: #1da851
    }

    .tool-disclaimer {
      font-size: .72rem;
      color: var(--muted);
      margin-top: 12px;
      line-height: 1.5;
      font-style: italic
    }

    .itr-radio-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 18px
    }

    .itr-radio-label {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border: 1.5px solid #dde5f8;
      border-radius: 12px;
      cursor: pointer;
      font-size: .85rem;
      font-weight: 600;
      color: var(--navy);
      transition: all .2s
    }

    .itr-radio-label:has(input:checked) {
      border-color: var(--green);
      background: var(--mint)
    }

    .itr-radio-label input {
      accent-color: var(--green)
    }

    .addon-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px
    }

    .addon-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .85rem;
      color: var(--navy);
      cursor: pointer
    }

    .addon-label input {
      accent-color: var(--green);
      width: 16px;
      height: 16px
    }

    .hsn-search-wrap {
      display: flex;
      gap: 10px;
      margin-bottom: 16px
    }

    .hsn-search-wrap input {
      flex: 1
    }

    .hsn-results {
      max-height: 320px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .hsn-card {
      background: #fff;
      border: 1.5px solid #e8eaf0;
      border-radius: 12px;
      padding: 14px 16px
    }

    .hsn-card-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px
    }

    .hsn-code {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      color: var(--navy);
      font-size: .9rem
    }

    .hsn-gst {
      background: var(--mint);
      color: var(--green);
      padding: 3px 10px;
      border-radius: 20px;
      font-size: .75rem;
      font-weight: 700
    }

    .hsn-desc {
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.5
    }

    .hsn-cat {
      font-size: .72rem;
      color: var(--blue);
      font-weight: 600;
      margin-top: 4px
    }

    /* ── FAQ SECTION ── */
    #faq {
      padding: 100px 0;
      background: var(--soft)
    }

    .faq-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 36px
    }

    .faq-filter-btn {
      padding: 7px 18px;
      border-radius: 50px;
      border: 1.5px solid #dde5f8;
      background: #fff;
      color: var(--muted);
      font-size: .82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      font-family: 'DM Sans', sans-serif
    }

    .faq-filter-btn.active {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy)
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto
    }

    .faq-item {
      border: 1px solid #e8eaf0;
      border-radius: 12px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: box-shadow .2s
    }

    .faq-item.open {
      box-shadow: 0 4px 20px rgba(10, 30, 78, .10);
      border-color: #1A73E8
    }

    .faq-question {
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: .92rem;
      background: #fff;
      transition: background .2s;
      color: var(--navy)
    }

    .faq-question:hover {
      background: #F0F4FF
    }

    .faq-arrow {
      transition: transform .3s;
      color: var(--blue);
      flex-shrink: 0
    }

    .faq-item.open .faq-arrow {
      transform: rotate(180deg)
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s ease;
      padding: 0 24px;
      color: var(--muted);
      line-height: 1.75;
      font-size: .9rem
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 24px 20px
    }

    /* ── COMPLIANCE CALENDAR ── */
    #calendar {
      padding: 100px 0;
      background: #F8FAFF
    }

    .cal-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 36px
    }

    .cal-filter-btn {
      padding: 7px 18px;
      border-radius: 50px;
      border: 1.5px solid #dde5f8;
      background: #fff;
      color: var(--muted);
      font-size: .82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      font-family: 'DM Sans', sans-serif
    }

    .cal-filter-btn.active {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy)
    }

    .cal-month-block {
      border: 1px solid #e8eaf0;
      border-radius: 16px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow .2s
    }

    .cal-month-block.current-month {
      border-color: #3AB54A;
      box-shadow: 0 4px 20px rgba(58, 181, 74, .12)
    }

    .cal-month-header {
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      background: #fff;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      user-select: none
    }

    .cal-month-block.current-month .cal-month-header {
      background: linear-gradient(90deg, #f0fdf4, #fff);
      color: #1a7a32
    }

    .month-arrow {
      transition: transform .3s;
      color: var(--muted)
    }

    .cal-month-block.open .month-arrow {
      transform: rotate(180deg)
    }

    .cal-month-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s ease
    }

    .cal-month-block.open .cal-month-body {
      max-height: 2000px
    }

    .cal-table {
      width: 100%;
      border-collapse: collapse
    }

    .cal-table th {
      padding: 10px 16px;
      text-align: left;
      font-size: .75rem;
      font-weight: 600;
      color: var(--muted);
      background: #F0F4FF;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .cal-table td {
      padding: 12px 16px;
      border-top: 1px solid #f0f0f0;
      font-size: .85rem;
      vertical-align: middle
    }

    .cal-table tr:hover td {
      background: #F8FAFF
    }

    .cal-date {
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap
    }

    .cal-form {
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: .83rem;
      color: var(--navy)
    }

    .cal-desc {
      color: var(--muted);
      font-size: .8rem
    }

    .cal-badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 50px;
      font-size: .7rem;
      font-weight: 600;
      white-space: nowrap
    }

    .due-soon-badge {
      display: inline-block;
      padding: 2px 8px;
      background: #FFF3CD;
      color: #856404;
      border-radius: 50px;
      font-size: .68rem;
      font-weight: 600;
      margin-left: 6px
    }

    .done-badge {
      display: inline-block;
      padding: 2px 8px;
      background: #f0f0f0;
      color: #999;
      border-radius: 50px;
      font-size: .68rem;
      font-weight: 500;
      margin-left: 6px
    }

    .cal-note {
      text-align: center;
      font-size: .82rem;
      color: var(--muted);
      margin-top: 28px;
      line-height: 1.6
    }

    /* ── MOBILE BOTTOM BAR ── */
    .mobile-bottom-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 998;
      background: #fff;
      border-top: 1px solid #e8eaf0;
      box-shadow: 0 -4px 20px rgba(10, 30, 78, .12);
      height: 64px;
      align-items: stretch
    }

    .mbb-btn {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      font-size: .68rem;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s
    }

    .mbb-btn i {
      font-size: 1.15rem
    }

    .mbb-btn span {
      font-family: 'DM Sans', sans-serif;
      font-size: .63rem;
      font-weight: 600
    }

    .mbb-call {
      color: #0A1E4E;
      border-right: 1px solid #e8eaf0
    }

    .mbb-call:active {
      background: #f0f4ff
    }

    .mbb-whatsapp {
      color: #fff;
      background: #3AB54A;
      font-weight: 700;
      border-right: 1px solid rgba(255, 255, 255, .2)
    }

    .mbb-whatsapp i {
      font-size: 1.35rem
    }

    .mbb-services {
      color: #1A73E8
    }

    .mbb-services:active {
      background: #E3F0FF
    }

    /* ── RESPONSIVE V2 ── */
    @media(max-width:768px) {
      .topbar {
        display: none
      }

      .mobile-bottom-bar {
        display: flex
      }

      body { padding-bottom: 90px }

      .whatsapp-float {
        bottom: 105px !important
      }

      .scroll-top {
        bottom: 170px !important
      }

      .svc-card {
        padding: 24px 20px
      }

      .tool-tabs {
        overflow-x: auto
      }

      .tool-tab {
        font-size: .73rem;
        padding: 12px 6px
      }

      .tool-pane {
        padding: 20px 16px
      }

      .itr-radio-grid {
        grid-template-columns: 1fr
      }

      .cal-table th:nth-child(3),
      .cal-table td:nth-child(3) {
        display: none
      }

      .services-grid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:480px) {
      .loader-logo { width: 160px }
      .loader-progress-wrap { width: 160px }

      .hsn-search-wrap {
        flex-direction: column
      }

      .faq-filter,
      .cal-filter {
        gap: 6px
      }
    }

    /* ── SERVICE PAGE MOBILE FIX ── */
    @media (max-width: 600px) {
      [style*="minmax(260px"] {
        grid-template-columns: 1fr !important
      }
      [style*="padding:32px"] {
        padding: 20px !important
      }
      [style*="padding:72px 0"] {
        padding: 40px 0 !important
      }
    }

/* ── TOOL CARD GRID ── */
.tools-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 40px
}
.tool-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, border-color .2s, transform .18s
}
.tool-card:hover {
  box-shadow: 0 8px 32px rgba(10,30,78,.12);
  border-color: #3AB54A;
  transform: translateY(-3px)
}
.tool-card-icon {
  font-size: 2rem;
  color: #3AB54A
}
.tool-card-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0A1E4E;
  margin-bottom: 4px
}
.tool-card-desc {
  font-size: .82rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0
}
.tool-card-arrow {
  margin-top: auto;
  font-size: .8rem;
  font-weight: 700;
  color: #3AB54A;
  display: flex;
  align-items: center;
  gap: 6px
}
@media (max-width: 768px) {
  .tools-card-grid { grid-template-columns: 1fr }
}

/* ── MOB TOOL SUB LINKS ── */
.mob-tool-sub { padding-left: 28px !important; font-size: .82rem !important; color: var(--text) !important; display: none !important }
.mob-tool-sub.open { display: block !important }

/* ── PERFORMANCE: GPU promotion for heavy animated elements ── */
.testi-track { will-change: transform }
.filing-card { will-change: transform }
.hero-blob { will-change: transform }

/* ── PERFORMANCE: Respect reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none !important }
  .filing-card { animation: none !important }
  .hero-blob { animation: none !important }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important }
}

/* ── iOS/SAFARI: Remove unwanted native input styling ── */
input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

/* ── iOS/SAFARI: position sticky fallback ── */
.inv-form-panel { position: -webkit-sticky; position: sticky }

/* ── iOS/SAFARI: Hero full viewport height (100svh = excludes browser chrome) ── */
#home {
  min-height: 100svh;
  display: flex;
  align-items: center
}
#home > .container { width: 100% }
@supports not (min-height: 100svh) {
  #home { min-height: 100vh }
}

/* ── MOBILE: Trust badges equal-width 2-column grid ── */
@media (max-width: 767px) {
  .trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 8px;
    width: 100%;
    max-width: 380px;
    align-items: stretch
  }
  .trust-badge {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box
  }
}

/* ── NAVIGATION: Tools dropdown uses blue accent, Services stays green ── */
.services-drop .nav-drop-link:hover { background: #f0fdf4; color: #3AB54A }
.services-drop .nav-drop-link:hover i { color: #3AB54A }
.tools-drop .nav-drop-link:hover { background: #f0fdf4; color: #3AB54A }
.tools-drop .nav-drop-link:hover i { color: #3AB54A }

/* ── SERVICE CARDS: Make whole card clickable ── */
.svc-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%
}
.svc-card-link .svc-card {
  height: 100%
}
.svc-card-link:hover .svc-card {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 30, 78, .14)
}

/* ── INVOICE GENERATOR: Field disabled state ── */
.field-disabled {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s
}

/* ── INVOICE GENERATOR: Mobile preview toggle button ── */
.preview-toggle-btn {
  display: none;
  width: 100%;
  justify-content: center;
  margin-top: 12px
}
@media (max-width: 1100px) {
  .preview-toggle-btn { display: flex }
  .inv-preview-wrap { display: none }
  .inv-preview-wrap.preview-visible { display: block }
}

/* ── HERO: Short viewport fix for 14"/16" laptops (max-height queries) ── */
@media (max-height: 820px) and (min-width: 992px) {
  #home { padding: 60px 0 40px }
  .hero-badge { margin-bottom: 14px; padding: 6px 14px }
  .hero-h1 { font-size: clamp(2.4rem, 3.4vw, 3.6rem); margin-bottom: 14px }
  .hero-sub { font-size: 1rem; line-height: 1.65; margin-bottom: 16px }
  .hero-btns { margin-bottom: 16px; gap: 10px }
  .filing-card { padding: 20px 24px; width: clamp(260px, 26vw, 310px) }
  .filing-card-top { margin-bottom: 14px }
  .trust-badge { padding: 6px 12px; font-size: .75rem }
  .hero-grid { gap: 28px }
}

@media (max-height: 700px) and (min-width: 992px) {
  #home { padding: 45px 0 30px }
  .hero-h1 { font-size: 2.2rem; margin-bottom: 10px }
  .hero-sub { font-size: .95rem; margin-bottom: 10px }
  .hero-btns { margin-bottom: 12px; gap: 8px }
  .hero-btns .btn-primary, .hero-btns .btn-outline { padding: 10px 20px; font-size: .85rem }
  .filing-card { padding: 16px 20px; width: 260px }
  .filing-card-top { margin-bottom: 10px }
  .trust-badge { padding: 5px 10px; font-size: .72rem }
  .hero-badge { display: none }
}
