﻿:root {
      --primary: #0a192f;
      --primary-light: #172a46;
      --primary-dark: #020c1b;
      --secondary: #d4af37;
      --accent: #6d5f2eff;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --light-gray: #e9ecef;
      --transition: all 0.4s ease;
      --gold: #d4af37;
      --silver: #c0c0c0;
      --success: #10b981;
      --warning: #f59e0b;
      --light: #ffffff;
      --dark: #1f2937;
      --gray: #6b7280;
      --light-gray: #f3f4f6;
      --medium-gray: #d1d5db;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --border-radius: 12px;
      --border-radius-lg: 20px;
      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

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

    body {
      font-family: 'Dosis', sans-serif;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      color: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
      font-weight: 400;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Dosis', sans-serif;
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.2;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Styles */
    header {
      background: rgba(10, 25, 47, 0.95);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 107, 53, 0.1);
      transition: all 0.3s ease;
    }

    header.scrolled {
      background: rgba(26, 26, 46, 0.98);
      box-shadow: var(--shadow-xl);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      transition: padding 0.3s ease;
    }

    header.scrolled .navbar {
      padding: 15px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .logo-icon {
      font-size: 32px;
      background: #d4af37;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
    }

    .logo-text {
      font-size: 26px;
      font-weight: 700;
      color: var(--light);
      letter-spacing: -0.025em;
      font-family: 'Dosis', sans-serif;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 40px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--light);
      font-weight: 500;
      font-size: 15px;
      transition: var(--transition);
      position: relative;
      padding: 8px 0;
      letter-spacing: -0.025em;
    }

    .nav-links a::before {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    .nav-links a:hover {
      color: var(--secondary);
      transform: translateY(-2px);
    }

    .nav-links a:hover::before {
      width: 100%;
    }

    .cta-button {
      background: #d4af37;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: var(--border-radius);
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      letter-spacing: -0.025em;
      position: relative;
      overflow: hidden;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
      filter: brightness(1.1);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0% 0%, rgba(23, 42, 70, 0.95) 100%);
      padding: 180px 0 150px;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .slogan {
      background: rgba(212, 175, 55, 0.15);
      backdrop-filter: blur(10px);
      display: inline-block;
      padding: 10px 25px;
      border-radius: 30px;
      margin-bottom: 25px;
      font-size: 18px;
      font-weight: 400;
      border: 1px solid rgba(212, 175, 55, 0.3);
      animation: pulse 2s infinite;
      color: var(--secondary);
      letter-spacing: 1px;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 30px;
      animation: fadeInUp 1s ease 0.2s both;
      line-height: 1.1;
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff, #e2e8f0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: clamp(1.1rem, 2vw, 1.25rem);
      margin-bottom: 40px;
      animation: fadeInUp 1s ease 0.4s both;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 400;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      animation: fadeInUp 1s ease 0.6s both;
      flex-wrap: wrap;
    }

    .secondary-button {
      background: rgba(255, 255, 255, 0.1);
      color: var(--primary);
      border: 2px solid rgba(255, 255, 255, 0.3);
      padding: 12px 24px;
      border-radius: var(--border-radius);
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition);
      letter-spacing: -0.025em;
      backdrop-filter: blur(10px);
    }

    .secondary-button:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .hero-svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 150px;
      z-index: 1;
    }

    .hero-svg path {
      fill: #f8f9fa;
    }

    /* Trust Indicators Section */
    .trust-indicators {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .trust-content {
      text-align: center;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 50px;
      padding: 30px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 2px solid rgba(212, 175, 55, 0.1);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 50px;
    }

    .trust-icon {
      font-size: 48px;
      color: var(--secondary);
      animation: pulse-glow 3s ease-in-out infinite;
    }

    .trust-text h3 {
      font-size: 28px;
      color: var(--primary);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .trust-text p {
      font-size: 16px;
      color: var(--gray);
      margin: 0;
      font-weight: 300;
    }

    .trust-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .stat-item {
      text-align: center;
      padding: 20px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    }

    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      font-family: 'Dosis', sans-serif;
    }

    .stat-label {
      font-size: 14px;
      color: var(--gray);
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .trust-logos {
      overflow: hidden;
      position: relative;
      padding: 30px 0;
      background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
      border-radius: 15px;
    }

    .logo-marquee {
      overflow: hidden;
      position: relative;
    }

    .logo-track {
      display: flex;
      animation: scroll 30s linear infinite;
      gap: 40px;
    }

    .client-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      min-width: 120px;
      padding: 15px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .client-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }

    .client-logo i {
      font-size: 24px;
      color: var(--primary);
      margin-bottom: 5px;
    }

    .client-logo span {
      font-size: 12px;
      font-weight: 600;
      color: var(--gray);
      text-align: center;
    }

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

      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes pulse-glow {

      0%,
      100% {
        color: var(--secondary);
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
      }

      50% {
        color: #c19b2c;
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
      }
    }

    /* Packages Section */
    .packages {
      padding: 120px 0;
      text-align: center;
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    }

    .section-title {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
    }

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 2.5rem);
      color: var(--primary);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .section-title p {
      font-size: 18px;
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
      font-weight: 400;
      line-height: 1.6;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      margin: 30px auto 0;
      border-radius: 2px;
    }

    .cards-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .card {
      background: white;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 40px 30px;
      width: 90%;
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      border: 1px solid var(--medium-gray);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      z-index: 2;
    }

    .card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
      transition: left 0.6s ease;
      z-index: 1;
    }

    .card:hover::after {
      left: 100%;
    }

    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: var(--shadow-xl);
      border-color: var(--secondary);
    }

    .card .icon {
      font-size: 48px;
      margin-bottom: 25px;
      display: inline-block;
      background: #d4af37;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      z-index: 3;
    }

    .card h3 {
      font-size: 26px;
      margin-bottom: 25px;
      color: var(--primary);
      font-weight: 600;
      position: relative;
      z-index: 3;
    }

    .cost-plan {
      font-size: 28px;
      font-weight: 700;
      background: #d4af37;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 30px;
      padding: 15px 0;
      position: relative;
      z-index: 3;
    }

    .cost-plan::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      border-radius: 3px;
    }

    .currency-toggle {
      display: inline-block;
      margin: 10px 0 20px;
      background: var(--light-gray);
      border-radius: 30px;
      padding: 5px;
    }

    .currency-btn {
      background: transparent;
      border: none;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .currency-btn.active {
      background: var(--primary);
      color: white;
    }

    .features {
      text-align: left;
      margin-top: 30px;
      position: relative;
      z-index: 3;
    }

    .features ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .features li {
      padding: 12px 0;
      position: relative;
      padding-left: 35px;
      font-weight: 400;
      color: var(--text-light);
      font-size: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .features li:last-child {
      border-bottom: none;
    }

    .features li:hover {
      color: var(--secondary);
      transform: translateX(5px);
    }

    .features li:before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      color: var(--secondary);
      font-size: 14px;
      width: 20px;
      height: 20px;
      background: rgba(255, 107, 53, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .features li:hover:before {
      background: var(--secondary);
      color: white;
      box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
    }

    /* Global Availability */
    .global {
      background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
      padding: 120px 0;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .global::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
      animation: floatDots 30s linear infinite;
    }

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

    .globe-icon {
      font-size: 100px;
      margin-bottom: 30px;
      background: linear-gradient(135deg, var(--gold), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: rotateGlobe 20s linear infinite;
      display: inline-block;
    }

    .globe-svg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0.05;
      width: 80%;
      height: auto;
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes floatDots {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }

      100% {
        transform: translateY(0);
      }
    }

    /* Pricing Tables */
    .pricing-section {
      background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
      padding: 120px 0;
      position: relative;
    }

    .pricing-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 26, 46, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .pricing-tabs-container {
      display: flex;
      justify-content: center;
      margin-bottom: 50px;
    }

    .pricing-tabs {
      position: relative;
      background: var(--light-gray);
      border-radius: 50px;
      padding: 8px;
      display: flex;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      border: 2px solid rgba(212, 175, 55, 0.1);
    }

    .pricing-tabs input[type="radio"] {
      display: none;
    }

    .pricing-tab {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 15px 30px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      color: var(--gray);
      background: transparent;
      border: none;
      white-space: nowrap;
      min-width: 200px;
      justify-content: center;
    }

    .pricing-tab i {
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .pricing-tab span {
      transition: all 0.3s ease;
    }

    .tab-slider {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 200px;
      height: calc(100% - 16px);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 40px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 3px 15px rgba(10, 25, 47, 0.3);
      z-index: 1;
    }

    /* Active tab styles */
    #hotspot-tab:checked~.tab-slider {
      transform: translateX(0);
    }

    #pppoe-tab:checked~.tab-slider {
      transform: translateX(200px);
    }

    #hotspot-tab:checked~label[for="hotspot-tab"] {
      color: white;
    }

    #pppoe-tab:checked~label[for="pppoe-tab"] {
      color: white;
    }

    .pricing-tab:hover {
      transform: translateY(-2px);
    }

    #hotspot-tab:checked~label[for="hotspot-tab"]:hover,
    #pppoe-tab:checked~label[for="pppoe-tab"]:hover {
      transform: translateY(0);
    }

    .pricing-table {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: var(--border-radius-xl);
      box-shadow: var(--shadow-2xl);
      padding: 50px;
      margin: 0 auto;
      max-width: 1000px;
      animation: fadeIn 0.8s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }

    .pricing-table::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
    }

    .pricing-table h1 {
      font-size: clamp(28px, 4vw, 36px);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 40px;
      text-align: center;
      font-weight: 700;
      position: relative;
    }

    .pricing-table h1::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      border-radius: 3px;
    }

    .responsive-table {
      overflow-x: auto;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-lg);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      background: white;
    }

    thead {
      background: linear-gradient(135deg, var(--primary), var(--dark));
      color: white;
      position: relative;
    }

    thead::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
    }

    th {
      padding: 20px 15px;
      text-align: left;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    tbody tr {
      border-bottom: 1px solid rgba(26, 26, 46, 0.1);
      transition: all 0.3s ease;
      position: relative;
    }

    tbody tr:hover {
      background: linear-gradient(90deg, rgba(255, 107, 53, 0.05), rgba(212, 175, 55, 0.05));
      transform: translateX(5px);
    }

    tbody tr:hover::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--secondary), var(--accent));
    }

    td {
      padding: 18px 15px;
      font-size: 15px;
      font-weight: 400;
      color: var(--text);
      position: relative;
    }

    .cost {
      font-weight: 700;
      color: var(--primary);
    }

    .note {
      text-align: center;
      font-style: italic;
      color: var(--gray);
      margin-top: 20px;
      font-weight: 300;
    }

    /* Payment Gateways */
    .payment-gateways {
      padding: 120px 0;
      background: linear-gradient(135deg, var(--surface) 0%, rgba(248, 250, 252, 0.9) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .payment-gateways::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 25, 47, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .gateways-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 60px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 2;
    }

    .gateway {
      background: white;
      border-radius: 20px;
      padding: 30px 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transform: translateY(0);
    }

    .gateway::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
      transition: left 0.6s ease;
    }

    .gateway:hover::before {
      left: 100%;
    }

    .gateway:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border-color: var(--secondary);
    }

    .gateway-icon-wrapper {
      position: relative;
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f8f9fa, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      overflow: hidden;
    }

    .gateway:hover .gateway-icon-wrapper {
      transform: rotate(360deg) scale(1.1);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }

    .gateway-image {
      width: 60px;
      height: 40px;
      object-fit: contain;
      transition: all 0.4s ease;
      position: relative;
      z-index: 2;
      filter: brightness(1.1) contrast(1.1);
    }

    .gateway:hover .gateway-image {
      transform: scale(1.05);
      filter: brightness(1.2) contrast(1.2);
    }

    .gateway-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.4s ease;
      border-radius: 50%;
    }

    .gateway:hover .gateway-overlay {
      opacity: 0.9;
    }

    .gateway-overlay i {
      font-size: 30px;
      color: white;
      transform: scale(0.8);
      transition: transform 0.3s ease;
    }

    .gateway:hover .gateway-overlay i {
      transform: scale(1);
    }

    .gateway h4 {
      font-size: 18px;
      color: var(--primary);
      margin-bottom: 8px;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .gateway:hover h4 {
      color: var(--secondary);
    }

    .gateway p {
      font-size: 14px;
      color: var(--gray);
      margin: 0;
      font-weight: 300;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }

    .gateway:hover p {
      opacity: 1;
    }

    /* Animation keyframes */
    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes pulse-glow {

      0%,
      100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      50% {
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
      }
    }

    .gateway:nth-child(odd) {
      animation: float 6s ease-in-out infinite;
    }

    .gateway:nth-child(even) {
      animation: float 6s ease-in-out infinite reverse;
    }

    .gateway:hover {
      animation-play-state: paused;
    }

    .gateway h4 {
      font-size: 16px;
      color: var(--dark);
      font-weight: 400;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
      color: white;
      padding: 80px 0 40px;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary), var(--accent), var(--gold));
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 50px;
      margin-bottom: 60px;
      position: relative;
      z-index: 2;
    }

    .footer-column {
      position: relative;
    }

    .footer-column h3 {
      font-size: 22px;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
      font-weight: 600;
      background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      border-radius: 3px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 15px;
      position: relative;
      padding-left: 20px;
    }

    .footer-column ul li::before {
      content: 'â–¶';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--secondary);
      font-size: 12px;
      transition: all 0.3s ease;
    }

    .footer-column ul li:hover::before {
      transform: translateX(3px);
    }

    .footer-column ul li a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 400;
      font-size: 15px;
      display: block;
    }

    .footer-column ul li a:hover {
      color: var(--secondary);
      transform: translateX(5px);
    }

    .contact-info li {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--border-radius);
      border-left: 3px solid var(--secondary);
      transition: all 0.3s ease;
    }

    .contact-info li:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .contact-info i {
      color: var(--secondary);
      font-size: 20px;
      margin-top: 2px;
      min-width: 20px;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      transition: var(--transition);
    }

    .social-icons a:hover {
      background: var(--secondary);
      transform: translateY(-5px);
      color: var(--primary);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: #aaa;
      font-weight: 300;
    }

    .footer-svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 150px;
      z-index: 1;
    }

    .footer-svg path {
      fill: var(--primary-dark);
    }

    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
      }

      70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
      }
    }

    @keyframes rotateGlobe {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 40px;
      }

      .hero p {
        font-size: 18px;
      }

      .cards-container {
        flex-direction: column;
        align-items: center;
      }

      .card {
        width: 100%;
        max-width: 500px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hero {
        padding: 150px 0 80px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      /* Trust Indicators Mobile */
      .trust-indicators {
        padding: 60px 0;
      }

      .trust-badge {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
        margin-bottom: 40px;
      }

      .trust-icon {
        font-size: 36px;
      }

      .trust-text h3 {
        font-size: 22px;
      }

      .trust-text p {
        font-size: 14px;
      }

      .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
      }

      .stat-item {
        padding: 15px;
      }

      .stat-number {
        font-size: 28px;
      }

      .stat-label {
        font-size: 12px;
      }

      .client-logo {
        min-width: 100px;
        padding: 12px;
      }

      .client-logo i {
        font-size: 20px;
      }

      .client-logo span {
        font-size: 11px;
      }

      .pricing-table {
        padding: 30px 20px;
      }

      /* Pricing Tabs Mobile */
      .pricing-tabs {
        flex-direction: column;
        padding: 6px;
        border-radius: 15px;
        max-width: 300px;
        margin: 0 auto;
      }

      .pricing-tab {
        min-width: auto;
        padding: 12px 20px;
        font-size: 14px;
        margin-bottom: 4px;
        border-radius: 10px;
      }

      .pricing-tab:last-child {
        margin-bottom: 0;
      }

      .tab-slider {
        width: calc(100% - 12px);
        height: 44px;
        border-radius: 10px;
        transition: transform 0.3s ease;
      }

      #hotspot-tab:checked~.tab-slider {
        transform: translateY(0);
      }

      #pppoe-tab:checked~.tab-slider {
        transform: translateY(48px);
      }

      .pricing-tab i {
        font-size: 16px;
      }

      .footer-content {
        flex-direction: column;
        gap: 30px;
      }

      /* Payment Gateways Mobile */
      .payment-gateways {
        padding: 60px 0;
      }

      .gateways-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
      }

      .gateway {
        padding: 20px 15px;
      }

      .gateway-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
      }

      .gateway-image {
        width: 45px;
        height: 30px;
      }

      .gateway h4 {
        font-size: 16px;
      }

      .gateway p {
        font-size: 12px;
      }

      /* Trust Indicators Small Mobile */
      .trust-stats {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .stat-item {
        padding: 20px 15px;
      }

      .client-logo {
        min-width: 80px;
        padding: 10px;
      }

      .client-logo i {
        font-size: 18px;
      }

      .client-logo span {
        font-size: 10px;
      }

      /* Pricing Tabs Small Mobile */
      .pricing-tabs-container {
        padding: 0 20px;
      }

      .pricing-tabs {
        max-width: 280px;
      }

      .pricing-tab {
        padding: 10px 15px;
        font-size: 13px;
      }

      .pricing-tab i {
        font-size: 18px;
      }

      .tab-slider {
        height: 40px;
      }

      #pppoe-tab:checked~.tab-slider {
        transform: translateY(44px);
      }
    }

    @media (max-width: 480px) {
      .gateways-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .gateway {
        padding: 15px 10px;
      }

      .gateway-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
      }

      .gateway-image {
        width: 35px;
        height: 25px;
      }

      .gateway h4 {
        font-size: 14px;
        margin-bottom: 5px;
      }

      .gateway p {
        font-size: 11px;
      }
    }


    /* Email Verification Section */
    .email-verification {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
    }

    .verification-container {
      background: white;
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
      max-width: 500px;
      width: 100%;
      margin: 0 auto;
      padding: 50px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .verification-container:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--secondary);
      z-index: 2;
    }

    .verification-icon {
      font-size: 64px;
      color: var(--secondary);
      margin-bottom: 25px;
      animation: pulse 2s infinite;
    }

    .verification-container h1 {
      font-size: 32px;
      color: var(--primary);
      margin-bottom: 15px;
    }

    .verification-container p {
      font-size: 18px;
      color: var(--gray);
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .verification-form {
      margin-top: 30px;
    }

    .form-group {
      margin-bottom: 25px;
      text-align: left;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--primary);
    }

    .form-group input {
      width: 100%;
      padding: 14px 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-family: 'Dosis', sans-serif;
      font-size: 16px;
      transition: var(--transition);
    }

    .form-group input:focus {
      border-color: var(--secondary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    }

    .submit-btn {
      background: var(--secondary);
      color: var(--primary);
      border: none;
      padding: 15px 40px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 18px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      display: block;
      width: 100%;
      margin-top: 20px;
    }

    .submit-btn:hover {
      background: #c19b2c;
      transform: translateY(-3px);
      box-shadow: 0 7px 20px rgba(212, 175, 55, 0.4);
    }

    .confirmation-message {
      display: none;
      background: rgba(10, 25, 47, 0.95);
      color: white;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      margin-top: 40px;
    }

    .confirmation-message i {
      font-size: 50px;
      color: var(--secondary);
      margin-bottom: 20px;
      display: block;
    }

    .additional-options {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid var(--light-gray);
    }

    .additional-options p {
      margin-bottom: 15px;
      color: var(--gray);
    }



    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
      }

      70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
      }
    }

    @keyframes rotateGlobe {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {


      .email-verification {
        padding: 100px 0 60px;
      }

      .verification-container {
        padding: 40px 25px;
      }

      .verification-container h1 {
        font-size: 28px;
      }

      .verification-container p {
        font-size: 16px;
      }


    }
