/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #fff;
  --bg-secondary: #f9f9f9;
  --bg-tertiary: #f5f5f5;
  --text-primary: #000;
  --text-secondary: #333;
  --text-tertiary: #444;
  --text-muted: #555;
  --text-footer: #999;
  --border-color: #eee;
  --border-color-light: #ccc;
  --accent-blue: #007AFF;
  --accent-blue-hover: #0067d6;
  --card-bg: #fff;
  --card-shadow: rgba(0, 0, 0, 0.08);
  --video-caption-bg: rgba(0, 0, 0, 0.75);
  --slider-btn-bg: rgba(255, 255, 255, 0.9);
  --slider-btn-bg-hover: rgba(255, 255, 255, 1);
  --slider-btn-color: #333;
  --download-btn-fill: #000;
  --download-btn-fill-hover: #444;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #fff;
    --text-secondary: #e5e5e5;
    --text-tertiary: #d4d4d4;
    --text-muted: #a8a8a8;
    --text-footer: #666;
    --border-color: #333;
    --border-color-light: #444;
    --accent-blue: #0a84ff;
    --accent-blue-hover: #409cff;
    --card-bg: #1a1a1a;
    --card-shadow: rgba(0, 0, 0, 0.3);
    --video-caption-bg: rgba(0, 0, 0, 0.85);
    --slider-btn-bg: rgba(42, 42, 42, 0.9);
    --slider-btn-bg-hover: rgba(58, 58, 58, 1);
    --slider-btn-color: #e5e5e5;
    --download-btn-fill: #fff;
    --download-btn-fill-hover: #e5e5e5;
  }
}

body {
  font-family: -apple-system, "SF Pro Text", "SF Pro Icons",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
}

a {
  color: var(--accent-blue);
}

/* Navigation Bar */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}
/* Make the entire logo area a link */
.nav-logo a.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit; /* So text matches your nav font color */
  transition: transform 0.2s;
}

/* Hover effect on the logo + text */
.nav-logo a.logo-link:hover img {
  transform: scale(1.05); /* Slight zoom on the icon */
}
.nav-logo a.logo-link:hover span {
  color: var(--accent-blue);
}

/* If you also want the text to scale slightly, add: */
.nav-logo a.logo-link:hover {
  transform: scale(1.02);
}
.nav-actions {
  display: flex;
  align-items: center;
}

/* Inline SVG "Download" Button */
.btn-download {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-download svg {
  height: 40px;
  width: auto;
}
.btn-download svg:hover {
  opacity: 0.8;
}

@media (prefers-color-scheme: dark) {
  .btn-download svg {
    filter: invert(1);
  }
}
/* Hero Section */
.hero {
  padding: 3rem 2rem;
  text-align: center;
  background-color: var(--bg-secondary);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
}



/* Video Slider */
.video-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.video-slider {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.video-slide {
  position: relative;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
}

.video-slide.active {
  opacity: 1;
  z-index: 1;
  display: block;
}

.slider-video {
  width: 100%;
  height: auto;
  display: block;
}

.video-caption {
  background: var(--video-caption-bg);
  color: var(--text-primary);
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  margin: 0;
  backdrop-filter: blur(10px);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--slider-btn-bg);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slider-btn-color);
}

.slider-btn:hover {
  background: var(--slider-btn-bg-hover);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.4);
}

/* Video Container (legacy, if needed elsewhere) */
.video-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-color-light);
  border-radius: 12px;
}
.video-container iframe {
  width: 946px;
  height: 508px;
  pointer-events: none; /* Disable clicks */
  border: 1px solid var(--border-color-light);
  border-radius: 12px;
}

/* Features Section */
.features {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
  text-align: left;
}
.feature-card:hover {
  box-shadow: 0 4px 12px var(--card-shadow);
}
.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
}
.feature-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-tertiary);
}

/* Contact CTA */
.contact-cta {
  text-align: center;
}
.btn-contact {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: var(--accent-blue);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}
.btn-contact:hover {
  background-color: var(--accent-blue-hover);
}



/**********************************/
/* Hero Section */
/**********************************/
.privacy-hero {
  padding: 3rem 2rem;
  text-align: center;
  background-color: var(--bg-secondary);
}

.privacy-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-hero h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.privacy-hero .subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/**********************************/
/* Main Privacy Content */
/**********************************/
.privacy-text {
  padding: 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.privacy-container {
  margin-top: 1rem;
}

.privacy-container h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.privacy-container h3 {
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.privacy-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

.privacy-container a {
  color: var(--accent-blue);
  text-decoration: none;
}
.privacy-container a:hover {
  text-decoration: underline;
}



/* Footer */
.footer {
  text-align: center;
  padding: 1rem 2rem;
  color: var(--text-footer);
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
}
.footer a {
  color: inherit;
  text-decoration: underline;
}
.footer a:hover {
  color: var(--text-muted);
}
