* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
}

.nav-container {
  margin: 0 auto;
  padding: 0.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #1a1a1a;
  display: flex;
  align-items: center;
}

.nav-center {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-center a {
  color: #6b6b6b;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-center a:hover {
  color: #1a1a1a;
}

.nav-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-text {
  background: none;
  color: #1a1a1a;
}

.btn-text:hover {
  opacity: 0.7;
}

.btn-outline {
  color: #1a1a1a;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.btn-outline:hover {
  background: #f8f8f8e4;
}

/* Hero Section */
.hero {
  padding: 10rem 3rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #1a1a1a 0%, #6b6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.125rem;
  color: #6b6b6b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background: #1a1a1a !important;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .15s;
}

.btn-primary:hover {
  background: #333;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #8a8a8a;
}

/* Interactive Demo */
.demo-container {
  position: relative;
}

.demo-frame {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 0 1px #e0e0e0, 0 20px 50px rgba(0, 0, 0, 0.08);
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.demo-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.memory-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.2s;
}

.memory-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.memory-date {
  font-size: 0.75rem;
  color: #8a8a8a;
  margin-bottom: 0.25rem;
}

.memory-text {
  font-size: 0.875rem;
  color: #1a1a1a;
}

/* Beta Badge */
.beta-badge {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 1rem;
}

/* Stats Section */
.stats {
  background: #f8f8f8;
  padding: 4rem 3rem;
  margin: 4rem 0;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #6b6b6b;
  font-size: 0.875rem;
}

/* Features Section */
.features {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.features-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-header p {
  color: #6b6b6b;
  font-size: 1.125rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #6b6b6b;
  font-size: 0.875rem;
  line-height: 1.6;
}

.feature-pages {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid #f0f0f0;
}

.feature-pages h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-pages-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}

.feature-pages-links a {
  color: #6b6b6b;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.feature-pages-links a:hover {
  color: #1a1a1a;
}

/* How It Works */
.how-it-works {
  padding: 6rem 3rem;
  background: #fafafa;
}

.how-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.how-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.step-number {
  font-size: 0.875rem;
  font-weight: 600;
  color: #8a8a8a;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.875rem;
  color: #6b6b6b;
}

/* Pricing */
.pricing {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem;
  background: #f0f0f0;
  border-radius: 8px;
}

.toggle-option {
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-option.active {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: #1a1a1a;
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #1a1a1a;
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
}

.plan-icon {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-period {
  color: #6b6b6b;
  font-size: 0.875rem;
}

.plan-description {
  color: #6b6b6b;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.check-icon {
  width: 16px;
  height: 16px;
  background: #e8f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon::after {
  content: "✓";
  font-size: 0.625rem;
  color: #22c55e;
}

.plan-button {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
}

.plan-button:hover {
  background: #f8f8f8;
}

.plan-button.primary {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.plan-button.primary:hover {
  background: #2a2a2a;
}

/* Dashboard */
.dashboard {
  display: none;
  min-height: 100vh;
  background: #fafafa;
}

.dashboard.active {
  display: block;
}

.dashboard-nav {
  background: white;
  border-bottom: 1px solid #f0f0f0;
  padding: 2rem 0 1rem 0;
  margin-top: 4rem;
}

.dashboard-nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem;
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 3rem;
}

.dashboard-menu {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  height: fit-content;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 0.875rem;
  margin-bottom: 0.125rem;
  border-radius: 6px;
  color: #5a5a5a;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.menu-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.menu-item:hover {
  background: #f3f4f6;
  color: #111;
}

.menu-item:hover svg {
  opacity: 1;
}

.menu-item.active {
  background: #eef0ff;
  color: #4f46e5;
  font-weight: 600;
}

.menu-item.active svg {
  opacity: 1;
  color: #4f46e5;
}

.dashboard-main {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
}

.dashboard-stats {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  height: fit-content;
}

.stat-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.stat-card:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 0.75rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.progress-ring {
  margin-top: 1rem;
  text-align: center;
}

.progress-ring svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.progress-ring circle {
  fill: none;
  stroke-width: 8;
}

.progress-bg {
  stroke: #f0f0f0;
}

.progress-fill {
  stroke: #1a1a1a;
  stroke-dasharray: 314;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 0.3s;
}

.progress-text {
  font-size: 0.875rem;
  color: #6b6b6b;
  margin-top: 0.5rem;
}

/* Form Elements */
.form-section {
  margin-bottom: 2.5rem;
}

.form-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s;
  background: white;
  max-height: 500px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.form-hint {
  font-size: 0.75rem;
  color: #8a8a8a;
  margin-top: 0.25rem;
}

/* Modal Selection */
.modal-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-option {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.modal-option:hover {
  border-color: #1a1a1a;
}

.modal-option.selected {
  border-color: #1a1a1a;
  background: #f8f8f8;
}

.modal-option h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.modal-option p {
  font-size: 0.75rem;
  color: #6b6b6b;
}

/* Slider */
.slider-container {
  margin: 1.5rem 0;
}

.slider {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  cursor: pointer;
  -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 50%;
  cursor: pointer;
}

.slider-value {
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Team Grid */
.team-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.team-member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 8px;
}

.member-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.member-avatar {
  width: 36px;
  height: 36px;
  background: #e0e0e0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b6b6b;
}

.member-info {
  font-size: 0.875rem;
}

.member-name {
  font-weight: 600;
  color: #1a1a1a;
}

.member-email {
  color: #6b6b6b;
  font-size: 0.75rem;
}

.member-role {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #6b6b6b;
}

.member-actions {
  display: flex;
  gap: 0.5rem;
}

.icon-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.75rem;
}

.icon-btn:hover {
  background: #f8f8f8;
}

.icon-btn.danger:hover {
  background: #fee;
  border-color: #fcc;
  color: #e00;
}

/* Billing Section */
.billing-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.billing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.billing-row:last-child {
  margin-bottom: 0;
}

.billing-label {
  font-size: 0.875rem;
  color: #6b6b6b;
}

.billing-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Analytics */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.analytics-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem;
}

.analytics-title {
  font-size: 0.875rem;
  color: #6b6b6b;
  margin-bottom: 0.5rem;
}

.analytics-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.analytics-chart {
  height: 200px;
  background: #f0f0f0;
  border-radius: 6px;
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  gap: 0.5rem;
}

.chart-bar {
  flex: 1;
  background: #1a1a1a;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: #1a1a1a;
}

.modal-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f4f6;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #6b7280;
  font-size: 1.25rem;
}

.modal-close:hover {
  background: #e5e7eb;
  color: #1a1a1a;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1a1a1a;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 3000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  background: #22c55e;
}

.toast.error {
  background: #ef4444;
}

/* Loading States */
.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #f0f0f0;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Referral Section */
.referral-section {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.referral-code {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

.referral-input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.875rem;
  background: white;
}

.copy-btn {
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: #2a2a2a;
}

/* Upgrade Modal */
.upgrade-content {
  max-width: 600px;
}

.plan-selector {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.plan-option {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.plan-option:hover {
  border-color: #1a1a1a;
}

.plan-option.selected {
  border-color: #1a1a1a;
  background: #f8f8f8;
}

.plan-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.plan-option-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.plan-option-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.plan-option-features {
  font-size: 0.875rem;
  color: #6b6b6b;
}

.promo-section {
  margin: 1.5rem 0;
}

.promo-row {
  display: flex;
  gap: 0.5rem;
}

.promo-input {
  flex: 1;
}

.checkout-details {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.checkout-row.total {
  border-top: 1px solid #e0e0e0;
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

.discount-badge {
  background: #22c55e;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Resource Cards */
.resource-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.resource-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.resource-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.resource-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.resource-card p {
  color: #6b6b6b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.search-box {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.search-box .form-input {
  flex: 1;
}

/* Company Cards */
.company-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.company-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.company-card p {
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

.company-stat h5 {
  font-size: 0.875rem;
  color: #8a8a8a;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.company-stat p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Team Showcase */
.team-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-member-card {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  transition: all 0.2s;
}

.team-member-card .member-avatar {
  width: 64px;
  height: 64px;
  background: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: #6b6b6b;
}

.team-member-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-member-card p {
  font-size: 0.875rem;
  color: #6b6b6b;
  margin: 0;
}

/* Blog List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.blog-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-date {
  font-size: 0.75rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-item h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.blog-item p {
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

.blog-item a {
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.blog-item a:hover {
  text-decoration: underline;
}

/* Job List */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.job-item h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.job-item p {
  font-size: 0.875rem;
  color: #6b6b6b;
  margin: 0;
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-item strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.contact-item p {
  font-size: 0.875rem;
  margin: 0;
}

/* Footer */
.footer {
  background: #fafafa;
  padding: 4rem 3rem 2rem;
  margin-top: 6rem;
  border-top: 1px solid #f0f0f0;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  /*grid-template-columns: 2fr 1fr 1fr 1fr;*/
  gap: 4rem;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #6b6b6b;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #1a1a1a;
}

.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  color: #5a5a5a;
  font-size: 0.75rem;
}
.footer .social-media a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  color: #4a4a4a;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.footer .social-media a:hover,
.footer-social a:hover {
  background: #e8e8e8;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Utility Classes */
.text-green {
  color: #22c55e;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto 0;
  }

  .dashboard-container {
    grid-template-columns: 1fr;
  }

  .dashboard-menu,
  .dashboard-stats {
    display: none;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .modal-selector {
    grid-template-columns: 1fr;
  }
}

/* ── Hamburger button ──────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ─────────────────────────────────────── */
.nav-mobile-drawer {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid #f0f0f0;
  padding: 0.75rem 1.5rem 1.25rem;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-link {
  padding: 0.75rem 0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
}
.nav-mobile-link:last-of-type { border-bottom: none; }
.nav-mobile-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}

/* ── Dashboard mobile horizontal nav ──────────────────────── */
.dash-mobile-nav {
  display: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}
.dash-mobile-nav::-webkit-scrollbar { display: none; }
.dash-mobile-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.45rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b6b6b;
  background: #f5f5f5;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  transition: all 0.15s;
}
.dash-mobile-item:hover,
.dash-mobile-item.active { background: #1a1a1a; color: white; }

@media (max-width: 1024px) {
  .dash-mobile-nav { display: flex; }
  .dashboard-container { padding: 1.5rem; }
  .dashboard-main { padding: 1.5rem; }
}

html { scroll-padding-top: 64px; }

@media (max-width: 768px) {
  .nav-center {
    display: none !important;
  }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-container { padding: 0.25rem 0.5rem; }
  .logo-svg { width: 45px !important; height: 45px !important; right: 0 !important; }
  .logo > div,
  .logo > span { display: none; }
  .dashboard-nav-content { padding: 0 1.25rem; }
  .dashboard-nav-content { flex-wrap: wrap; row-gap: 0.5rem; }
  .dashboard-nav .user-info { min-width: 0; }
  #user-email { max-width: 9rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; }
  #logout-btn { white-space: nowrap; }

  .hero {
    padding: 5rem 1rem 3rem;
    margin: 0;
  }

  body {
    overflow-x: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-container {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }
  .hero .hero-subtitle,
  .hero .hero-text {
    text-align: center;
  }
  .hero .btn {
    width: 100%;
    text-align: center;
  }
  .hero .hero-badges {
    justify-content: center;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .company-stats,
  .team-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  /* ── Pricing cards: more compact on mobile ─── */
  .pricing-card {
    padding: 1.25rem;
  }
  .pricing-card .badge {
    top: -8px;
    right: 12px;
    font-size: 0.65rem;
    padding: 0.2rem 0.75rem;
  }
  .pricing-card .plan-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
  }
  .pricing-card .plan-name {
    font-size: 1.05rem;
  }
  .pricing-card .price-amount {
    font-size: 1.75rem;
  }
  .pricing-card .price-period {
    font-size: 0.75rem;
  }
  .pricing-card .plan-description {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .pricing-card .plan-features li {
    font-size: 0.75rem;
    padding: 0.35rem 0;
  }
  .pricing-card .plan-button {
    padding: 0.6rem;
    font-size: 0.8rem;
  }

  /* ── Larger touch targets ─── */
  .btn,
  .plan-button,
  button,
  .cl-btn,
  .ls-pill,
  .dash-mobile-item {
    min-height: 44px;
  }
  .nav-mobile-link {
    padding: 0.875rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-mobile-actions .btn {
    min-height: 48px;
    font-size: 1rem;
  }

  /* ── Skills section mobile improvements ─── */
  .skills-lpills {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }
  .skills-lpills::-webkit-scrollbar {
    display: none;
  }
  .ls-pill {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Footer social icons: more spacing ─── */
  .footer .social-media {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footer .social-media a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
/* Enhanced Team Member Cards - Light Theme */
.team-members-container {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 1.5rem;
  background: #fafafa;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f8f8f8;
  border-radius: 12px;
}

.team-member-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a1a1a;
}

.team-member-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
}

.team-member-details h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a !important;
  margin-bottom: 0.25rem;
}

.team-member-details p {
  color: #6b6b6b !important;
  font-size: 0.9rem;
  font-weight: 400;
}

.status-badge.admin {
  background: #f0f0f0 !important;
  color: #1a1a1a !important;
  border: 1px solid #e0e0e0;
}

.status-badge.member {
  background: #f8f8f8 !important;
  color: #6b6b6b !important;
  border: 1px solid #e0e0e0;
}

.status-badge.pending {
  background: #fff3cd !important;
  color: #856404 !important;
  border: 1px solid #ffeaa7;
}

.team-action-btn.danger {
  background: #ffffff !important;
  color: #dc3545 !important;
  border: 1px solid #e0e0e0 !important;
}

.team-action-btn.danger:hover {
  background: #f8f9fa !important;
  border-color: #dc3545 !important;
  transform: translateY(-1px);
}

.team-member-prompt {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.team-member-prompt h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b6b6b !important;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-member-prompt-text {
  background: #f8f8f8 !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #1a1a1a !important;
  font-family: "Monaco", "Menlo", monospace;
}

.team-member-prompt-empty {
  background: #f8f8f8 !important;
  border-color: #e0e0e0 !important;
  color: #8a8a8a !important;
  font-style: italic;
  text-align: center;
}

.search-section {
  padding: 2rem 0rem;
  background: #ffffff !important;
}

.search-input {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border: 1px solid #e0e0e0 !important;
}

.search-input::placeholder {
  color: #8a8a8a !important;
}

.search-input:focus {
  border-color: #1a1a1a !important;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1) !important;
}

.team-member-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-member-name-row h5 {
  margin: 0;
  flex: 1;
}

.team-member-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-member-name-row h5 {
  margin: 0;
  flex: 1;
}

/* CSS for header layout and role badge positioning */
.team-member-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.team-member-info {
  flex: 1;
}

.team-member-role-badge {
  margin-left: 16px;
}
.search-section {
  margin-bottom: 24px;
}

.search-container {
  position: relative;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background: white;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none;
  box-sizing: border-box;
}

.search-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.search-input:hover:not(:focus) {
  border-color: #cbd5e1;
}

.enterprise-invitation-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.enterprise-modal-content {
  background: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: enterpriseModalSlideIn 0.3s ease-out;
}

@keyframes enterpriseModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.enterprise-modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 32px;
  text-align: center;
}

.enterprise-modal-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.enterprise-modal-title {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
}

.enterprise-modal-subtitle {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  font-weight: 400;
}

.enterprise-modal-body {
  padding: 32px;
}

.important-notice,
.multiple-invites-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid;
}

.important-notice {
  background: #fef3c7;
  border-left-color: #f59e0b;
}

.multiple-invites-notice {
  background: #dbeafe;
  border-left-color: #3b82f6;
}

.notice-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-content {
  flex: 1;
}

.notice-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: #374151;
}

.notice-text {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

.enterprise-invites-list {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
}

.enterprise-modal-footer {
  background: #f8fafc;
  padding: 24px 32px;
  border-top: 1px solid #e5e7eb;
}

.enterprise-footer-text {
  margin: 0 0 16px 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.enterprise-footer-actions {
  display: flex;
  justify-content: flex-end;
}

.btn-decline-all-invites {
  background: #ef4444;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-decline-all-invites:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-decline-all-invites:active {
  transform: translateY(0);
}
.invite-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.invite-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.invite-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f3f4f6;
}

.team-icon {
  font-size: 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
}

.invite-info {
  flex: 1;
}

.invite-info h3 {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.invite-info p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.invite-details {
  margin-bottom: 24px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}

.detail-value {
  font-size: 14px;
  color: #6b7280;
  text-align: right;
  max-width: 60%;
}

.plan-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.invite-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn {
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #e9e9e9;

  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-accept {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
}

.btn-accept:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-decline {
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid #e5e7eb;
}

.btn-decline:hover {
  background: #e5e7eb;
  color: #374151;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
}

.display_none {
  display: none;
}
.social-media {
  margin-bottom: 15px;
}

.social-media a {
  color: #000;
  font-size: 20px;
  margin: 0 15px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-media a:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}
/* Toggle Switch Styles */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #2196f3;
}

.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 1px #2196f3;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* Hover effect */
.toggle-slider:hover {
  background-color: #b3b3b3;
}

.toggle-switch input:checked + .toggle-slider:hover {
  background-color: #1976d2;
}


/* -- Billing period toggle (pricing section) -- */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 2rem;
}
.billing-toggle-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.billing-toggle-btn:hover {
  border-color: #4f46e5;
  color: #4f46e5;
}
.billing-toggle-btn.active {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #ffffff;
}
.billing-toggle-save {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  margin-left: 0.25rem;
}
