/* Landing Wishlist Page Specific Styles */

/* Container override for tighter layout */
.container {
  max-width: 95vw;
  padding: 3vw 3vw;
}

/* Header */
.header {
  padding: 1.5rem 2rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo {
  height: auto;
  filter: drop-shadow(0 2px 4px var(--shadow-soft));
}

.company-name {
  font-size: 1.5rem;
  color: var(--dark-brown);
  font-weight: bold;
  margin: 0;
}

/* Simple header nav links next to logo */
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: 2rem;
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-link {
  color: var(--dark-brown);
  text-decoration: none;
  font-weight: bold;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration-line: underline;
  text-decoration-color: var(--accent-gold);
  text-decoration-thickness: 2px;
}

/* Main Content */
.main-content {
  padding: 0 0 0 0;
}

.hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 6rem 0 1rem 0;
  min-height: 70vh;
}

.hero-left {
  flex: 0 0 30%;
  max-width: 30vw;
}

.hero-right {
  flex: 0 0 70%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-title {
  font-size: clamp(3rem, 4vw, 2.75rem);
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: left;
}

.click-icon {
  width: 1.2em;
  height: 1.2em;
  margin-left: 0.3em;
  vertical-align: middle;
  filter: invert(15%) sepia(25%) saturate(1500%) hue-rotate(351deg) brightness(80%) contrast(95%);
}

.highlight-text {
  background: linear-gradient(180deg, transparent 60%, var(--accent-gold) 60%);
  padding: 0 0.1em;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.2vw, 1.2rem);
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.4;
  text-align: left;
}

.hero-image {
  width: 100%;
  height: auto;
}

.join-waitlist-btn {
  background-color: var(--accent-gold);
  color: var(--dark-brown);
  border: 2px solid var(--dark-brown);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-family: 'Hepta Slab', 'monospace', serif;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-soft);
  display: block;
  margin: 0 auto;
}

.join-waitlist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-soft);
}

.join-waitlist-btn:active {
  transform: translateY(0);
}

/* Process Section */
.process-container {
  max-width: 95%;
  margin: 4rem auto 2rem auto;
  padding: 0 2rem;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--dark-brown);
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

.process-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-medium);
  margin: 0 auto;
  max-width: 1000px;
  line-height: 1.4;
}

.process {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.process-step {
  flex: 1;
  text-align: center;

}

.step-number {
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: 1.5rem !important;
  font-weight: bold;
  line-height: 1.3;
}

.step-content {
  display: block;
  background-color: var(--bg-cream);
  border-radius: 0.5rem;
  padding: 0.25rem !important;
  text-align: center;
}

.step-content p {
  color: var(--text-medium);
  font-style: italic;
  margin: 0;
  font-size: 1rem;
}

.video-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 24rem;
}

.process-video {
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: var(--bg-light);
  border-radius: 1rem;
  border: none;
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 16/10;
  display: block;
}

.video-container:hover {
  transform: translateY(-2px);
}

.video-container:hover .process-video {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.play-button {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark-brown);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.video-container.zoomed .play-overlay {
  opacity: 0;
}

/* Video click general */
.video-container.zoomed {
  z-index: 100;
}

.video-container.zoomed .process-video {
  transform: translateY(-4px) scale(2.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Video de la izquierda - crece hacia la derecha */
.process-step:first-child .video-container.zoomed .process-video {
  transform: translateY(-4px) scale(2.5);
  transform-origin: left center;
}

/* Video de la derecha - crece hacia la izquierda */
.process-step:last-child .video-container.zoomed .process-video {
  transform: translateY(-4px) scale(2.5);
  transform-origin: right center;
}

/* Video del centro - zoom normal desde el centro */
.process-step:nth-child(2) .video-container.zoomed .process-video {
  transform: translateY(-4px) scale(2.5);
  transform-origin: center center;
}

/* Features responsive adjustments */
@media (max-width: 768px) {
  .features-container {
    max-width: 98vw;
    padding: 0 1rem;
    margin: 5rem auto 1.5rem auto;
  }

  .features-header {
    margin-bottom: 2rem;
  }

  .features-title {
    font-size: 1.75rem;
  }

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

  .features-tabs {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .feature-tab {
    padding: 1rem 1.5rem;
    min-width: 100px;
  }

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

  .feature-name {
    font-size: 0.8rem;
  }

  .features-panel {
    padding: 1.5rem;
    min-height: 200px;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .features-container {
    margin: 4rem auto 1rem auto;
    padding: 0 0.5rem;
  }

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

  .features-subtitle {
    font-size: 0.9rem;
  }

  .features-tabs {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .feature-tab {
    flex-direction: row;
    width: 100%;
    max-width: 280px;
    padding: 1rem;
    justify-content: flex-start;
    gap: 1rem;
  }

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

  .feature-name {
    font-size: 0.85rem;
    text-align: left;
  }

  .features-panel {
    padding: 1.25rem;
    min-height: 180px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }

  .feature-details li {
    font-size: 0.9rem;
    padding-left: 1.25rem;
  }
}

/* Main page responsive adjustments */
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 1vw;
  }
  
  .header {
    padding: 1rem 1.5rem;
  }
  
  .logo-section {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .company-name {
    font-size: 1.5rem;
  }
  
  .main-content {
    padding: 6rem 0 3rem 0;
  }
  
  .hero {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 0.5rem 0;
    text-align: center;
  }
  
  .hero-left,
  .hero-right {
    flex: 1;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.25rem;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .process-container {
    max-width: 95%;
    margin: 2rem auto 1.5rem auto;
    padding: 0 1rem;
  }
  
  .process-header {
    margin-bottom: 2rem;
  }
  
  .process-title {
    font-size: 1.75rem;
  }
  
  .process-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .process {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .process-step {
    padding: 1rem;
  }
  
  .step-number {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .step-content {
    padding: 0.5rem;
  }

  .video-container {
    max-width: 18rem;
  }
  
  .process-video {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 1rem;
  }
  
  .main-content {
    padding: 6rem 0 2rem 0;
  }
  
  .hero {
    padding: 1rem 0 0.25rem 0;
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .join-waitlist-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .process-container {
    max-width: 98%;
    margin: 1.5rem auto 1rem auto;
    padding: 0 0.5rem;
  }
  
  .process-header {
    margin-bottom: 1.5rem;
  }
  
  .process-title {
    font-size: 1.5rem;
  }
  
  .process-subtitle {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  
  .process-step {
    padding: 0.5rem;
  }
  
  .step-number {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .step-content {
    padding: 0.5rem;
  }
  
  .step-content p {
    font-size: 0.875rem;
  }

  .video-container {
    max-width: 15rem;
  }
  
  .process-video {
    width: 100%;
    height: auto;
  }
}

/* Features Section */
.features-container {
  max-width: 95%;
  margin: 8rem auto 2rem auto;
  padding: 0 2rem;
}

.features {
  text-align: center;
}

.features-header {
  margin-bottom: 3rem;
}

.features-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--dark-brown);
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

.features-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-medium);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.4;
  text-align: left;
}

.features-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.feature-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Hepta Slab', 'monospace', serif;
  width: 180px;
  flex-shrink: 0;
}

.feature-tab:hover {
  background-color: var(--bg-cream);
  border-color: var(--secondary-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.feature-tab.active {
  background-color: var(--accent-gold);
  border-color: var(--primary-gold);
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.feature-tab.active:hover {
  background-color: var(--accent-gold);
  transform: translateY(-1px);
}

.feature-icon {
  font-size: 2rem;
  line-height: 1;
}

.feature-name {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--dark-brown);
  text-align: center;
  line-height: 1.2;
}

.features-panel {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-base);
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: 0 4px 12px var(--shadow-soft);
  position: relative;
  min-height: 250px;
}

.feature-content {
  display: none;
  text-align: left;
}

.feature-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

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

.feature-title {
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

.feature-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.feature-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-details li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.4;
}

.feature-details li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 2rem;
}

.feature-details li:last-child {
  margin-bottom: 0;
}

/* Footer Styles */
.footer {
  background-color: var(--bg-base);
  border-top: 1px solid var(--border-light);
  padding: 0rem 0;
  margin-top: 3rem;
}

/* Make footer vertically a bit tighter without affecting global .container */
.footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.footer-copyright {
  color: var(--text-medium);
  font-size: 0.85rem;
}

.footer-copyright p {
  margin: 0;
  color: var(--text-medium);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.footer-separator {
  color: var(--text-medium);
  font-size: 0.85rem;
  margin: 0;
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-copyright {
    order: 2;
  }
  
  .footer-links {
    order: 1;
    gap: 1rem;
  }
}

/* FAQ Section */
.faq-container {
  background-color: var(--bg-light);
  padding: 4rem 0 1rem 0;
  margin-top: 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}

.faq-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-base);
  border: 2px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-family: var(--font-mono);
}

.faq-question:hover {
  background-color: #F7E6CA;
}

.faq-question-text {
  flex: 1;
  margin-right: 1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: var(--bg-base);
}

.faq-answer.active {
  max-height: 400px;
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-color);
  font-size: 1rem;
  text-align: justify;
}

.faq-answer strong {
  color: var(--text-color);
  font-weight: 600;
}

/* FAQ responsive adjustments */
@media (max-width: 768px) {
  .faq-container {
    padding: 3rem 0 1rem 0;
  }
  
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .faq-list {
    margin: 0 1rem;
  }
  
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .faq-answer.active {
    max-height: 500px;
    padding: 1.25rem;
  }
}

/* Final CTA Section */
.final-cta-container {
  background-color: var(--bg-light);
  padding: 1rem 0;
  margin-top: 0;
}

.final-cta {
  text-align: center;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  line-height: 1.3;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Final CTA responsive adjustments */
@media (max-width: 768px) {
  .final-cta-container {
    padding: 1.5rem 0;
  }
  
  .final-cta-title {
    font-size: 1.75rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
  
  .final-cta-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Waitlist Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background-color: #f5f5f5;
  color: #333;
}

.modal-title {
  font-family: 'Hepta Slab', 'monospace', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.modal-subtitle {
  font-family: 'Hepta Slab', 'monospace', serif;
  font-size: 1rem;
  color: #666;
  margin: 0 0 2rem 0;
  text-align: center;
}

/* Small highlight box inside modal for perks */
.modal-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background-color: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin: -1rem 0 1.5rem 0; /* visually tied to subtitle */
}

.modal-perk-emoji {
  flex: 0 0 auto;
}

.modal-perk-text {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0; /* remove default p bottom margin to avoid extra internal gap */
  text-align: center;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Hepta Slab', 'monospace', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.25rem;
}

.form-input {
  font-family: 'Hepta Slab', 'monospace', serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--dark-brown);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-input.error {
  border-color: #e74c3c;
}

.email-error {
  font-family: 'Hepta Slab', 'monospace', serif;
  font-size: 0.85rem;
  color: #e74c3c;
  margin-top: 0.25rem;
  min-height: 1.2rem;
}

.checkbox-group {
  gap: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-family: 'Hepta Slab', 'monospace', serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background-color: var(--dark-brown);
  border-color: var(--dark-brown);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: #333;
}

.privacy-link {
  color: var(--dark-brown);
  text-decoration: underline;
  font-weight: 700;
}

.privacy-link:hover {
  text-decoration: none;
}

.modal-submit-btn {
  font-family: 'Hepta Slab', 'monospace', serif;
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--accent-gold);
  color: var(--dark-brown);
  border: 2px solid var(--dark-brown);
  border-radius: 8px;
  padding: 0.875rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.modal-submit-btn:hover:not(:disabled) {
  background-color: var(--dark-brown);
  color: var(--accent-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-submit-btn:disabled {
  background-color: #e6e6e6;
  color: #999;
  border: 2px solid #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Form feedback messages */
.form-message {
  font-family: 'Hepta Slab', 'monospace', serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 400;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Modal responsive adjustments */
@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    margin: 1rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
  
  .modal-title {
    font-size: 1.25rem;
  }
  
  .modal-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .waitlist-form {
    gap: 1.25rem;
  }

  .form-message {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
}
/* Hide nav links on small screens to avoid overlap with logo */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 760px) {
  .company-name {
    display: none;
  }
  .main-content {
    padding-top: 7rem;
  }
}

/* Keep nav visible and avoid overlap with logo just above 900px */
@media (max-width: 1450px) and (min-width: 901px) {
  .nav-links {
    left: 52%;
  }
}
