  /* CSS Variables */
  :root {
      --primary: #4f46e5;
      --secondary: #9333ea;
      --accent: #f97316;
      --bg-white: #ffffff;
      --bg-light: #f8fafc;
      --text-main: #1e293b;
      --text-light: #64748b;
      --glass-bg: rgba(255, 255, 255, 0.65);
      --glass-border: rgba(255, 255, 255, 0.5);
      --gradient-text: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
      --banking-gradient: linear-gradient(135deg, #0f172a, #1e293b);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-white);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
  }

  /* Abstract Background Blobs */
  .bg-blob {
      position: absolute;
      filter: blur(100px);
      z-index: -1;
      opacity: 0.3;
      border-radius: 50%;
      animation: float 10s infinite alternate;
  }

  .blob-1 {
      top: -5%;
      left: -5%;
      width: 40vw;
      height: 40vw;
      background: var(--primary);
  }

  .blob-2 {
      top: 20%;
      right: -10%;
      width: 35vw;
      height: 35vw;
      background: var(--secondary);
      animation-delay: -5s;
  }

  .blob-3 {
      top: 70%;
      left: 10%;
      width: 50vw;
      height: 50vw;
      background: var(--accent);
      opacity: 0.15;
  }

  .blob-4 {
      top: 85%;
      right: 20%;
      width: 45vw;
      height: 45vw;
      background: var(--primary);
      opacity: 0.2;
  }

  @keyframes float {
      0% {
          transform: translate(0, 0) scale(1);
      }

      100% {
          transform: translate(20px, 40px) scale(1.05);
      }
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: 'Poppins', sans-serif;
  }

  .gradient-text {
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .section-padding {
      padding: 100px 0;
  }

  /* Glassmorphism */
  .glass-card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .glass-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 60px rgba(79, 70, 229, 0.12);
  }

  .tag {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      background: rgba(79, 70, 229, 0.1);
      color: var(--primary);
      margin-bottom: 20px;
  }

  /* Global Buttons */
  .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 16px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
      transition: all 0.3s;
      display: inline-block;
      border: none;
      cursor: pointer;
  }

  .btn-primary:hover {
      box-shadow: 0 15px 30px rgba(147, 51, 234, 0.5);
      transform: scale(1.02);
  }

  .btn-outline {
      background: transparent;
      color: var(--text-main);
      border: 2px solid var(--primary);
      padding: 14px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-block;
  }

  .btn-outline:hover {
      background: var(--primary);
      color: white;
  }

  /* --- Hero Section --- */
  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 80px;
  }

  .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }

  .hero-content h1 {
      font-size: 4.5rem;
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1px;
  }

  .hero-content p {
      font-size: 1.2rem;
      color: var(--text-light);
      margin-bottom: 40px;
  }

  .hero-image-wrapper {
      position: relative;
      border-radius: 30px;
      height: 600px;
      display: flex;
  }

  .hero-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  }

  .hero-badge {
      position: absolute;
      bottom: 30px;
      left: 30px;
      padding: 20px 25px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(255, 255, 255, 0.85);
  }

  .hero-badge h4 {
      font-size: 2.2rem;
      color: var(--primary);
      margin: 0;
      line-height: 1;
  }

  /* --- Why Dubai --- */
  .features-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 30px;
      margin-top: 60px;
  }

  .feature-card {
      padding: 40px;
      grid-column: span 4;
  }

  .feature-card:nth-child(1) {
      grid-column: span 5;
  }

  .feature-card:nth-child(2) {
      grid-column: span 7;
      background: linear-gradient(135deg, #1e293b, #0f172a);
      color: white;
  }

  .feature-card:nth-child(2) .gradient-text {
      background: linear-gradient(135deg, #a78bfa, #fbcfe8);
      -webkit-background-clip: text;
  }

  .feature-card:nth-child(2) p {
      color: #cbd5e1;
  }

  .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: rgba(79, 70, 229, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      margin-bottom: 24px;
      color: var(--primary);
  }

  /* --- Privileges --- */
  .privilege-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
  }

  .privilege-card {
      padding: 40px;
      border-top: 4px solid var(--secondary);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  }

  .privilege-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }

  .privilege-card h3 {
      margin-bottom: 15px;
      font-size: 1.4rem;
      color: var(--text-main);
  }

  .privilege-card p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
  }

  /* --- Jurisdictions --- */
  .comparison-wrapper {
      display: flex;
      gap: 30px;
      margin-top: 50px;
      flex-wrap: wrap;
  }

  .comp-card {
      flex: 1;
      min-width: 300px;
      padding: 50px 40px;
      position: relative;
      border-top: 5px solid transparent;
  }

  .comp-card.freezone {
      border-top-color: var(--primary);
  }

  .comp-card.mainland {
      border-top-color: var(--secondary);
  }

  .comp-card.offshore {
      border-top-color: var(--accent);
  }

  .comp-list {
      list-style: none;
      margin-top: 30px;
  }

  .comp-list li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--text-light);
  }

  .comp-list li::before {
      content: '✓';
      color: var(--secondary);
      font-weight: bold;
      background: rgba(147, 51, 234, 0.1);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
  }

  /* --- Roadmap (Scannable) --- */
  .seo-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }

  .seo-text h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .seo-desc {
      font-size: 1.1rem;
      color: var(--text-light);
      margin-bottom: 40px;
  }

  .scannable-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
  }

  .scan-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 20px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.8);
      transition: background 0.3s;
  }

  .scan-item:hover {
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  }

  .scan-number {
      width: 45px;
      height: 45px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
  }

  .scan-content h4 {
      font-size: 1.2rem;
      color: var(--text-main);
      margin-bottom: 8px;
  }

  .scan-content p {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.5;
      margin: 0;
  }

  .scan-content strong {
      color: var(--primary);
  }

  .image-container {
      position: relative;
      width: 100%;
      height: 650px;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  }

  .seo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .image-overlay {
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  }

  /* --- Timeline & Toolkit --- */
  .timeline-section {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
  }

  .timeline-container {
      border-left: 2px dashed rgba(79, 70, 229, 0.4);
      margin-left: 20px;
      padding-left: 40px;
      position: relative;
  }

  .timeline-item {
      position: relative;
      margin-bottom: 40px;
  }

  .timeline-item:last-child {
      margin-bottom: 0;
  }

  .timeline-dot {
      position: absolute;
      left: -53px;
      top: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border: 4px solid var(--bg-white);
      box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
  }

  .timeline-content {
      background: rgba(255, 255, 255, 0.5);
      padding: 25px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      transition: all 0.3s;
  }

  .timeline-content:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateX(10px);
  }

  .timeline-time {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
      display: block;
  }

  .timeline-content h4 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--text-main);
  }

  .timeline-content p {
      font-size: 0.95rem;
      color: var(--text-light);
  }

  .toolkit-section {
      margin-top: 80px;
      padding: 50px;
      background: rgba(248, 250, 252, 0.6);
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .toolkit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
  }

  .toolkit-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 16px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  }

  .toolkit-icon {
      font-size: 1.5rem;
      background: rgba(147, 51, 234, 0.1);
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      flex-shrink: 0;
  }

  .toolkit-text h5 {
      font-size: 1.05rem;
      margin-bottom: 5px;
      color: var(--text-main);
  }

  .toolkit-text p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.4;
      margin: 0;
  }

  /* --- Banking --- */
  .banking-section {
      background: var(--banking-gradient);
      color: white;
      border-radius: 40px;
      padding: 80px;
      position: relative;
      overflow: hidden;
      margin-top: 50px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }

  .banking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
  }

  .banking-text h2 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .banking-text p {
      color: #cbd5e1;
      font-size: 1.1rem;
      margin-bottom: 30px;
  }

  .banking-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 40px;
  }

  .bank-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      color: #f8fafc;
  }

  .bank-feature i {
      color: #10b981;
      font-style: normal;
      background: rgba(16, 185, 129, 0.1);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 12px;
  }

  .banking-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 24px;
  }

  .bank-logos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 20px;
  }

  .bank-logo-item {
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: background 0.3s;
  }

  .bank-logo-item:hover {
      background: rgba(255, 255, 255, 0.2);
  }

  .banking-decoration {
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 60%);
      z-index: 1;
      pointer-events: none;
  }

  /* --- Cost Section --- */
  .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 50px;
  }

  .price-card {
      padding: 50px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .price-card.popular {
      border: 2px solid var(--secondary);
      background: rgba(255, 255, 255, 0.85);
      z-index: 2;
      box-shadow: 0 30px 60px rgba(147, 51, 234, 0.15);
  }

  .popular-badge {
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--secondary);
      color: white;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 40px;
      transform: rotate(45deg);
  }

  .price-currency {
      font-size: 1.5rem;
      color: var(--text-light);
      font-weight: 600;
  }

  .price-amount {
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1;
      margin: 10px 0;
  }

  .price-desc {
      color: var(--text-light);
      font-size: 0.95rem;
      margin-bottom: 30px;
  }

  .price-features {
      text-align: left;
      margin-bottom: 40px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding-top: 30px;
  }

  .price-features p {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 0.95rem;
      color: var(--text-main);
  }

  .price-features p i {
      color: #10b981;
      font-style: normal;
      font-weight: bold;
  }

  /* --- Deep SEO Tax Guide --- */
  .tax-article {
      color: var(--text-main);
  }

  .tax-article p {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 20px;
  }

  .pro-tip {
      background: linear-gradient(to right, rgba(79, 70, 229, 0.08), transparent);
      border-left: 4px solid var(--primary);
      padding: 25px 30px;
      margin: 35px 0;
      border-radius: 0 16px 16px 0;
      position: relative;
  }

  .pro-tip::before {
      content: '💡';
      position: absolute;
      left: -20px;
      top: 25px;
      font-size: 24px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .pro-tip strong {
      color: var(--primary);
      display: block;
      margin-bottom: 8px;
      font-size: 1.1rem;
  }

  .tax-list li {
      margin-bottom: 12px;
      font-size: 1.05rem;
      color: var(--text-main);
      display: flex;
      align-items: flex-start;
      gap: 10px;
  }

  /* --- Testimonials --- */
  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
  }

  .review-card {
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
  }

  .stars {
      color: #f59e0b;
      font-size: 1.2rem;
      margin-bottom: 20px;
      letter-spacing: 2px;
  }

  .review-text {
      font-size: 1.05rem;
      color: var(--text-main);
      font-style: italic;
      margin-bottom: 30px;
      line-height: 1.6;
      flex-grow: 1;
  }

  .client-info {
      display: flex;
      align-items: center;
      gap: 15px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding-top: 20px;
  }

  .client-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
  }

  .client-details h4 {
      font-size: 1rem;
      margin: 0;
      color: var(--text-main);
  }

  .client-details p {
      font-size: 0.85rem;
      color: var(--text-light);
      margin: 0;
  }

  /* --- FAQ Accordion --- */
  .faq-wrapper {
      max-width: 800px;
      margin: 50px auto 0;
  }

  .faq-item {
      margin-bottom: 15px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.8);
      overflow: hidden;
      transition: all 0.3s;
  }

  .faq-item:hover {
      background: rgba(255, 255, 255, 0.9);
  }

  .faq-question {
      padding: 25px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--text-main);
  }

  .faq-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(79, 70, 229, 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: transform 0.3s;
  }

  .faq-answer {
      padding: 0 30px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: var(--text-light);
      line-height: 1.7;
  }

  .faq-item.active .faq-answer {
      padding: 0 30px 25px;
      max-height: 500px;
  }

  .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: var(--primary);
      color: white;
  }

  /* --- CTA --- */
  .cta-section {
      background: linear-gradient(135deg, #1e293b, #0f172a);
      border-radius: 40px;
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin: 100px 20px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  }

  .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 60%);
      z-index: 0;
      pointer-events: none;
  }

  .cta-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
  }

  .cta-content h2 {
      color: white;
      font-size: 3.5rem;
      margin-bottom: 20px;
  }

  .cta-content p {
      color: #cbd5e1;
      font-size: 1.2rem;
      margin-bottom: 40px;
  }

  /* Custom TOC Styles */
  #custom-toc-container {
      position: fixed;
      bottom: 40px;
      left: 40px;
      z-index: 9999;
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-start;
  }

  #toc-btn {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border-radius: 50px;
      padding: 14px 28px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
      border: none;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
  }

  #toc-btn:hover {
      transform: scale(1.05);
  }

  #toc-menu {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 20px;
      padding: 24px;
      margin-bottom: 20px;
      width: 320px;
      max-height: 65vh;
      overflow-y: auto;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  #toc-menu.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
  }

  .toc-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--text-main);
      font-size: 1.1rem;
  }

  .toc-list {
      list-style: none;
  }

  .toc-item {
      display: flex;
      align-items: center;
      padding: 12px 0;
      color: var(--text-light);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      position: relative;
      padding-left: 24px;
      transition: all 0.3s;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  .toc-item:last-child {
      border-bottom: none;
  }

  .toc-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #cbd5e1;
      transition: all 0.3s;
  }

  .toc-item:hover {
      color: var(--primary);
  }

  .toc-item.active {
      color: var(--secondary);
      font-weight: 700;
  }

  .toc-item.active::before {
      background: var(--secondary);
      box-shadow: 0 0 10px var(--secondary);
      transform: translateY(-50%) scale(1.3);
  }

  /* Responsive */
  @media (max-width: 1024px) {

      .hero-grid,
      .seo-content,
      .banking-grid,
      .timeline-section {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .hero-content h1 {
          font-size: 3.5rem;
      }

      .features-grid {
          grid-template-columns: 1fr;
      }

      .feature-card,
      .feature-card:nth-child(1),
      .feature-card:nth-child(2) {
          grid-column: span 1;
      }

      .image-container {
          height: 400px;
          order: -1;
      }

      .banking-section {
          padding: 50px 30px;
      }

      .banking-features {
          grid-template-columns: 1fr;
          justify-items: center;
      }

      .cta-section {
          margin: 50px 10px;
          padding: 60px 20px;
      }

      .cta-content h2 {
          font-size: 2.5rem;
      }

      .timeline-container {
          text-align: left;
      }
  }

  /* 专属税务版块 Bento Box 样式 */
  .tax-bento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
  }

  .tax-card {
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 28px;
      padding: 40px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  }

  .tax-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(79, 70, 229, 0.12);
      border-color: rgba(147, 51, 234, 0.3);
  }

  .tax-card-full {
      grid-column: span 12;
      display: flex;
      align-items: center;
      gap: 50px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  }

  .tax-card-half {
      grid-column: span 6;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
  }

  /* 核心数据大字 */
  .tax-mega-number {
      font-family: 'Poppins', sans-serif;
      font-size: 5rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 10px;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .tax-label {
      display: inline-block;
      padding: 6px 14px;
      background: #f1f5f9;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
  }

  /* 警示框设计 (Pro Tip) */
  .tax-alert-box {
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.02));
      border-left: 4px solid var(--accent);
      padding: 25px;
      border-radius: 0 20px 20px 0;
      position: relative;
      flex: 1;
  }

  .alert-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: var(--accent);
      font-size: 1.1rem;
  }

  .pulse-dot {
      width: 12px;
      height: 12px;
      background-color: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
      animation: pulse-alert 2s infinite;
  }

  @keyframes pulse-alert {
      0% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
      }

      70% {
          transform: scale(1);
          box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
      }

      100% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
      }
  }

  /* 扫读列表 (Checklist) */
  .tax-checklist {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
  }

  .tax-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 15px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      transition: background 0.3s;
  }

  .tax-checklist li:hover {
      background: rgba(255, 255, 255, 0.9);
  }

  .check-icon {
      color: #10b981;
      font-size: 1.2rem;
      flex-shrink: 0;
      background: rgba(16, 185, 129, 0.1);
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-weight: bold;
  }

  /* VAT 数据条 (Metrics) */
  .vat-metrics {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .vat-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      background: #f8fafc;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.03);
  }

  .vat-row span {
      color: var(--text-light);
      font-weight: 500;
      font-size: 0.95rem;
  }

  .vat-row strong {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      color: var(--text-main);
  }

  .vat-highlight {
      color: #10b981 !important;
      background: rgba(16, 185, 129, 0.1);
      padding: 4px 10px;
      border-radius: 6px;
  }

  /* 装饰元素 */
  .tax-deco-circle {
      position: absolute;
      top: -50px;
      right: -50px;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
  }

  /* 响应式适配 */
  @media (max-width: 900px) {
      .tax-card-full {
          flex-direction: column;
          gap: 30px;
          padding: 30px;
          align-items: flex-start;
      }

      .tax-card-half {
          grid-column: span 12;
          padding: 30px;
      }

      .tax-mega-number {
          font-size: 4rem;
      }

      .tax-alert-box {
          width: 100%;
          border-left: none;
          border-top: 4px solid var(--accent);
          border-radius: 0 0 20px 20px;
      }
  }

  /* 新增：确保左右两列等高对齐的控制样式 */
  .timeline-section {
      align-items: stretch !important;
  }

  .timeline-left {
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  .timeline-image-wrapper {
      flex-grow: 1;
      position: relative;
      min-height: 250px;
      margin-top: 10px;
  }

  .timeline-image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }

  /* 移动端保护 */
  @media (max-width: 1024px) {
      .timeline-image-wrapper {
          min-height: 350px;
          margin-bottom: 40px;
      }
  }

  .guarantee-section {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      border-radius: 30px;
      padding: 60px;
      margin: 40px auto;
      max-width: 1000px;
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .guarantee-section::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
      pointer-events: none;
  }

  .guarantee-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
      position: relative;
      z-index: 2;
  }

  .shield-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .shield-icon {
      font-size: 2rem;
      margin-bottom: 15px;
  }

  .shield-card h4 {
      color: #f8fafc;
      font-size: 1.2rem;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .shield-card p {
      color: #94a3b8;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
  }

  @media (max-width: 768px) {
      .guarantee-grid {
          grid-template-columns: 1fr;
      }

      .guarantee-section {
          padding: 40px 25px;
      }
  }

  /* 高级表单专属样式 */
  .lead-form-section {
      position: relative;
      padding: 100px 20px;
      background: #f8fafc;
      overflow: hidden;
  }

  .form-glass-card {
      background: white;
      border-radius: 24px;
      border: 1px solid rgba(79, 70, 229, 0.15);
      box-shadow: 0 30px 60px -15px rgba(79, 70, 229, 0.15);
      overflow: hidden;
      display: flex;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
  }

  .form-left {
      flex: 0 0 40%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      padding: 60px 40px;
      color: white;
      position: relative;
      overflow: hidden;
  }

  .form-right {
      flex: 0 0 60%;
      padding: 60px 50px;
      background: white;
  }

  .form-left-deco-1 {
      position: absolute;
      top: -50px;
      left: -50px;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
  }

  .form-left-deco-2 {
      position: absolute;
      bottom: -80px;
      right: -50px;
      width: 250px;
      height: 250px;
      background: rgba(249, 115, 22, 0.2);
      border-radius: 50%;
      filter: blur(30px);
  }

  .form-input-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 24px;
  }

  .form-input-group label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-main);
  }

  .form-control {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #cbd5e1;
      border-radius: 12px;
      font-family: inherit;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s;
      background: #f8fafc;
      color: var(--text-main);
  }

  .form-control:focus {
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
  }

  /* 响应式处理 */
  @media (max-width: 900px) {
      .form-glass-card {
          flex-direction: column;
      }

      .form-left,
      .form-right {
          flex: 1 1 100%;
          padding: 40px 25px;
      }
  }

  /* 权威信誉 */
  .trust-bar {
      background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
      padding: 24px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      z-index: 20;
      box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.2);
  }

  .trust-flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 24px 40px;
  }

  @media (min-width: 1024px) {
      .trust-flex {
          justify-content: space-between;
      }
  }

  .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.85rem;
      font-weight: 700;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: default;
      transition: color 0.3s ease, transform 0.3s ease;
      font-family: 'Inter', sans-serif;
  }

  .trust-item:hover {
      color: #ffffff;
      transform: translateY(-2px);
  }

  .trust-icon-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
  }

  /* WhatsApp 呼吸灯扩散动效 */
  @keyframes wa-pulse {
      0% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }

      70% {
          transform: scale(1);
          box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
      }

      100% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
  }

  .wa-floating-btn {
      position: fixed;
      bottom: 40px;
      right: 40px;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
  }

  .wa-main-circle {
      width: 60px;
      height: 60px;
      background-color: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: wa-pulse 2s infinite;
      /* 心跳呼吸效果 */
      position: relative;
      z-index: 2;
  }

  .wa-main-circle:hover {
      transform: scale(1.1);
  }

  .wa-main-circle svg {
      width: 32px;
      height: 32px;
      fill: white;
  }

  /* 悬停文字提示卡片 */
  .wa-tooltip {
      position: absolute;
      right: 80px;
      background: white;
      color: #1e293b;
      padding: 10px 18px;
      border-radius: 12px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateX(20px);
      transition: all 0.3s ease;
      pointer-events: none;
      border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .wa-floating-btn:hover .wa-tooltip {
      opacity: 1;
      transform: translateX(0);
  }

  /* 小三角 */
  .wa-tooltip::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: white;
  }

  @media (max-width: 768px) {
      .wa-floating-btn {
          bottom: 20px;
          right: 20px;
      }

      .wa-tooltip {
          display: none;
      }

      /* 移动端隐藏提示以防遮挡内容 */
  }

  /* --- Modern Text Avatars (AI Custom Design) --- */
  .text-avatar-wrapper {
      position: relative;
      display: inline-block;
      flex-shrink: 0;
  }

  .text-avatar-inner {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      /* 高级方圆角 */
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 1px;
      color: #ffffff;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.15);
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
  }

  /* 调用您原网页已有的主题变量色 */
  .avatar-theme-1 {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
  }

  .avatar-theme-2 {
      background: linear-gradient(135deg, var(--accent), #ef4444);
  }

  .avatar-theme-3 {
      background: linear-gradient(135deg, #10b981, #059669);
  }

  .review-card:hover .text-avatar-inner {
      transform: scale(1.05) rotate(-2deg);
  }

  .avatar-status-dot {
      position: absolute;
      bottom: -2px;
      right: -2px;
      width: 14px;
      height: 14px;
      background-color: #10b981;
      /* 在线绿点 */
      border: 2px solid #ffffff;
      border-radius: 50%;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  /* 修复移动端首屏图片与信任板块粘连的问题 */
  @media (max-width: 1024px) {
      .hero {
          min-height: auto;
          padding-bottom: 50px;
          /* 给首屏整体增加底部留白 */
      }

      .hero-image-wrapper {
          margin-top: 40px;
          /* 将图片与上方的文字拉开一点距离 */
          margin-bottom: 20px;
          /* 将图片与下方的黑底信任条拉开距离 */
          height: 400px;
          /* 适当缩小手机端图片高度，防止首屏过长 */
      }

      /* 让浮动数据卡片在手机端位置更协调 */
      .hero-badge {
          bottom: -20px;
          left: 50%;
          transform: translateX(-50%);
          width: 85%;
          justify-content: center;
          border-radius: 16px;
      }
  }