/* Host Grotesk Font */
@font-face {
  font-family: "Host Grotesk";
  src: url("assets/fonts/static/HostGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Host Grotesk";
  src: url("assets/fonts/static/HostGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Host Grotesk";
  src: url("assets/fonts/static/HostGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Host Grotesk";
  src: url("assets/fonts/static/HostGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Host Grotesk", sans-serif;
  background: linear-gradient(135deg, #ffecf0 0%, #fef7ff 100%);
  color: #1d1b20;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem 0 1rem 0;
}

.nav-left {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d1b20;
  text-decoration: none;
}

.logo-icon {
  height: 22px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: -5px;
}

.nav-links a {
  color: #49454f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.nav-links a:hover {
  color: #1d1b20;
}

.nav-actions {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 5px;
}

.login-link {
  color: #49454f;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Host Grotesk", sans-serif;
  padding: 0.5rem 0;
}

.login-link:hover {
  color: #1d1b20;
  text-decoration: underline;
}

.cta-button {
  background: #65558f;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid #eaddff;
  cursor: pointer;
  font-family: "Host Grotesk", sans-serif;
  margin-bottom: -8px;
}

.cta-button.secondary {
  color: #65558f;
  border: 1px solid #79747e;
  background-color: #fef7ff;
  box-sizing: border-box;
}

.cta-button:hover {
  background: #4f378a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 221, 255, 0.3);
}

.cta-button.secondary:hover {
  background: #d1c4e9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 221, 255, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  padding: 0 2rem;
  text-align: left;
}

.welcome-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.welcome-text {
  width: 122px;
  height: 28px;
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  display: flex;
  align-items: center;
  color: #79747e;
}

.hero-logo {
  height: 22px;
  width: auto;
}

.main-headline {
  width: 516px;
  height: 4px;
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  display: flex;
  align-items: center;
  color: #1d1b20;
  margin-bottom: 2rem;
}

.search-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
}

.search-input-wrapper {
  position: relative;
  width: 870px;
  height: 167px;
  background: #fffbff;
  border-radius: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 20px;
  gap: 24px;
  isolation: isolate;
}

.search-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 830px;
  height: 135px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
  z-index: 0;
}

.search-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 714px;
  height: 28px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.search-controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  width: 119px;
  height: 28px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.icon-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.icon-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 28px;
  height: 28px;
  border-radius: 100px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.state-layer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 10px;
  width: 28px;
  height: 28px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
}

.icon {
  width: 20px;
  height: 20px;
  background: #49454f;
  border-radius: 2px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.counter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 6px;
  gap: 10px;
  width: 38px;
  height: 28px;
  border-radius: 4px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.date {
  width: 26px;
  height: 20px;
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.25px;
  color: #1d1b20;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.version-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 146px;
  height: 28px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.version-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 8px;
  gap: 10px;
  width: 118px;
  height: 20px;
  background: #eaddff;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.version-text {
  width: 102px;
  height: 20px;
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #381e72;
  opacity: 0.38;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.search-input-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 830px;
  height: 28px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.search-input {
  width: 100%;
  height: 24px;
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: #49454f;
  border: none;
  outline: none;
  background: transparent;
  resize: none;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.search-input::placeholder {
  color: #49454f;
}

.search-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px;
  gap: 265px;
  isolation: isolate;
  width: 830px;
  height: 20px;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.label-text {
  width: 62px;
  height: 20px;
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.25px;
  color: #1d1b20;
  opacity: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
  z-index: 0;
}

.search-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  gap: 10px;
  position: absolute;
  width: 48px;
  height: 48px;
  right: 5px;
  bottom: 5px;
  border: none;
  background: none;
  cursor: pointer;
  flex: none;
  order: 1;
  flex-grow: 0;
  z-index: 1;
}

.button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 40px;
  height: 40px;
  background: #65558f;
  border-radius: 100px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.button-state-layer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 10px;
  width: 40px;
  height: 40px;
  order: 0;
  flex-grow: 0;
}

.button-icon {
  width: 24px;
  height: 24px;
  order: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary-button {
  background: #65558f;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #65558f;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.primary-button:hover {
  background: #4f378a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(101, 85, 143, 0.4);
}

.secondary-button {
  background: transparent;
  color: #49454f;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #eaddff;
}

.secondary-button:hover {
  background: #eaddff;
  color: #4f378a;
  transform: translateY(-3px);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1d1b20;
}

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

.features-summary {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: rgba(234, 221, 255, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(234, 221, 255, 0.5);
}

.features-summary h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1d1b20;
  margin-bottom: 1rem;
  font-family: "Host Grotesk", sans-serif;
}

.features-summary p {
  font-size: 1.1rem;
  color: #49454f;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Host Grotesk", sans-serif;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.8);
}

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

.pricing-subtitle {
  font-size: 1.2rem;
  color: #49454f;
  line-height: 1.6;
  max-width: 700px;
  margin: 1rem auto 0;
  font-family: "Host Grotesk", sans-serif;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(234, 221, 255, 0.5);
}

.pricing-card.featured {
  border-color: #eaddff;
  background: rgba(234, 221, 255, 0.1);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #65558f;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Host Grotesk", sans-serif;
}

.pricing-header-card {
  margin-bottom: 2rem;
}

.pricing-header-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1b20;
  margin-bottom: 1rem;
  font-family: "Host Grotesk", sans-serif;
}

.price {
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1b20;
  font-family: "Host Grotesk", sans-serif;
}

.price-period {
  font-size: 1rem;
  color: #49454f;
  font-family: "Host Grotesk", sans-serif;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.pricing-features h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1b20;
  margin-bottom: 1rem;
  font-family: "Host Grotesk", sans-serif;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #49454f;
  font-family: "Host Grotesk", sans-serif;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4f378a;
  font-weight: bold;
}

.pricing-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Host Grotesk", sans-serif;
  border: 2px solid transparent;
  width: 100%;
  text-align: center;
}

.pricing-button.primary {
  background: #65558f;
  color: white;
}

.pricing-button.primary:hover {
  background: #3d2a6b;
  border-color: #3d2a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 55, 138, 0.3);
}

.pricing-button.secondary {
  background: transparent;
  color: #4f378a;
  border-color: #4f378a;
}

.pricing-button.secondary:hover {
  background: #4f378a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 55, 138, 0.2);
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(234, 221, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
}

.faq-question:hover {
  background: rgba(234, 221, 255, 0.1);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1b20;
  margin: 0;
  font-family: "Host Grotesk", sans-serif;
  flex: 1;
  text-align: left;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #4f378a;
  transition: transform 0.3s ease;
  font-family: "Host Grotesk", sans-serif;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background: rgba(248, 248, 248, 0.8);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: #49454f;
  line-height: 1.6;
  margin: 0;
  font-family: "Host Grotesk", sans-serif;
  padding-top: 1rem;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.8);
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-intro {
  font-size: 1.3rem;
  color: #49454f;
  line-height: 1.6;
  max-width: 800px;
  margin: 1.5rem auto 0;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 500;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.about-section:hover {
  border-color: rgba(234, 221, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.about-section-header {
  margin-bottom: 1.5rem;
}

.about-section-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1b20;
  margin: 0;
  font-family: "Host Grotesk", sans-serif;
  position: relative;
  padding-left: 1rem;
}

.about-section-header h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #4f378a;
  border-radius: 2px;
}

.about-section-content p {
  font-size: 1.1rem;
  color: #49454f;
  line-height: 1.7;
  margin: 0;
  font-family: "Host Grotesk", sans-serif;
}

.about-footer {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(234, 221, 255, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(234, 221, 255, 0.3);
}

.about-footer p {
  font-size: 1.1rem;
  color: #1d1b20;
  margin: 0;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 500;
}

.about-footer strong {
  color: #4f378a;
  font-weight: 600;
}

/* Privacy Policy Page */
.privacy-policy {
  padding: 6rem 0 4rem;
  background: rgba(255, 255, 255, 0.8);
  min-height: 100vh;
}

.privacy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.privacy-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1d1b20;
  margin-bottom: 1rem;
  font-family: "Host Grotesk", sans-serif;
}

.last-updated {
  font-size: 1.1rem;
  color: #49454f;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 500;
}

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

.privacy-section {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.privacy-section:hover {
  border-color: rgba(234, 221, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1b20;
  margin-bottom: 1.5rem;
  font-family: "Host Grotesk", sans-serif;
  position: relative;
  padding-left: 1rem;
}

.privacy-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #4f378a;
  border-radius: 2px;
}

.privacy-section p {
  font-size: 1.1rem;
  color: #49454f;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: "Host Grotesk", sans-serif;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.privacy-section li {
  font-size: 1.1rem;
  color: #49454f;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-family: "Host Grotesk", sans-serif;
}

.privacy-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4f378a;
  font-weight: bold;
  font-size: 1.2rem;
}

.privacy-section strong {
  color: #1d1b20;
  font-weight: 600;
}

.contact-info {
  background: rgba(234, 221, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid rgba(234, 221, 255, 0.3);
}

.contact-info p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info a {
  color: #4f378a;
  text-decoration: none;
  font-weight: 500;
}

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

.privacy-section a {
  color: #4f378a;
  text-decoration: none;
  font-weight: 500;
}

.privacy-section a:hover {
  text-decoration: underline;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #ffd8e4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #633b48;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1d1b20;
}

.feature-card p {
  color: #49454f;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, #fef7ff 0%, #eaddff 50%, #d1c4e9 100%);
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1d1b20;
  position: relative;
  z-index: 2;
}

.cta-content p {
  font-size: 1.25rem;
  color: #49454f;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(101, 85, 143, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(234, 221, 255, 0.2) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Footer */
footer {
  background: #1d1b20;
  color: #eaddff;
  padding: 3rem 0 2rem;
  text-align: center;
}

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

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #eaddff;
}

.footer-section p,
.footer-section a {
  color: #cac4d0;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #eaddff;
}

.footer-bottom {
  border-top: 1px solid #49454f;
  padding-top: 2rem;
  color: #cac4d0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 0 1rem;
    text-align: left;
  }

  .welcome-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .welcome-text {
    width: auto;
    height: auto;
    font-size: 18px;
    line-height: 24px;
  }

  .main-headline {
    width: auto;
    height: auto;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
  }

  .search-container {
    justify-content: flex-start;
  }

  .search-input-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 12px 16px;
    gap: 16px;
  }

  .search-content {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .search-header {
    width: 100%;
    height: auto;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .search-controls {
    width: auto;
    height: auto;
    gap: 8px;
  }

  .version-info {
    width: auto;
    height: auto;
  }

  .search-input-area {
    width: 100%;
    height: auto;
  }

  .search-input {
    width: 100%;
    height: auto;
    font-size: 14px;
    min-height: 2rem;
  }

  .search-footer {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .search-button {
    position: relative;
    right: auto;
    bottom: auto;
    width: 40px;
    height: 40px;
    margin-top: 8px;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .pricing-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
  }

  .about-intro {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .about-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .about-section-header h3 {
    font-size: 1.3rem;
  }

  .about-section-content p {
    font-size: 1rem;
  }

  .about-footer {
    padding: 1.5rem;
  }

  .privacy-header h1 {
    font-size: 2.5rem;
  }

  .privacy-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 1rem;
  }

  .contact-info {
    padding: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0 24px;
}

.modal-logo {
  display: flex;
  align-items: center;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #79747e;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background-color: #f3f0f4;
  color: #1d1b20;
}

.modal-body {
  padding: 24px;
}

.modal-body h2 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1d1b20;
  margin: 0 0 24px 0;
  text-align: center;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-family: "Host Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1d1b20;
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid #e7e0ec;
  border-radius: 8px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  color: #1d1b20;
  background-color: white;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #4f378a;
  box-shadow: 0 0 0 2px rgba(79, 55, 138, 0.1);
}

.form-group input::placeholder {
  color: #79747e;
}

.modal-submit-btn {
  background: #4f378a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.modal-submit-btn:hover {
  background: #3d2a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 55, 138, 0.3);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

.modal-submit-btn:disabled {
  background: #cac4d0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.modal-submit-btn:disabled:hover {
  background: #cac4d0;
  transform: none;
  box-shadow: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
    max-width: none;
  }

  .modal-header {
    padding: 20px 20px 0 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body h2 {
    font-size: 20px;
  }
}
