/* ============================================
   CT CORPORATION BUSINESS — BLACK & WHITE PREMIUM
   ============================================ */
   :root {
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-card: #111111;
    --black-elevated: #1a1a1a;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --white-muted: #a0a0a0;
    --white-dim: #6b6b6b;
    --border-light: rgba(255, 255, 255, 0.10);
    --border-medium: rgba(255, 255, 255, 0.15);
    --border-strong: rgba(255, 255, 255, 0.25);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  }
  
  /* ============================================
     RESET & BASE
     ============================================ */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  html, body {
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
  }
  
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  
  /* ============================================
     TYPOGRAPHY
     ============================================ */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
  }
  
  h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
  h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
  h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
  h4 { font-size: 1.1rem; }
  
  .gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--white-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .section-header h2 { margin-bottom: 16px; }
  .section-header p { color: var(--white-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
  .section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white-dim);
    margin-bottom: 16px;
  }
  
  /* ============================================
     CONTAINER
     ============================================ */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* ============================================
     HEADER & NAVIGATION
     ============================================ */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
  }
  .navbar { padding: 16px 0; }
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
  }
  .nav-brand .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 800;
    font-size: 1rem;
  }
  .nav-menu { display: flex; align-items: center; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-links a {
    color: var(--white-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
  }
  .nav-links a:hover::after { width: 100%; }
  .dropdown { position: relative; }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--white-muted);
  }
  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white);
  }
  .dropdown-divider { height: 1px; background: var(--border-light); margin: 8px 0; }
  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
  }
  
  /* ============================================
     BUTTONS
     ============================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--white);
    color: var(--black);
  }
  .btn-primary:hover {
    background: var(--white-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-medium);
  }
  .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
  }
  .btn-success { background: var(--success); color: var(--white); }
  .btn-success:hover { opacity: 0.9; transform: translateY(-2px); }
  .btn-danger { background: var(--danger); color: var(--white); }
  .btn-lg { padding: 16px 36px; font-size: 1rem; }
  .btn-sm { padding: 8px 16px; font-size: 0.8rem; }
  .btn-block { width: 100%; }
  .btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
  
  /* ============================================
     HERO SECTION
     ============================================ */
  .hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--white-muted);
    margin-bottom: 24px;
  }
  .hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
  }
  .hero-content h1 { margin-bottom: 20px; }
  .hero-subtitle {
    font-size: 1.15rem;
    color: var(--white-muted);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.6;
  }
  .hero-cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
  .hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-dim);
    font-size: 0.85rem;
  }
  .hero-trust-item i { color: var(--white); }
  .hero-visual { position: relative; }
  .hero-card {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
  }
  .hero-card-stat { font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
  .hero-card-label { color: var(--white-muted); margin-bottom: 20px; }
  .hero-card-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--white-muted);
  }
  .pulse {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  }
  
  /* ============================================
     SERVICES / FEATURES SECTION
     ============================================ */
  .services {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .service-card {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    text-align: center;
  }
  .service-card:hover {
    border-color: var(--white);
    transform: translateY(-4px);
  }
  .service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
  }
  .service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
  .service-card p { color: var(--white-muted); font-size: 0.9rem; }
  
  /* ============================================
     PLANS / PRICING SECTION
     ============================================ */
  .pricing {
    padding: 100px 0;
    background: var(--black-soft);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 50px;
    background: var(--black-card);
    border-radius: 100px;
    padding: 4px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-tab {
    flex: 1;
    padding: 12px 24px;
    border-radius: 100px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white-muted);
    background: transparent;
    border: none;
  }
  .pricing-tab.active {
    background: var(--white);
    color: var(--black);
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pricing-card {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
  }
  .pricing-card:hover { border-color: var(--white); }
  .pricing-card.featured {
    border: 2px solid var(--white);
    transform: scale(1.03);
  }
  .pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .pricing-name { font-size: 1.2rem; margin-bottom: 16px; }
  .pricing-price { font-size: 3rem; font-weight: 800; margin-bottom: 4px; }
  .pricing-price span { font-size: 1rem; font-weight: 400; color: var(--white-dim); }
  .pricing-time { color: var(--white-muted); font-size: 0.85rem; margin-bottom: 24px; }
  .pricing-features { margin-bottom: 28px; }
  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--white-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
  }
  .pricing-features li:last-child { border-bottom: none; }
  .pricing-features i { color: var(--white); font-size: 0.7rem; }
  
  /* ============================================
     FAQ SECTION
     ============================================ */
  .faq {
    padding: 100px 0;
  }
  .faq-grid {
    max-width: 760px;
    margin: 0 auto;
  }
  .faq-item {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
  }
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
  }
  .faq-question:hover { background: rgba(255,255,255,0.02); }
  .faq-question i { transition: var(--transition); font-size: 0.8rem; color: var(--white-dim); }
  .faq-item.active .faq-question i { transform: rotate(45deg); }
  .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 24px; }
  .faq-answer p { color: var(--white-muted); font-size: 0.95rem; }
  
  /* ============================================
     TESTIMONIALS
     ============================================ */
  .testimonials {
    padding: 100px 0;
    background: var(--black-soft);
    border-top: 1px solid var(--border-light);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
  }
  .testimonial-stars { color: var(--white); margin-bottom: 16px; letter-spacing: 2px; }
  .testimonial-text { color: var(--white-muted); margin-bottom: 20px; font-style: italic; }
  .testimonial-author { font-weight: 600; }
  .testimonial-role { color: var(--white-dim); font-size: 0.85rem; }
  
  /* ============================================
     CTA SECTION
     ============================================ */
  .cta-section {
    padding: 100px 0;
    text-align: center;
  }
  .cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
  }
  .cta-box h2 { margin-bottom: 16px; }
  .cta-box p { color: var(--white-muted); margin-bottom: 32px; font-size: 1.1rem; }
  
  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background: var(--black-soft);
    border-top: 1px solid var(--border-light);
    padding: 60px 0 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-col h4 { margin-bottom: 20px; font-size: 1rem; }
  .footer-col p { color: var(--white-dim); margin-bottom: 20px; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul a { color: var(--white-dim); transition: var(--transition); }
  .footer-col ul a:hover { color: var(--white); }
  .social-links { display: flex; gap: 12px; }
  .social-links a {
    width: 36px; height: 36px;
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .social-links a:hover { border-color: var(--white); background: var(--white); color: var(--black); }
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--white-dim);
    font-size: 0.85rem;
  }
  
  /* ============================================
     FORMS
     ============================================ */
  .form-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px;
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
  }
  .form-header { text-align: center; margin-bottom: 32px; }
  .form-header h2 { margin-bottom: 8px; }
  .form-header p { color: var(--white-muted); }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--white-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
  }
  .form-control:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
  }
  .form-control::placeholder { color: rgba(255,255,255,0.3); }
  select.form-control option { background: var(--black-card); color: var(--white); }
  .form-footer { text-align: center; margin-top: 20px; color: var(--white-muted); }
  .form-footer a { color: var(--white); text-decoration: underline; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  
  /* ============================================
     ALERTS
     ============================================ */
  .alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
  }
  .alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
  .alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #6ee7b7; }
  .alert-info { background: rgba(255,255,255,0.05); border: 1px solid var(--border-medium); color: var(--white-muted); }
  
  /* ============================================
     DASHBOARD
     ============================================ */
  .dashboard { padding: 30px 0 60px; min-height: calc(100vh - 80px); }
  .dashboard-grid { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
  .sidebar {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 100px;
  }
  .user-profile { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); margin-bottom: 20px; }
  .user-avatar {
    width: 72px; height: 72px;
    margin: 0 auto 12px;
    background: var(--black-elevated);
    border: 2px solid var(--border-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
  }
  .user-profile h4 { margin-bottom: 4px; }
  .user-profile p { color: var(--white-dim); font-size: 0.85rem; }
  .sidebar-nav li { margin-bottom: 6px; }
  .sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--white-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
  }
  .sidebar-nav a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
  .sidebar-nav li.active a { background: var(--white); color: var(--black); font-weight: 600; }
  .sidebar-nav i { width: 18px; text-align: center; }
  .content-area { min-width: 0; }
  .dashboard-header { margin-bottom: 30px; }
  .dashboard-header h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 6px; }
  .dashboard-header p { color: var(--white-muted); }
  .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 30px; }
  .stat-card {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px;
  }
  .stat-value { font-size: 2rem; font-weight: 700; margin-bottom: 4px; }
  .stat-label { color: var(--white-dim); font-size: 0.85rem; }
  
  /* ============================================
     WORKSPACE SWITCHER
     ============================================ */
  .workspace-switcher {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 8px;
    margin-bottom: 16px;
  }
  .workspace-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--white-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-bottom: 4px;
  }
  .workspace-btn:last-child { margin-bottom: 0; }
  .workspace-btn:hover { background: rgba(255,255,255,0.05); color: var(--white); }
  .workspace-btn.active { background: var(--white); color: var(--black); font-weight: 600; }
  .workspace-btn .dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 8px;
  }
  .dot-llc { background: var(--white); }
  .dot-trust { background: var(--white-dim); }
  
  /* ============================================
     TABLES
     ============================================ */
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table { width: 100%; border-collapse: collapse; }
  .data-table th {
    text-align: left;
    padding: 14px 16px;
    background: var(--black-elevated);
    color: var(--white-dim);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-light);
    white-space: nowrap;
  }
  .data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--white);
    font-size: 0.9rem;
  }
  .data-table tr:last-child td { border-bottom: none; }
  .data-table tr:hover td { background: rgba(255,255,255,0.01); }
  
  /* ============================================
     BADGES
     ============================================ */
  .badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .badge-pending { background: rgba(245,158,11,0.15); color: var(--warning); }
  .badge-approved { background: rgba(34,197,94,0.15); color: var(--success); }
  .badge-rejected { background: rgba(239,68,68,0.15); color: var(--danger); }
  .badge-active { background: rgba(255,255,255,0.1); color: var(--white); }
  .badge-incomplete { background: rgba(255,255,255,0.05); color: var(--white-dim); }
  
  /* ============================================
     MODAL
     ============================================ */
  .modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
  }
  .modal-box {
    background: var(--black-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-box h3 { margin-bottom: 20px; }
  .modal-actions { display: flex; gap: 12px; margin-top: 24px; justify-content: flex-end; }
  
  /* ============================================
     SERVICE SELECTION CARDS
     ============================================ */
  .service-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  .service-select-card {
    background: var(--black-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
  }
  .service-select-card:hover { border-color: var(--border-medium); }
  .service-select-card.selected { border-color: var(--white); background: rgba(255,255,255,0.03); }
  .service-select-card input[type="radio"] { display: none; }
  .service-select-icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  .service-select-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .service-select-card p { color: var(--white-dim); font-size: 0.85rem; }
  
  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: scale(1); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .sidebar { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; z-index: 9999; border-radius: 0; transition: left 0.3s; overflow-y: auto; }
    .sidebar.open { left: 0; }
  }
  
  @media (max-width: 768px) {
    .nav-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--black); padding: 20px; border-bottom: 1px solid var(--border-light); }
    .nav-menu.active { display: block; }
    .nav-links { flex-direction: column; gap: 16px; }
    .mobile-toggle { display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .service-select-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.5rem !important; }
  }