/* Modern Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Colors */
  --bg-primary: #FAFBFC;
  --bg-secondary: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #64748B;

  /* Accent colors */
  --accent-primary: #0D9488;
  --accent-hover: #0F766E;
  --accent-light: #5EEAD4;
  --trust: #10B981;

  /* Spacing */
  --section-padding-desktop: 120px;
  --section-padding-mobile: 80px;
  --container-max: 1200px;
  --card-gap: 32px;
  --card-gap-mobile: 24px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(13, 148, 136, 0.08);
  --shadow-lg: 0 8px 24px rgba(13, 148, 136, 0.12);
  --shadow-cta: 0 4px 12px rgba(13, 148, 136, 0.2);
  --shadow-cta-hover: 0 8px 24px rgba(13, 148, 136, 0.3);
}

/* Modern Typography */
body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-size: 14px;
}

.modern-h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

.modern-h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin: 0 0 16px 0;
}

.modern-h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.modern-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

.modern-microcopy {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

/* Modern Hero Section */
#modern-hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: var(--section-padding-mobile) 20px;
  position: relative;
  overflow: hidden;
}

.modern-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.modern-hero-headline {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.modern-hero-subheadline {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0 0 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.modern-cta {
  display: inline-block;
  background: var(--accent-primary);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: var(--shadow-cta);
  border: none;
  cursor: pointer;
}

.modern-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--accent-hover);
  color: white;
  text-decoration: none;
}

.modern-cta-microcopy {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.trust-chips {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 100px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.trust-chip-icon {
  width: 20px;
  height: 20px;
}

/* Modern Sections */
.modern-section {
  padding: var(--section-padding-desktop) 20px;
  background: var(--bg-secondary);
}

.modern-section.alt {
  background: var(--bg-primary);
}

.modern-section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.modern-section-title {
  text-align: center;
  margin-bottom: 64px;
}

/* Persona Pills - Horizontal Slider */
.personas-slider-wrapper {
  overflow: visible;
  padding: 60px 0 80px 0; /* Extra padding for expansion */
}

.personas-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: auto; /* Changed from smooth for auto-scroll */
  padding: 60px 0; /* Top and bottom padding to prevent clipping */
  /* Hide scrollbar while keeping functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.personas-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.persona-card {
  flex: 0 0 320px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  height: 320px;
  overflow: hidden;
}

.persona-card:hover {
  flex: 0 0 380px;
  height: 380px;
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50px);
  z-index: 10;
}

.persona-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  transition: opacity 0.3s;
}

.persona-card:hover .persona-card-front {
  opacity: 0;
  pointer-events: none;
}

.persona-card-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}

.persona-card:hover .persona-card-hover {
  opacity: 1;
}

.persona-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.persona-icon-small {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.persona-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.persona-title-small {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.persona-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  overflow-y: auto;
  flex: 1;
}

/* Value Blocks */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--card-gap);
  margin-top: 48px;
}

.value-block {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.value-block:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--accent-primary);
}

.value-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.value-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Product Preview */
.product-preview {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.product-screenshot {
  width: 100%;
  height: auto;
  max-width: none;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #E2E8F0;
}

.product-feature:last-child {
  border-bottom: none;
}

.product-feature-icon {
  width: 24px;
  height: 24px;
  color: var(--trust);
  flex-shrink: 0;
}

.product-feature-text {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

.product-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 32px 0;
}

/* Features Layout */
.features-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.features-sidebar {
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  border-bottom: 1px solid #E2E8F0;
}

.features-sidebar::-webkit-scrollbar {
  display: none;
}

.feature-nav-wrapper {
  position: relative;
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
}

.feature-nav-item {
  background: transparent;
  border: none;
  padding: 16px 20px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: normal;
  line-height: 1.4;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.feature-nav-item:hover {
  color: var(--text-secondary);
  background: rgba(13, 148, 136, 0.05);
}

.feature-nav-item.active {
  color: var(--text-primary);
  font-weight: 600;
}

.feature-nav-divider {
  width: 1px;
  background: #E2E8F0;
  margin: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.feature-progress-bar {
  height: 3px;
  width: 100%;
  background: #E2E8F0;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.feature-progress-fill {
  height: 100%;
  background: var(--accent-primary);
  transition: width 0.05s linear;
}

.features-content {
  background: transparent;
  padding: 20px;
  min-height: 300px;
}

.feature-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-detail-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.feature-detail-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.feature-detail-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 800px;
  white-space: pre-line;
}

.feature-detail-image {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.feature-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(135deg, #5EEAD4 0%, #0D9488 50%, #3B82F6 100%);
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
}

.pricing-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pricing-content {
  color: white;
}

.pricing-headline {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.pricing-subheadline {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 48px 0;
}

.pricing-box {
  background: var(--accent-primary);
  border-radius: var(--radius-xl);
  padding: 24px 40px;
  display: inline-block;
  margin-bottom: 24px;
}

.pricing-label {
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 42px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.pricing-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-form-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 32px 0;
  text-align: center;
}

.pricing-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group select,
.form-group input {
  padding: 10px 14px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.2s;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent-primary);
}

.email-input-group {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-form-button {
  background: var(--accent-primary);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 12px;
}

.pricing-form-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta);
}

.pricing-success-message {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--trust);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.pricing-success-message p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.expanded {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-primary);
  margin-left: 16px;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 16px 0 0 0;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid #E2E8F0;
}

/* Footer */
.footer-about {
  background: var(--bg-secondary);
  padding: 60px 20px;
  text-align: center;
}

.footer-about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-main {
  background: #F8FAFC;
  padding: 48px 20px;
  border-top: 1px solid #E2E8F0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-contact-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0 0 8px 0;
}

.footer-contact-email {
  color: var(--accent-primary);
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact-email:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

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

.footer-links a,
.footer-link-button {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-link-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.footer-links a:hover,
.footer-link-button:hover {
  color: var(--accent-primary);
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0;
}

.footer-made-in {
  margin-top: 8px !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.footer-flag {
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --section-padding-mobile: 60px;
  }

  .modern-h1 {
    font-size: 32px;
  }

  .modern-h2 {
    font-size: 28px;
  }

  .modern-hero-headline {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .modern-hero-subheadline {
    font-size: 16px;
    margin-bottom: 32px;
  }

  #modern-hero {
    min-height: calc(100vh - 60px);
    padding: 40px 16px;
  }

  .modern-section {
    padding: var(--section-padding-mobile) 20px;
  }

  .modern-section-title {
    margin-bottom: 48px;
  }

  .modern-cta {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .trust-chips {
    gap: 12px;
    margin-top: 32px;
  }

  .trust-chip {
    font-size: 13px;
    padding: 6px 12px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: var(--card-gap-mobile);
  }

  .value-block {
    padding: 32px 24px;
  }

  .value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .value-title {
    font-size: 20px;
  }

  .value-description {
    font-size: 15px;
  }

  .product-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-screenshot {
    width: 100%;
    scale: 1.4;
    max-width: 100%;
    border-radius: var(--radius-md);
  }

  .product-description {
    font-size: 16px;
  }

  .product-feature {
    padding: 12px 0;
  }

  .product-feature-text {
    font-size: 15px;
  }

  .personas-slider-wrapper {
    padding: 40px 0 60px 0;
  }

  .personas-slider {
    padding: 40px 0;
    gap: 16px;
  }

  .persona-card {
    flex: 0 0 220px;
    height: 220px;
    padding: 24px;
  }

  .persona-card:hover {
    flex: 0 0 280px;
    height: 280px;
    transform: translateY(-30px);
  }

  .persona-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .persona-icon-small {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .persona-title {
    font-size: 18px;
  }

  .persona-title-small {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .persona-description {
    font-size: 14px;
  }

  .features-layout {
    gap: 32px;
  }

  .features-sidebar {
    gap: 0;
  }

  .feature-nav-wrapper {
    min-width: 140px;
  }

  .feature-nav-item {
    font-size: 15px;
    padding: 16px 12px;
    min-height: 60px;
  }

  .feature-detail-title {
    font-size: 22px;
  }

  .feature-detail-description {
    font-size: 16px;
  }

  .features-content {
    min-height: 250px;
  }

  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-headline {
    font-size: 28px;
  }

  .pricing-subheadline {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .pricing-box {
    padding: 20px 32px;
  }

  .pricing-amount {
    font-size: 40px;
  }

  .pricing-tagline {
    font-size: 18px;
  }

  .pricing-form-wrapper {
    padding: 24px 20px;
  }

  .pricing-form-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .faq-list {
    margin-top: 32px;
  }

  .faq-item {
    padding: 20px;
    margin-bottom: 12px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-made-in {
    justify-content: center;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  :root {
    --section-padding-mobile: 48px;
  }

  .modern-hero-headline {
    font-size: 28px;
  }

  .modern-hero-subheadline {
    font-size: 15px;
  }

  #modern-hero {
    padding: 32px 20px;
  }

  .modern-section {
    padding: var(--section-padding-mobile) 20px;
  }

  .modern-h2 {
    font-size: 24px;
  }

  .modern-cta {
    padding: 12px 24px;
    font-size: 14px;
  }

  .trust-chips {
    flex-direction: column;
    gap: 8px;
  }

  .trust-chip {
    font-size: 12px;
    padding: 6px 12px;
  }

  .value-block {
    padding: 24px 20px;
  }

  .value-icon {
    width: 40px;
    height: 40px;
  }

  .value-title {
    font-size: 18px;
  }

  .value-description {
    font-size: 14px;
  }

  .personas-slider {
    gap: 12px;
  }

  .persona-card {
    flex: 0 0 220px;
    height: 220px;
    padding: 20px;
  }

  .persona-card:hover {
    flex: 0 0 250px;
    height: 250px;
  }

  .persona-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .persona-icon-small {
    width: 32px;
    height: 32px;
  }

  .persona-title {
    font-size: 16px;
  }

  .persona-title-small {
    font-size: 14px;
  }

  .persona-description {
    font-size: 13px;
  }

  .feature-nav-wrapper {
    min-width: 120px;
  }

  .feature-nav-item {
    font-size: 15px;
    padding: 12px 8px;
    min-height: 50px;
  }

  .features-content {
    min-height: 200px;
  }

  .feature-detail-description {
    font-size: 15px;
  }

  .pricing-headline {
    font-size: 24px;
  }

  .pricing-subheadline {
    font-size: 14px;
  }

  .pricing-box {
    padding: 16px 24px;
  }

  .pricing-amount {
    font-size: 32px;
  }

  .pricing-tagline {
    font-size: 16px;
  }

  .pricing-form-wrapper {
    padding: 20px 16px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* Navigation - Keep original styling, just minor enhancements */
#menu.navbar-default {
  backdrop-filter: blur(10px);
}

/* Make navbar button more rounded like a pill */
#menu .btn-custom {
  border-radius: 50px;
  padding: 10px 24px !important;
  /* Ensure touch-friendly targets on mobile */
  min-height: 44px;
  font-size: 14px !important;
}

/* Language switcher in navigation */
.language-switcher-nav-item {
  padding: 8px 2px;
  margin: 9px 20px;
  justify-self: end;
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
  /* Hamburger menu - make it touch-friendly */
  #menu .navbar-toggle {
    padding: 12px 14px;
    margin: 8px 10px;
    border-radius: var(--radius-md);
  }

  #menu .navbar-toggle .icon-bar {
    height: 3px;
    border-radius: 2px;
  }

  /* Full-width mobile menu */
  #menu .navbar-collapse {
    border: none;
    box-shadow: none;
    overflow: visible !important;
  }

  /* Touch-friendly nav links */
  #menu.navbar-default .navbar-nav > li > a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Mobile CTA button */
  #menu .btn-custom {
    width: auto;
    min-width: 120px;
  }

  /* Language switcher on mobile */
  .language-switcher-nav-item {
    display: flex;
    padding: 12px 15px;
    margin: 0;
    min-height: 44px;
    position: static;
    overflow: visible;
  }

  /* Ensure language dropdown is visible on mobile */
  #menu .navbar-nav {
    overflow: visible !important;
  }

  .language-switcher {
    width: 100%;
    text-align: center;
  }
}

/* Early Partner Modal */
.early-partner-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.early-partner-modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-tertiary);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text-primary);
}

.early-partner-modal h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.early-partner-modal .form-group {
  margin-bottom: 24px;
}

.early-partner-modal .form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}

.early-partner-modal .form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.early-partner-modal .modern-cta {
  width: 100%;
  margin-top: 8px;
}

.modal-success {
  text-align: center;
  padding: 20px 0;
}

.modal-success .success-icon {
  width: 80px;
  height: 80px;
  background: var(--trust);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

.modal-success h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.modal-success p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
}

.error-message {
  color: #EF4444;
  font-size: 14px;
  margin: -8px 0 16px 0;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  /* Ensure containers don't overflow */
  .modern-section-container {
    overflow-x: hidden;
  }

  /* Make images responsive */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Improve touch targets */
  button,
  .btn,
  a.btn,
  input[type="submit"],
  input[type="button"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Better form inputs on mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px;
  }

  /* Modal responsive */
  .early-partner-modal {
    padding: 32px 24px;
  }

  .early-partner-modal h2 {
    font-size: 24px;
  }

  .modal-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
