:root {
  --bg-primary: #141418;
  --bg-secondary: #1c1c21;
  --bg-tertiary: #252529;
  --bg-card: #2a2a30;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --accent: #0ea5e9;
  --accent-hover: #38bdf8;
  --accent-bright: #22d3ee;
  --purple: #a855f7;
  --purple-bright: #c084fc;
  --pink: #ec4899;
  --accent-subtle: rgba(14, 165, 233, 0.15);
  --purple-subtle: rgba(168, 85, 247, 0.15);
  --border: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(255, 255, 255, 0.22);
  --success: #10b981;
  --glow-accent: 0 0 30px rgba(14, 165, 233, 0.4);
  --glow-purple: 0 0 30px rgba(168, 85, 247, 0.4);
  --glow-mixed: 0 0 40px rgba(14, 165, 233, 0.3),
    0 0 60px rgba(168, 85, 247, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-secondary);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(20, 20, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links a {
    padding: 12px 0;
    font-size: 1.1rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(14, 165, 233, 0.35) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(168, 85, 247, 0.3) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(236, 72, 153, 0.2) 0%,
      transparent 45%
    );
  animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5%, -5%);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--accent-subtle),
    var(--purple-subtle)
  );
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--accent-bright);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.15);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--success);
}

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

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(
    135deg,
    var(--accent-bright),
    var(--purple-bright)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 500px;
}

@media (max-width: 968px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 968px) {
  .hero-cta {
    justify-content: center;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-mixed);
  background: linear-gradient(
    135deg,
    var(--accent-hover),
    var(--purple-bright)
  );
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid var(--accent);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-subtle);
  box-shadow: var(--glow-accent);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-mockup {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 165, 233, 0.2);
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(14, 165, 233, 0.1), 0 0 100px rgba(168, 85, 247, 0.05);
}

.mockup-header {
  background: var(--bg-tertiary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mockup-dot:nth-child(1) {
  background: #ff5f57;
}
.mockup-dot:nth-child(2) {
  background: #febc2e;
}
.mockup-dot:nth-child(3) {
  background: #28c840;
}

.mockup-content {
  padding: 0;
  background: #000;
  position: relative;
}

.mockup-content video {
  width: 100%;
  display: block;
}

.mockup-content video.hidden {
  display: none;
}

/* Video Toggle */
.video-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.video-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
}

.toggle-option {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
}

.toggle-option.active {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
}

.toggle-option:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.mock-window {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
  animation: windowFloat 3s ease-in-out infinite;
}

.mock-window:nth-child(2) {
  animation-delay: 0.5s;
}

.mock-window:nth-child(3) {
  animation-delay: 1s;
}

@keyframes windowFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.mock-window-header {
  background: var(--bg-tertiary);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-window-header .mockup-dot {
  width: 8px;
  height: 8px;
}

.mock-window-body {
  padding: 16px;
  min-height: 100px;
}

.mock-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mock-line:last-child {
  width: 60%;
  margin-bottom: 0;
}

/* Close button overlay */
.close-btn-overlay {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  background: rgba(255, 59, 48, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
  opacity: 0;
  transform: scale(0.5);
  animation: closeAppear 0.5s ease-out 1s forwards;
  cursor: pointer;
  transition: transform 0.2s;
}

.mock-window:nth-child(2) .close-btn-overlay {
  animation-delay: 1.2s;
}

.mock-window:nth-child(3) .close-btn-overlay {
  animation-delay: 1.4s;
}

@keyframes closeAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-btn-overlay:hover {
  transform: scale(1.1);
}

/* Problem/Solution Section */
.problem-solution {
  background: var(--bg-secondary);
  position: relative;
}

.problem-solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border),
    transparent
  );
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

@media (max-width: 768px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.ps-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.problem-card {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.solution-card {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.ps-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.problem-card .ps-label {
  color: #ef4444;
}

.solution-card .ps-label {
  color: #10b981;
}

.ps-card h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.ps-card p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.ps-visual {
  margin-top: 32px;
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.workflow-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.workflow-step {
  background: var(--bg-tertiary);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.workflow-arrow {
  color: var(--text-muted);
}

.solution-workflow .workflow-step {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Features Section */
.features {
  position: relative;
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.features-header h2 {
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--purple),
    var(--pink)
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(14, 165, 233, 0.1);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--accent-subtle),
    var(--purple-subtle)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 500;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
  background: var(--bg-secondary);
}

.hiw-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.hiw-header h2 {
  margin-bottom: 16px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

@media (max-width: 768px) {
  .hiw-steps {
    grid-template-columns: 1fr;
  }
}

.hiw-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--accent-subtle),
    var(--purple-subtle)
  );
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-bright);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

.hiw-step h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 500;
}

.hiw-step p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

.trust-note {
  margin-top: 60px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(
    135deg,
    var(--accent-subtle),
    var(--purple-subtle)
  );
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.1);
}

.trust-note p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.trust-note strong {
  color: var(--text-primary);
}

/* Testimonials Section */
.testimonials {
  position: relative;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.testimonials-header h2 {
  margin-bottom: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.author-info h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Pricing Section */
.pricing {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  position: relative;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-tertiary);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(14, 165, 233, 0.1),
    0 0 100px rgba(168, 85, 247, 0.05);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--purple),
    var(--pink),
    var(--purple),
    var(--accent)
  );
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.pricing-badge {
  display: inline-block;
  background: var(--success);
  color: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 16px;
}

.price {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--text-primary);
}

.price-period {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.pricing-description {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--success);
  font-size: 1.25rem;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 18px 32px;
}

.system-req {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq {
  position: relative;
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.faq-header h2 {
  margin-bottom: 16px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-primary);
  padding-right: 20px;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-cta.desktop {
    display: none;
  }
}
