/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

a {
  color: #a0a0ff;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ffffff;
}

/* ===== HEADER ===== */
.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 32px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

/* ===== HERO ===== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 32px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  text-align: center;
  padding: 80px 24px 40px;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
}

.page-hero h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.page-hero p {
  color: #888;
  font-size: 1.1rem;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.info-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}

.info-block h2 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.info-block p {
  color: #ccc;
  margin-bottom: 12px;
}

.info-block ul, .info-block ol {
  padding-left: 24px;
  color: #ccc;
}

.info-block li {
  margin-bottom: 8px;
}

/* ===== TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #ccc;
}

.info-table th {
  color: #fff;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.contact-card h3 {
  color: #fff;
  margin: 16px 0 8px;
}

.contact-card p {
  color: #888;
  margin-bottom: 16px;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-wrapper h2 {
  color: #fff;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a0a0ff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary {
  background: #a0a0ff;
  color: #000;
}

.btn-primary:hover {
  background: #c0c0ff;
  color: #000;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ===== FAQ ===== */
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item summary::before {
  content: '+';
  font-size: 1.4rem;
  color: #a0a0ff;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item[open] summary::before {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  color: #aaa;
  line-height: 1.7;
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-body h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 8px 0;
}

.blog-body p {
  color: #999;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ===== PAYMENT GRID ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.payment-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.payment-card h3 {
  color: #fff;
  margin: 16px 0 8px;
}

.payment-card p {
  color: #999;
  font-size: 14px;
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-line {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0 0 40px;
}

/* Services */
.footer-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: center;
}

.footer-service img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-service p {
  color: #aaa;
  font-size: 13px;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Social */
.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-left {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.footer-center img {
  height: 28px;
  opacity: 0.6;
}

.footer-right {
  color: #555;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .footer-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-services {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}