:root {
        --primary: #6c63ff;
        --secondary: #00f2fe;
        --accent: #ff3366;
        --dark: #0a0a0f;
        --dark-gray: #1a1a24;
        --light-gray: #8a8a9e;
        --success: #4CAF50;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont,
          sans-serif;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--dark);
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
      }

      .navbar {
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.4rem;
        background: rgba(18, 18, 18, 0.8);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: fixed;
        width: 95%;
        max-width: 1200px;
        z-index: 1000;
        border-radius: 16px;
        left: 50%;
        transform: translateX(-50%);
        top: 1rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      }

      .logo {
        display: block;
        text-decoration: none;
        color: white;
        font-weight: bold;
        font-size: 1.5rem;
      }

      .logo-image {
        height: 32px;
        width: auto;
      }

      .nav-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
      }

      .nav-links {
        display: flex;
        gap: 2rem;
      }

      .nav-links a {
        color: var(--light-gray);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
      }

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

      .nav-links a.active {
        text-decoration: underline;
        color: white;
      }

      .social-links {
        display: flex;
        align-items: center;
        gap: 2rem;
      }

      .social-icon {
        color: var(--light-gray);
        font-size: 1.5rem;
        transition: color 0.3s ease;
      }

      .social-icon:hover {
        color: white;
      }

      .cta-button {
        display: inline-flex;
        align-items: center;
        padding: 0.75rem 1.5rem;
        background: #4169e1;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .cta-button:hover {
        background: #3154c4;
      }

      /* Download Dropdown */
      .download-dropdown {
        position: relative;
        display: inline-block;
      }

      .download-btn {
        cursor: pointer;
        border: none;
      }

      .download-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        padding-top: 10px;
        z-index: 1001;
      }

      .download-menu-inner {
        background: #1a1a24;
        border-radius: 12px;
        padding: 8px;
        min-width: 180px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .download-dropdown:hover .download-menu {
        display: block;
      }

      .download-menu a {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        transition: background 0.2s ease;
        font-weight: 500;
      }

      .download-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
      }

      /* Hero download buttons container */
      .hero-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      @media (max-width: 768px) {
        /* Hide navbar dropdown on mobile - use mobile modal instead */
        .download-dropdown {
          display: none;
        }

        /* Stack hero buttons vertically and center */
        .hero-buttons {
          flex-direction: column;
          align-items: center;
          gap: 12px;
        }

        .hero-buttons .cta-button {
          width: 200px;
          justify-content: center;
        }
      }

      .nav-button {
        display: none;
      }

      .toggle-icon {
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .hidden {
        display: none;
      }

      .mobile-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1a1a1a;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        z-index: 999;
      }

      .mobile-modal.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .mobile-modal a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        margin: 1rem 0;
        transition: transform 0.2s ease;
      }

      .mobile-modal a:hover {
        transform: scale(1.1);
      }

      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10%;
        position: relative;
        background: radial-gradient(
          circle at 50% 50%,
          var(--dark-gray) 0%,
          var(--dark) 100%
        );
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.5;
      }

      .hero-content {
        max-width: 600px;
        z-index: 1;
        flex: 1;
      }

      /* Fixed hero title */
      .hero-title {
        display: block !important;
        text-align: left;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        font-size: clamp(1.8rem, 4vw, 4.5rem) !important;
        line-height: 1.2 !important;
        background: linear-gradient(45deg, white, var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
      }

      /* Fixed hero description with better text handling */
      .hero-description {
        font-size: clamp(1rem, 2vw, 1.25rem);
        margin-bottom: 2.5rem;
        color: var(--light-gray);
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
      }

      .home-image {
        display: none;
      }

      .features {
        padding: 8rem 10%;
        background: var(--dark-gray);
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 4rem;
        background: linear-gradient(45deg, var(--secondary), var(--primary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
      }

      .feature-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 2.5rem;
        border-radius: 20px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
        will-change: transform;
      }

      .feature-card:hover {
        transform: translateY(-5px);
      }

      .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(45deg, var(--secondary), var(--primary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: white;
      }

      .feature-card p {
        color: var(--light-gray);
      }

      /* Stats Banner */
      .stats-banner {
        background: linear-gradient(135deg, #1a1a24 0%, #2d2d2d 100%);
        padding: 2rem 0;
        overflow: hidden;
        position: relative;
        min-height: 100px;
      }

      .stats-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        gap: 2rem;
      }

      .stat-item {
        text-align: center;
        position: relative;
      }

      .stat-value {
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--success) 0%, #81C784 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.25rem;
      }

      .stat-label {
        font-size: 0.9rem;
        color: var(--light-gray);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .stat-divider {
        width: 1px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
      }

      @media (max-width: 768px) {
        .stats-banner {
          padding: 1rem 0;
        }
        
        .stats-container {
          flex-direction: column;
          gap: 1.5rem;
        }

        .stat-divider {
          display: none;
        }

        .stat-value {
          font-size: 1.5rem;
        }
      }

      .stats-ticker {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: var(--dark);
        padding: 0.75rem 0;
        overflow: hidden;
        z-index: 999;
      }

      .ticker-content {
        display: flex;
        gap: 2rem;
        animation: ticker 20s linear infinite;
        white-space: nowrap;
      }

      .ticker-content span {
        display: inline-block;
        padding: 0 1rem;
      }

      @keyframes ticker {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      @media (max-width: 768px) {
        .hero {
          padding-top: 100px;
          text-align: center;
          min-height: 100vh;
        }

        .home-image {
          display: block;
          width: auto;
          height: 500px;
          max-width: 300px;
          margin-block: 2rem;
          margin-left: auto;
          margin-right: auto;
          border-radius: 16px;
          background-color: transparent;
        }

        .home-image:hover {
          transform: scale(1.05);
          transition: transform 0.3s ease;
        }

        .nav-links {
          display: none;
        }

        .nav-right .cta-button {
          display: none;
        }

        .mobile-menu .cta-button {
          text-align: center;
          margin-top: 1rem;
        }
      }

      .features:nth-of-type(2n) {
        background: var(--dark);
      }

      .header {
        padding-top: 7rem;
      }

      @media (max-width: 768px) {
        .navbar {
          width: calc(100% - 2rem);
          padding: 0.75rem 1rem;
          left: 50%;
          transform: translateX(-50%);
          top: 0.5rem;
        }

        .nav-content {
          gap: 1rem;
        }

        .nav-links {
          gap: 1rem;
        }

        .nav-links a {
          font-size: 0.9rem;
        }

        .cta-button {
          padding: 0.5rem 1rem;
          font-size: 0.9rem;
        }
        .social-link {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 1rem;
        }

        .nav-button {
          display: flex;
          background-color: transparent;
          cursor: pointer;
          color: white;
          border-radius: 16px;
          text-decoration: none;
          border: none;
        }

        .stats-ticker {
          padding: 0.5rem 0;
          font-size: 0.9rem;
        }

        .ticker-content {
          gap: 1rem;
        }

        .ticker-content span {
          padding: 0 0.5rem;
        }
      }

      @media (max-width: 480px) {
        .nav-links {
          display: none;
        }

        .navbar {
          padding: 0.75rem;
        }

        .logo-image {
          width: auto;
          height: 24px;
        }

        .social-links {
          display: none;
        }

        .stats-ticker {
          font-size: 0.8rem;
        }

        .ticker-content {
          animation: ticker 15s linear infinite;
        }
      }

      .support {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        background: var(--dark);
      }

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

      .support-form {
        background: rgba(31, 31, 31, 0.5);
        padding: 2rem;
        border-radius: 12px;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.75rem;
        color: var(--light-gray);
        font-size: 1rem;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        background: rgba(31, 31, 31, 0.8);
        color: white;
        font-size: 1rem;
      }

      .submit-button {
        background: #4169e1;
        color: white;
        border: none;
        padding: 1rem;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        width: 100%;
        margin-top: 1rem;
      }

      @media (max-width: 768px) {
        .support-container {
          padding: 1rem;
        }

        .support-form {
          padding: 1.5rem;
        }
      }

      .footer {
        background: var(--dark);
        padding: 2rem 10%;
        text-align: center;
      }

      .footer-content {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
      }

      .footer-links {
        display: flex;
        gap: 2rem;
      }

      .footer-links a {
        color: var(--gray);
        text-decoration: none;
        transition: color 0.3s ease;
      }

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

      .footer-bottom {
        border-top: 1px solid var(--dark-gray);
        padding-top: 2rem;
        padding-bottom: 2rem;
        color: var(--gray);
        font-size: 0.9rem;
      }

      @media (max-width: 768px) {
        .footer-links {
          flex-direction: column;
          gap: 1rem;
        }
      }

      .modal {
        display: none;
        position: fixed;
        z-index: 1001;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        overflow: auto;
      }

      .modal-content {
        background-color: var(--dark);
        margin: 5% auto;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 80%;
        max-width: 800px;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 12px;
        color: var(--light-gray);
      }

      .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .modal-header h2 {
        color: white;
        margin: 0;
      }

      .close-modal {
        color: var(--light-gray);
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
      }

      .close-modal:hover {
        color: white;
      }

      .modal-body {
        line-height: 1.6;
      }

      @media (max-width: 768px) {
        .modal-content {
          width: 95%;
          margin: 2% auto;
        }
      }

      .modal-body h3 {
        color: #00a3ff;
        margin-bottom: 1.5rem;
      }

      .modal-body h4 {
        color: white;
        margin: 2rem 0 1rem 0;
      }

      .modal-body h5 {
        color: #00a3ff;
        margin: 1.5rem 0 0.5rem 0;
      }

      .modal-body p {
        margin-bottom: 1rem;
        line-height: 1.6;
      }

      .terms-link {
        text-align: center;
        margin-top: 1.5rem;
      }

      .terms-link a {
        color: var(--light-gray);
        text-decoration: none;
        font-size: 0.9rem;
      }

      .terms-link a:hover {
        color: #00a3ff;
      }

      .dashboard-preview {
        padding: 4rem 10%;
        background: var(--dark);
        color: #fff;
        position: relative;
      }

      .dashboard-container {
        position: relative;
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .nav-arrow {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        padding: 1rem;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .nav-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .dashboard-grid {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
        opacity: 1;
        transition: opacity 0.3s ease;
      }

      .dashboard-card {
        background: rgba(31, 31, 31, 0.8);
        border-radius: 16px;
        padding: 2rem;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        will-change: transform;
      }

      .dashboard-card h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 500;
      }

      .metric-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .metric h4 {
        color: #888;
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0.75rem;
      }

      .metric .stat-value {
        color: white;
        font-size: 1.5rem;
        font-weight: 500;
      }

      .metric .stat-value.positive {
        color: #34c759;
      }

      .metric .stat-value.negative {
        color: #ff3b30;
      }

      .stat-value-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .trend {
        font-size: 0.9rem;
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
      }

      .trend.positive {
        color: #34c759;
        background: rgba(52, 199, 89, 0.1);
      }

      .trend.negative {
        color: #ff3b30;
        background: rgba(255, 59, 48, 0.1);
      }

      @media (max-width: 768px) {
        .dashboard-container {
          flex-direction: column;
          padding: 0 1rem;
        }

        .nav-arrow {
          display: none;
        }
        
        .dashboard-grid {
          grid-template-columns: 1fr;
          gap: 1rem;
          padding: 0;
          margin-top: 1rem;
        }
        
        .dashboard-card {
          padding: 1.5rem;
          min-height: auto;
        }
        
        .dashboard-card h3 {
          font-size: 1.2rem;
          margin-bottom: 1rem;
        }
        
        .stat-value.extra-large {
          font-size: 2.5rem !important;
        }
        
        .dashboard-preview {
          padding: 2rem 1rem;
        }
        
        .dashboard-card.metrics .metric-row {
          flex-direction: column;
          gap: 1rem;
        }
        
        .metric-row {
          grid-template-columns: 1fr;
        }

        .hero-content {
          text-align: center;
          margin: 0 auto;
          padding: 0 1rem;
        }
        
        .features-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          padding: 0 1rem;
        }
        
        .feature-card {
          padding: 1.5rem;
        }
        
        .section-title {
          font-size: 1.8rem;
          padding: 0 1rem;
        }
      }

      .dashboard-card.stats {
        background: #1a1a1a;
        padding: 2rem;
      }

      .dashboard-title {
        color: #666666;
      }

      .stat-value.large {
        font-size: 4rem;
        font-weight: 700;
        color: white;
        margin: 1.5rem 0;
      }

      .stat-value.extra-large {
        font-size: 4rem;
        font-weight: 700;
        color: white;
        margin: 1.5rem 0;
      }

      .chart-container {
        position: relative;
        height: 150px;
        margin-top: 2rem;
      }

      .chart-svg {
        position: absolute;
        bottom: 0;
      }

      .hero-screenshots {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        padding-top: 6rem;
        will-change: transform;
      }

      .screenshot-container {
        position: relative;
        height: 600px;
        width: 300px;
        will-change: transform;
      }

      .app-screenshot {
        border-radius: 24px;
        background-color: transparent;
        transition: all 0.3s ease;
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
      }

      .app-screenshot.main {
        height: 600px;
        width: auto;
        position: relative;
        z-index: 3;
        top: -50px;
      }

      .app-screenshot.secondary {
        height: 500px;
        width: auto;
        position: absolute;
        opacity: 0.7;
      }

      .app-screenshot.secondary.top {
        top: -80px;
        right: -160px;
        transform: rotate(15deg);
        z-index: 1;
      }

      .app-screenshot.secondary.bottom {
        bottom: 30px;
        left: -160px;
        transform: rotate(-15deg);
        z-index: 1;
      }

      @media (max-width: 768px) {
        .hero-screenshots {
          display: none;
        }
      }
      
      /* iPad specific styles */
      @media (min-width: 769px) and (max-width: 1024px) {
        .hero {
          padding: 0 5%;
        }
        
        .features-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
          padding: 0 2rem;
        }
        
        .dashboard-grid {
          grid-template-columns: 1fr;
          max-width: 800px;
          margin: 2rem auto;
        }
        
        .dashboard-preview {
          padding: 3rem 5%;
        }
        
        .hero-screenshots {
          max-width: 400px;
        }
        
        .app-screenshot.secondary {
          display: none;
        }
      }

      @media (max-width: 1200px) {
        .hero {
          min-height: 100vh;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          padding-top: 10rem;
          padding-bottom: 5rem;
          text-align: center;
        }
        .hero-screenshots:hover {
          transform: scale(1.05);
          transition: transform 0.3s ease;
        }
      }

      /* Critical fix for MacBook 14" at 80% - ~1120px */
      @media (min-width: 1050px) and (max-width: 1150px) {
        .hero-title span {
          display: inline-block !important;
        }
        .hero-description {
          font-size: 1.1rem;
          max-width: 560px;
          padding-right: 20px;
        }
        .hero-content {
          max-width: 650px;
        }
      }
      
      /* Intermediate screen sizes */
      @media (min-width: 1001px) and (max-width: 1200px) {
        .hero-description {
          font-size: 1.15rem;
          max-width: 580px;
        }
        .hero-content {
          max-width: 680px;
        }
      }

      /* Tablets and small laptops */
      @media (min-width: 901px) and (max-width: 1000px) {
        .hero-description {
          max-width: 500px;
          margin: 0 auto;
        }
        .hero-content {
          max-width: 650px;
        }
      }
      
      /* Small tablets */
      @media (min-width: 769px) and (max-width: 900px) {
        .hero-content {
          max-width: 550px;
          text-align: center;
        }
      }

      .stat-highlight {
        color: var(--success);
        font-weight: 700;
      }

      .highlight-text {
        background: linear-gradient(45deg, var(--success), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        white-space: nowrap;
      }

      /* About Section */
      .about-section {
        padding: 4rem 10%;
        background: var(--dark);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
      }

      .about-container {
        max-width: 1000px;
        margin: 0 auto;
      }

      .about-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        background: linear-gradient(45deg, var(--secondary), var(--primary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
      }

      .about-text p {
        color: var(--light-gray);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
      }

      .about-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }

      .about-stat-card {
        background: rgba(255, 255, 255, 0.03);
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
      }

      .about-stat-card .value {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--success);
        margin-bottom: 0.5rem;
      }

      .about-stat-card .label {
        color: var(--light-gray);
        font-size: 0.9rem;
      }

      @media (max-width: 768px) {
        .about-content {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .about-section {
          padding: 3rem 1.5rem;
        }

        .about-stats-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

      .about-content-centered {
        display: block;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
      }

      .about-content-centered .about-text p {
        text-align: left;
      }

      /* Latest Features - Timeline Style */
      .timeline-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        position: relative;
      }

      .timeline-card {
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(0, 242, 254, 0.05) 100%);
        padding: 2rem;
        border-radius: 20px;
        border: 1px solid rgba(108, 99, 255, 0.3);
        position: relative;
        transition: all 0.3s ease;
      }

      .timeline-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 20px 20px 0 0;
      }

      .timeline-card:hover {
        transform: translateY(-5px);
        border-color: var(--secondary);
        box-shadow: 0 10px 40px rgba(0, 242, 254, 0.15);
      }

      .timeline-card .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
      }

      .timeline-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        color: white;
      }

      .timeline-card p {
        color: var(--light-gray);
        font-size: 0.95rem;
        line-height: 1.6;
      }

      /* How It Works - Step Style */
      .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        counter-reset: step-counter;
      }

      .step-card {
        background: rgba(255, 255, 255, 0.02);
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
        text-align: center;
        transition: all 0.3s ease;
      }

      .step-card::before {
        counter-increment: step-counter;
        content: counter(step-counter);
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, var(--secondary), var(--primary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.9rem;
        color: white;
        line-height: 30px;
      }

      .step-card:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-3px);
      }

      .step-card .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
      }

      .step-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: white;
      }

      .step-card p {
        color: var(--light-gray);
        font-size: 0.9rem;
        line-height: 1.5;
      }

      @media (max-width: 768px) {
        .steps-grid {
          grid-template-columns: 1fr;
        }

        .timeline-grid {
          grid-template-columns: 1fr;
        }
      }

      /* New Dashboard Showcase */
      .dashboard-showcase {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
      }

      .dashboard-main-card {
        background: linear-gradient(145deg, #1a1a24 0%, #252532 100%);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }

      .dashboard-header {
        margin-bottom: 1.5rem;
      }

      .dashboard-badge {
        background: linear-gradient(90deg, var(--success), #81C784);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .dashboard-header h3 {
        color: white;
        font-size: 1.5rem;
        margin-top: 1rem;
        font-weight: 600;
      }

      .dashboard-stats-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1.5rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .dash-stat {
        text-align: center;
      }

      .dash-stat-value {
        display: block;
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
      }

      .dash-stat-value.positive {
        color: var(--success);
      }

      .dash-stat-label {
        display: block;
        font-size: 0.85rem;
        color: var(--light-gray);
        margin-top: 0.25rem;
      }

      .dashboard-main-card .chart-container {
        height: 120px;
        margin-top: 1rem;
      }

      .dashboard-side-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .side-stat-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 1.25rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s ease;
      }

      .side-stat-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.1);
      }

      .side-stat-icon {
        font-size: 1.8rem;
      }

      .side-stat-content {
        display: flex;
        flex-direction: column;
      }

      .side-stat-value {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
      }

      .side-stat-label {
        font-size: 0.8rem;
        color: var(--light-gray);
      }

      @media (max-width: 768px) {
        .dashboard-showcase {
          grid-template-columns: 1fr;
        }

        .dashboard-side-stats {
          flex-direction: row;
          flex-wrap: wrap;
        }

        .side-stat-card {
          flex: 1;
          min-width: 140px;
        }

        .dashboard-stats-row {
          flex-wrap: wrap;
          gap: 1rem;
        }

        .dash-stat {
          flex: 1;
          min-width: 80px;
        }

        .dash-stat-value {
          font-size: 1.4rem;
        }
      }