@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg-color: #050511;
  --surface-color: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-primary: #f8f9fa;
  --text-secondary: #a0aab2;
  --accent-primary: #00d2ff;
  --accent-secondary: #3a7bd5;
  --gradient-main: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


body::before,
body::after {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.15;
}

body::before {
  background-color: var(--accent-primary);
  top: -200px;
  left: -200px;
}

body::after {
  background-color: var(--accent-secondary);
  bottom: -200px;
  right: -200px;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}


h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}



.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 210, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--surface-color);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}


.glass-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(5, 5, 17, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: relative;
}


.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--gradient-main);
  filter: blur(40px);
  opacity: 0.3;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}


.video-section {
  background: radial-gradient(ellipse at center, rgba(0, 210, 255, 0.04) 0%, transparent 70%);
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  max-width: 960px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-rating {
  color: #ffb800;
}

.testimonial-content {
  font-style: italic;
  color: var(--text-secondary);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}


.pricing-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.pricing-table th,
.pricing-table td {
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.pricing-table th {
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-table td.feature-name {
  text-align: left;
  font-weight: 500;
}

.pricing-table thead th.recommended {
  border-top: 3px solid var(--accent-primary);
  background: rgba(0, 210, 255, 0.05);
}


.footer {
  background: #03030a;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about p {
  color: var(--text-secondary);
  margin-top: 20px;
  font-size: 0.95rem;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
}


@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 30px;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    
  }

  .menu-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}


.nav-contact-btn {
  padding: 10px 20px !important;
  color: white !important;
}

.text-secondary-small {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-social-label {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  font-size: 1.2rem;
}

.footer-social-link {
  color: var(--text-secondary);
}

.section-no-pt {
  padding-top: 0 !important;
}

.header-hero-bg {
  padding-top: 150px !important;
  background: radial-gradient(circle at top, rgba(0, 210, 255, 0.1), transparent 60%);
}




.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
  text-decoration: none;
  margin-right: 15px;
}

.back-link:hover {
  color: var(--accent-primary);
}

.back-link svg {
  transition: transform var(--transition);
}

.back-link:hover svg {
  transform: translateX(-3px);
}


.nav-brand-wrapper { display: flex; align-items: center; }
.hero-subtitle { color: var(--text-secondary); font-size: 1.2rem; max-width: 600px; margin: 20px auto 0; }
.hero-subtitle-sm { color: var(--text-secondary); font-size: 1.15rem; max-width: 600px; margin: 20px auto 0; }
.text-secondary-mb20 { color: var(--text-secondary); margin-bottom: 20px; }
.rounded-md { border-radius: var(--radius-md); }
.map-iframe { border: 0; }
.mb-30 { margin-bottom: 30px; }
.btn-block-lg { width: 100%; border-radius: var(--radius-sm); padding: 16px; }
.mr-8 { margin-right: 8px; }
