:root {
      --primary: #6366f1;
      --primary-dark: #4f46e5;
      --secondary: #10b981;
      --dark: #0f172a;
      --light: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-600: #475569;
      --gray-800: #1e293b;
      --accent: #f59e0b;
      --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
      --gradient-dark: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    }

    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: #e2e8f0;
      line-height: 1.6;
      overflow-x: hidden;
    }
    html { scroll-behavior: smooth; }

    /* === NAVBAR === */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      backdrop-filter: blur(12px);
      background: rgba(15,23,42,0.8);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s ease;
    }
    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: #cbd5e1;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: white; }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .nav-auth {
      color: #cbd5e1;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .nav-auth:hover { color: white; }
    .nav-register {
      background: rgba(99,102,241,0.15);
      color: var(--primary);
      padding: 0.5rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(99,102,241,0.3);
      font-weight: 600;
    }
    .nav-register:hover {
      background: var(--primary);
      color: white;
    }
    .nav-cta {
      background: var(--gradient);
      color: white;
      padding: 0.6rem 1.4rem;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s;
    }
    .nav-cta:hover { transform: translateY(-2px); }

    /* Mobile Toggle */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: #cbd5e1;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
    }
    .nav-mobile {
      display: none;
      flex-direction: column;
      background: rgba(15,23,42,0.98);
      backdrop-filter: blur(12px);
      position: absolute;
      top: 100%; left: 0; right: 0;
      padding: 1rem 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      z-index: 999;
    }
    .nav-mobile a {
      color: #cbd5e1;
      text-decoration: none;
      padding: 0.75rem 0;
      font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-cta-mobile {
      background: var(--gradient);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      font-weight: 600;
      text-align: center;
      margin-top: 1rem;
      display: block;
    }
    @media (max-width: 992px) {
      .nav-links, .nav-right { display: none; }
      .nav-toggle { display: block; }
      .nav-mobile.active { display: flex; }
    }
    .nav-toggle.active i::before { content: "\f00d"; }

    /* === HERO SECTION === */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 6rem 2rem 4rem;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: radial-gradient(circle at center, rgba(99,102,241,0.08) 0%, transparent 70%);
    }
    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .hero-left h1 {
      font-size: clamp(2.5rem, 8vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.2rem;
      background: linear-gradient(to right, #fff, #e0e7ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-highlight {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-left p {
      font-size: 1.15rem;
      color: #94a3b8;
      margin-bottom: 1.8rem;
      line-height: 1.7;
    }
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: var(--gradient);
      color: white;
      padding: 1rem 2rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(99,102,241,0.4);
    }
    .hero-cta:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(99,102,241,0.5);
    }
    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(16,185,129,0.15);
      color: #10b981;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(16,185,129,0.3);
    }

    /* 3D Right Panel */
    .hero-right {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2rem;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99,102,241,0.2);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .hero-right { order: -1; margin-bottom: 2rem; min-height: 380px; }
    }

    /* === SECTIONS === */
    .section-title {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 4rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Problem */
    #problem { padding: 8rem 0; background: var(--gray-800); }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    .problem-card {
      background: rgba(30,41,59,0.6);
      border: 1px solid rgba(148,163,184,0.2);
      border-radius: 1.5rem;
      padding: 2rem;
      transition: all 0.3s;
      backdrop-filter: blur(10px);
    }
    .problem-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .problem-card i {
      font-size: 2.5rem;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
    }

    /* Pathway */
    #pathway { padding: 6rem 0; background: var(--dark); }
    .phases-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      max-width: 1400px;
      margin: 0 auto;
    }
    .phase-item {
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 1.5rem;
      width: 100%;
      max-width: 360px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    .phase-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(99, 102, 241, 0.2);
    }
    .phase-header { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 1.5rem 0; }
    .phase-circle {
      width: 3.2rem; height: 3.2rem;
      background: var(--gradient); color: white;
      border-radius: 50%; display: flex;
      align-items: center; justify-content: center;
      font-weight: 700; font-size: 1.3rem;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }
    .phase-circle::before {
      content: ''; position: absolute; inset: -8px;
      border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,0.4) 0%, transparent 70%);
      z-index: -1; animation: pulse-glow 2s infinite;
    }
    @keyframes pulse-glow { 0%,100% { opacity:0.6; transform:scale(1); } 50% { opacity:1; transform:scale(1.15); } }
    .phase-badge { padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }
    .badge-free { background: rgba(16,185,129,0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.4); }
    .badge-premium { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.4); }
    .phase-body { padding: 1.5rem; padding-top: 1rem; }
    .phase-body h3 { font-size: 1.4rem; margin-bottom: 0.75rem; color: white; }
    .phase-body p { color: #94a3b8; font-size: 0.95rem; margin-bottom: 1rem; }
    .phase-list { list-style: none; }
    .phase-list li {
      display: flex; align-items: flex-start; gap: 0.6rem;
      color: #94a3b8; font-size: 0.9rem; margin-bottom: 0.6rem;
    }
    /* .phase-list li::before { content: "Checkmark"; color: #10b981; font-weight: bold; margin-right: 0.2rem; } */
    .phase-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #10b981;
  margin-right: 0.5rem;
}

    .phase-arrow { font-size: 1.8rem; color: #6366f1; opacity: 0.7; display: none; }
    @media (min-width: 992px) { .phases-wrapper { flex-wrap: nowrap; } .phase-arrow { display: block; } .phase-item { flex: 1; } }
    @media (max-width: 991px) {
      .phases-wrapper { flex-direction: column; gap: 2rem; }
      .phase-arrow { transform: rotate(90deg); display: block; margin: 0.5rem 0; }
      .phase-header { flex-direction: column; align-items: flex-start; text-align: left; }
      .phase-circle { margin-bottom: 0.5rem; }
    }

    /* Features */
    #features { padding: 8rem 0; background: var(--gray-800); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .feature-card {
      background: rgba(30,41,59,0.6);
      border-radius: 1.5rem;
      padding: 2rem;
      border: 1px solid rgba(148,163,184,0.15);
      transition: all 0.3s;
    }
    .feature-card:hover { border-color: var(--primary); transform: translateY(-8px); }
    .feature-icon {
      width: 4rem; height: 4rem;
      background: var(--gradient); border-radius: 1rem;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem; color: white; font-size: 1.8rem;
    }

    /* === TESTIMONIALS === */
    #testimonials {
      padding: 8rem 0;
      background: var(--gray-800);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .testimonial-card {
      background: rgba(30,41,59,0.8);
      border-radius: 1.5rem;
      padding: 2rem;
      border: 1px solid rgba(99,102,241,0.2);
      transition: transform 0.3s;
    }
    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    .testimonial-card p {
      font-style: italic;
      margin-bottom: 1rem;
      color: #e0e7ff;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .testimonial-author img {
      width: 50px; height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testimonial-author strong { color: white; }
    .testimonial-author span {
      color: #94a3b8;
      font-size: 0.9rem;
    }

    /* Pricing */
    #pricing { padding: 8rem 0; }
    .pricing-container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; text-align: center; }
    .price-highlight { font-size: 5rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 1rem 0; }
    .price-sub { color: #94a3b8; font-size: 1.1rem; margin-bottom: 2rem; }
    .includes-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 3rem 0;
      text-align: left;
    }
    .include-item {
      display: flex; align-items: center; gap: 1rem;
      background: rgba(99,102,241,0.1); padding: 1rem 1.5rem;
      border-radius: 1rem; border: 1px solid rgba(99,102,241,0.2);
    }
    .include-item i { color: var(--secondary); font-size: 1.4rem; }
    .pricing-cta {
      display: inline-flex;
      margin-top: 2rem;
    }

    /* FAQ */
    #faq { 
      padding: 8rem 0; 
      background: var(--gray-800); 
    }
    #faq .container { max-width: 1000px; }
    .faq-item {
      margin-bottom: 1.5rem; 
      background: rgba(30,41,59,0.6); 
      border-radius: 1rem; 
      padding: 1.5rem; 
      border: 1px solid rgba(99,102,241,0.2);
    }
    .faq-item summary {
      font-weight: 600; 
      cursor: pointer; 
      color: white;
      list-style: none;
      position: relative;
      padding-right: 1.5rem;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s;
    }
    .faq-item[open] summary::after {
      transform: translateY(-50%) rotate(180deg);
    }
    .faq-item p {
      margin-top: 1rem; 
      color: #94a3b8;
    }

    /* CTA */
    #cta {
      padding: 8rem 0;
      background: var(--gradient);
      color: white;
      text-align: center;
    }
    .cta-content { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
    .cta-content h2 { font-size: 3rem; margin-bottom: 1.5rem; }
    .cta-content p { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.9; }
    .cta-content .hero-cta {
      font-size: 1.3rem; 
      padding: 1.2rem 2.5rem;
    }
    .cta-content .cta-subtext {
      margin-top: 1.5rem; 
      opacity: 0.8; 
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    /* FOOTER */
    footer { background: rgba(15,23,42,0.95); border-top: 1px solid rgba(255,255,255,0.1); padding: 4rem 2rem 2rem; margin-top: 6rem; }
    .footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
    .footer-logo { font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }
    .footer-tagline { font-size: 0.95rem; color: #94a3b8; margin-bottom: 1.5rem; }
    .footer-links h4 { color: #e0e7ff; margin-bottom: 1rem; font-weight: 600; }
    .footer-links ul { list-style: none; }
    .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; display: block; margin-bottom: 0.6rem; transition: color 0.2s; }
    .footer-links a:hover { color: #fff; }
    .social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
    .social-icons a { color: #94a3b8; font-size: 1.3rem; transition: color 0.3s; }
    .social-icons a:hover { color: #fff; }
    .footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; color: #64748b; }
    .footer-bottom a { color: #10b981; text-decoration: none; }
    .footer-bottom a:hover { text-decoration: underline; }

    @media (max-width: 992px) { .footer-container { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 767px) {
      .footer-container { grid-template-columns: 1fr; text-align: center; }
      .social-icons { justify-content: center; }
      .dashboard { padding: 6rem 1rem 3rem; }
      .roles-grid { grid-template-columns: 1fr; }
      .phase-title { font-size: 1.5rem; }
    }

    /* Mobile Responsiveness */
    @media (max-width: 767px) {
      .container { padding: 0 1rem; }
      .nav-container { padding: 1rem; }
      .nav-mobile { padding: 1rem; }
      #hero { padding: 6rem 1rem 3rem; min-height: 80vh; }
      .hero-content { gap: 2rem; text-align: center; }
      .hero-left h1 { font-size: 2.2rem; }
      .hero-left p { font-size: 1rem; }
      .hero-cta { padding: 0.8rem 1.5rem; font-size: 1rem; }
      .hero-right { display: none; }
      #problem, #features, #testimonials, #pricing, #faq, #cta { padding: 4rem 0; }
      #pathway { padding: 4rem 0; }
      .phases-wrapper { padding: 0; }
      .section-title { font-size: 2.2rem; margin-bottom: 2.5rem; }
      .problem-card { padding: 1.5rem; }
      .pricing-container { padding: 0 1rem; }
      .price-highlight { font-size: 3.5rem; }
      .cta-content { padding: 0 1rem; }
      .cta-content h2 { font-size: 2.2rem; }
    }