    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #0a0a0f;
      color: #ffffff;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
    }

    /* Modal Styles */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      z-index: 10000;
      overflow-y: auto;
      animation: fadeIn 0.3s ease;
    }

    .modal-overlay.active {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 40px 20px;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content {
      background: #1a1a2e;
      border-radius: 24px;
      max-width: 900px;
      width: 100%;
      position: relative;
      padding: 60px;
      box-shadow: 0 20px 80px rgba(102, 126, 234, 0.3);
      animation: slideUp 0.4s ease;
      margin: auto;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: #ffffff;
      font-size: 32px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
    }

    #modal-body h2 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 12px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    #modal-body h3 {
      font-size: 28px;
      font-weight: 700;
      margin-top: 40px;
      margin-bottom: 16px;
      color: #ffffff;
    }

    #modal-body h4 {
      font-size: 20px;
      font-weight: 600;
      margin-top: 24px;
      margin-bottom: 12px;
      color: rgba(255, 255, 255, 0.9);
    }

    #modal-body p {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 16px;
    }

    #modal-body em {
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
    }

    #modal-body ul, #modal-body ol {
      margin: 16px 0 16px 24px;
      color: rgba(255, 255, 255, 0.8);
    }

    #modal-body li {
      margin-bottom: 8px;
      line-height: 1.6;
    }

    #modal-body strong {
      color: #ffffff;
      font-weight: 600;
    }

    #modal-body pre {
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
      margin: 16px 0;
      overflow-x: auto;
    }

    #modal-body code {
      color: #667eea;
      font-family: 'Courier New', monospace;
      font-size: 14px;
    }

    #modal-body a {
      color: #667eea;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    #modal-body a:hover {
      color: #764ba2;
      text-decoration: underline;
    }

    .tutorial-item, .support-option, .faq-item, .incident-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
      margin: 16px 0;
    }

    .status-indicator {
      background: rgba(76, 175, 80, 0.1);
      border: 2px solid #4CAF50;
      border-radius: 16px;
      padding: 24px;
      margin: 24px 0;
      text-align: center;
    }

    .status-indicator h3 {
      margin: 0 0 8px 0;
      color: #4CAF50;
    }

    .status-service {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 20px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 8px;
      margin: 12px 0;
      align-items: center;
    }

    .service-name {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
    }

    .status-dot {
      font-size: 20px;
    }

    .status-dot.operational {
      color: #4CAF50;
    }

    .service-status {
      color: #4CAF50;
      font-weight: 600;
    }

    .service-uptime {
      color: rgba(255, 255, 255, 0.7);
      text-align: right;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 10, 15, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 15px 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 28px;
      font-weight: 900;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      cursor: pointer;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #667eea, #764ba2);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: #ffffff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 28px;
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: rgba(10, 10, 15, 0.98);
      backdrop-filter: blur(20px);
      padding: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 999;
    }

    .mobile-nav.active {
      display: block;
    }

    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mobile-nav-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      display: block;
      padding: 10px;
      transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover {
      color: #667eea;
      padding-left: 20px;
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 50%, rgba(240, 147, 251, 0.9) 100%),
                  url('https://i.pinimg.com/736x/72/f2/63/72f263964ad7d25c06b4f5d52f771919.jpg') center/cover;
      overflow: hidden;
      padding: 140px 20px 80px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3), transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.3), transparent 50%);
      animation: pulse 8s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 0.8; }
    }

    .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .shape {
      position: absolute;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      animation: float 20s infinite;
    }

    .shape:nth-child(1) {
      width: 80px;
      height: 80px;
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .shape:nth-child(2) {
      width: 120px;
      height: 120px;
      top: 60%;
      left: 80%;
      animation-delay: 2s;
    }

    .shape:nth-child(3) {
      width: 60px;
      height: 60px;
      top: 40%;
      left: 70%;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-30px) rotate(180deg); }
    }

    .marquee-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      opacity: 0.1;
      pointer-events: none;
    }

    .marquee {
      display: flex;
      white-space: nowrap;
      font-size: 120px;
      font-weight: 900;
      letter-spacing: 20px;
      color: rgba(255, 255, 255, 0.8);
    }

    .marquee-content {
      display: flex;
      animation: scroll 30s linear infinite;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      max-width: 900px;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: 72px;
      font-weight: 900;
      margin-bottom: 24px;
      line-height: 1.1;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero p {
      font-size: 24px;
      margin-bottom: 40px;
      opacity: 0.95;
      line-height: 1.6;
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease-out 0.6s both;
    }

    .btn {
      padding: 18px 40px;
      font-size: 18px;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: #ffffff;
      color: #667eea;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.15);
      color: #ffffff;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-3px);
    }

    /* Marquee Strip */
    .marquee-strip {
      background: linear-gradient(90deg, #667eea, #764ba2);
      padding: 30px 0;
      overflow: hidden;
      position: relative;
    }

    .marquee-strip::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .marquee-strip .marquee {
      font-size: 48px;
      letter-spacing: 10px;
    }

    /* Features Section */
    .features {
      padding: 120px 20px;
      background: #0a0a0f;
      position: relative;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: 56px;
      font-weight: 800;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      text-align: center;
      font-size: 20px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 80px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
      overflow: hidden;
    }

    .feature-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(102, 126, 234, 0.5);
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    }

    .feature-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 16px;
      margin-bottom: 24px;
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin-bottom: 24px;
      transition: all 0.4s ease;
    }

    .feature-card:hover .feature-icon {
      transform: rotateY(360deg);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    }

    .feature-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .feature-card p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
    }

    /* Stats Section */
    .stats {
      padding: 100px 20px;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%),
                  url('https://i.pinimg.com/736x/42/1d/06/421d0605ad0b4f47946c04192b494b12.jpg') center/cover;
      position: relative;
      overflow: hidden;
    }

    .stats::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
      opacity: 0.5;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 64px;
      font-weight: 900;
      margin-bottom: 12px;
      color: #ffffff;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .stat-label {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    /* Testimonials */
    .testimonials {
      padding: 120px 20px;
      background: #0a0a0f;
    }

    .testimonials-slider {
      max-width: 1000px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .testimonial {
      min-width: 100%;
      padding: 60px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      backdrop-filter: blur(20px);
      text-align: center;
      transition: all 0.3s ease;
    }

    .testimonial:hover {
      transform: scale(1.02);
      border-color: rgba(102, 126, 234, 0.5);
    }

    .testimonial-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 24px;
      object-fit: cover;
      border: 3px solid rgba(102, 126, 234, 0.5);
    }

    .testimonial-text {
      font-size: 20px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-author {
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 8px;
    }

    .testimonial-role {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
    }

    .stars {
      color: #ffd700;
      font-size: 20px;
      margin-bottom: 20px;
    }

    /* Pricing */
    .pricing {
      padding: 120px 20px;
      background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    }

    .pricing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
    }

    .toggle-label {
      font-size: 18px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
    }

    .toggle-label.active {
      color: #ffffff;
    }

    .toggle-switch {
      width: 60px;
      height: 32px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .toggle-switch.active {
      background: linear-gradient(135deg, #667eea, #764ba2);
    }

    .toggle-slider {
      width: 26px;
      height: 26px;
      background: #ffffff;
      border-radius: 50%;
      position: absolute;
      top: 3px;
      left: 3px;
      transition: all 0.3s ease;
    }

    .toggle-switch.active .toggle-slider {
      left: 31px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pricing-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 50px 40px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
      transform: scaleX(0);
      transition: all 0.4s ease;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      border-color: rgba(102, 126, 234, 0.5);
      box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
    }

    .pricing-card:hover::before {
      transform: scaleX(1);
    }

    .pricing-card.featured {
      border: 2px solid #667eea;
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    }

    .pricing-badge {
      display: inline-block;
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: #ffffff;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .pricing-name {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .pricing-price {
      font-size: 56px;
      font-weight: 900;
      margin-bottom: 8px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pricing-period {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 30px;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 40px;
      text-align: left;
    }

    .pricing-features li {
      padding: 12px 0;
      color: rgba(255, 255, 255, 0.8);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pricing-features li::before {
      content: '✓';
      color: #667eea;
      font-weight: 700;
      font-size: 18px;
    }

    /* Blog Section */
    .blog {
      padding: 120px 20px;
      background: #0a0a0f;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .blog-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(102, 126, 234, 0.5);
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    }

    .blog-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .blog-content {
      padding: 30px;
    }

    .blog-category {
      display: inline-block;
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: #ffffff;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .blog-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
      line-height: 1.4;
    }

    .blog-excerpt {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* Contact Section */
    .contact {
      padding: 120px 20px;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%),
                  url('https://i.pinimg.com/736x/31/cd/67/31cd6722bceab4512b1da77da6dfb113.jpg') center/cover;
      position: relative;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info h2 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 24px;
      color: #ffffff;
    }

    .contact-info p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      padding: 40px;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 16px;
      font-size: 16px;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.15);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      width: 100%;
      padding: 18px;
      font-size: 16px;
      font-weight: 600;
      background: #ffffff;
      color: #667eea;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    }

    /* Subscribe */
    .subscribe {
      padding: 80px 20px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      text-align: center;
    }

    .subscribe h2 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 16px;
      color: #ffffff;
    }

    .subscribe p {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 40px;
    }

    .subscribe-form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .subscribe-input {
      flex: 1;
      min-width: 280px;
      padding: 18px 24px;
      font-size: 16px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .subscribe-input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .subscribe-input:focus {
      outline: none;
      border-color: rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.15);
    }

    .subscribe-button {
      padding: 18px 40px;
      font-size: 16px;
      font-weight: 600;
      background: #ffffff;
      color: #667eea;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .subscribe-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    }

    .success-message {
      display: none;
      margin-top: 20px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      color: #ffffff;
      font-weight: 600;
      animation: fadeInUp 0.5s ease-out;
    }

    /* Footer */
    .footer {
      padding: 80px 20px 40px;
      background: #0a0a0f;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto 60px;
    }

    .footer-column h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .footer-links a:hover {
      color: #667eea;
      padding-left: 5px;
    }

    .social-icons {
      display: flex;
      gap: 16px;
      margin-top: 20px;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: #ffffff;
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .nav-links {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .status-service {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .service-uptime {
        text-align: left;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 120px 20px 60px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .hero p {
        font-size: 18px;
      }

      .marquee {
        font-size: 60px;
      }

      .marquee-strip .marquee {
        font-size: 32px;
      }

      .section-title {
        font-size: 36px;
      }

      .section-subtitle {
        font-size: 16px;
      }

      .features-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }

      .stat-number {
        font-size: 48px;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .subscribe-input {
        width: 100%;
      }

      .contact-info h2 {
        font-size: 36px;
      }

      .contact-form {
        padding: 30px;
      }

      .modal-content {
        padding: 40px 30px;
      }

      #modal-body h2 {
        font-size: 32px;
      }

      #modal-body h3 {
        font-size: 24px;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }

      .marquee {
        font-size: 40px;
      }

      .feature-card,
      .pricing-card {
        padding: 30px;
      }

      .blog-grid {
        grid-template-columns: 1fr;
      }

      .testimonial {
        padding: 40px 30px;
      }

      .modal-content {
        padding: 30px 20px;
      }

      #modal-body h2 {
        font-size: 28px;
      }

      #modal-body h3 {
        font-size: 20px;
      }
    }

    
  /* One item per row */
#login-form form,
#signup-form form {
  display: flex;
  flex-direction: column;
}

/* Label */
#login-form label,
#signup-form label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #ddd;
}

/* Inputs - Full width */
#login-form input,
#signup-form input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #1b1b1b;
  color: #fff;
}

/* Button full width */
.btn-primary {
  width: 100%;
  padding: 12px;
}
