/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1b1b1d;
  line-height: 1.6;
  background: #f9f9f9;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(110, 157, 247, 0.9);
  backdrop-filter: blur(10px);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #ff9f1c;
}
.btn-small {
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-small:hover {
  background: #ff9f1c;
  color: #ffffff;
}

/* Hero Section */
 .hero {
  position: relative;
  background: linear-gradient(135deg, #0083cc 0%, #1b1b1d 100%);
  color: white;
  min-height: calc(100vh - 60px);
  padding-top: 60px;
  display: flex;
  align-items: center;
}
.hero-content {
  text-align: left;
  padding: 80px 0;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.btn-large {
  display: inline-block;
  background: #ff9f1c;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-large:hover {
  background: #e68a12;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #ffffff;
}
.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.feature {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.feature .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.feature p {
  font-size: 1rem;
  color: #666;
}

/* Screenshot Section */
.screenshot {
  padding: 80px 0;
  text-align: center;
}
.screenshot img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Support Page */
.support-page {
  padding: 80px 0;
  min-height: calc(100vh - 80px);
}
.support-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.support-page p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.support-page ul {
  list-style: none;
  padding-left: 0;
}
.support-page li {
  margin-bottom: 10px;
  font-size: 1rem;
}
/* HubSpot Form Container */
.hubspot-form-container {
  max-width: 600px;
  margin: 20px auto;
}
/* Feedback Form */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 20px auto;
}
.feedback-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #1b1b1d;
}
.feedback-form input,
.feedback-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}
.feedback-form button {
  align-self: flex-start;
}

/* Footer */
footer {
  background-color: #1b1b1d;
  color: #ffffff;
  padding: 20px 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav {
  list-style: none;
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: #ffffff;
}
.footer-nav a:hover {
  color: #ff9f1c;
  text-decoration: none;
}
.pricing {
  padding: 80px 0;
  background: #fff;
}
.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
.plan {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
}
.plan.highlight {
  border-color: #ff9f1c;
  box-shadow: 0 4px 20px rgba(255, 159, 28, 0.3);
}
.plan h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}
.plan .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
  color: #0083cc;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.plan ul li {
  margin-bottom: 8px;
  color: #666;
}
.plan .btn {
  display: inline-block;
  background: #ff9f1c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.plan .btn:hover {
  background: #d17f13;
}
/* CTA Section */
.cta {
  padding: 60px 0;
  background: #0083cc;
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta .btn-large {
  background: #ff9f1c;
  color: #ffffff;
}
.cta .btn-large:hover {
  background: #e68a12;
}
.footer-nav a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6e9df7 0%, #9c6ef7 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: #6e9df7;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #f0f4ff;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

.feature-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  width: 300px;
}

.feature .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature p {
  font-size: 1rem;
  color: #666;
}

/* Footer */
footer {
  background-color: #333;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
}