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

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary: #eff6ff;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: #f8fafc;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-link:hover {
  color: var(--primary-hover);
}

.cta-button {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 50%, var(--secondary) 100%);
  /* Set desktop top padding to 2.75rem as requested */
  padding: 2.75rem 0 1rem;
}

.hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  /* Increased heading size for more impact */
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  /* Increased margin for better spacing */
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  /* Further reduced margin */
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* Reduced margin between buttons and badges on mobile */
  margin-bottom: 1.5rem;
}

.hero-features {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  /* Reduced bottom margin to minimize space before locked positions on desktop */
  margin-top: 2rem;
  margin-bottom: 0;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary);
  padding: 0.875rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.08) 100%);
}

.feature-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Locked Positions */
.locked-positions {
  /* Reduced top padding on desktop to minimize space after hero badges */
  padding: 0.5rem 0 3rem;
  background: var(--muted);
}

.section-title {
  /* Increased font size for more prominence */
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  /* Increased margin for better spacing */
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--muted-foreground);
  /* Increased margin for better spacing */
  margin-bottom: 1.5rem;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.position-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.position-card.locked:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.position-card.locked {
  opacity: 0.9;
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.position-company {
  font-weight: 600;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.lock-icon {
  font-size: 1.25rem;
}

.position-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.position-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.position-location,
.position-salary {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.position-salary {
  color: var(--primary);
  font-weight: 600;
}

.position-blur {
  filter: blur(4px);
  user-select: none;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Quick References */
.quick-references {
  /* Increased padding for better spacing */
  padding: 3rem 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-icon {
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Calculator Section */
.calculator-section {
  /* Increased padding for better spacing */
  padding: 3rem 0;
  background: var(--white);
}

/* Stats Section */
.stats {
  /* Increased padding for better spacing */
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
}

/* Benefits Section */
.benefits {
  /* Increased padding for better spacing */
  padding: 3rem 0;
  background: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.benefit-text {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Calculator */
.calculator {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.calculator-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.calculator-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.calculator-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calculator-input label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.calculator-input input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1.125rem;
}

.calculator-input input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
}

.calculator-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.calculator-input input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
}

.salary-display {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
}

/* Added styles for comparison results */
.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calculator-result {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: 0.75rem;
}

.result-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.result-czk {
  font-size: 1rem;
  color: var(--muted-foreground);
}

.comparison-note {
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 0.5rem;
  color: var(--success);
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  /* Increased padding for better spacing */
  padding: 3rem 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Page Header */
.page-header {
  padding: 3rem 0 1.5rem;
  text-align: center;
  background: var(--muted);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Reference Stats */
.reference-stats {
  padding: 2.5rem 0;
  background: var(--white);
}

.stat-card {
  background: var(--secondary);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  padding: 3rem 0;
  background: var(--muted);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Jobs Section */
.jobs-section {
  padding: 3rem 0;
  background: var(--muted);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.job-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.job-card.locked::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.job-company {
  font-weight: 600;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.job-badge {
  background: var(--secondary);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.job-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.detail-icon {
  font-size: 1rem;
}

.salary-highlight {
  color: var(--primary);
  font-weight: 700;
}

.job-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.job-description ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.blur-text {
  filter: blur(3px);
  user-select: none;
}

.lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.lock-icon-large {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.unlock-cta {
  text-align: center;
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.unlock-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.unlock-cta p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Team Section */
.mission-section {
  padding: 3rem 0;
  background: var(--white);
}

.mission-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.team-section {
  padding: 3rem 0;
  background: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.team-icon {
  width: 5rem;
  height: 5rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.875rem;
}

.team-stats {
  padding: 2.5rem 0;
  background: var(--white);
}

/* Checkout */
.checkout-section {
  padding: 4rem 0;
  background: var(--muted);
  min-height: calc(100vh - 200px);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-summary,
.checkout-form {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.checkout-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.summary-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.summary-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.summary-price {
  font-weight: 700;
  font-size: 1.125rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-top: 2px solid var(--border);
  font-size: 1.125rem;
  font-weight: 600;
}

.total-price {
  color: var(--primary);
  font-size: 1.5rem;
}

.summary-benefits {
  background: var(--secondary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.benefits-title {
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.payment-methods {
  margin: 2rem 0;
}

.payment-methods h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.apple-pay-btn {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.apple-pay-btn:hover {
  background: #1a1a1a;
}

.apple-pay-btn svg {
  fill: white;
}

.apple-icon {
  font-size: 1.25rem;
}

.divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.divider span {
  position: relative;
  background: var(--white);
  padding: 0 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.lock-icon {
  font-size: 1rem;
}

.pricing-info {
  background: var(--muted);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1.5rem 0;
}

.pricing-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Added new smaller, gray pricing info style for below trust badges */
.pricing-info-small {
  margin-top: 1.5rem;
  padding: 0.75rem;
}

.pricing-info-small p {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-icon {
  font-size: 1rem;
}

/* Thank You Page */
.thankyou-section {
  padding: 4rem 0;
  background: var(--muted);
  min-height: calc(100vh - 200px);
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.thankyou-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.thankyou-text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.thankyou-details {
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.detail-icon {
  font-size: 1.25rem;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.telegram-icon {
  font-size: 1.5rem;
}

.next-steps {
  text-align: left;
  background: var(--muted);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.next-steps h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.steps-list {
  padding-left: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.steps-list li {
  margin-bottom: 0.5rem;
}

.support-info {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.support-info a {
  color: var(--primary);
  text-decoration: none;
}

.support-info a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--foreground);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    /* Reduced mobile padding - less space from top bar to heading */
    padding: 1.5rem 0 0.25rem;
  }

  .hero-title {
    /* Increased mobile heading size for better impact */
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    /* Further reduced margin on mobile between buttons and badges */
    margin-bottom: 0.75rem;
  }

  /* Reduced hero-features gap on mobile for better badge layout */
  .hero-features {
    gap: 0.75rem;
  }

  .locked-positions {
    /* Reduced mobile section padding for locked positions - less space between badges and heading */
    padding: 0.25rem 0 2.5rem;
  }

  .positions-grid,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    grid-template-columns: 1fr;
  }

  .result-value {
    font-size: 1.5rem;
  }

  .feature-badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
  }

  .feature-badge svg {
    width: 14px;
    height: 14px;
  }

  .section-title {
    font-size: 1.5rem;
    white-space: nowrap;
  }

  /* Added mobile responsive layout for checkout grid */
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkout-summary,
  .checkout-form {
    padding: 1.5rem;
  }

  .checkout-title {
    font-size: 1.5rem;
  }
}

.blurred-company {
  filter: blur(2px);
  opacity: 0.7;
}

.light-blur {
  filter: blur(1.5px);
  opacity: 0.8;
}
