@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-hue: 236;
  --primary: hsl(var(--primary-hue), 85%, 66%);
  --primary-glow: hsla(var(--primary-hue), 85%, 66%, 0.3);
  --primary-hover: hsl(var(--primary-hue), 90%, 70%);
  
  --bg-dark: hsl(240, 25%, 7%);
  --bg-card: hsla(240, 22%, 12%, 0.7);
  --border-glass: hsla(240, 20%, 25%, 0.4);
  --border-focus: hsla(var(--primary-hue), 85%, 66%, 0.6);
  
  --text-main: hsl(0, 0%, 98%);
  --text-muted: hsl(240, 8%, 70%);
  --text-accent: hsl(236, 100%, 80%);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
}

/* Background Gradients */
.bg-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, hsla(236, 80%, 60%, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.bg-glow-2 {
  position: absolute;
  top: 60%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, hsla(250, 75%, 55%, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: hsl(240, 15%, 20%);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(240, 15%, 30%);
}

/* Typography & Layout Utility */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 15px var(--primary-glow);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 30%, var(--text-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text-main);
  text-shadow: 0 0 10px var(--primary-glow);
}

.btn-nav-download {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(250, 85%, 60%) 100%);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px var(--primary-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-nav-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(var(--primary-hue), 85%, 66%, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(250, 85%, 60%) 100%);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: max-content;
  transition: var(--transition-smooth);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px hsla(var(--primary-hue), 85%, 66%, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tagline {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(var(--primary-hue), 85%, 66%, 0.1);
  border: 1px solid rgba(114, 129, 253, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #ffffff, #bec3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 550px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.download-link-img {
  display: inline-block;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.download-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.download-info-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* Floating Animation for Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glass);
  animation: float 6s ease-in-out infinite;
}

/* Services Section */
.services {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  background: linear-gradient(to right, #ffffff, #a3acff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  max-width: 600px;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsla(var(--primary-hue), 85%, 66%, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 1.75rem;
  transition: var(--transition-smooth);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-focus);
  box-shadow: 0 15px 30px var(--primary-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  z-index: 1;
}

.service-card p {
  font-size: 0.95rem;
  z-index: 1;
}

/* Features/Benefits Section */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, hsla(240, 20%, 5%, 0.5));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: hsla(240, 22%, 10%, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsla(140, 70%, 50%, 0.1);
  color: #10b981;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-card:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.85rem;
}

/* Call to Action Section */
.cta-banner {
  padding: 80px 0;
  position: relative;
}

.cta-box {
  background: radial-gradient(ellipse at top right, hsla(var(--primary-hue), 85%, 66%, 0.15), transparent), var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  position: relative;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsla(var(--primary-hue), 85%, 66%, 0.1) 0%, transparent 70%);
  right: -50px;
  bottom: -100px;
  z-index: 0;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  z-index: 1;
}

.cta-title {
  font-size: 2.2rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
  background: hsl(240, 25%, 5%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .logo-wrapper {
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-links-col h5 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--text-main);
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links-col a:hover {
  color: var(--text-main);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.footer-socials a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-tagline {
    align-self: center;
  }
  
  .hero-description {
    margin: 0 auto;
  }

  .hero-cta {
    align-items: center;
  }

  .download-link-img {
    align-self: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .services {
    padding: 60px 0;
  }
  
  .features {
    padding: 60px 0;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .btn-nav-download {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .btn-primary-large {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-box {
    padding: 2rem 1.2rem;
  }
  
  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

/* Privacy Policy Page Styles */
.privacy-hero {
  padding-top: 180px;
  padding-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.privacy-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #bec3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.privacy-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-sidebar h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-accent);
  margin-bottom: 1rem;
  font-family: var(--font-title);
}

.privacy-sidebar a {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.privacy-sidebar a:hover,
.privacy-sidebar a.active {
  color: var(--text-main);
  background: hsla(var(--primary-hue), 85%, 66%, 0.15);
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.privacy-section {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem;
  scroll-margin-top: 100px;
}

.privacy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.privacy-section h2 span.num {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(250, 85%, 60%) 100%);
  color: #fff;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-title);
}

.privacy-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-section ul,
.privacy-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.privacy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.privacy-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.privacy-table th {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-glass);
}

.privacy-table td {
  padding: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass);
}

.privacy-table tr:last-child td {
  border-bottom: none;
}

.privacy-info-box {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-glass);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.privacy-info-box .icon {
  font-size: 1.5rem;
}

.privacy-info-box .text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .privacy-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .privacy-sidebar {
    position: relative;
    top: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .privacy-sidebar h3 {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

