 /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      color: #1a1a2e;
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; height: auto; }

    /* ===== HEADER / NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #fff;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      padding: 0 40px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 22px;
      color: #1a1a2e;
    }
    .nav-logo .logo-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, #2563eb, #06b6d4);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
    }
    .nav-logo .logo-sub {
      font-size: 10px;
      font-weight: 500;
      color: #06b6d4;
      display: block;
      margin-top: -4px;
      letter-spacing: 0.5px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: #4a5568;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a:hover { color: #2563eb; }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #2563eb;
      transition: width 0.3s;
    }
    .nav-links a:hover::after { width: 100%; }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .lang-selector {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      font-size: 13px;
      color: #4a5568;
      position: relative;
    }
    .lang-selector .flag { font-size: 18px; }
    .lang-dropdown {
      position: absolute;
      top: 30px;
      right: 0;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      display: none;
      min-width: 140px;
      overflow: hidden;
      z-index: 100;
    }
    .lang-dropdown.show { display: block; }
    .lang-dropdown a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      font-size: 13px;
      transition: background 0.2s;
    }
    .lang-dropdown a:hover { background: #f0f4ff; }
    .currency-selector {
  font-size: 13px;
  color: #4a5568;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 8px 4px;
}
.currency-selector:hover { color: #2563eb; }
.currency-dropdown {
  position: absolute;
  top: 38px;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: none;
  min-width: 180px;
  overflow: hidden;
  z-index: 100;
}
.currency-dropdown.show { display: block; }
.currency-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: #4a5568;
  transition: background 0.2s;
  cursor: pointer;
}
.currency-dropdown a:hover { background: #f0f4ff; color: #2563eb; }
    }
    .nav-cart {
      font-size: 18px;
      color: #4a5568;
      cursor: pointer;
      position: relative;
      transition: color 0.3s;
    }
    .nav-cart:hover { color: #2563eb; }
    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: #ef4444;
      color: #fff;
      font-size: 10px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }
    .nav-login {
      font-size: 14px;
      font-weight: 500;
      color: #4a5568;
      cursor: pointer;
      transition: color 0.3s;
    }
    .nav-login:hover { color: #2563eb; }
    .btn-client {
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #fff;
      padding: 10px 24px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(37,99,235,0.3);
    }
    .btn-client:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(37,99,235,0.4);
    }
    .mobile-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: #1a1a2e;
      background: none;
      border: none;
    }

    /* ===== HERO SECTION ===== */
    .hero {
      background: linear-gradient(135deg, #0f1729 0%, #1a2744 50%, #1e3a5f 100%);
      padding: 140px 40px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .hero::before {
      content: 'cPanel';
      position: absolute;
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 200px;
      font-weight: 900;
      color: rgba(255,255,255,0.03);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 8px 20px;
      border-radius: 25px;
      margin-bottom: 30px;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
    }
    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    .hero h1 {
      font-size: 56px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.1;
    }
    .hero p {
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      max-width: 600px;
      margin: 0 auto 40px;
    }

    /* Domain Search */
    .domain-search {
      max-width: 700px;
      width: 100%;
      margin: 0 auto 30px;
      display: flex;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .domain-search input {
      flex: 1;
      padding: 18px 24px;
      border: none;
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      outline: none;
      color: #1a1a2e;
    }
    .domain-search input::placeholder { color: #9ca3af; }
    .domain-search .search-icon {
      padding: 0 16px;
      display: flex;
      align-items: center;
      color: #9ca3af;
    }
    .btn-search {
      background: linear-gradient(135deg, #06b6d4, #2563eb);
      color: #fff;
      border: none;
      padding: 18px 32px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
      white-space: nowrap;
    }
    .btn-search:hover { opacity: 0.9; }

    /* Domain Extensions */
    .domain-extensions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
    }
    .ext-badge {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 8px 16px;
      border-radius: 8px;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      backdrop-filter: blur(5px);
      transition: all 0.3s;
      cursor: default;
    }
    .ext-badge:hover { background: rgba(255,255,255,0.15); }
    .ext-badge .ext-name { font-weight: 700; }
    .ext-badge .ext-price { opacity: 0.7; margin-left: 6px; }

    /* Hero Features */
    .hero-features {
      display: flex;
      justify-content: center;
      gap: 40px;
      color: rgba(255,255,255,0.6);
      font-size: 14px;
    }
    .hero-features span {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-features i { font-size: 16px; }

    /* ===== SECTION TITLES ===== */
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #eff6ff;
      color: #2563eb;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .section-badge.purple { background: #f3e8ff; color: #7c3aed; }
    .section-badge.dark { background: rgba(6,182,212,0.1); color: #06b6d4; }
    .section-title {
      font-size: 40px;
      font-weight: 900;
      color: #1a1a2e;
      margin-bottom: 12px;
    }
    .section-subtitle {
      font-size: 16px;
      color: #6b7280;
      margin-bottom: 50px;
    }

    /* ===== HOSTING PLANS ===== */
    .plans-section {
      padding: 80px 40px;
      text-align: center;
      background: #fff;
    }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto 40px;
    }
    .plan-card {
      background: #fff;
      border: 2px solid #e5e7eb;
      border-radius: 16px;
      padding: 32px 24px;
      text-align: left;
      transition: all 0.3s;
      position: relative;
    }
    .plan-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .plan-card.popular {
      border-color: #2563eb;
      box-shadow: 0 8px 30px rgba(37,99,235,0.15);
    }
    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: #f59e0b;
      color: #fff;
      padding: 4px 16px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }
    .plan-name {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 4px;
    }
    .plan-price .amount {
      font-size: 42px;
      font-weight: 900;
      color: #2563eb;
    }
    .plan-price .period {
      font-size: 14px;
      color: #6b7280;
    }
    .plan-domain {
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 20px;
    }
    .plan-domain.free { color: #22c55e; font-weight: 600; }
    .plan-features {
      margin-bottom: 24px;
    }
    .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 6px 0;
      font-size: 14px;
      color: #4a5568;
    }
    .plan-features li i {
      color: #22c55e;
      font-size: 14px;
      width: 16px;
      flex-shrink: 0;
    }
    .plan-features li strong { color: #1a1a2e; }
    .btn-order {
      width: 100%;
      padding: 14px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .btn-order.blue {
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #fff;
      box-shadow: 0 4px 15px rgba(37,99,235,0.3);
    }
    .btn-order.blue:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(37,99,235,0.4);
    }
    .btn-order.outline {
      background: #fff;
      color: #2563eb;
      border: 2px solid #2563eb;
    }
    .btn-order.outline:hover {
      background: #2563eb;
      color: #fff;
    }
    .plans-footer {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      font-size: 13px;
      color: #6b7280;
    }
    .plans-footer span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ===== RESELLER PLANS ===== */
    .reseller-section {
      padding: 80px 40px;
      text-align: center;
      background: #fafbfc;
    }
    .reseller-card {
      background: #fff;
      border: 2px solid #e5e7eb;
      border-radius: 16px;
      padding: 32px 24px;
      text-align: left;
      transition: all 0.3s;
      position: relative;
    }
    .reseller-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .reseller-card.popular {
      border-color: #7c3aed;
      background: linear-gradient(135deg, #7c3aed, #a855f7);
      color: #fff;
      box-shadow: 0 8px 30px rgba(124,58,237,0.2);
    }
    .reseller-card.popular .plan-name,
    .reseller-card.popular .plan-price .amount { color: #fff; }
    .reseller-card.popular .plan-features li { color: rgba(255,255,255,0.9); }
    .reseller-card.popular .plan-features li i { color: #a5f3fc; }
    .reseller-card.popular .plan-price .period { color: rgba(255,255,255,0.7); }
    .cpanel-box {
      background: rgba(0,0,0,0.05);
      border-radius: 10px;
      padding: 12px 16px;
      margin-bottom: 16px;
    }
    .reseller-card.popular .cpanel-box { background: rgba(255,255,255,0.15); }
    .cpanel-box .label {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 2px;
    }
    .reseller-card.popular .cpanel-box .label { color: rgba(255,255,255,0.7); }
    .cpanel-box .value {
      font-size: 28px;
      font-weight: 900;
      color: #1a1a2e;
    }
    .reseller-card.popular .cpanel-box .value { color: #fff; }
    .cpanel-box .value span {
      font-size: 14px;
      font-weight: 600;
      margin-left: 4px;
    }
    .btn-order.purple {
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      color: #fff;
      box-shadow: 0 4px 15px rgba(124,58,237,0.3);
    }
    .btn-order.purple:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(124,58,237,0.4);
    }
    .btn-order.outline-purple {
      background: #fff;
      color: #7c3aed;
      border: 2px solid #7c3aed;
    }
    .btn-order.outline-purple:hover { background: #7c3aed; color: #fff; }

    /* ===== VPS SECTION ===== */
    .vps-section {
      padding: 80px 40px;
      text-align: center;
      background: linear-gradient(135deg, #0f1729, #1a2744, #1e3a5f);
      color: #fff;
    }
    .vps-section .section-title { color: #fff; }
    .vps-section .section-subtitle { color: rgba(255,255,255,0.6); }
    .vps-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: left;
      transition: all 0.3s;
      position: relative;
      backdrop-filter: blur(10px);
    }
    .vps-card:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,0.08);
    }
    .vps-card.popular {
      border-color: #06b6d4;
      background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(37,99,235,0.15));
    }
    .vps-card .plan-name { color: #fff; }
    .vps-card .plan-price .amount { color: #f59e0b; }
    .vps-card .plan-price .period { color: rgba(255,255,255,0.6); }
    .vps-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      font-size: 14px;
      color: rgba(255,255,255,0.8);
    }
    .vps-features li i {
      font-size: 16px;
      color: #06b6d4;
      width: 20px;
      flex-shrink: 0;
    }
    .vps-features li.check i { color: #22c55e; }
    .btn-order.cyan {
      background: linear-gradient(135deg, #06b6d4, #0891b2);
      color: #fff;
      box-shadow: 0 4px 15px rgba(6,182,212,0.3);
    }
    .btn-order.cyan:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(6,182,212,0.4);
    }
    .btn-order.outline-cyan {
      background: transparent;
      color: #06b6d4;
      border: 2px solid #06b6d4;
    }
    .btn-order.outline-cyan:hover { background: #06b6d4; color: #fff; }
    .os-section {
      margin-top: 50px;
      padding: 30px;
      background: rgba(255,255,255,0.05);
      border-radius: 16px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .os-section h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #fff;
    }
    .os-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .os-tag {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 8px 18px;
      border-radius: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.8);
    }

    /* ===== FAQ SECTION ===== */
    .faq-section {
      padding: 80px 40px;
      text-align: center;
      background: #fff;
    }
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }
    .faq-item {
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: all 0.3s;
    }
    .faq-item.active { border-color: #2563eb; }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 24px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      color: #1a1a2e;
      background: #fff;
      transition: all 0.3s;
    }
    .faq-item.active .faq-question { color: #2563eb; }
    .faq-question i {
      font-size: 14px;
      color: #9ca3af;
      transition: transform 0.3s;
    }
    .faq-item.active .faq-question i { transform: rotate(180deg); color: #2563eb; }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-answer-content {
      padding: 0 24px 18px;
      font-size: 14px;
      color: #6b7280;
      line-height: 1.7;
    }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
      padding: 80px 40px;
      background: #f8fafc;
    }
    .contact-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info h2 {
      font-size: 36px;
      font-weight: 900;
      color: #1a1a2e;
      margin-bottom: 12px;
    }
    .contact-info > p {
      font-size: 15px;
      color: #6b7280;
      margin-bottom: 40px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }
    .contact-item .icon-box {
      width: 48px;
      height: 48px;
      background: #eff6ff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2563eb;
      font-size: 18px;
      flex-shrink: 0;
    }
    .contact-item h4 {
      font-size: 15px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 2px;
    }
    .contact-item p, .contact-item a {
      font-size: 14px;
      color: #2563eb;
    }
    .contact-item .address { color: #6b7280; }
    .contact-form {
      background: #fff;
      padding: 36px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #374151;
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e5e7eb;
      border-radius: 10px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.3s;
      color: #1a1a2e;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: #2563eb; }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #9ca3af; }
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    .btn-submit {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #06b6d4, #2563eb);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s;
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(37,99,235,0.3);
    }
    .btn-submit:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }
    .form-status {
      margin-top: 12px;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 14px;
      display: none;
    }
    .form-status.success {
      display: block;
      background: #f0fdf4;
      color: #166534;
      border: 1px solid #bbf7d0;
    }
    .form-status.error {
      display: block;
      background: #fef2f2;
      color: #991b1b;
      border: 1px solid #fecaca;
    }

    /* ===== ORDER MODAL ===== */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px);
      z-index: 2000;
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding: 40px 20px;
      overflow-y: auto;
    }
    .modal-overlay.show { display: flex; }
    .modal {
      background: #fff;
      border-radius: 20px;
      max-width: 1000px;
      width: 100%;
      animation: modalIn 0.3s ease;
    }
    @keyframes modalIn {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 32px;
      border-bottom: 1px solid #e5e7eb;
    }
    .modal-header h2 {
      font-size: 24px;
      font-weight: 800;
    }
    .modal-close {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #6b7280;
      transition: color 0.3s;
    }
    .modal-close:hover { color: #1a1a2e; }
    .modal-body {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 0;
    }
    .modal-left {
      padding: 32px;
      border-right: 1px solid #e5e7eb;
    }
    .modal-right {
      padding: 32px;
      background: #f9fafb;
      border-radius: 0 0 20px 0;
    }
    .order-section {
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 20px;
    }
    .order-section h3 {
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .order-section h3 i { color: #2563eb; }
    .selected-plan {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      background: #f0f4ff;
      border-radius: 8px;
    }
    .selected-plan .plan-info .name {
      font-weight: 700;
      font-size: 15px;
    }
    .selected-plan .plan-info .type {
      font-size: 12px;
      color: #6b7280;
    }
    .selected-plan .price {
      font-size: 20px;
      font-weight: 800;
      color: #2563eb;
    }
    .selected-plan .price span {
      font-size: 12px;
      font-weight: 500;
      color: #6b7280;
    }

    /* Domain tabs */
    .domain-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .domain-tab {
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      background: #e5e7eb;
      color: #4a5568;
    }
    .domain-tab.active {
      background: #2563eb;
      color: #fff;
    }
    .domain-input-row {
      display: flex;
      gap: 8px;
    }
    .domain-input-row input {
      flex: 1;
      padding: 12px 16px;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      font-family: 'Inter', sans-serif;
    }
    .domain-input-row input:focus { border-color: #2563eb; }
    .domain-input-row select {
      padding: 12px;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      font-family: 'Inter', sans-serif;
      background: #fff;
      cursor: pointer;
      min-width: 160px;
    }
    .domain-input-row select:focus { border-color: #2563eb; }
    .domain-input-row button {
      padding: 12px 16px;
      background: #2563eb;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.3s;
    }
    .domain-input-row button:hover { background: #1d4ed8; }

    /* Billing cycle */
    .billing-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .billing-option {
      border: 2px solid #e5e7eb;
      border-radius: 10px;
      padding: 16px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
    }
    .billing-option.active {
      border-color: #2563eb;
      background: #f0f4ff;
    }
    .billing-option .rec-badge {
      position: absolute;
      top: -10px;
      right: 10px;
      background: #06b6d4;
      color: #fff;
      padding: 2px 10px;
      border-radius: 10px;
      font-size: 10px;
      font-weight: 700;
    }
    .billing-option .cycle-name {
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 4px;
    }
    .billing-option .cycle-price {
      font-size: 24px;
      font-weight: 900;
      color: #2563eb;
    }
    .billing-option .cycle-monthly {
      font-size: 12px;
      color: #6b7280;
    }

    /* Recap */
    .recap h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .recap-line {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      font-size: 14px;
      color: #4a5568;
    }
    .recap-line.total {
      border-top: 2px solid #e5e7eb;
      margin-top: 8px;
      padding-top: 12px;
      font-weight: 800;
      font-size: 16px;
      color: #1a1a2e;
    }
    .recap-line.total .value { color: #2563eb; font-size: 20px; }
    .promo-row {
      display: flex;
      gap: 8px;
      margin: 16px 0;
    }
    .promo-row input {
      flex: 1;
      padding: 10px 14px;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-size: 13px;
      outline: none;
      font-family: 'Inter', sans-serif;
    }
    .promo-row button {
      padding: 10px 18px;
      background: #e5e7eb;
      border: none;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .promo-row button:hover { background: #d1d5db; }
    .btn-continue {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
      transition: all 0.3s;
    }
    .btn-continue:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(37,99,235,0.4);
    }

    /* Client info form in modal */
    .client-form { margin-top: 20px; }
    .client-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .client-form .form-group { margin-bottom: 0; }
    .client-form .form-group label {
      font-size: 12px;
      margin-bottom: 4px;
    }
    .client-form .form-group input,
    .client-form .form-group select {
      padding: 10px 14px;
      font-size: 13px;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #0f1729;
      color: #fff;
      padding: 60px 40px 0;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }
    .footer-brand .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .footer-brand .footer-logo .logo-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, #2563eb, #06b6d4);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .footer-brand > p {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .payment-methods {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }
    .payment-badge {
      background: rgba(255,255,255,0.1);
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
    }
    .payment-badge.paypal { color: #00b4d8; }
    .social-links {
      display: flex;
      gap: 10px;
    }
    .social-links a {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 16px;
      transition: all 0.3s;
    }
    .social-links a:hover { background: #2563eb; color: #fff; }
    .footer-col h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .footer-col a {
      display: block;
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 10px;
      transition: color 0.3s;
    }
    .footer-col a:hover { color: #fff; }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
    }
    .footer-contact-item i {
      color: #2563eb;
      font-size: 16px;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .footer-contact-item .label {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }
    .footer-contact-item .value {
      font-size: 14px;
      color: rgba(255,255,255,0.8);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 20px 0;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
    }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
    .footer-bottom-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      transition: color 0.3s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* ===== WHATSAPP BUTTON ===== */
    .whatsapp-btn {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 28px;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      z-index: 999;
      transition: all 0.3s;
    }
    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .plans-grid { grid-template-columns: repeat(2, 1fr); }
      .modal-body { grid-template-columns: 1fr; }
      .modal-right { border-radius: 0 0 20px 20px; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .navbar { padding: 0 20px; }
      .nav-links { 
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 16px;
      }
      .nav-links.show { display: flex; }
      .nav-right { gap: 10px; }
      .nav-right .nav-login, .currency-selector { display: none; }
      .mobile-toggle { display: block; }
      .hero { padding: 120px 20px 60px; min-height: auto; }
      .hero h1 { font-size: 32px; }
      .hero p { font-size: 15px; }
      .domain-search { flex-direction: column; border-radius: 12px; }
      .btn-search { justify-content: center; border-radius: 0 0 12px 12px; }
      .domain-extensions { gap: 6px; }
      .ext-badge { padding: 6px 10px; font-size: 11px; }
      .hero-features { flex-direction: column; gap: 8px; align-items: center; }
      .plans-grid { grid-template-columns: 1fr; max-width: 400px; }
      .section-title { font-size: 28px; }
      .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .modal { margin: 10px; }
      .modal-left, .modal-right { padding: 20px; }
      .billing-options { grid-template-columns: 1fr; }
      .domain-input-row { flex-direction: column; }
      .client-form .form-row { grid-template-columns: 1fr; }
    }
	/* Domain search results */
.domain-result-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transition: all 0.3s;
}
.domain-result-card.available {
  border-color: rgba(34,197,94,0.5);
  background: rgba(34,197,94,0.1);
}
.domain-result-card.taken {
  border-color: rgba(239,68,68,0.4);
  background: rgba(239,68,68,0.08);
  opacity: 0.7;
}
.domain-result-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.domain-result-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}
.domain-result-status.available {
  background: #22c55e;
  color: #fff;
}
.domain-result-status.taken {
  background: #ef4444;
  color: #fff;
}
.domain-result-price {
  font-size: 18px;
  font-weight: 800;
  color: #06b6d4;
}
.domain-result-btn {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.domain-result-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6,182,212,0.4);
}
.domain-result-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.domain-results-header {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.domain-results-header .close-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 18px;
}
/* Résultat domaine dans le modal de commande */
.order-domain-result {
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  border: 2px solid;
}
.order-domain-result.checking {
  background: #f0f4ff;
  border-color: #c7d2fe;
  color: #4338ca;
}
.order-domain-result.available {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
}
.order-domain-result.taken {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}
.order-domain-result.error {
  background: #fffbeb;
  border-color: #fcd34d;
  color: #92400e;
}
.order-domain-result .domain-name {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-domain-result .use-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.order-domain-result .use-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(34,197,94,0.4);
}
.order-domain-result .price-badge {
  background: rgba(255,255,255,0.6);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}
.order-domain-result.taken .use-btn {
  background: #9ca3af;
  cursor: not-allowed;
}
.order-domain-result.taken .use-btn:hover {
  transform: none;
  box-shadow: none;
}
/* Boutons de paiement */
.payment-btn {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
  margin-bottom: 10px;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.payment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.payment-btn.paypal {
  border-color: #0070ba;
}
.payment-btn.paypal:hover {
  background: linear-gradient(135deg, #003087, #0070ba);
  color: #fff;
}
.payment-btn.paypal i:first-child {
  font-size: 32px;
  color: #0070ba;
  flex-shrink: 0;
}
.payment-btn.paypal:hover i:first-child { color: #fff; }
.payment-btn.bank {
  border-color: #059669;
}
.payment-btn.bank:hover {
  background: linear-gradient(135deg, #047857, #059669);
  color: #fff;
}
.payment-btn.bank i:first-child {
  font-size: 28px;
  color: #059669;
  flex-shrink: 0;
}
.payment-btn.bank:hover i:first-child { color: #fff; }
.payment-btn .pay-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.payment-btn .pay-text strong {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}
.payment-btn:hover .pay-text strong { color: #fff; }
.payment-btn .pay-text span {
  font-size: 12px;
  color: #6b7280;
}
.payment-btn:hover .pay-text span { color: rgba(255,255,255,0.85); }
.payment-btn .pay-arrow {
  font-size: 14px;
  color: #9ca3af;
  transition: transform 0.3s;
}
.payment-btn:hover .pay-arrow {
  color: #fff;
  transform: translateX(4px);
}
.btn-back-payment {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}
.btn-back-payment:hover { color: #2563eb; }