/*
 * This file was created with the help of generative AI (Cursor IDE).
 * Please note that AI assistance was used in its creation.
 */

/* Global Variables */
:root {
  /* --primary-color: #1a2a6c;
  --secondary-color: #b21f1f;
  --accent-color: #fdbb2d; */
  --primary-color: #7be495;
  --secondary-color: #56c596;
  --accent-color: #205072;
  /* --text-primary: #333; */
  --text-primary: #329d9c;
  --text-secondary: #666;
  --text-light: #888;
  --background-light: #fff;
  --border-color: #eaeaea;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  --gradient-full: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Base Styling */
html,
body {
  min-width: 320px;
  overflow-x: hidden;
  height: 100%;
  scroll-behavior: smooth;
  overscroll-behavior: none; /* Prevent bounce/rubber-band scroll effect */
}

body {
  font-family: "Rubik", sans-serif;
  margin: 0;
  padding: 0 !important;
  background: var(--gradient-full);
  background-size: 400% 400%;
  background-attachment: fixed;
  animation: gradient 15s ease infinite;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  overscroll-behavior: none;
  overflow-x: hidden;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
  pointer-events: none;
}

/* Main Container */
.coming-soon-container {
  min-width: 320px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6rem;
  box-sizing: border-box;
  flex: 1 0 auto;
  overscroll-behavior: none; /* Add this to prevent bounce on container */
}

/* Logo and Tagline */
.logo-container {
  margin-bottom: 2rem;
}

.logo-container h1 {
  font-size: 3.5rem;
  margin: 0;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.tagline {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-weight: 300;
}

/* Launch Info */
.launch-info {
  margin: 2rem 0;
}

.status-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Notify Form */
.notify-section {
  margin: 2rem 0;
  padding: 0 20px;
}

.notify-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(5px);
}

.notify-form label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.notify-form input[type="text"],
.notify-form input[type="email"],
.notify-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.notify-form textarea {
  min-height: 120px;
  resize: vertical;
}

.notify-form input[type="text"]:focus,
.notify-form input[type="email"]:focus,
.notify-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.notify-form button {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.notify-form .hidden {
  display: none !important;
}

/* Features Preview */
.features-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem auto 4rem;
  max-width: 1200px;
  padding: 0 1rem;
}

.feature {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(26, 42, 108, 0.1);
  box-shadow: 0 4px 15px rgba(26, 42, 108, 0.05);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: calc(33.333% - 2rem); /* Set width instead of flex-basis */
  min-width: 280px;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 42, 108, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.feature:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  background: rgba(26, 42, 108, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature:hover .feature-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.feature span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  flex-shrink: 0; /* Prevent footer from shrinking */
  margin-top: auto; /* Push footer to bottom when content is short */
}

.social-links {
  margin-bottom: 1rem;
}

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

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

.copyright {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Navigation */
nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

nav .logo {
  font-weight: bold;
  color: var(--primary-color); /* Teal */
  text-decoration: none;
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s, background 0.3s;
  border-radius: 5px;
}

nav ul li a:hover {
  color: var(--primary-color);
  background: var(--primary-color);
}

/* Section Titles in Royal Blue */
.section-title {
  font-size: 2.5rem;
  color: var(--gradient-secondary); /* Royal Blue */
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-color)
  );
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Sections */
section {
  margin: 0 1rem;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.3s ease;
  border-radius: 20px;
  scroll-margin-top: 160px;
  box-sizing: border-box; /* Add this to include padding in width calculation */
}

/* Plans Section */
#plans {
  padding: 0.5rem !important;
  border-radius: 15px;
}

#plans h2 {
  margin-top: 0;
}

/* Introduction Section */
#introduction {
  text-align: center;
  margin-top: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
}

.coming-soon {
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Features Section */
#features {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(26, 42, 108, 0.03)
  );
  position: relative;
  border: 1px solid rgba(26, 42, 108, 0.08);
  box-shadow: 0 4px 20px rgba(26, 42, 108, 0.05);
}

#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98),
    transparent
  );
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

#features::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(26, 42, 108, 0.03), transparent);
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

#features ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

#features ul li {
  margin-bottom: 15px;
  font-size: 1.1em;
  position: relative;
  padding-left: 25px;
}

#features ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Mascot Section */
#mascot {
  text-align: center;
  background: #ffffff;
  position: relative;
  border: 1px solid rgba(26, 42, 108, 0.08);
  box-shadow: 0 4px 20px rgba(26, 42, 108, 0.05);
}

/* Remove the ::before and ::after gradient overlays */
#mascot::before,
#mascot::after {
  display: none;
}

#mascot img {
  width: 220px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
  transition: transform 0.3s ease;
}

#mascot img:hover {
  transform: scale(1.05);
}

/* Contact Section */
#contact {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(253, 187, 45, 0.03)
  );
  position: relative;
  text-align: center;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(26, 42, 108, 0.03), transparent);
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

#contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

#contact form {
  max-width: 500px;
  margin: 0 auto;
}

#contact form label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
}

#contact form input,
#contact form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-size: 1em;
  transition: border-color 0.3s;
}

#contact form input:focus,
#contact form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

#contact form button {
  background: var(--gradient-primary);
  color: var(--background-light);
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  background-size: 200% auto;
}

#contact form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Error & Success Pages */
.error-container,
.success-container {
  text-align: center;
  padding: 1rem;
  max-width: 600px;
  margin: auto; /* Center vertically and horizontally */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.error-code {
  font-size: 6rem;
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1;
}

.error-title,
.success-title {
  font-size: 2rem;
  margin: 0.5rem 0;
  color: var(--text-secondary);
  font-weight: 500;
}

.success-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.error-message,
.success-message {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.home-button,
.back-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--background-light);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-button:hover,
.back-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.success-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

/* Pricing Table Styles */
.pricing-table {
  width: auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto;
  max-width: 1000px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem; /* Increase padding to accommodate shadows */
  position: relative; /* Add position relative */
}

.feature-column,
.tier-column {
  flex: 0 0 auto;
  min-width: 150px;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  overflow: visible; /* Change from hidden to visible */
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(5px);
  position: relative; /* Add position relative */
  z-index: 0; /* Base z-index */
}

.feature-header {
  padding: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(26, 42, 108, 0.05);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.feature-item {
  padding: 0.6rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  box-sizing: border-box;
  line-height: 1;
  font-size: 0.95rem;
  text-align: center;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  margin: 0;
  height: 50px;
}

.feature-check {
  padding: 0.6rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.2;
  font-family: "Rubik", sans-serif;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  margin: 0;
  height: 50px;
  font-weight: 500;
}

/* Style for check marks specifically */
.feature-check:matches(has(content "✓")) {
  font-size: 1.2rem;
  font-family: monospace;
}

/* Style for text content */
.feature-check:not(matches(has(content "✓"))) {
  background: rgba(26, 42, 108, 0.03);
  border-radius: 4px;
  margin: 0.3rem 0.6rem;
  padding: 0.3rem 0.8rem;
}

.feature-list,
.tier-features {
  overflow: hidden;
  border-radius: 15px;
  background: inherit;
}

.tier-column {
  flex: 1;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  overflow: visible; /* Change from hidden to visible */
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 3px;
  position: relative; /* Add position relative */
}

.tier-column:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  z-index: 2; /* Increase z-index on hover */
}

.tier-header {
  padding: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(26, 42, 108, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.pricing-notification {
  max-width: 600px;
  margin: 1.5rem auto 0;
  padding: 1rem;
  background: rgba(26, 42, 108, 0.05);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(26, 42, 108, 0.1);
}

.pricing-notification p {
  margin: 0;
  color: var(--accent-color);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* Mascot Section Enhancements */
.mascot-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mascot-content img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.mascot-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
}

/* Navigation Styles */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--background-light);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 80px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  vertical-align: middle;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-logo span {
  margin-left: 4px;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Feature Table Styles */
.feature-table {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(5px);
}

.feature-table th,
.feature-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-table th {
  background: rgba(26, 42, 108, 0.05);
  font-weight: 600;
  color: var(--primary-color);
}

.feature-table th:first-child {
  border-top-left-radius: 15px;
}

.feature-table th:last-child {
  border-top-right-radius: 15px;
}

.feature-table tr:last-child td {
  border-bottom: none;
}

.feature-table tr:last-child td:first-child {
  border-bottom-left-radius: 15px;
}

.feature-table tr:last-child td:last-child {
  border-bottom-right-radius: 15px;
}

.feature-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.feature-table td:not(:first-child) {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* Add/modify these media query styles at the end of your CSS file */

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
  .nav-logo {
    margin-left: 0;
  }

  .mobile-menu-button {
    display: block;
    padding: 0.5rem;
    margin-right: 0;
  }

  .nav-links {
    display: none; /* Hidden by default */
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--background-light);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: var(--shadow-md);
    width: 100%;
    backdrop-filter: blur(10px);
    height: auto;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.6rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    box-sizing: border-box;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .feature {
    width: calc(50% - 2rem);
  }
}

/* Add a new media query for smaller screens */
@media screen and (max-width: 480px) {
  .nav-logo {
    font-size: 1.2rem;
  }

  .notify-form {
    padding: 20px;
  }

  .notify-form input[type="text"],
  .notify-form input[type="email"],
  .notify-form textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .notify-form button {
    padding: 12px 20px;
  }

  .feature {
    width: 100%;
    min-width: auto;
  }
}

/* Responsive Sections */
@media screen and (max-width: 768px) {
  section {
    margin: 0 0.5rem;
    padding: 1rem;
  }

  .coming-soon-container {
    padding: 120px 15px 30px;
    gap: 3rem;
  }

  /* Adjust pricing table */
  .pricing-table {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .feature-column,
  .tier-column {
    min-width: 120px;
  }

  .feature-header,
  .tier-header {
    padding: 1rem;
    font-size: 1.2rem;
  }

  .feature-item,
  .feature-check {
    padding: 0.5rem;
    font-size: 0.85rem;
    min-height: 40px;
    height: 40px;
  }
}

/* Mascot Section Responsive */
@media screen and (max-width: 768px) {
  .mascot-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
  }

  .mascot-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Contact Form Responsive */
@media screen and (max-width: 480px) {
  .notify-form {
    padding: 20px;
  }

  .notify-form input[type="text"],
  .notify-form input[type="email"],
  .notify-form textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .notify-form button {
    padding: 12px 20px;
  }
}

/* Fix horizontal scroll issues */
@media screen and (max-width: 320px) {
  body {
    min-width: 320px;
    width: 100vw;
  }

  .coming-soon-container {
    min-width: 320px;
    width: 100%;
    padding: 120px 10px 30px;
  }

  section {
    margin: 0;
    border-radius: 15px;
  }

  .pricing-table {
    margin: 0;
    padding: 0.25rem;
  }

  .feature-column,
  .tier-column {
    min-width: 100px;
  }
}

/* Enhance table responsiveness */
.pricing-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
}

/* Add smooth scrollbar styling */
.pricing-table::-webkit-scrollbar {
  height: 6px;
}

.pricing-table::-webkit-scrollbar-track {
  background: transparent;
}

.pricing-table::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 3px;
}

/* Plan Toggle Styles */
.plan-toggle {
  display: none; /* Hidden by default */
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.toggle-btn {
  padding: 0.25rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Update media queries for mobile pricing table */
@media screen and (max-width: 545px) {
  .plan-toggle {
    display: flex;
  }

  .pricing-table {
    padding: 0.5rem;
    gap: 0.5rem;
    overflow: visible;
  }

  .feature-column {
    width: auto;
  }

  .tier-column {
    display: none;
    min-width: unset;
    width: auto;
  }

  /* Show active plan based on toggle */
  .free-plan.active {
    display: block;
  }

  .pro-plan.active {
    display: block;
  }
}
