 /* Fiscal Ox - Converted from Tailwind CSS */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

    /* CSS Variables */
    :root {
      /* Fiscal Ox Brand Colors */
      --background: 0 0% 100%;
      --foreground: 222 47% 11%;
      --card: 0 0% 100%;
      --card-foreground: 222 47% 11%;
      --popover: 0 0% 100%;
      --popover-foreground: 222 47% 11%;
      
      /* Primary: Coral Red (Fiscal Ox brand) */
      --primary: 0 76% 59%;
      --primary-foreground: 0 0% 100%;
      --primary-light: 0 76% 65%;
      --primary-dark: 0 76% 50%;
      
      /* Secondary: Deep Navy */
      --secondary: 222 47% 11%;
      --secondary-foreground: 0 0% 100%;
      
      /* Muted: Soft gray */
      --muted: 220 14% 96%;
      --muted-foreground: 220 9% 46%;
      
      /* Accent: Light coral */
      --accent: 0 60% 95%;
      --accent-foreground: 0 76% 45%;
      
      --destructive: 0 84% 60%;
      --destructive-foreground: 0 0% 100%;
      --border: 220 13% 91%;
      --input: 220 13% 91%;
      --ring: 0 76% 59%;
      --radius: 0.75rem;
      
      /* Custom tokens */
      --gradient-primary: linear-gradient(135deg, #E11D48 0%, #FB7185 100%);
      --gradient-hero: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(0 60% 98%) 100%);
      --gradient-dark: linear-gradient(135deg, hsl(222 47% 11%) 0%, hsl(222 47% 18%) 100%);
      --gradient-card: linear-gradient(135deg, hsl(0 0% 100%) 0%, hsl(0 60% 99%) 100%);
      
      --shadow-sm: 0 1px 2px 0 hsl(0 0% 0% / 0.05);
      --shadow-md: 0 4px 6px -1px hsl(0 0% 0% / 0.1), 0 2px 4px -2px hsl(0 0% 0% / 0.1);
      --shadow-lg: 0 10px 15px -3px hsl(0 0% 0% / 0.1), 0 4px 6px -4px hsl(0 0% 0% / 0.1);
      --shadow-xl: 0 20px 25px -5px hsl(0 0% 0% / 0.1), 0 8px 10px -6px hsl(0 0% 0% / 0.1);
      --shadow-glow: 0 0 40px hsl(0 76% 59% / 0.2);
      --shadow-card: 0 4px 24px hsl(0 0% 0% / 0.08);
    }

    /* Reset & Base Styles */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      border-color: hsl(var(--border));
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

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

    img, svg {
      display: block;
      max-width: 40%;
    }

    .logo-img {
      display: block;
      max-width: 30%;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    /* Container */
    .container-xl {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .container-xl {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container-xl {
        padding: 0 2rem;
      }
    }

    /* Text Gradient */
    .text-gradient {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Background Gradients */
    .bg-gradient-primary {
      background: var(--gradient-primary);
    }

    /* Shadow Card */
    .shadow-card {
      box-shadow: var(--shadow-card);
    }

    /* ====================== */
    /* HEADER / NAVBAR */
    /* ====================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background-color: hsl(var(--background) / 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid hsl(var(--border) / 0.5);
      animation: slideDown 0.5s ease-out;
    }

    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 5rem;
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-svg {
      height: 2.25rem;
      width: auto;
    }

    .logo-text {
      font-size: 1.5rem;
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      color: hsl(var(--foreground));
    }

    .logo-text .highlight {
      color: hsl(var(--primary));
    }

    /* Desktop Navigation */
    .nav-links {
      display: none;
      align-items: center;
      gap: 0.25rem;
    }

    @media (min-width: 1024px) {
      .nav-links {
        display: flex;
      }
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(var(--muted-foreground));
      transition: color 0.2s ease;
    }

    .nav-link:hover {
      color: hsl(var(--primary));
    }

    .nav-link svg {
      width: 1rem;
      height: 1rem;
    }

    /* Dropdown */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      width: 20rem;
      background: hsl(var(--card));
      border-radius: 0.75rem;
      box-shadow: var(--shadow-xl);
      border: 1px solid hsl(var(--border));
      padding: 1rem;
      margin-top: 0.5rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.2s ease;
    }

    .nav-item:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-grid {
      display: grid;
      gap: 0.25rem;
    }

    .dropdown-link {
      display: block;
      padding: 0.5rem 0.75rem;
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      border-radius: 0.5rem;
      transition: all 0.2s ease;
    }

    .dropdown-link:hover {
      color: hsl(var(--primary));
      background: hsl(var(--accent));
    }

    /* Nav CTA Buttons */
    .nav-cta {
      display: none;
      align-items: center;
      gap: 0.75rem;
    }

    @media (min-width: 1024px) {
      .nav-cta {
        display: flex;
      }
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: flex;
      padding: 0.5rem;
      color: hsl(var(--foreground));
    }

    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }

    .mobile-menu-btn svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      background: hsl(var(--card));
      border-top: 1px solid hsl(var(--border));
    }

    .mobile-menu.active {
      display: block;
      animation: slideMenuDown 0.3s ease-out;
    }

    @keyframes slideMenuDown {
      from { 
        opacity: 0;
        max-height: 0;
      }
      to { 
        opacity: 1;
        max-height: 500px;
      }
    }

    @media (min-width: 1024px) {
      .mobile-menu {
        display: none !important;
      }
    }

    .mobile-menu-content {
      padding: 1.5rem 0;
    }

    .mobile-nav-link {
      display: block;
      padding: 0.5rem 0;
      color: hsl(var(--foreground));
      transition: color 0.2s ease;
    }

    .mobile-nav-link:hover {
      color: hsl(var(--primary));
    }

    .mobile-cta {
      padding-top: 1rem;
      margin-top: 1rem;
      border-top: 1px solid hsl(var(--border));
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    /* ====================== */
    /* BUTTONS */
    /* ====================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      white-space: nowrap;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn:focus-visible {
      outline: 2px solid hsl(var(--ring));
      outline-offset: 2px;
    }

    .btn svg {
      width: 1rem;
      height: 1rem;
      pointer-events: none;
      flex-shrink: 0;
    }

    /* Button Sizes */
    .btn-sm {
      height: 2.25rem;
      padding: 0 1rem;
      font-size: 0.75rem;
      border-radius: 0.375rem;
    }

    .btn-default {
      height: 2.5rem;
      padding: 0.5rem 1.25rem;
    }

    .btn-lg {
      height: 3rem;
      padding: 0 2rem;
      font-size: 1rem;
      border-radius: 0.75rem;
    }

    .btn-xl {
      height: 3.5rem;
      padding: 0 2.5rem;
      font-size: 1.125rem;
      border-radius: 0.75rem;
    }

    /* Button Variants */
    .btn-primary {
      background: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
      box-shadow: var(--shadow-md);
    }

    .btn-primary:hover {
      background: hsl(var(--primary-dark));
      box-shadow: var(--shadow-lg);
    }

    .btn-outline {
      border: 2px solid hsl(var(--primary));
      color: hsl(var(--primary));
      background: transparent;
    }

    .btn-outline:hover {
      background: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
    }

    .btn-hero {
      background: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
      box-shadow: var(--shadow-lg);
    }

    .btn-hero:hover {
      background: hsl(var(--primary-dark));
      box-shadow: var(--shadow-xl);
      transform: translateY(-2px);
    }

    .btn-hero-outline {
      border: 2px solid hsl(var(--foreground) / 0.3);
      color: hsl(var(--foreground));
      background: hsl(var(--background) / 0.8);
      backdrop-filter: blur(4px);
    }

    .btn-hero-outline:hover {
      background: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
      border-color: hsl(var(--primary));
    }

    .btn-white {
      background: white;
      color: hsl(var(--primary));
      box-shadow: var(--shadow-xl);
    }

    .btn-white:hover {
      background: hsl(0 0% 95%);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .btn-white-outline {
      border: 2px solid hsl(0 0% 100% / 0.3);
      color: white;
      background: hsl(0 0% 100% / 0.1);
    }

    .btn-white-outline:hover {
      background: hsl(0 0% 100% / 0.2);
      border-color: hsl(0 0% 100% / 0.5);
    }

    .btn-full {
      width: 100%;
    }

    /* ====================== */
    /* HERO SECTION */
    /* ====================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 5rem;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.3;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, 
        hsl(var(--background)) 0%, 
        hsl(var(--background) / 0.95) 50%, 
        hsl(var(--background)) 100%);
    }

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

    .hero-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .hero-text {
      text-align: center;
      animation: fadeUp 0.6s ease-out;
    }

    @media (min-width: 1024px) {
      .hero-text {
        text-align: left;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s ease-out 0.1s both;
    }

    .pulse-dot {
      position: relative;
      width: 0.5rem;
      height: 0.5rem;
    }

    .pulse-dot::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: hsl(var(--primary));
      animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

    .pulse-dot::after {
      content: '';
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: hsl(var(--primary));
    }

    @keyframes ping {
      75%, 100% {
        transform: scale(2);
        opacity: 0;
      }
    }

    .hero-title {
      font-size: 2.25rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s ease-out 0.2s both;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-title {
        font-size: 3.75rem;
      }
    }

    .hero-description {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 2rem;
      max-width: 36rem;
      margin-left: auto;
      margin-right: auto;
      animation: fadeUp 0.6s ease-out 0.3s both;
    }

    @media (min-width: 768px) {
      .hero-description {
        font-size: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-description {
        margin-left: 0;
        margin-right: 0;
      }
    }

    .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.6s ease-out 0.4s both;
    }

    @media (min-width: 1024px) {
      .hero-highlights {
        justify-content: flex-start;
      }
    }

    .highlight-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: hsl(var(--foreground));
    }

    .highlight-item svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--primary));
    }

    .hero-cta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      animation: fadeUp 0.6s ease-out 0.5s both;
    }

    @media (min-width: 640px) {
      .hero-cta {
        flex-direction: row;
      }
    }

    @media (min-width: 1024px) {
      .hero-cta {
        justify-content: flex-start;
      }
    }

    /* Hero Visual */
    .hero-visual {
      display: none;
      position: relative;
      animation: scaleIn 0.6s ease-out 0.3s both;
    }

    @media (min-width: 1024px) {
      .hero-visual {
        display: block;
      }
    }

    .dashboard-card {
      background: hsl(var(--card));
      border-radius: 1rem;
      box-shadow: var(--shadow-card);
      border: 1px solid hsl(var(--border));
      padding: 2rem;
      transition: all 0.3s ease;
    }

    .dashboard-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
    }

    .dashboard-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .dashboard-title {
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.125rem;
    }

    .dashboard-badge {
      font-size: 0.75rem;
      color: hsl(var(--primary));
      background: hsl(var(--accent));
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .stat-item {
      text-align: center;
      padding: 1rem;
      background: hsl(var(--muted));
      border-radius: 0.75rem;
    }

    .stat-value {
      font-size: 1.5rem;
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      color: hsl(var(--foreground));
    }

    .stat-label {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
      margin-top: 0.25rem;
    }

    .stat-trend {
      font-size: 0.75rem;
      color: hsl(var(--primary));
      margin-top: 0.25rem;
    }

    .chart-container {
      height: 10rem;
      background: hsl(var(--muted));
      border-radius: 0.75rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-around;
      padding: 0 1rem 1rem;
    }

    .chart-bar {
      width: 2rem;
      background: linear-gradient(to top, hsl(var(--primary)), hsl(var(--primary-light)));
      border-radius: 0.5rem 0.5rem 0 0;
      animation: growBar 0.5s ease-out forwards;
      transform-origin: bottom;
    }

    @keyframes growBar {
      from { transform: scaleY(0); }
      to { transform: scaleY(1); }
    }

    /* Floating Cards */
    .floating-card {
      position: absolute;
      background: hsl(var(--card));
      border-radius: 0.75rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid hsl(var(--border));
      padding: 1rem;
      animation: float 6s ease-in-out infinite;
    }

    .floating-card-left {
      left: -1rem;
      top: -1rem;
    }

    .floating-card-right {
      right: -1rem;
      bottom: -1rem;
      animation-delay: 1s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .floating-content {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .floating-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: hsl(var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .floating-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--primary));
    }

    .floating-text {
      font-size: 0.875rem;
      font-weight: 500;
    }

    .floating-subtext {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
    }

    .floating-card-simple {
      text-align: left;
    }

    .floating-card-simple .floating-text {
      color: hsl(var(--primary));
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: hsl(var(--muted-foreground));
      animation: fadeIn 0.5s ease-out 1.2s both;
    }

    .scroll-text {
      font-size: 0.75rem;
    }

    .scroll-mouse {
      width: 1.25rem;
      height: 2rem;
      border: 2px solid hsl(var(--muted-foreground) / 0.3);
      border-radius: 9999px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 0.25rem;
    }

    .scroll-dot {
      width: 0.25rem;
      height: 0.5rem;
      background: hsl(var(--primary));
      border-radius: 9999px;
      animation: scrollBounce 1.5s ease-in-out infinite;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(8px); }
    }

    /* ====================== */
    /* PRODUCTS SECTION */
    /* ====================== */
    .products-section {
      padding: 6rem 0;
      background: hsl(var(--muted) / 0.3);
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-label {
      color: hsl(var(--primary));
      font-weight: 600;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .section-title {
      font-size: 1.875rem;
      margin-top: 1rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .section-title {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .section-title {
        font-size: 3rem;
      }
    }

    .section-description {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      max-width: 42rem;
      margin: 0 auto;
    }

    .products-grid {
      display: grid;
      gap: 2.5rem;
    }

    @media (min-width: 640px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (min-width: 1280px) {
      .products-grid {
        grid-template-columns: repeat(4);
      }
    }

    .product-card {
      background: hsl(var(--card));
      border-radius: 1.25rem;
      padding: 2rem;
      transition: all 0.3s ease;
      cursor: pointer;
      
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
     
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .product-header {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      margin-bottom: 1rem;
    }

    .product-icon {
      flex-shrink: 0;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 1rem;
      background: linear-gradient(135deg, rgba(235, 36, 79, 0.1) 0%, rgba(235, 36, 79, 0.05) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      border: 1.5px solid rgba(235, 36, 79, 0.15);
    }

    .product-card:hover .product-icon {
      background: linear-gradient(135deg, #eb244f 0%, #C8102E 100%);
      transform: scale(1.08);
    }

    .product-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: hsl(var(--primary));
      transition: color 0.3s ease;
    }

    .product-card:hover .product-icon svg {
      color: hsl(var(--primary-foreground));
    }

    .product-abbr {
      font-size: 0.65rem;
      font-weight: 700;
      color: hsl(var(--primary));
      background: linear-gradient(135deg, rgba(235, 36, 79, 0.12) 0%, rgba(235, 36, 79, 0.08) 100%);
      padding: 0.35rem 0.65rem;
      border-radius: 0.35rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .product-name {
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
      transition: color 0.3s ease;
      line-height: 1.4;
    }

    .product-card:hover .product-name {
      color: hsl(var(--primary));
    }

    .product-description {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      line-height: 1.7;
      flex-grow: 1;
    }

    /* ====================== */
    /* FEATURES SECTION */
    /* ====================== */
    .features-section {
      padding: 6rem 0;
    }

    .features-grid {
      display: grid;
      gap: 4rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .features-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .features-content .section-label {
      text-align: left;
    }

    .features-content .section-title {
      text-align: left;
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .features-content .section-title {
        font-size: 2.25rem;
      }
    }

    .features-description {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 2.5rem;
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

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

    .feature-icon {
      flex-shrink: 0;
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      background: hsl(var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: hsl(var(--primary));
    }

    .feature-title {
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.125rem;
      margin-bottom: 0.25rem;
    }

    .feature-text {
      color: hsl(var(--muted-foreground));
    }

    /* Stats Grid */
    .stats-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .stat-card {
      background: hsl(var(--card));
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-card);
      border: 1px solid hsl(var(--border));
      text-align: center;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
    }

    .stat-card-value {
      font-size: 2.5rem;
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .stat-card-value {
        font-size: 3rem;
      }
    }

    .stat-card-label {
      color: hsl(var(--muted-foreground));
      font-weight: 500;
    }

    /* Services Box */
    .services-box {
      margin-top: 6rem;
      background: hsl(var(--muted) / 0.3);
      border-radius: 1.5rem;
      padding: 2rem;
    }

    @media (min-width: 768px) {
      .services-box {
        padding: 3rem;
      }
    }

    .services-title {
      font-size: 1.5rem;
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      margin-bottom: 2rem;
      text-align: center;
    }

    .services-grid {
      display: grid;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .service-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 1rem;
      background: hsl(var(--card));
      border-radius: 0.75rem;
    }

    .service-item svg {
      width: 1.5rem;
      height: 1.5rem;
      color: hsl(var(--primary));
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    .service-item-title {
      font-weight: 600;
      color: hsl(var(--foreground));
    }

    .service-item-desc {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    /* ====================== */
    /* INDUSTRIES SECTION */
    /* ====================== */
    .industries-section {
      padding: 6rem 0;
      background: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
    }

    .industries-section .section-description {
      color: hsl(var(--secondary-foreground) / 0.7);
    }

    .industries-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .industries-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .industries-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .industry-card {
      background: hsl(var(--secondary-foreground) / 0.05);
      border-radius: 1rem;
      padding: 2rem;
      border: 1px solid hsl(var(--secondary-foreground) / 0.1);
      transition: all 0.3s ease;
    }

    .industry-card:hover {
      border-color: hsl(var(--primary) / 0.5);
      transform: translateY(-4px);
    }

    .industry-icon {
      display: inline-flex;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 0.75rem;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .industry-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: white;
    }

    .industry-icon.blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
    .industry-icon.green { background: linear-gradient(135deg, #22c55e, #10b981); }
    .industry-icon.coral { background: linear-gradient(135deg, hsl(var(--primary)), #f43f5e); }
    .industry-icon.orange { background: linear-gradient(135deg, #f97316, #f59e0b); }
    .industry-icon.violet { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
    .industry-icon.pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }

    .industry-name {
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .industry-description {
      color: hsl(var(--secondary-foreground) / 0.7);
    }

    /* ====================== */
    /* GLOBAL PRESENCE SECTION */
    /* ====================== */
    .global-section {
      padding: 6rem 0;
      background: hsl(var(--muted) / 0.3);
    }

    .globe-container {
      background: hsl(var(--card));
      border-radius: 1.5rem;
      padding: 2rem 2rem 2rem;
      box-shadow: var(--shadow-card);
      border: 1px solid hsl(var(--border));
      margin-bottom: 3rem;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .globe-container {
        padding: 3rem;
      }
    }

    .globe-countries {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .country-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .country-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      background: hsl(var(--primary));
      animation: pulseSlow 3s ease-in-out infinite;
    }

    .country-item:nth-child(2) .country-dot { animation-delay: 0.5s; }
    .country-item:nth-child(3) .country-dot { animation-delay: 1s; }
    .country-item:nth-child(4) .country-dot { animation-delay: 1.5s; }

    @keyframes pulseSlow {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .country-name {
      font-weight: 600;
    }

    .globe-visual {
      display: flex;
      justify-content: center;
    }

    .globe-circle {
      position: relative;
      width: 16rem;
      height: 16rem;
    }

    .globe-ring {
      position: absolute;
      border-radius: 50%;
      animation: pulseSlow 3s ease-in-out infinite;
    }

    .globe-ring-1 {
      inset: 0;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--primary) / 0.05));
    }

    .globe-ring-2 {
      inset: 1rem;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.3), hsl(var(--primary) / 0.1));
    }

    .globe-ring-3 {
      inset: 2rem;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.4), hsl(var(--primary) / 0.2));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .globe-ring-3 svg {
      width: 6rem;
      height: 6rem;
      color: hsl(var(--primary));
    }

    .globe-orbits {
      position: absolute;
      inset: 0;
    }

    .orbit-dot {
      position: absolute;
      width: 1rem;
      height: 1rem;
      border-radius: 50%;
      background: hsl(var(--primary));
      top: 50%;
      left: 50%;
      animation: orbit 4s ease-in-out infinite;
    }

    .orbit-dot:nth-child(1) { animation-delay: 0s; }
    .orbit-dot:nth-child(2) { animation-delay: 0.5s; }
    .orbit-dot:nth-child(3) { animation-delay: 1s; }
    .orbit-dot:nth-child(4) { animation-delay: 1.5s; }

    @keyframes orbit {
      0%, 100% { 
        transform: translate(-50%, -50%) translateX(0) translateY(0);
      }
      25% {
        transform: translate(-50%, -50%) translateX(100px) translateY(0);
      }
      50% {
        transform: translate(-50%, -50%) translateX(0) translateY(100px);
      }
      75% {
        transform: translate(-50%, -50%) translateX(-100px) translateY(0);
      }
    }

    /* Office Cards */
    .offices-grid {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .offices-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .offices-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .office-card {
      background: hsl(var(--card));
      border-radius: 0.75rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
      border: 1px solid hsl(var(--border));
      transition: all 0.3s ease;
    }

    .office-card:hover {
      border-color: hsl(var(--primary) / 0.3);
    }

    .office-content {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .office-icon {
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.5rem;
      background: hsl(var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .office-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--primary));
    }

    .office-region {
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.125rem;
      color: hsl(var(--primary));
      margin-bottom: 0.25rem;
    }

    .office-company {
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(var(--foreground));
      margin-bottom: 0.5rem;
    }

    .office-address {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 0.75rem;
    }

    .office-phone {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    .office-phone svg {
      width: 1rem;
      height: 1rem;
    }

    /* ====================== */
    /* CTA SECTION */
    /* ====================== */
    .cta-section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-bg {
      position: absolute;
      inset: 0;
      background: var(--gradient-primary);
      opacity: 0.95;
    }

    .cta-decorations {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .cta-blob {
      position: absolute;
      width: 20rem;
      height: 20rem;
      border-radius: 50%;
      background: white;
      opacity: 0.1;
      filter: blur(64px);
    }

    .cta-blob-1 {
      top: -10rem;
      right: -10rem;
    }

    .cta-blob-2 {
      bottom: -10rem;
      left: -10rem;
    }

    .cta-content {
      position: relative;
      z-index: 10;
      text-align: center;
      max-width: 48rem;
      margin: 0 auto;
    }

    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: hsl(0 0% 100% / 0.1);
      backdrop-filter: blur(4px);
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      margin-bottom: 2rem;
    }

    .cta-badge svg {
      width: 1rem;
      height: 1rem;
      color: white;
    }

    .cta-badge span {
      font-size: 0.875rem;
      font-weight: 500;
      color: white;
    }

    .cta-title {
      font-size: 1.875rem;
      color: white;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .cta-title {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .cta-title {
        font-size: 3rem;
      }
    }

    .cta-description {
      font-size: 1.125rem;
      color: hsl(0 0% 100% / 0.8);
      margin-bottom: 2.5rem;
    }

    @media (min-width: 768px) {
      .cta-description {
        font-size: 1.25rem;
      }
    }

    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
    }

    @media (min-width: 640px) {
      .cta-buttons {
        flex-direction: row;
      }
    }

    /* ====================== */
    /* FOOTER */
    /* ====================== */
    .footer {
      background: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
    }

    .footer-content {
      padding: 4rem 0;
    }

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

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 2fr repeat(4, 1fr);
      }
    }

    .footer-brand {
      grid-column: span 2;
    }

    @media (min-width: 1024px) {
      .footer-brand {
        grid-column: span 1;
      }
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .footer-logo svg {
      height: 2rem;
      width: auto;
    }

    .footer-logo span {
      font-size: 1.25rem;
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
    }

    .footer-logo .highlight {
      color: hsl(var(--primary));
    }

    .footer-tagline {
      color: hsl(var(--secondary-foreground) / 0.7);
      margin-bottom: 1.5rem;
      max-width: 22rem;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: hsl(var(--secondary-foreground) / 0.7);
      transition: color 0.2s ease;
    }

    .footer-contact a:hover {
      color: hsl(var(--primary));
    }

    .footer-contact svg {
      width: 1rem;
      height: 1rem;
    }

    .footer-column h4 {
      font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-column ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-column a {
      font-size: 0.875rem;
      color: hsl(var(--secondary-foreground) / 0.7);
      transition: color 0.2s ease;
    }

    .footer-column a:hover {
      color: hsl(var(--primary));
    }

    /* Footer Bottom */
    .footer-bottom {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid hsl(var(--secondary-foreground) / 0.1);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .footer-copyright {
      font-size: 0.875rem;
      color: hsl(var(--secondary-foreground) / 0.5);
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .footer-social a {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: hsl(var(--secondary-foreground) / 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .footer-social a:hover {
      background: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
    }

    .footer-social svg {
      width: 1.25rem;
      height: 1.25rem;
    }

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

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Intersection Observer Animation Classes */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .animate-on-scroll-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .animate-on-scroll-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .animate-on-scroll-scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Stagger animation delays */
    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }
    .stagger-5 { transition-delay: 0.5s; }
    .stagger-6 { transition-delay: 0.6s; }
    .stagger-7 { transition-delay: 0.7s; }
    .stagger-8 { transition-delay: 0.8s; }
    .stagger-9 { transition-delay: 0.9s; }
    .stagger-10 { transition-delay: 1s; }