
:root {
  --divbackground: #020308;
  --foreground: #2600ff;
  --card: rgba(18, 24, 50, 0.8);
  --primary: #0400ff;
  --primary-dark: #00a8cc;
  --text-muted: #000000;
  --border-color: #334155;
  --radius: 10px;
}

body {
  --text-muted: #ffffff;
}

.hero-section {
  position: relative;
  padding-top: 96px;
  padding-bottom: 64px;
  text-align: center;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 500px;
  background: rgba(77, 217, 255, 0.05);
  filter: blur(120px);
  z-index: -1;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(77, 217, 255, 0.5);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}


.text-primary {
  color: var(--primary);
}

.text-glow {
  text-shadow: 0 0 10px rgba(77, 217, 255, 0.5);
}

.hero-description {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ===== Projects Container ===== */
.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.project-section {
  position: relative;
  margin: 0;
  padding: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.project-order-2 {
  order: 2;
}

.project-order-1 {
  order: 1;
}

@media (min-width: 1024px) {
  .project-order-lg-1 {
    order: 1;
  }

  .project-order-lg-2 {
    order: 2;
  }
}

/* ===== Project Content ===== */
.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.icon-badge {
  padding: 12px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(77, 217, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-badge i {
  color: var(--primary);
  width: 24px;
  height: 24px;
}

.icon-badge-secondary {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.2);
}

.icon-badge-secondary i {
  color: var(--secondary);
}

.project-title {
  color: rgb(0, 174, 255);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.project-description {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== Features List (Horus Parent) ===== */
.features-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-point {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.3));
  flex-shrink: 0;
}

/* ===== Features Boxes (QrHorus) ===== */
.features-boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-box {
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgb(0, 0, 0);
}

.feature-box-title {
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-box-title i {
  color: var(--primary);
  font-size: 1rem;
}

.feature-box-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== Project Images (Cards) ===== */
.project-image {
  position: relative;
}

.card-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(0, 60, 255, 0.3) 0%, rgba(17, 0, 255, 0.3) 100%);
  border-radius: 16px;
  filter: blur(1px);
  opacity: 0.25;
  transition: opacity 0.3s ease 1s;
  z-index: 0;
}

.project-image:hover .card-glow {
  opacity: 0.5;
}

.card-glow-secondary {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(77, 217, 255, 0.3) 100%);
}

.project-card {
  position: relative;
  background: rgba(0, 9, 51, 0.8);
  border: 1px solid rgba(4, 0, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.card-light {
  background: rgba(0, 10, 54, 0.8);
}

.card-header-content {
  background: rgba(238, 238, 238, 0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(77, 217, 255, 0.1);
}

.card-meta {
  color: rgb(0, 132, 255);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.card-title-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  filter: drop-shadow(0 0 4px rgba(77, 217, 255, 0.3));
  border-radius: 4px;
}

.card-body-grid {
  padding: 32px;
  display: flex;
  width: 100%;
  gap: 16px;
  flex: 1;
}

.grid-column1{
  display: flex;
  flex-direction: column;
  width: 70%;
  gap: 10px;
}

.grid-column2{
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 10px;
}

.grid-item {
  height: 90px;
  background: rgba(37, 0, 247, 0.1);
  border: 1px solid rgba(77, 217, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-item2 {
  height: 220px;
  background: rgba(37, 0, 247, 0.1);
  border: 1px solid rgba(77, 217, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-item i {
  font-size: 2rem;
  color: rgba(77, 217, 255, 0.3);
}

/* ===== Phone Container (Horus Parent) ===== */
.phone-container {
  width: 100%;
  height: 100%;
  background: rgba(251, 191, 36, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-container::before {
  content: "";
  position: absolute;
  inset: 32px;
  background: rgba(251, 191, 36, 0.2);
  filter: blur(48px);
  border-radius: 50%;
  z-index: 0;
}

  

.phone-container i {
  font-size: 12rem;
  color: var(--secondary);
  position: relative;
  z-index: 1;
}
.phone-container::before, .phone-container::after {
  animation: pulse 2s infinite;
} 
/* ===== QR Display ===== */
.qr-display {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
}

.qr-glow {
  position: absolute;
  inset: 48px;
  background: rgba(77, 217, 255, 0.2);
  filter: blur(60px);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 0;
}

.qr-display i:first-of-type {
  font-size: 8rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.qr-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--divbackground);
  border: 1px solid rgba(77, 217, 255, 0.5);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 15px rgba(77, 217, 255, 0.3));
  z-index: 2;
}

.qr-badge i {
  color: var(--primary);
  font-size: 1.5rem;
}

.qr-info {
  text-align: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.qr-status {
  display: inline-block;
  background: rgba(251, 191, 36, 0.1);
  color: var(--secondary);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.qr-version {
  font-size: 0.75rem;
  font-family: "Courier New", monospace;
  color: var(--text-muted);
}

/* ===== Buttons ===== */
.btn {
  padding: 16px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn i {
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--divbackground);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(77, 217, 255, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--divbackground);
  border: 2px solid transparent;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--border-color);
  transform: translateY(-2px);
}

/* ===== Footer CTA ===== */
.footer-cta {
  margin-top: 128px;
  padding: 48px 24px;
}

.footer-content {
  padding: 48px;
  border: 1px solid rgba(77, 217, 255, 0.2);
  border-radius: 24px;
  background: rgba(95, 77, 255, 0.05);
  backdrop-filter: blur(12px);
}

.footer-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-description {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ===== Glow Effects ===== */
.glow-sm {
  box-shadow: 0 0 15px rgba(77, 217, 255, 0.3);
}

.glow-primary {
  box-shadow: 0 0 25px rgba(77, 217, 255, 0.5);
}

/* ===== Animations ===== */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}

/* ===== Utility Classes ===== */
.overflow-x-hidden {
  overflow-x: hidden;
}

.pb-20 {
  padding-bottom: 80px;
}

.min-h-screen {
  min-height: 100vh;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .projects-container {
    gap: 64px;
  }

  .project-grid {
    gap: 32px;
  }

  .feature-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    padding: 32px;
  }
}
.terms-hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 64px;
  text-align: center;
  z-index: 1;
}

.terms-hero .hero-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 500px;
  background: rgba(77, 217, 255, 0.05);
  filter: blur(120px);
  z-index: -1;
}

.terms-hero .hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.terms-hero .hero-description {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ===== Terms Content Section ===== */
.terms-content {
  padding: 64px 0;
}

.terms-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}

@media (max-width: 1024px) {
  .terms-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .toc-sidebar {
    order: 2;
  }

  .terms-main {
    order: 1;
  }
}

/* ===== Table of Contents ===== */
.toc-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.toc-card {
  padding: 24px;
  border: 1px solid rgba(77, 217, 255, 0.2);
  border-radius: 16px;
  background: rgba(95, 77, 255, 0.05);
  backdrop-filter: blur(12px);
}

.toc-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.toc-list a:hover {
  background: rgba(77, 217, 255, 0.1);
  color: var(--primary);
  transform: translateX(-4px);
}

/* ===== Main Terms Content ===== */
.terms-intro {
  margin-bottom: 48px;
  padding: 32px;
  border: 1px solid rgba(77, 217, 255, 0.2);
  border-radius: 16px;
  background: rgba(95, 77, 255, 0.05);
}

.terms-intro p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.terms-intro p:first-child {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Terms Sections ===== */
.terms-section {
  margin-bottom: 48px;
  padding: 32px;
  border: 1px solid rgba(77, 217, 255, 0.1);
  border-radius: 12px;
  background: rgba(37, 0, 247, 0.02);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-header i {
  font-size: 1.875rem;
  color: var(--primary);
}

.section-header h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.section-content {
  color: var(--text-muted);
  line-height: 1.8;
}

.section-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.section-content h4 {
  font-weight: 700;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(77, 217, 255, 0.05);
  border-left: 3px solid var(--primary);
}

.feature-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
}

/* ===== Contact Info ===== */
.contact-info {
  background: rgba(77, 217, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(77, 217, 255, 0.1);
  margin-top: 16px;
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.contact-info p strong {
  color: var(--primary);
}

/* ===== Terms Footer ===== */
.terms-footer {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid rgba(77, 217, 255, 0.2);
  border-radius: 16px;
  background: rgba(95, 77, 255, 0.05);
  text-align: center;
}

.terms-footer p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .terms-hero .hero-title {
    font-size: 2.5rem;
  }

  .terms-hero .hero-description {
    font-size: 1rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header h2 {
    font-size: 1.375rem;
  }

  .terms-section {
    padding: 24px;
  }

  .toc-sidebar {
    position: static;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .terms-intro,
  .terms-section,
  .contact-info {
    padding: 16px;
  }

  .feature-list li {
    padding: 10px;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }
}