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

    :root {
      --bg-primary: #0b0f1a;
      --bg-secondary: #111622;
      --bg-card: #141b28;
      --bg-elevated: #1a2333;
      --border-light: rgba(66, 153, 225, 0.15);
      --primary: #3b82f6;
      --primary-hover: #2563eb;
      --primary-glow: rgba(59, 130, 246, 0.25);
      --text-primary: #ffffff;
      --text-secondary: #b0c4de;
      --text-muted: #7e95b0;
      --accent-cyan: #00e5ff;
      --danger: #f97316;
      --success: #10b981;
      --transition: all 0.2s ease;
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
    }

    body {
      background-color: var(--bg-primary);
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1.1;
      background: linear-gradient(135deg, #ffffff 0%, #8bbfff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1.5rem;
    }

    h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      margin-bottom: 1rem;
      color: white;
    }
    
    input,select,button,fieldset,textarea{
        flex: 1;
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 0.5rem;
        background: #0f172a;
        color: white;
        border: 1px solid #2d3a5e;
        font-size: 1rem;
    }
    
    form{
        background: var(--bg-elevated);
        padding: 2rem;
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        border-radius: 0.5rem;
    }
    
    .section-subhead {
      color: var(--text-secondary);
      font-size: 1.125rem;
      max-width: 700px;
      margin: 0 auto 3rem auto;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    section {
      padding: 5rem 0;
      border-bottom: 1px solid var(--border-light);
    }

    .card {
      background: var(--bg-card);
      backdrop-filter: blur(2px);
      border-radius: var(--radius-md);
      padding: 2rem;
      border: 1px solid rgba(59,130,246,0.2);
      transition: var(--transition);
      height: 100%;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: var(--primary);
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.2);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.9rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
      border: none;
      font-size: 1rem;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 12px rgba(59,130,246,0.3);
    }

    .btn-primary:hover {
      background: var(--primary-hover);
      transform: scale(1.02);
      box-shadow: 0 6px 18px rgba(59,130,246,0.5);
    }

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

    .btn-outline:hover {
      background: rgba(59,130,246,0.1);
      border-color: var(--accent-cyan);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #fff, #3b82f6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }

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

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

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

    .hero {
      text-align: center;
      padding: 3rem 0 4rem 0;
    }

    .badge {
      display: inline-block;
      background: rgba(59,130,246,0.15);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 2rem;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(59,130,246,0.3);
    }

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

    .icon-lg {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }

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

    .step {
      flex: 1;
      min-width: 180px;
      text-align: center;
      padding: 1.5rem;
      background: var(--bg-elevated);
      border-radius: var(--radius-md);
      border-bottom: 3px solid var(--primary);
    }

    .step-number {
      width: 48px;
      height: 48px;
      background: var(--primary);
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.5rem;
      margin: 0 auto 1rem auto;
      box-shadow: 0 0 10px var(--primary-glow);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .price-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      padding: 2rem;
      border: 1px solid rgba(59,130,246,0.2);
      transition: all 0.25s;
    }

    .price-card.featured {
      border: 1px solid var(--primary);
      box-shadow: 0 0 20px rgba(59,130,246,0.2);
      background: linear-gradient(145deg, #141b28, #111622);
    }

    .price {
      font-size: 2.8rem;
      font-weight: 800;
      color: white;
      margin: 1rem 0;
    }

    .price small {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-muted);
    }

    hr {
      border-color: var(--border-light);
      margin: 1rem 0;
    }

    .cta-section {
      background: radial-gradient(circle at 10% 30%, #0f172a, #030614);
      text-align: center;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
    }

    footer {
      padding: 3rem 0;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.9rem;
      border-top: 1px solid var(--border-light);
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 1.5rem;
      }
      .navbar {
        flex-direction: column;
      }
      .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .btn {
        padding: 0.7rem 1.3rem;
      }
    }

    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(15px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .animate {
      animation: fadeUp 0.5s ease forwards;
    }
