@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;700&display=swap');
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #0b0e13;
      color: #e8e8e9;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    header {
      font-family: 'Poppins', 'Nunito', sans-serif;
      position: sticky;
      top: 0;
      z-index: 999;
      background-color: color-mix(in oklab, #0b0e13 75%, transparent);
      backdrop-filter: blur(40px);
      border-bottom: 1px solid #161a23;
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      max-width: 10rem;
      height: auto;
      transition: opacity 0.3s;
    }

    .logo img:hover {
      opacity: 0.75;
    }

    nav ul {
      list-style: none;
      padding: 0;
      display: flex;
      gap: 10px;
    }

    nav a {
      text-decoration: none;
      padding: 8px 12px;
      font-size: 14px;
      color: #bbb;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #2b7fff;
    }

    header .button {
      padding-inline: 1rem;
      background-color: oklch(.488 .243 264.376);
      color: #fff;
      border-radius: 10px;
      font-size: .875rem;
      text-decoration: none;
      height: 2.5rem;
      display: flex;
      align-items: center;
    }

    header .button:hover {
      background-color: oklch(.424 .199 265.638);
    }

    .user-menu {
      position: relative;
      display: flex;
      align-items: center;
    }

    .user-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: none;
      cursor: pointer;
      color: #bbb;
      font-size: 14px;
      font-weight: 600;
    }

    .user-toggle img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: #181a20;
      border: 1px solid #333;
      border-radius: 8px;
      display: none;
      flex-direction: column;
      min-width: 150px;
      padding: 8px 0;
      margin-top: .5rem;
    }

    .dropdown-menu a {
      display: block;
      padding: 10px;
      text-decoration: none;
      color: #bbb;
      font-size: 14px;
      transition: background 0.3s;
    }

    .dropdown-menu a:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .user-menu.active .dropdown-menu {
      display: flex;
    }

    .menu-toggle {
      display: none;
      background: transparent;
      color: #d4d4d4;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
      background: #181a20;
      border-top: 1px solid #333;
    }

    .mobile-nav ul {
      list-style: none;
      padding: 10px 20px;
    }

    .mobile-nav li {
      padding: 10px 0;
    }

    .mobile-nav a {
      text-decoration: none;
      color: #bbb;
      font-size: 16px;
    }

    @media (max-width: 768px) {

      .header-container nav ul,
      .actions a {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .mobile-nav.active {
        display: block;
      }

      nav ul {
        display: block;
      }
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      font-family: 'Segoe UI', sans-serif;
      background-color: #0a0c10;
      color: #ccc;
      font-size: clamp(0.85rem, 1vw, 1rem);
      border-top: 1px solid #11151b;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      padding: 3rem 1.25rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2.5rem;
    }

    .footer-column {
      flex: 1 1 min(250px, 100%);
    }

    .footer-logo {
      width: 150px;
      margin-bottom: 1rem;
    }

    .footer-description {
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .footer-socials a {
      display: inline-block;
      color: #fff;
      background-color: #1e40af;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      margin-right: 8px;
      transition: background-color 0.3s ease;
    }

    .footer-socials a:hover {
      background-color: #3b82f6;
    }

    .footer-column h5 {
      font-size: 1.15rem;
      color: #fff;
      margin-bottom: 1rem;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.5rem;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      background-color: #0a0c10;
      padding: 1.25rem 1rem;
      border-top: 1px solid #1e293b;
    }

    .footer-bottom-inner {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .footer-bottom p {
      margin: 0;
    }

    .footer-links {
      list-style: none;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      color: #fff;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 2rem;
      }

      .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
      }
    }
    
    :root {
      --skycloud-blue-start: #35a3f5;
      --skycloud-blue-end: #1e3a8a;
      --skycloud-text: #e6f4ff;
      --text-tertiary: #95979b;
      --plan-color: 76, 153, 252;
      --color-bg-gradient-start: #0a0c10;
      --color-bg-gradient-end: #0b0e13;
      --color-primary: oklch(.623 .214 259.815);
      --color-secondary: oklch(.707 .165 254.624);
      --color-card-bg: #11151b;
      --color-text-primary: #e8e8e9;
      --color-text-secondary: #b7b9bc;
      --color-button-bg: oklch(.546 .245 262.881);
      --color-button-bg-hover: oklch(.488 .243 264.376);
      --color-toggle-bg: #161a23;
      --color-toggle-text: #e8e8e9;
      --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.1);
      --font-heading: 'Poppins', sans-serif;
      --font-body: 'Nunito', sans-serif;
    }

    body,
    main {
      font-family: var(--font-body);
    }

    h1,
    h2,
    h3,
    .btn,
    .toggle,
    .toggle-features,
    .price,
    .faq-title {
      font-family: var(--font-heading);
    }

    header {
      font-family: 'Poppins', 'Nunito', sans-serif;
    }

    main {
      font-family: var(--font-family);
      background: linear-gradient(to bottom,
          var(--color-bg-gradient-start),
          var(--color-bg-gradient-end));
      color: var(--color-text-primary);
      line-height: 1.4;
      box-sizing: border-box;
      width: 100%;
      margin: 0 auto;
      padding: 2rem 1rem;
      text-align: center;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      color: var(--color-text-primary);
    }

    h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--color-primary);
    }

    h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--color-text-primary);
    }

    p {
      margin-bottom: 1rem;
    }

    .toggle-container {
      display: inline-flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }

    .toggle {
      background: var(--color-toggle-bg);
      color: var(--color-toggle-text);
      border: none;
      border-radius: 999px;
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .toggle:hover {
      filter: brightness(0.95);
    }

    .toggle.active {
      background: var(--color-primary);
    }

    .plans {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      padding: 1rem 0;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .plans::-webkit-scrollbar {
      display: none;
    }

    .plan-card {
      flex: 0 0 auto;
      scroll-snap-align: start;
      background: var(--color-card-bg);
      box-shadow: var(--shadow-card);
      border-radius: 1rem;
      width: 300px;
      max-width: 90%;
      padding: 1.5rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s;
    }

    .plan-card:hover {
      transform: translateY(-3px);
    }

    .plan-card h2 {
      margin-bottom: 0.5rem;
    }

    .price {
      font-size: 2rem;
      color: var(--color-primary);
      margin: 1rem 0;
    }

    .benefits {
      list-style: none;
      text-align: left;
      margin: 1rem 0 0;
      color: var(--text-secondary);
      padding-left: 0;
    }

    .benefits li {
      margin-bottom: 0.5rem;
      position: relative;
      display: flex;
      align-items: center;
    }

    .benefits li svg {
      color: oklch(79.2% .209 151.711);
      width: 1rem;
      height: 1rem;
      margin-right: .30rem;
      position: relative;
      flex-shrink: 0;
    }

    .plan-card .btn {
      background: var(--color-button-bg);
      color: #fff;
      text-decoration: none;
      border: none;
      border-radius: 0.5rem;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
      margin-top: 1rem;
    }

    .plan-card .btn:hover {
      opacity: 0.9;
    }

    .features-collapsible {
      display: none;
      opacity: 0;
      transform: translateY(-5px);
      transition: opacity 0.4s ease, transform 0.3s ease;
    }

    .features-collapsible.visible {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .toggle-features {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: #2563eb;
      font-weight: 600;
      cursor: pointer;
      background: none;
      border: none;
      margin-top: 1rem;
    }

    .toggle-features span {
      font-size: 1rem;
    }

    .toggle-features svg {
      width: 2rem;
      transition: transform 0.3s ease;
    }

    .toggle-features svg.rotated {
      transform: rotate(180deg);
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 1.6rem;
      }
    }

    .plan-slider {
      width: 100%;
      height: 0.5rem;
      background: rgba(var(--plan-color), 0.25);
      border-radius: 9999px;
      appearance: none;
    }

    .plan-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 1rem;
      height: 1rem;
      border-radius: 50%;
      background: rgb(79, 70, 229);
      cursor: pointer;
    }

    hr.separator {
      border: none;
      border-top: 2px solid rgba(var(--plan-color), 0.15);
      border-radius: 9999px;
      margin: 1rem 0;
    }

    .attributes {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .attributes .attribute {
      flex: 1 1 30%;
      background: transparent;
      border: 2px solid rgba(var(--plan-color), 0.15);
      border-radius: 0.5rem;
      padding: 0.5rem;
      text-align: center;
      position: relative;
    }

    .attributes .attribute svg {
      width: 1.25rem;
      position: absolute;
      top: -0.25rem;
      right: -0.25rem;
      font-size: 1rem;
      color: rgb(var(--plan-color));
    }

    .attributes .attribute .value {
      font-weight: 600;
      font-size: 0.875rem;
      color: var(--text-primary);
    }

    .attributes .attribute .label {
      font-size: 0.75rem;
      color: var(--text-tertiary);
    }

    section.cta-section {
      max-width: 1300px;
      margin: 4rem auto;
      padding: 100px 0px;
      background: linear-gradient(135deg, #35a3f5, #1e3a8a);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 1rem;
    }

    .cta-container {
      width: 100%;
      text-align: center;
    }

    .cta-heading {
      font-family: 'Poppins', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 2rem;
      color: #e6f4ff;
    }

    .gradient-text {
      background: linear-gradient(90deg, #ffffff, #93c5fd);
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .cta-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .cta-form button {
      padding: 15px 30px;
      background: linear-gradient(to right, #3b82f6, #1e3a8a);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .cta-form button:hover {
      background: linear-gradient(to right, #60a5fa, #1e3a8a);
      transform: translateY(-2px);
    }

    @media (max-width: 480px) {
      .cta-heading {
        font-size: 1.8rem;
      }

      .cta-form {
        justify-content: center;
      }

      .cta-form button {
        width: 80%;
      }
    }

    .faq-title {
      margin-bottom: 2rem;
      font-size: 2.25rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #e6f4ff;
      text-align: center;
      font-family: 'Poppins', sans-serif;
    }

    .accordion {
      max-width: 900px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    details {
      background: #0f172a;
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: background 0.3s ease;
    }

    summary {
      padding: 20px 24px;
      cursor: pointer;
      position: relative;
      font-weight: 600;
      font-size: 1.1rem;
      color: #e2e8f0;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Nunito', sans-serif;
    }

    summary::marker {
      display: none;
    }

    summary::after {
      content: "+";
      font-size: 1.5rem;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    details[open] summary::after {
      content: "–";
      color: #93c5fd;
      transform: rotate(180deg);
    }

    .accordion-content {
      padding: 20px 24px;
      background: #1e293b;
      color: #cbd5e1;
      line-height: 1.6;
      font-size: 1rem;
      border-top: 1px solid #334155;
    }

    @media (max-width: 600px) {
      .faq-title {
        font-size: 1.75rem;
      }

      summary {
        font-size: 1rem;
        padding: 16px 20px;
        text-align: left;
      }

      .accordion-content {
        font-size: 0.95rem;
        padding: 16px 20px;
      }
    }

  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .spinner {
    border: 5px solid #eee;
    border-top: 5px solid #4bb9e8;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  body.loaded #loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
  }
