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

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: #fff;
      color: #000;
      overflow-x: hidden;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 48px;
    }

    /* Minimal nav */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 24px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      border-bottom: 1px solid #e5e7eb;
    }

    .logo {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-link {
      font-size: 15px;
      font-weight: 500;
      color: #000;
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-link:hover {
      color: #3b82f6;
    }

    .dropdown {
      position: relative;
    }
    
    .dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 20px;
      min-width: 500px;
      display: none;
      margin-top: 0;
      padding-top: 24px;
      z-index: 1000;
    }
    
    .dropdown:hover .dropdown-menu {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    
    .dropdown-menu:hover {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    
    .dropdown-category {
      margin-bottom: 16px;
    }
    
    .dropdown-category-title {
      font-size: 12px;
      font-weight: 700;
      color: #3b82f6;
      letter-spacing: 1px;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    
    .dropdown-item {
      padding: 10px 12px;
      border-radius: 8px;
      transition: all 0.2s;
      cursor: pointer;
      margin-bottom: 8px;
      text-decoration: none;
      display: block;
      color: inherit;
    }
    
    .dropdown-item:hover {
      background: #f0f9ff;
    }
    
    .dropdown-item-name {
      font-size: 15px;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 4px;
    }
    
    .dropdown-item-desc {
      font-size: 13px;
      color: #64748b;
    }

    .nav-btn {
      padding: 12px 32px;
      background: #3b82f6;
      color: #fff;
      border: none;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .nav-btn:hover {
      background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    }

    /* Simplification Section */
    .simplification {
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      padding: 120px 48px;
    }

    .simplification-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .simplification-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .simplification-header h2 {
      font-size: 64px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -2px;
      color: #0f172a;
    }

    .simplification-content {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 60px;
      align-items: center;
    }

    .complexity-label,
    .simple-label {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 32px;
      text-align: center;
    }

    .complexity-label {
      color: #64748b;
    }

    .simple-label {
      color: #3b82f6;
    }

    .complexity-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .complexity-item {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      font-size: 15px;
      font-weight: 600;
      color: #475569;
      border: 2px solid #e2e8f0;
      animation: floatItem 3s ease-in-out infinite;
    }

    .complexity-item:nth-child(1) { animation-delay: 0s; }
    .complexity-item:nth-child(2) { animation-delay: 0.5s; }
    .complexity-item:nth-child(3) { animation-delay: 1s; }
    .complexity-item:nth-child(4) { animation-delay: 1.5s; }
    .complexity-item:nth-child(5) { animation-delay: 2s; }
    .complexity-item:nth-child(6) { animation-delay: 2.5s; }

    @keyframes floatItem {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .transform-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .arrow-circle {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
      animation: pulse 2s ease-in-out infinite;
    }

    .simple-steps {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .simple-step-item {
      background: #fff;
      padding: 24px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 20px;
      border: 3px solid #3b82f6;
      box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
      transition: all 0.3s ease;
      animation: slideInRight 0.6s ease-out forwards;
      opacity: 0;
    }

    .simple-step-item:nth-child(1) { animation-delay: 0.2s; }
    .simple-step-item:nth-child(2) { animation-delay: 0.4s; }
    .simple-step-item:nth-child(3) { animation-delay: 0.6s; }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .simple-step-item:hover {
      transform: translateX(-8px);
      box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
    }

    .step-circle {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

    .step-info {
      flex: 1;
    }

    .step-title {
      font-size: 20px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 4px;
    }

    .step-desc {
      font-size: 14px;
      color: #64748b;
    }

    /* Hero with massive text */
    .hero {
      min-height: 100vh;
      padding: 120px 48px 80px;
      display: flex;
      align-items: center;
      position: relative;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: transparent;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      overflow: visible;
    }

    .hero-visual {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .services-display {
      display: flex;
      gap: 80px;
      width: 100%;
      max-width: 600px;
    }

    .service-group {
      display: flex;
      flex-direction: column;
      gap: 18px;
      opacity: 0;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .service-group:first-child {
      animation-delay: 0.2s;
    }

    .service-group:last-child {
      animation-delay: 0.4s;
    }

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

    .group-title {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: #3b82f6;
      margin-bottom: 8px;
    }

    .service-name {
      font-size: 17px;
      font-weight: 400;
      color: #64748b;
      letter-spacing: -0.3px;
      line-height: 1.6;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .service-name:hover {
      color: #3b82f6;
      transform: translateX(6px);
    }

    @keyframes highlight {
      0%, 100% { 
        color: #64748b;
        transform: scale(1);
      }
      10%, 20% { 
        color: #3b82f6;
        transform: scale(1.05);
        font-weight: 600;
      }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0); }
      50% { transform: translateY(-12px) translateX(6px); }
    }

    @keyframes rotateWheel {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @keyframes slideCarousel {
      0% { transform: translateX(0) translateY(-50%); }
      100% { transform: translateX(-50%) translateY(-50%); }
    }

    @keyframes orbit {
      from { transform: translate(-50%, -50%) rotate(0deg) translateY(-180px) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg) translateY(-180px) rotate(-360deg); }
    }

    .radial-service {
      background: rgba(255, 255, 255, 0.95);
      padding: 16px 24px;
      border-radius: 50px;
      border: 2px solid #3b82f6;
      box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
      white-space: nowrap;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .radial-service:hover {
      transform: translate(-50%, -50%) scale(1.2) !important;
      box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
      z-index: 20;
      animation: none;
    }

    .radial-service-purple {
      border-color: #8b5cf6;
      box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    }

    .radial-service-purple:hover {
      box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    }

    @keyframes bounceHint {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-8px); }
    }

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

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

    .service-card:hover > div:first-child {
      color: #3b82f6;
    }

    .scroll-container:hover {
      animation-play-state: paused;
    }

    @keyframes scrollDiagonal {
      0% { transform: translate(0, 0); }
      100% { transform: translate(-400px, -400px); }
    }

    @keyframes scrollUp {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    @keyframes typewriter {
      to { width: 100%; }
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: translateX(-50%) scale(0);
      }
      to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
      }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    @keyframes slideInStagger {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes rotateCube {
      0%, 100% { transform: rotateY(-15deg) rotateX(10deg); }
      50% { transform: rotateY(15deg) rotateX(10deg); }
    }

    @keyframes rotateCubeReverse {
      0%, 100% { transform: rotateY(15deg) rotateX(10deg); }
      50% { transform: rotateY(-15deg) rotateX(10deg); }
    }

    .expand-card:hover {
      width: 380px !important;
      background: #f8f9fa !important;
    }

    .expand-card:hover .card-title {
      opacity: 0 !important;
    }

    .expand-card:hover > div[style*="perspective: 1200px"] {
      opacity: 0 !important;
    }

    .expand-card:hover .card-content {
      opacity: 1 !important;
    }

    @keyframes pulseCenter {
      0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
      }
      50% { 
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(99, 102, 241, 0.5);
      }
    }

    .company-icon, .ein-icon, .soi-icon, .permit-icon, .mcs-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #f8fafc, #e2e8f0);
      border: 2px solid #cbd5e1;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      flex-shrink: 0;
    }

    .building-shape {
      width: 40px;
      height: 48px;
      background: #64748b;
      position: relative;
      border-radius: 3px 3px 0 0;
    }

    .building-shape::before {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      background: #fff;
      top: 8px;
      left: 6px;
      box-shadow: 14px 0 0 #fff, 0 14px 0 #fff, 14px 14px 0 #fff;
    }

    .doc-shape {
      width: 50px;
      height: 58px;
      background: #fff;
      border: 2px solid #3b82f6;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: #3b82f6;
    }

    .badge-shape {
      width: 40px;
      height: 48px;
      background: #10b981;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }

    .form-shape {
      width: 50px;
      height: 58px;
      background: #fff;
      border: 2px solid #8b5cf6;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: #8b5cf6;
      position: relative;
    }

    .form-shape::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 6px;
      right: 6px;
      height: 2px;
      background: #e2e8f0;
      box-shadow: 0 6px 0 #e2e8f0, 0 12px 0 #e2e8f0;
    }

    .result-card {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
      border: 3px solid #10b981;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
      flex-shrink: 0;
    }

    .check-shape {
      width: 40px;
      height: 40px;
      position: relative;
    }

    .check-shape::before {
      content: '';
      position: absolute;
      width: 16px;
      height: 28px;
      border-right: 4px solid #10b981;
      border-bottom: 4px solid #10b981;
      transform: rotate(45deg);
      left: 12px;
      top: 4px;
    }

    .check-shape {
      width: 50px;
      height: 50px;
      position: relative;
    }

    .check-shape::before {
      content: '';
      position: absolute;
      width: 20px;
      height: 35px;
      border-right: 5px solid #10b981;
      border-bottom: 5px solid #10b981;
      transform: rotate(45deg);
      left: 15px;
      top: 5px;
    }

    .complex-stack {
      position: relative;
      width: 100px;
      height: 120px;
    }

    .paper-sheet {
      position: absolute;
      width: 85px;
      height: 110px;
      background: linear-gradient(135deg, #fff, #f8fafc);
      border: 2px solid #cbd5e1;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      animation: scatter 4s ease-in-out infinite;
    }

    .paper-sheet::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 10px;
      right: 10px;
      height: 2px;
      background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
      border-radius: 1px;
      box-shadow: 
        0 10px 0 #e2e8f0,
        0 20px 0 #e2e8f0,
        0 30px 0 #cbd5e1;
    }

    .sheet-1 {
      top: 0;
      left: 0;
      z-index: 3;
      animation-delay: 0s;
    }

    .sheet-2 {
      top: 6px;
      left: 10px;
      z-index: 2;
      animation-delay: 0.4s;
      opacity: 0.8;
    }

    .sheet-3 {
      top: 12px;
      left: 20px;
      z-index: 1;
      animation-delay: 0.8s;
      opacity: 0.6;
    }

    @keyframes scatter {
      0%, 100% { transform: rotate(0deg) translateY(0); }
      50% { transform: rotate(4deg) translateY(-6px); }
    }

    .result-card {
      width: 100px;
      height: 120px;
      background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
      border: 4px solid #3b82f6;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    }

    .checkmark {
      font-size: 52px;
      color: #10b981;
      font-weight: 700;
    }

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

    .hero h1 {
      font-size: 48px;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -1px;
      margin-bottom: 32px;
      max-width: 700px;
    }

    .hero-sub {
      font-size: 18px;
      max-width: 600px;
      margin-bottom: 40px;
      line-height: 1.7;
      font-weight: 400;
      color: #666;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
    }

    .btn-hero {
      padding: 24px 56px;
      font-size: 18px;
      font-weight: 700;
      border: 2px solid #000;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-black {
      background: #3b82f6;
      color: #fff;
      border-color: #3b82f6;
    }

    .btn-black:hover {
      background: linear-gradient(135deg, #8b5cf6, #3b82f6);
      border-color: #8b5cf6;
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 #000;
    }

    .btn-white {
      background: #fff;
      color: #000;
    }

    .btn-white:hover {
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 #000;
    }

    /* Ticker */
    .ticker {
      background: #3b82f6;
      color: #fff;
      padding: 24px 0;
      overflow: hidden;
      border-top: 2px solid #3b82f6;
      border-bottom: 2px solid #3b82f6;
    }

    .ticker-content {
      display: flex;
      gap: 80px;
      animation: scroll 30s linear infinite;
      width: fit-content;
    }

    .ticker-item {
      font-size: 18px;
      font-weight: 700;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .ticker-item::before {
      content: '●';
      color: #2563eb;
    }

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

    /* Services - Bold grid */
    .services {
      padding: 120px 48px;
    }

    .services-header {
      max-width: 1400px;
      margin: 0 auto 80px;
    }

    .services-header h2 {
      font-size: clamp(60px, 8vw, 120px);
      font-weight: 700;
      line-height: 0.9;
      letter-spacing: -3px;
      margin-bottom: 32px;
    }

    .services-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      background: #000;
      border: 2px solid #000;
    }

    .service {
      background: #fff;
      padding: 60px;
      position: relative;
      transition: all 0.3s;
    }

    .service:hover {
      background: #2563eb;
      color: #fff;
    }

    .service-number {
      font-size: 120px;
      font-weight: 700;
      line-height: 1;
      opacity: 0.1;
      position: absolute;
      top: 20px;
      right: 40px;
    }

    .service h3 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 24px;
      line-height: 1;
      letter-spacing: -1px;
      position: relative;
      z-index: 1;
    }

    .service-price {
      font-size: 64px;
      font-weight: 700;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .service p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }

    .service:hover p {
      color: rgba(255, 255, 255, 0.9);
    }

    .service-link {
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      color: inherit;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .service-link::after {
      content: '→';
      transition: transform 0.3s;
    }

    .service:hover .service-link::after {
      transform: translateX(8px);
    }

    /* Stats - Big numbers */
    .stats {
      background: #000;
      color: #fff;
      padding: 120px 48px;
    }

    .stats-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 60px;
    }

    .stat {
      text-align: center;
    }

    .stat-value {
      font-size: 96px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 16px;
      color: #2563eb;
    }

    .stat-label {
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Process - Horizontal scroll */
    .process {
      padding: 120px 0;
      overflow: hidden;
    }

    .process-header {
      padding: 0 48px;
      max-width: 1400px;
      margin: 0 auto 80px;
    }

    .process-header h2 {
      font-size: clamp(60px, 8vw, 120px);
      font-weight: 700;
      line-height: 0.9;
      letter-spacing: -3px;
    }

    .process-scroll {
      display: flex;
      gap: 40px;
      padding: 0 48px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .process-scroll::-webkit-scrollbar {
      display: none;
    }

    .process-step {
      min-width: 400px;
      background: #f8f9fa;
      padding: 60px;
      border: 2px solid #000;
      scroll-snap-align: start;
      position: relative;
    }

    .step-num {
      font-size: 200px;
      font-weight: 700;
      line-height: 1;
      opacity: 0.05;
      position: absolute;
      top: -40px;
      right: 20px;
    }

    .process-step h3 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .process-step p {
      font-size: 18px;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    /* CTA - Full width impact */
    .cta {
      background: #2563eb;
      color: #fff;
      padding: 160px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: 'FILE NOW';
      position: absolute;
      font-size: 300px;
      font-weight: 700;
      opacity: 0.03;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
    }

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

    .cta h2 {
      font-size: clamp(60px, 8vw, 120px);
      font-weight: 700;
      line-height: 0.9;
      letter-spacing: -3px;
      margin-bottom: 40px;
    }

    .cta p {
      font-size: 24px;
      margin-bottom: 56px;
      opacity: 0.9;
    }

    .cta-btn {
      padding: 32px 80px;
      background: #fff;
      color: #000;
      border: none;
      font-size: 24px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
    }

    .cta-btn:hover {
      background: #000;
      color: #fff;
      transform: scale(1.05);
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #fefefe 0%, #f0f9ff 50%, #faf5ff 100%);
      color: #0f172a;
      padding: 100px 48px 50px;
      position: relative;
      border-top: 2px solid transparent;
      border-image: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899) 1;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05), transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05), transparent 50%);
      pointer-events: none;
    }

    .footer-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 0.8fr 0.8fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .footer-brand {
      font-size: 38px;
      white-space: nowrap;
      font-weight: 700;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
