:root {
        --orange: #e85d04;
        --orange-light: #f48c06;
        --orange-glow: rgba(232, 93, 4, 0.15);
        --slate-900: #0f172a;
        --slate-800: #1e293b;
        --slate-700: #334155;
        --slate-600: #475569;
        --slate-400: #94a3b8;
        --slate-200: #e2e8f0;
        --slate-100: #f1f5f9;
        --white: #ffffff;
      }

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

      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

      body {
        font-family: "IBM Plex Sans", sans-serif;
        background: var(--slate-900);
        color: var(--slate-200);
        line-height: 1.6;
        overflow-x: hidden;
        width: 100%;
        position: relative;
      }

      h1,
      h2,
      h3 {
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 600;
        line-height: 1.2;
      }

      /* Navigation */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 1.25rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(15, 23, 42, 0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .logo {
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo img {
        height: 40px;
        width: auto;
      }

      .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }

      .nav-links a {
        color: var(--slate-400);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s ease;
      }

      .nav-links a:hover {
        color: var(--white);
      }

      .nav-cta {
        background: var(--orange);
        color: var(--white) !important;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        transition: all 0.2s ease !important;
      }

      .nav-cta:hover {
        background: var(--orange-light) !important;
        transform: translateY(-1px);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8rem 2rem 4rem;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 60%;
        height: 150%;
        background: radial-gradient(
          ellipse at center,
          var(--orange-glow) 0%,
          transparent 60%
        );
        pointer-events: none;
        max-width: 100vw;
      }

      .hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--slate-700),
          transparent
        );
      }

      .hero-content {
        max-width: 900px;
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 1;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(232, 93, 4, 0.1);
        border: 1px solid rgba(232, 93, 4, 0.3);
        padding: 0.5rem 1rem;
        border-radius: 100px;
        font-size: 0.875rem;
        color: var(--orange-light);
        margin-bottom: 2rem;
        animation: fadeInUp 0.6s ease forwards;
      }

      .hero-badge::before {
        content: "";
        width: 8px;
        height: 8px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.6;
          transform: scale(1.2);
        }
      }

      .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        color: var(--white);
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.6s ease 0.1s forwards;
        opacity: 0;
      }

      .hero h1 span {
        color: var(--orange);
      }

      .hero p {
        font-size: 1.25rem;
        color: var(--slate-400);
        max-width: 650px;
        margin: 0 auto 2.5rem;
        animation: fadeInUp 0.6s ease 0.2s forwards;
        opacity: 0;
      }

      .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--orange);
        color: var(--white);
        padding: 1rem 2rem;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease 0.3s forwards;
        opacity: 0;
        box-shadow: 0 4px 24px rgba(232, 93, 4, 0.3);
      }

      .hero-cta:hover {
        background: var(--orange-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(232, 93, 4, 0.4);
      }

      .hero-cta svg {
        transition: transform 0.2s ease;
      }

      .hero-cta:hover svg {
        transform: translateX(4px);
      }

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

      /* Section Base */
      section {
        padding: 6rem 2rem;
        position: relative;
        overflow: hidden;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
      }

      .section-label {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--orange);
        margin-bottom: 1rem;
      }

      .section-title {
        font-size: clamp(2rem, 4vw, 2.75rem);
        color: var(--white);
        margin-bottom: 1.25rem;
      }

      .section-subtitle {
        font-size: 1.125rem;
        color: var(--slate-400);
        max-width: 600px;
      }

      /* Problem Section */
      .problem {
        background: var(--slate-800);
      }

      .problem::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--slate-700),
          transparent
        );
      }

      .problem-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
      }

      .problem-card {
        background: var(--slate-900);
        border: 1px solid var(--slate-700);
        border-radius: 16px;
        padding: 2rem;
        transition: all 0.3s ease;
        flex: 1 1 300px;
        max-width: 400px;
      }

      .problem-card:hover {
        border-color: var(--orange);
        transform: translateY(-4px);
      }

      .problem-icon {
        width: 56px;
        height: 56px;
        background: rgba(232, 93, 4, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
      }

      .problem-icon svg {
        width: 28px;
        height: 28px;
        color: var(--orange);
      }

      .problem-card h3 {
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 0.75rem;
      }

      .problem-card p {
        color: var(--slate-400);
        font-size: 0.95rem;
      }

      .stat-highlight {
        color: var(--orange);
        font-weight: 700;
        font-size: 1.1em;
      }

      /* Solution Section */
      .solution {
        background: var(--slate-900);
      }

      .solution-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-top: 3rem;
      }

      .solution-visual {
        background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
        border: 1px solid var(--slate-700);
        border-radius: 20px;
        padding: 2rem;
        position: relative;
        overflow: hidden;
      }

      .solution-visual::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, var(--orange-glow), transparent);
        pointer-events: none;
        max-width: 50%;
      }

      .dashboard-mockup {
        background: var(--slate-900);
        border-radius: 12px;
        padding: 1.5rem;
        border: 1px solid var(--slate-700);
      }

      .dashboard-header {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
      }

      .dashboard-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--slate-600);
      }

      .dashboard-dot:first-child {
        background: #ef4444;
      }
      .dashboard-dot:nth-child(2) {
        background: #eab308;
      }
      .dashboard-dot:nth-child(3) {
        background: #22c55e;
      }

      .dashboard-bar {
        height: 8px;
        background: var(--slate-700);
        border-radius: 4px;
        margin-bottom: 0.75rem;
        position: relative;
        overflow: hidden;
      }

      .dashboard-bar::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        background: var(--orange);
        border-radius: 4px;
      }

      .dashboard-bar:nth-child(2)::after {
        width: 85%;
      }
      .dashboard-bar:nth-child(3)::after {
        width: 62%;
      }
      .dashboard-bar:nth-child(4)::after {
        width: 94%;
      }
      .dashboard-bar:nth-child(5)::after {
        width: 71%;
      }

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

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

      .feature-number {
        width: 40px;
        height: 40px;
        background: rgba(232, 93, 4, 0.1);
        border: 1px solid var(--orange);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 700;
        color: var(--orange);
        flex-shrink: 0;
      }

      .feature-text h4 {
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 0.25rem;
      }

      .feature-text p {
        color: var(--slate-400);
        font-size: 0.95rem;
      }

      /* Why Us Section */
      .why-us {
        background: var(--slate-800);
      }

      .why-us::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--slate-700),
          transparent
        );
      }

      .trust-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
      }

      .trust-card {
        background: linear-gradient(
          135deg,
          var(--slate-900),
          rgba(30, 41, 59, 0.5)
        );
        border: 1px solid var(--slate-700);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        flex: 1 1 280px;
        max-width: 320px;
      }

      .trust-card:hover {
        border-color: rgba(232, 93, 4, 0.3);
      }

      .trust-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1.25rem;
        background: rgba(232, 93, 4, 0.1);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .trust-icon svg {
        width: 32px;
        height: 32px;
        color: var(--orange);
      }

      .trust-card h3 {
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 0.5rem;
      }

      .trust-card p {
        color: var(--slate-400);
        font-size: 0.9rem;
      }

      /* CTA Section */
      .cta {
        background: var(--slate-900);
        padding: 8rem 2rem;
        text-align: center;
        position: relative;
      }

      .cta::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          var(--orange-glow),
          transparent 60%
        );
        pointer-events: none;
      }

      .cta-content {
        position: relative;
        z-index: 1;
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
      }

      .cta h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--white);
        margin-bottom: 1rem;
      }

      .cta p {
        font-size: 1.2rem;
        color: var(--slate-400);
        margin-bottom: 2.5rem;
      }

      .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--orange);
        color: var(--white);
        padding: 1.25rem 2.5rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 24px rgba(232, 93, 4, 0.3);
      }

      .cta-button:hover {
        background: var(--orange-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(232, 93, 4, 0.4);
      }

      .cta-email {
        display: block;
        margin-top: 1.5rem;
        color: var(--slate-400);
        font-size: 0.95rem;
      }

      .cta-email a {
        color: var(--orange-light);
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .cta-email a:hover {
        color: var(--orange);
      }

      /* Footer */
      footer {
        background: var(--slate-900);
        border-top: 1px solid var(--slate-800);
        padding: 3rem 2rem;
      }

      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .footer-logo {
        display: flex;
        align-items: center;
      }

      .footer-logo img {
        height: 36px;
        width: auto;
      }

      .footer-info {
        text-align: right;
        color: var(--slate-400);
        font-size: 0.875rem;
      }

      .footer-info p {
        margin-bottom: 0.25rem;
      }

      /* Mobile Menu Toggle */
      .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
      }

      .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        margin: 5px 0;
        transition: all 0.3s ease;
      }

      /* Responsive */
      @media (max-width: 900px) {
        .solution-content {
          grid-template-columns: 1fr;
          gap: 3rem;
        }

        .solution-visual {
          order: -1;
        }
      }

      @media (max-width: 768px) {
        nav {
          padding: 1rem 1.5rem;
        }

        .nav-links {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: var(--slate-900);
          flex-direction: column;
          padding: 1.5rem;
          gap: 1rem;
          border-bottom: 1px solid var(--slate-700);
        }

        .nav-links.active {
          display: flex;
        }

        .mobile-menu-toggle {
          display: block;
        }

        .hero {
          padding: 7rem 1.5rem 3rem;
        }

        .hero p {
          font-size: 1.1rem;
        }

        section {
          padding: 4rem 1.5rem;
        }

        .footer-content {
          flex-direction: column;
          text-align: center;
        }

        .footer-info {
          text-align: center;
        }
      }