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

:root {
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Colors */
  --bg-dark: #030712;
  --bg-dark-accent: #07071e;
  
  --primary-indigo: #6366f1;
  --primary-indigo-rgb: 99, 102, 241;
  --secondary-violet: #8b5cf6;
  --secondary-violet-rgb: 139, 92, 246;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  
  --card-bg: rgba(15, 23, 42, 0.45);
  --card-border: rgba(99, 102, 241, 0.08);
  --card-border-hover: rgba(99, 102, 241, 0.25);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --header-bg: rgba(3, 7, 18, 0.75);
  --glow-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
  --btn-glow-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

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

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.12) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(3, 7, 18, 1) 0px, rgba(7, 7, 30, 0.8) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.2);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.4);
}

/* Typography & Headers */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Custom Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-accent {
  background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-violet));
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-violet), var(--primary-indigo));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.btn-primary > * {
  position: relative;
  z-index: 2;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--glow-shadow);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header-scrolled {
  padding: 10px 0;
  background: rgba(3, 7, 18, 0.9);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: #ffffff;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-violet));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.badge-wrapper {
  margin-bottom: 24px;
  display: inline-block;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-new .pulse {
  width: 6px;
  height: 6px;
  background: var(--primary-indigo);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

.hero-title {
  font-size: 68px;
  max-width: 900px;
  margin: 0 auto 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 70px;
}

/* Interactive Candidate Mockup */
.mockup-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.mockup-window {
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  text-align: left;
}

.mockup-header {
  background: #0f111a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }

.mockup-title {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-body {
  background: #070913;
  padding: 24px;
}

/* Candidate Card Mockup */
.mock-candidate-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mock-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
}

.mock-info h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 2px;
}

.mock-info span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-card-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-score-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-score-badge .score-glow {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.mock-card-actions {
  display: flex;
  gap: 8px;
}

.mock-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mock-btn-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--text-secondary);
}

.mock-card-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mock-body-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.mock-skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mock-skill-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.mock-skill-tag.highlight {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
}

.mock-ai-explain {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px;
}

.mock-ai-explain p {
  font-size: 13px;
  line-height: 1.5;
}

.mock-body-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-strengths-gaps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-list-item {
  display: flex;
  gap: 8px;
  font-size: 13px;
  align-items: flex-start;
}

.mock-list-item svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.mock-list-item.strength svg {
  fill: #10b981;
}

.mock-list-item.gap svg {
  fill: #f59e0b;
}

.mock-list-item span {
  color: var(--text-secondary);
}

.mock-progress-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.mock-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.mock-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-indigo), var(--accent-cyan));
  border-radius: 99px;
  transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Feature Section */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-indigo);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
  color: #ffffff;
}

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

.feature-card {
  padding: 32px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* How It Works Section */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-indigo), rgba(139, 92, 246, 0.1));
}

.timeline-step {
  position: relative;
  margin-bottom: 60px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  background: #0f111a;
  border: 2px solid var(--primary-indigo);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  z-index: 2;
}

.timeline-content {
  padding: 30px;
}

.timeline-content h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.timeline-content p {
  max-width: 650px;
}

/* Pricing Grid */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-toggle-label.active {
  color: #ffffff;
}

.pricing-switch {
  width: 50px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  padding: 3px;
  cursor: pointer;
  display: flex;
  transition: background-color 0.3s;
}

.pricing-switch-handle {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-switch.active {
  background: var(--primary-indigo);
  border-color: var(--primary-indigo);
}

.pricing-switch.active .pricing-switch-handle {
  transform: translateX(22px);
}

.pricing-save-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.popular {
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(7, 7, 30, 0.4) 100%);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-indigo), var(--secondary-violet));
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 9999px;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.pricing-card-header {
  margin-bottom: 30px;
}

.pricing-card-header h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  color: #ffffff;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-period {
  font-size: 15px;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-features-list {
  list-style: none;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-indigo);
  flex-shrink: 0;
}

.pricing-feature-item.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-feature-item.disabled svg {
  fill: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.faq-icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.faq-icon-wrapper svg {
  width: 12px;
  height: 12px;
  fill: var(--text-secondary);
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 24px;
}

.faq-answer {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-bottom: 24px;
}

/* Active FAQ states */
.faq-item.active {
  border-color: var(--card-border-hover);
}

.faq-item.active .faq-icon-wrapper {
  background: var(--primary-indigo);
  border-color: var(--primary-indigo);
}

.faq-item.active .faq-icon-wrapper svg {
  fill: #ffffff;
  transform: rotate(180deg);
}

.faq-item.active .faq-body {
  max-height: 200px; /* Estimated height */
}

/* CTA Footer Block */
.cta-banner {
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.cta-banner-content {
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

.cta-banner h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-banner p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Footer styling */
.footer {
  background: #02040a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-links-grid {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

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

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

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  color: var(--text-muted);
  font-size: 18px;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing-grid .pricing-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* We will use Javascript toggle */
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .mockup-body {
    padding: 16px;
  }
  
  .mock-card-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid .pricing-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links-grid {
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
