/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  background: #000000;
}

/* Header - Sling dark */
.main-header {
  background: #000000;
  border-bottom: 1px solid #333;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-item {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: #ff6b35;
}

.support-btn {
  background: #ff6b35;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.support-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem 5rem 2rem;
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.customer-type-banner {
  margin-top: 0.75rem;
}

.customer-type-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(255, 107, 53, 0.15);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.35);
}

/* Plans */
.plans-section {
  background: #000000;
  padding: 2rem 0 3rem 0;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.plan-card {
  background: #111111;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid #333;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: #444;
}

.plan-card.featured,
.plan-card.premium {
  border: 2px solid #ff6b35;
  background: #0f0f0f;
}

.plan-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-description {
  font-size: 0.9rem;
  color: #bbbbbb;
  margin-bottom: 0.75rem;
}

.plan-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.plan-details {
  font-size: 0.85rem;
  color: #aaaaaa;
  margin-bottom: 1rem;
}

.plan-button {
  width: 100%;
  background: #ff6b35;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

/* Additional Products */
.additional-products {
  margin-top: 2rem;
  padding: 2rem 1rem;
  background: #000000;
}

.additional-products h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.product-card {
  background: #111111;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
  border: 1px solid #333;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #444;
}

.product-header {
  text-align: center;
  margin-bottom: 1rem;
}

.product-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.product-card .currency { font-size: 1rem; vertical-align: top; color: #ff6b35; }
.product-card .amount   { font-size: 2rem; }

.product-description { text-align: center; margin-bottom: 1rem; }
.product-description p { color: #cccccc; }

.product-disclaimer {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
}

.product-disclaimer p { color: #bbbbbb; margin: 0; }

.product-button {
  width: 100%;
  background: #ff6b35;
  color: #ffffff;
  border: none;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.75rem;
}

.product-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

/* FAQ */
.faq-section {
  background: #000000;
  border-radius: 16px;
  padding: 1.5rem 1rem;
}

.faq-section h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.faq-item {
  margin-bottom: 0.75rem;
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #111111;
}

.faq-item:hover { border-color: #444; box-shadow: 0 6px 16px rgba(0,0,0,0.5); }
.faq-item:last-child { margin-bottom: 0; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #1a1a1a;
}

.faq-question h3 { color: #ffffff; font-size: 1rem; font-weight: 700; margin: 0; }
.faq-icon { font-size: 1.25rem; font-weight: 800; color: #ff6b35; user-select: none; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.active .faq-answer { max-height: 240px; }

.faq-answer p { color: #cccccc; margin: 0; padding: 1rem; background: #111111; }

/* Disclaimers */
.disclaimers {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.25rem 1rem 2rem 1rem;
  border-left: 4px solid #ff6b35;
  border: 1px solid #333;
}

.disclaimers h3 { color: #ffffff; margin-bottom: 0.75rem; font-size: 1.1rem; font-weight: 800; }
.disclaimers ul { list-style: none; padding: 0; }
.disclaimers li { padding: 0.6rem 0; border-bottom: 1px solid #333; font-size: 0.95rem; color: #cccccc; }
.disclaimers li:last-child { border-bottom: none; }
.disclaimers li strong { color: #ff6b35; }

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 1% auto;
  padding: 0;
  border-radius: 15px;
  width: 98%;
  max-width: 600px;
  height: 95vh;
  position: relative;
  animation: modalSlideIn 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #333;
}

@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }

.close {
  position: absolute;
  top: 0.75rem; right: 1rem;
  font-size: 2rem; font-weight: 800;
  color: #ff6b35; cursor: pointer; background: none; border: none;
}

.close:hover { color: #e55a2b; }

.modal-header {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #333; flex-shrink: 0; background: #1a1a1a;
  border-radius: 15px 15px 0 0; height: 80px;
  display: flex; flex-direction: column; justify-content: center;
}

.modal-header h2 { text-align: center; color: #ffffff; font-size: 1.15rem; }

.modal-body {
  padding: 1rem 1.25rem; overflow-y: auto; flex: 1; height: calc(95vh - 160px); min-height: 0;
}

.modal-footer {
  padding: 0.75rem 1.25rem; border-top: 1px solid #333; flex-shrink: 0; background: #1a1a1a;
  border-radius: 0 0 15px 15px; height: 80px; display: flex; align-items: center; justify-content: center;
}

.selected-plan {
  text-align: center;
  background: #2a2a2a;
  padding: 0.85rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ff6b35;
  border: 1px solid #333;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full-width { grid-template-columns: 1fr; }
.form-row .form-group { margin-bottom: 0; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; color: #ffffff; font-size: 0.95rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #333;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: #2a2a2a;
  color: #ffffff;
}

.form-group select { cursor: pointer; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

/* Checkboxes */
.disclaimer-checkbox,
.support-request-checkbox,
.support-preference {
  background: #2a2a2a;
  padding: 0.85rem;
  border-radius: 8px;
  border: 2px solid #333;
}

.support-request-checkbox,
.support-preference { border-color: #ff6b35; }

.checkbox-label { display: flex; align-items: flex-start; cursor: pointer; font-size: 0.9rem; line-height: 1.4; color: #ffffff; }
.checkbox-label input[type="checkbox"] { margin-right: 0.8rem; margin-top: 0.2rem; transform: scale(1.2); cursor: pointer; }
.checkbox-label:hover { color: #ff6b35; }

.submit-btn {
  width: 100%;
  background: #ff6b35;
  color: white;
  border: none;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.submit-btn:hover { transform: translateY(-2px); background: #e55a2b; box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35); }

/* Terms */
.terms-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid #333;
}

.terms-header { text-align: center; margin-bottom: 2rem; }
.terms-header h1 { font-size: 2rem; font-weight: 800; color: #ff6b35; }
.terms-header p { font-size: 1rem; color: #cccccc; }

.terms-section { margin-bottom: 1.75rem; }
.terms-section h2 { color: #ffffff; font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; border-bottom: 2px solid #ff6b35; padding-bottom: 0.35rem; }
.terms-section h3 { color: #ffffff; font-size: 1rem; font-weight: 700; margin: 0.75rem 0; }
.terms-section p, .terms-section ul { color: #cccccc; }
.terms-section ul { padding-left: 1.25rem; }
.highlight-box { background: #2a2a2a; border: 2px solid #ff6b35; border-radius: 10px; padding: 1rem; margin: 1rem 0; }
.highlight-box h3 { color: #ff6b35; margin: 0 0 0.5rem 0; }
.last-updated { text-align: center; color: #999999; font-style: italic; margin-top: 1.25rem; padding-top: 0.75rem; border-top: 1px solid #333; }

/* Responsive */
@media (max-width: 1024px) {
  .modal-content { margin: 2% auto; width: 95%; max-width: 560px; height: 90vh; }
  .modal-header { height: 70px; }
  .modal-body { height: calc(90vh - 140px); }
  .modal-footer { height: 70px; }
}

@media (max-width: 768px) {
  .header-content { padding: 0 1rem; gap: 0.75rem; flex-direction: column; }
  .logo { font-size: 1.4rem; }
  .main-nav { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
  .hero-title { font-size: 1.75rem; }
  .plans-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .plan-card { padding: 1.25rem; }
  .modal-content { margin: 4% auto; width: 95%; height: 90vh; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .plans-grid { grid-template-columns: 1fr; }
  .modal-content { margin: 2% auto; width: 98%; height: 95vh; }
  .modal-header { height: 60px; padding: 0.6rem 0.85rem; }
  .modal-body { height: calc(95vh - 120px); padding: 0.6rem 0.85rem; }
  .modal-footer { height: 60px; padding: 0.6rem 0.85rem; }
  .form-group input, .form-group textarea, .form-group select { padding: 0.65rem; font-size: 0.95rem; }
}