/* Midnight Cyber Design Tokens */
:root {
  /* Surfaces */
  --bg-canvas: #090d16;          /* Rich deep midnight background */
  --bg-panel: #111726;           /* Subtle dark slate card base */
  --bg-panel-header: #182235;    /* Accent background for headers */
  --bg-hover: #1e2a42;

  /* Subtle Glows & Borders */
  --border-subtle: #1f2d45;
  --border-focus: #3b82f6;

  /* Typography */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Soft Accent Palette */
  --accent-blue: #38bdf8;        /* Soft icy blue primary */
  --accent-blue-hover: #0284c7;
  --accent-emerald: #34d399;     /* Soft mint green status */
  --accent-indigo: #818cf8;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--border-subtle);
  background-color: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-mono);
}

.brand h3 {
  margin: 0;
  color: var(--text-primary);
}

.brand-0-icon {
  color: var(--accent-blue);
  font-size: 18px;
  margin-right: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-mono);
  transition: color 0.15s ease;
}

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

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #080c14;
  border: 1px solid var(--accent-blue);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-blue-hover);
  border-color: var(--accent-blue-hover);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
  background-color: var(--bg-panel);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background-color: var(--bg-hover);
  border-color: var(--border-focus);
}

/* Hero Section */
.hero {
  padding: 60px 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 12px;
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.status-dot {
  color: var(--accent-emerald);
  font-size: 10px;
}

.hero-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 820px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 0 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Console Terminal Box */
.terminal-window {
  background-color: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.terminal-header {
  background-color: var(--bg-panel-header);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.terminal-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  white-space: nowrap;
}

.term-muted { color: var(--text-muted); }
.term-success { color: var(--accent-emerald); }
.term-info { color: var(--text-secondary); }
.term-accent { color: var(--accent-blue); }

/* Metrics Section */
.metrics-container {
  margin-top: 60px;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Details Showcase */
.details-showcase {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 14px;
  line-height: 1.2;
}

.showcase-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-icon {
  color: var(--accent-blue);
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 15px;
  background: rgba(56, 189, 248, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  flex-shrink: 0;
}

.detail-text h4 {
  margin: 0 0 6px 0;
  font-size: 15px;
  color: var(--text-primary);
}

.detail-text p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Mobile & Adaptive Layout Rules */
@media (max-width: 820px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--bg-panel);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    align-items: stretch;
    display: none; /* Controlled by JS toggle */
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 16px;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .details-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .terminal-header {
    flex-direction: column;
    gap: 4px;
  }
}


/* Animated Cursor & Inline Terminal Styles */
.terminal-body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 140px; /* Prevents height jumping when clearing */
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background-color: var(--accent-blue);
  margin-top: 4px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


/* Tools Hub Section */
.tools-hub {
  margin-top: 80px;
  margin-bottom: 60px;
}

.tools-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* Category Filter Bar */
.tools-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-panel);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--bg-hover);
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
}

/* Grid Layout */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tool-icon {
  font-size: 20px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  color: var(--accent-blue);
}

.tool-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-panel-header);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

.tool-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--text-primary);
}

.tool-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.tool-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.status-indicator {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-emerald);
}

.btn-tool {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.tool-card:hover .btn-tool {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}





.serveses-body{
  padding-left:100px;
  padding-right:100px;
}





















/* ==========================================================================
   Independent Pricing Page Styles
   ========================================================================== */

.pricing-page-wrapper {
  padding: 120px 0 80px 0;
  min-height: calc(100vh - 100px);
}

.billing-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
}

.billing-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted, #94a3b8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.discount-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  padding: 0;
}

.toggle-switch.yearly {
  background-color: var(--accent-color, #00f2fe);
  border-color: var(--accent-color, #00f2fe);
}

.toggle-circle {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-circle.active {
  transform: translateX(20px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.pricing-card.popular-card {
  background: rgba(15, 23, 42, 0.85);
  border-color: var(--accent-color, #00f2fe);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.15);
}

.popular-tag-wrapper {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.popular-tag {
  background: var(--accent-color, #00f2fe);
  color: #050b14;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.plan-description {
  font-size: 0.875rem;
  color: var(--text-muted, #94a3b8);
  line-height: 1.5;
}

.plan-price-box {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
}

.plan-price-box .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-right: 2px;
}

.plan-price-box .price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  font-family: monospace, monospace;
}

.plan-price-box .billing-period {
  font-size: 0.875rem;
  color: var(--text-muted, #94a3b8);
  margin-left: 8px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.feature-icon {
  color: var(--accent-color, #00f2fe);
  font-weight: bold;
}

.pricing-card-footer .plan-cta-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
}

.no-plans-text {
  color: var(--text-muted, #94a3b8);
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 0;
}

.pamentMethod {
    background-color: var(--bg-panel);
    border: 2px solid var(--border-subtle);
    width: 80%;
    margin: 20px auto;
    border-radius: 8px;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    gap: 20px;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.pamentMethod:hover {
    transform: scale(1.03);
    border-color: var(--border-focus);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.pamentMethodCommingsoon {
  filter: opacity(50%);
  background-color: var(--bg-panel);
  border: 2px dashed var(--border-subtle); /* Dashed border signals inactive/disabled state */
  width: 80%;
  margin: 20px auto;
  border-radius: 8px;
  padding: 15px 20px;

  display: flex;
  align-items: center;
  gap: 20px;

  cursor: not-allowed; /* Shows locked/disabled cursor */
  pointer-events: none; /* Disables clicks */
  user-select: none;

  transition: filter 0.25s ease;
}

.pamentMethodCommingsoon:hover {
  filter: opacity(50%); /* Prevents hover state activation */
  transform: none;
  box-shadow: none;
}

.pamentMethodImageDiv {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.pamentMethodImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pamentMethodLabel {
    flex: 1;
    text-align: left;
    padding-top: 14px;
}

.pamentMethodLabel h4 {
    margin: 0;
    font-size: 28px;
    color: var(--text-primary);
}

.pamentMethodLabel p {
    margin-top: 2px;
    color: var(--text-secondary);
    font-size: 15px;
}