/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #6c3ce0;
  --primary-dark: #5a2dc5;
  --accent: #00d4aa;
  --bg: #0a0e1a;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #1e293b;
  --gradient: linear-gradient(135deg, #6c3ce0 0%, #00d4aa 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 20% 50%,
      rgba(108, 60, 224, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(0, 212, 170, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 2rem;
}

.price-tag .currency {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
}

.price-tag .amount {
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.price-tag .period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 60, 224, 0.4);
}

.trust-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Hero image */
.hero-image-wrapper {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.hero-image-wrapper img {
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Shared section styles */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Value Props */
.value-props {
  padding: 5rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-props-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.value-prop {
  text-align: center;
  padding: 1.5rem;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-prop h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-prop p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* How To Install */
.how-to {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.setup-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.setup-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.setup-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.setup-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.device-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.device-tab {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.device-tab h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.device-tab ol {
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.device-tab ol li {
  margin-bottom: 0.3rem;
}

.device-tab ol li strong {
  color: var(--text);
}

.pro-tips {
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}

.pro-tips h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--accent);
}

.pro-tips ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pro-tips ul li {
  margin-bottom: 0.4rem;
}

.pro-tips ul li strong {
  color: var(--text);
}

/* Coverage */
.coverage {
  padding: 6rem 2rem;
  background: var(--bg-card);
}

.coverage-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.country-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: border-color 0.2s;
}

.country-card:hover {
  border-color: var(--accent);
}

.country-flag {
  font-size: 1.8rem;
}

.country-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.country-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Product details */
.product-details {
  padding: 6rem 2rem;
}

.product-inner {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.product-header {
  margin-bottom: 2rem;
}

.product-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.detail-row:last-of-type {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
}

.detail-value {
  font-weight: 600;
}

.detail-value.highlight {
  color: var(--accent);
}

.product-cta {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}

/* FAQ */
.faq {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA section */
.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===================== Checkout Page ===================== */
.checkout-page {
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--bg);
}

.checkout-container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-gap: 2.5rem;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Order Summary Sidebar */
.order-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
}

.summary-sticky {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.order-summary h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.summary-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.summary-product-icon {
  font-size: 2rem;
  background: rgba(108, 60, 224, 0.15);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-product h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.summary-product p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.summary-details {
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.summary-row .highlight {
  color: var(--accent);
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.summary-total span:first-child {
  font-size: 0.95rem;
  font-weight: 600;
}

.total-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.summary-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-badge {
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Checkout Form */
.checkout-form-wrapper {
  max-width: 660px;
}

.checkout-header {
  margin-bottom: 2rem;
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--accent);
}

.checkout-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.checkout-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.checkout-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #ef4444;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--bg-card);
}

.form-section legend {
  font-size: 1rem;
  font-weight: 600;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-icon {
  font-size: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  margin-top: 1rem;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
}

.form-group input::placeholder {
  color: #475569;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 60, 224, 0.15);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--accent);
}

.card-brands {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
}

.card-brand {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.checkout-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gradient);
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.checkout-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 60, 224, 0.4);
}

.checkout-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================== Thank You Page ===================== */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg);
}

.thankyou-card {
  max-width: 600px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.thankyou-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.thankyou-card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thankyou-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.order-id-box {
  display: inline-flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.order-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.order-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.thankyou-steps {
  text-align: left;
  margin-bottom: 2rem;
}

.thankyou-steps h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.next-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.next-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.next-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.next-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.thankyou-note {
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.thankyou-note p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.thankyou-note strong {
  color: var(--text);
}

/* Responsive */
@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 4rem 1.5rem 2rem;
  }

  .device-tabs {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .value-props,
  .how-to,
  .coverage,
  .product-details,
  .faq,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .product-inner {
    padding: 2rem 1.5rem;
  }

  .checkout-page {
    padding: 1rem;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .thankyou-card {
    padding: 2rem 1.5rem;
  }
}

