/* =========
   GLOBAL RESET
   ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050811;
  color: #f5f6fa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========
   LAYOUT HELPERS
   ========= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========
   HEADER / NAV
   ========= */
.site-header {
  background: #050811;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* LOGO IMAGE */
.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  cursor: pointer;
}

/* =========
   NAVIGATION
   ========= */
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.nav a {
  margin-left: 12px;
  font-size: 0.9rem;
  opacity: 0.75;
  position: relative;
  padding-bottom: 4px;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #00e5ff;
}

/* =========
   HERO
   ========= */
.hero {
  padding: 70px 0 60px;
  background: radial-gradient(circle at top, #122744 0, #050811 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-text h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #00e5ff;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 0.98rem;
  color: #d0d6e0;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-note {
  font-size: 0.9rem;
  color: #aeb4c5;
}

/* =========
   BUTTONS
   ========= */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #00e5ff, #4d8cff);
  color: #050811;
  box-shadow: 0 8px 18px rgba(0, 229, 255, 0.25);
}

.btn.secondary {
  border-color: #4d8cff;
  color: #d0d6e0;
}

.btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

/* =========
   SECTIONS
   ========= */
.section {
  padding: 50px 0;
}

.section-alt {
  background: #090f1e;
}

.section h1,
.section h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.lead {
  font-size: 0.98rem;
  color: #d0d6e0;
  max-width: 720px;
}

/* =========
   ABOUT LAYOUT
   ========= */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.subheading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aeb4c5;
  margin-bottom: 8px;
}

/* =========
   HOW IT WORKS
   ========= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.step-card {
  background: #090f1e;
  border-radius: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.step-number {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00e5ff;
  color: #050811;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  margin-bottom: 8px;
}

/* =========
   PRICING
   ========= */
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 22px;
}

.price-card {
  background: #090f1e;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.best-value {
  border-color: #00e5ff !important;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
}

.badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: #00e5ff;
  color: #050811;
  text-transform: uppercase;
}

.small {
  font-size: 0.85rem;
  color: #aeb4c5;
  margin-top: 4px;
}

/* =========
   LISTS
   ========= */
.steps-list,
.bullet-list {
  margin: 10px 0 18px;
  padding-left: 18px;
  font-size: 0.96rem;
}

.steps-list li,
.bullet-list li {
  margin-bottom: 6px;
}

/* =========
   FAQ
   ========= */
.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #090f1e;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #ffffff;
  padding: 12px 16px;
  border: none;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00e5ff;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 10px;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: #00e5ff;
}

.faq-answer {
  display: none;
  padding: 10px 16px 14px;
  font-size: 0.95rem;
  color: #d0d6e0;
}

/* =========
   SUPPORT
   ========= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.support-card {
  background: #090f1e;
  border-radius: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* =========
   CONTACT
   ========= */
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.contact-info {
  max-width: 420px;
  font-size: 0.96rem;
}

/* =========
   RECOMMENDED DEVICE
   ========= */
.recommended-device {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.recommended-image {
  flex: 0 0 260px;
  max-width: 260px;
}

.recommended-text {
  flex: 1;
  min-width: 220px;
}

/* =========
   TEXT BLOCKS
   ========= */
.text-block h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1rem;
}

.text-block p {
  font-size: 0.95rem;
  color: #d0d6e0;
}

/* =========
   FOOTER
   ========= */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  background: #050811;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: #aeb4c5;
}

.footer-links a {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

/* =========
   RESPONSIVE DESIGN
   ========= */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 6px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  /* MOBILE LOGO SIZE */
  .logo-img {
    height: 50px !important;
    width: auto !important;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recommended-device {
    flex-direction: column;
  }

  .recommended-image {
    max-width: 100%;
  }
}
