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

body {
  font-family:
    'Lato',
    arial,
    sans-serif;
  background-color: #fff9f3;
}

.homepage {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
}

/* Hero Section */
.hero-section {
  background: #fff9f3;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
  }
  .hero-section {
    padding-top: 0px;
  }
}

.hero-container {
  align-self: center;
  min-height: 400px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .hero-container {
    max-width: 100%;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 600px;
  width: 100%;
}

@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
  }
}

.hero-background {
  position: absolute;
  width: 823px;
  height: 600px;
  right: -90px;
}

@media (max-width: 991px) {
  .hero-background {
    position: relative;
    right: 0px;
    width: auto;
    height: auto;
  }
}

.hero-overlay {
  position: relative;
  margin-bottom: -49px;
  z-index: 1;
}

@media (max-width: 800px) {
  .hero-overlay {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

/* Navigation */
.navigation-container {
  background: #fff9f3;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-nav {
  align-self: center;
  max-width: 1200px;
  display: flex;
  width: 100%;
}

.logo {
  color: rgba(27, 25, 23, 1);
  font-size: 24px;
  font-family:
    'Libre Franklin',
    sans-serif;
  font-weight: 500;
}

.logo-image {
  height: 70px;
  width: auto;
}
.homepage-logo {
  height: 200px;
  width: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: -18px;
}

@media (max-width: 500px) {
  .homepage-logo {
    width: 100%;
    height: auto;
}
}

.footer-logo-image {
  height: 100px;
  width: auto;
}

.main-nav {
  align-self: start;
  display: flex;
  margin-top: 6px;
  align-items: center;
  gap: 24px;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-size: 14px;
  color: rgba(82, 81, 75, 1);
  font-weight: 400;
  justify-content: start;
}

.nav-link {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  text-decoration: none;
  color: inherit;
}

.nav-divider {
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  width: 0px;
  flex-shrink: 0;
  height: 20px;
}

.auth-actions {
  display: flex;
  align-items: stretch;
  gap: 24px;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-size: 14px;
}

.sign-in {
  color: rgba(82, 81, 75, 1);
  font-weight: 400;
  margin-top: auto;
  margin-bottom: auto;
  text-decoration: none;
}

.try-ai-button {
  border-radius: 40px;
  background-color: #fff9f3;
  border: 1px solid #e89b1c;
  padding: 10px 32px;
  color: #e89b1c;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 991px) {
  .try-ai-button {
    padding: 10px 20px;
  }
}

/* Hero Message */
.hero-message {
  display: flex;
  margin-top: 20px;
  width: 520px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-message {
    width: 100%;
    position: relative;
    z-index: 5;
    padding: 0 20px;
  }
}

.hero-text {
  width: 100%;
}

@media (max-width: 991px) {
  .hero-text {
    max-width: 100%;
  }
}

.hero-title {
  color: rgba(27, 25, 23, 1);
  font-size: 50px;
  font-family:
    'Libre Franklin',
    sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

.highlight-safe {
  font-weight: 700;
}

.highlight-ai {
  font-weight: 700;
}

@media (max-width: 991px) {
  .hero-title {
    max-width: 100%;
    font-size: 40px;
  }
}

.hero-subtitle {
  color: rgba(82, 81, 75, 1);
  font-size: 28px;
  font-family:
  'Libre Franklin',
  sans-serif;
  margin-top: 8px;
}

@media (max-width: 991px) {
  .hero-subtitle {
    max-width: 100%;
  }
}

.hero-description {
  color: rgba(82, 81, 75, 1);
  font-size: 18px;
  margin-top: 16px;
  max-width: 100%;
  line-height: 1.5;
}


.mission-button {
  display: inline-block;
  margin-top: 24px;
  border-radius: 40px;
  background-color: #e89b1c;
  border: 1px solid #e89b1c;
  padding: 12px 32px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Lato', arial, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
}

.mission-button:hover {
  background-color: #fff9f3;
  color: #e89b1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .mission-button {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* CTA Button */
.cta-button {
  border-radius: 40px;
  background-color: #e89b1c;
  align-self: start;
  display: flex;
  margin-top: 40px;
  min-height: 60px;
  align-items: center;
  overflow: hidden;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-weight: 600;
  justify-content: center;
  text-decoration: none;
}

.cta-text {
  border-radius: 4px;
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 12px 8px 40px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  justify-content: center;
}

@media (max-width: 991px) {
  .cta-text {
    padding-left: 20px;
  }
}

.cta-primary {
  color: #fff;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 20px;
  line-height: 1;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.cta-secondary {
  align-self: stretch;
  border-radius: 60px;
  background-color: #ffbd59;
  margin-top: auto;
  margin-bottom: auto;
  padding: 10px 20px;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
}

/* Features Section (Custom for Home) */
.features-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 120px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}
.features-badge {
  background: #fff3d6;
  color: #e89b1c;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  padding: 4px 16px;
  margin-bottom: 16px;
  display: inline-block;
}
.features-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #23272f;
  margin-bottom: 12px;
  text-align: center;
}
.features-subtitle {
  font-family: 'Lato', arial, sans-serif;
  font-size: 18px;
  color: #5d5d5d;
  text-align: center;
  margin-bottom: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
  width: 100%;
  max-width: 1200px;
}
.feature-card {
  background: #fff;
  border: 1.5px solid #fff3d6;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(82, 104, 143, 0.04);
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(82, 104, 143, 0.10);
}
.feature-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: #f5f7fa;
}
.feature-icon-blue-1 {
  background: rgba(162, 196, 224, 0.3);
  color: #52688f;
}
.feature-icon-blue-2 {
  background: rgba(130, 164, 227, 0.25);
  color: #52688f;
}
.feature-icon-blue-3 {
  background: rgba(162, 196, 224, 0.35);
  color: #82a4e3;
}
.feature-icon-blue-4 {
  background: rgba(82, 104, 143, 0.15);
  color: #52688f;
}
.feature-icon-blue-5 {
  background: rgba(130, 164, 227, 0.3);
  color: #82a4e3;
}
.feature-icon-blue-6 {
  background: rgba(82, 104, 143, 0.2);
  color: #82a4e3;
}
.feature-card-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #23272f;
  margin-bottom: 10px;
  text-align: center;
}
.feature-card-desc {
  font-family: 'Lato', arial, sans-serif;
  font-size: 15px;
  color: #5d5d5d;
  text-align: center;
  line-height: 1.5;
}
.feature-card-blue-1 {
  border: 1.5px solid #a2c4e0;
  background: rgba(162, 196, 224, 0.04);
}
.feature-card-blue-2 {
  border: 1.5px solid #82a4e3;
  background: rgba(130, 164, 227, 0.05);
}
.feature-card-blue-3 {
  border: 1.5px solid #52688f;
  background: rgba(82, 104, 143, 0.03);
}
.feature-card-blue-4 {
  border: 1.5px solid #a2c4e0;
  background: rgba(162, 196, 224, 0.08);
}
.feature-card-blue-5 {
  border: 1.5px solid #82a4e3;
  background: rgba(130, 164, 227, 0.03);
}
.feature-card-blue-6 {
  border: 1.5px solid #52688f;
  background: rgba(82, 104, 143, 0.06);
}
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 20px;
  }
  .features-section {
    padding: 40px 8px 24px 8px;
  }

  .features-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 550px) {
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
    padding: 20px;
  }
}
/* Development Section */
.development-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  color: rgba(27, 25, 23, 1);
  font-size: 42px;
  font-family:
    'Libre Franklin',
    sans-serif;
  font-weight: 500;
  margin-top: 80px;
}

@media (max-width: 991px) {
  .section-title {
    max-width: 100%;
    margin-top: 40px;
  }
}

.section-description {
  color: rgba(82, 81, 75, 1);
  font-size: 18px;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  margin-top: 16px;
  width: 742px;
}

@media (max-width: 991px) {
  .section-description {
    max-width: 100%;
  }
}

.section-image {
  aspect-ratio: 1.54;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 40px;
  max-width: 1132px;
}

@media (max-width: 991px) {
  .section-image {
    max-width: 100%;
  }
}

/* Communication Section */
.communication-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.communication-image {
  aspect-ratio: 1.49;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 0;
  margin-top: 160px;
  margin-left: 14px;
  max-width: 1228px;
}

@media (max-width: 991px) {
  .communication-image {
    max-width: 100%;
    margin-top: 40px;
  }
}

.communication-section .section-title {
  margin-top: 161px;
  margin-left: 10px;
}

@media (max-width: 991px) {
  .communication-section .section-title {
    max-width: 100%;
    margin-top: 40px;
  }
}

.hub-image {
  aspect-ratio: 1.96;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 30px;
  max-width: 1222px;
}

@media (max-width: 991px) {
  .hub-image {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .comming-soon-title {
    max-width: 80%;
  }
}

.comming-soon-table-container {
  margin-top: 40px;
  width: 100%;
}

@media (max-width: 991px) {
  .comming-soon-table-container {
    max-width: 100%;
  }
}

.comming-soon-table-columns {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .comming-soon-table-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.features-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 58%;
  margin-left: 0px;
}

@media (max-width: 991px) {
  .features-column {
    width: 100%;
  }
}

.features-layout {
  z-index: 10;
  margin-top: 240px;
  margin-right: -885px;
}

@media (max-width: 991px) {
  .features-layout {
    max-width: 100%;
    margin-top: 40px;
  }
}

.features-layout {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .features-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.empty-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 83%;
  margin-left: 0px;
}

@media (max-width: 991px) {
  .empty-column {
    width: 100%;
  }
}

.spacer {
  z-index: 10;
  display: flex;
  margin-top: auto;
  margin-right: -1200px;
  margin-bottom: auto;
  flex-shrink: 0;
  height: 384px;
  align-self: stretch;
}

@media (max-width: 991px) {
  .spacer {
    max-width: 100%;
    margin-top: 40px;
  }
}

.features-list-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 17%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .features-list-column {
    width: 100%;
  }
}

.features-list {
  flex-grow: 1;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-size: 18px;
  color: rgba(115, 114, 110, 1);
  font-weight: 400;
  line-height: 1;
}

.feature-item {
  margin-top: 40px;
}

.feature-item:first-child {
  margin-top: 0;
}

.plans-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 42%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .plans-column {
    width: 100%;
  }
}

.plans-container {
  flex-grow: 1;
}

@media (max-width: 991px) {
  .plans-container {
    max-width: 100%;
  }
}

.plans-container {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .plans-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.plan-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 33%;
}

.plan-column:not(:first-child) {
  margin-left: 20px;
}

@media (max-width: 991px) {
  .plan-column {
    width: 100%;
    margin-left: 0 !important;
  }
}

/* Free Plan */
.plan-free {
  margin-top: auto;
  margin-bottom: auto;
  padding: 0 28px;
  align-self: stretch;
}

@media (max-width: 991px) {
  .plan-free {
    margin-top: 40px;
    padding: 0 20px;
  }
}

.plan-header {
  display: flex;
  width: 100%;
  max-width: 199px;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

.plan-name-price {
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .plan-name-price {
    white-space: initial;
  }
}

.plan-name {
  color: rgba(27, 25, 23, 1);
  font-size: 24px;
  font-family:
    'Libre Franklin',
    sans-serif;
  font-weight: 700;
}

.plan-price {
  color: rgba(51, 128, 120, 1);
  font-size: 48px;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-weight: 500;
  margin-top: 12px;
}

@media (max-width: 991px) {
  .plan-price {
    font-size: 40px;
  }
}

.plan-cta-button {
  border-radius: 40px;
  background-color: #e89b1c;
  align-self: start;
  display: flex;
  margin-top: 32px;
  min-height: 44px;
  align-items: center;
  overflow: hidden;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  justify-content: center;
  text-decoration: none;
}

.plan-cta-text {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  border-radius: 4px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 24px;
  gap: 24px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .plan-cta-text {
    padding: 8px 20px;
  }
}

.plan-features {
  display: flex;
  margin-top: 24px;
  width: 100%;
  max-width: 199px;
  flex-direction: column;
  align-items: start;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-size: 18px;
  color: rgba(27, 25, 23, 1);
  font-weight: 400;
  line-height: 1;
  justify-content: start;
}

.plan-feature {
  align-self: stretch;
  margin-top: 40px;
}

.plan-feature:first-child {
  margin-top: 0;
}

.check-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  margin-top: 40px;
}

.plan-feature-with-icon {
  display: flex;
  margin-top: 40px;
  align-items: start;
  gap: 8px;
  white-space: nowrap;
  justify-content: start;
}

@media (max-width: 991px) {
  .plan-feature-with-icon {
    white-space: initial;
  }
}

.feature-text {
  width: 149px;
}

/* Plus Plan */
.plan-plus {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.1);
  min-height: 753px;
  flex-grow: 1;
  padding: 40px;
  width: 100%;
}

@media (max-width: 991px) {
  .plan-plus {
    margin-top: 40px;
    padding: 40px 20px;
  }
}

.plan-name-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family:
    'Libre Franklin',
    sans-serif;
  white-space: nowrap;
  justify-content: center;
}

@media (max-width: 991px) {
  .plan-name-tag {
    white-space: initial;
  }
}

.recommended-tag {
  align-self: stretch;
  width: 139px;
  border-radius: 4px;
  background-color: rgba(227, 248, 247, 1);
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 12px;
  gap: 10px;
  font-size: 14px;
  color: rgba(51, 128, 120, 1);
  font-weight: 600;
}

@media (max-width: 991px) {
  .recommended-tag {
    white-space: initial;
  }
}

.plan-price-container {
  border-radius: 0;
  display: flex;
  margin-top: 12px;
  width: 100%;
  align-items: stretch;
  gap: 12px;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-weight: 500;
}

.plan-price-plus {
  color: rgba(51, 128, 120, 1);
  font-size: 60px;
  flex-grow: 1;
}

.price-dollars {
  font-size: 48px;
  color: rgba(51, 128, 120, 1);
}

.price-cents {
  font-size: 32px;
  color: rgba(51, 128, 120, 1);
}

@media (max-width: 991px) {
  .plan-price-plus {
    font-size: 40px;
  }
}

.price-period {
  color: rgba(158, 141, 129, 1);
  font-size: 18px;
  align-self: end;
  margin-top: 25px;
}

/* Enterprise Plan */
.plan-enterprise {
  margin-top: auto;
  margin-bottom: auto;
  padding: 0 28px;
  align-self: stretch;
}

@media (max-width: 991px) {
  .plan-enterprise {
    margin-top: 40px;
    padding: 0 20px;
  }
}

.plan-contact {
  color: rgba(51, 128, 120, 1);
  font-size: 36px;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-weight: 500;
  margin-top: 20px;
}

/* Footer Styles */
.site-footer {
  background: #fff3d6;
  width: 100%;
  padding: 64px 20px;
  font-family: 'Lato', arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-column h3 {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-brand {
  color: rgba(27, 25, 23, 1);
  font-size: 24px;
  font-weight: 500;
  font-family: 'Libre Franklin', sans-serif;
}

.footer-description {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #6B7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #111827;
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #6B7280;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #6B7280;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #111827;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Pricing Section */
.comming-soon-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.comming-soon-title {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.comming-soon-description {
  color: rgba(82, 81, 75, 1);
  font-size: 20px;
  margin-top: 16px;
  max-width: 800px;
  text-align: center;
}

.comming-soon-container .hero-description {
  font-size: 20px;
  line-height: 1.5;
  color: #4B5563;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .comming-soon-title {
    font-size: 40px;
  }
  
  .comming-soon-container .hero-description {
    font-size: 20px;
  }
  
  .feature-badges {
    flex-direction: column;
    align-items: center;
  }
}

.learn-more-container {
  margin: 20px 0 60px;
}

.learn-more-button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #000;
  color: #000;
  font-family:
    'Lato',
    arial,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-button:hover {
  background-color: #000;
  color: #fff;
}

.subscribe-row {
  display: flex;
  align-items: center;
  max-width: 700px;
  margin: 50px auto 0;
  width: 100%;
}

.subscribe-heading {
  text-align: left;
  font-size: 28px;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  margin: 0;
  margin-right: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #000;
}

.subscribe-form {
  display: flex;
  flex-grow: 1;
  margin: 0;
  background-color: transparent;
  border: none;
  max-width: 450px;
}

.subscribe-form input[type="email"] {
  flex-grow: 1;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-right: none;
  font-family: 'Lato', arial, sans-serif;
  font-size: 16px;
  outline: none;
  background-color: #fff;
  min-width: 0;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.sign-up-button {
  background-color: #e58d7d;
  color: white;
  border: 1px solid #e58d7d;
  padding: 15px 25px;
  font-family: 'Lato', arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.sign-up-button:hover {
  background-color: #fff9f3;
  color: #e58d7d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.subscribe-description {
  text-align: center;
  color: #666;
  font-size: 15px;
  font-family: 'Lato', arial, sans-serif;
  margin-top: 10px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .comming-soon-title {
    font-size: 40px;
  }
  
  .subscribe-row {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .subscribe-heading {
    margin-bottom: 15px;
    font-size: 26px;
  }
  
  .subscribe-form {
    width: 100%;
  }
}



/* Mission Page Styles */
.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

.mission-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: rgba(27, 25, 23, 1);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
}

.mission-intro {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #5d5d5d;
  margin-bottom: 40px;
}

.challenge-card {
  border-radius: 12px;
  margin-bottom: 30px;
}

.challenge-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: rgba(27, 25, 23, 1);
  margin-bottom: 20px;
}

.challenge-description {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #5d5d5d;
}

.mission-conclusion {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #5d5d5d;
  margin-top: 40px;
  font-weight: 500;
}

.navigation-links {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.nav-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e89b1c;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: #ffbd59;
}

/* Update main-nav for mission page */
.main-nav {
  margin-left: auto;
  font-size: 16px;
}

.nav-link {
  color: rgba(27, 25, 23, 1);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #e89b1c;
}

@media (max-width: 768px) {
  .main-nav {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }
}

/* Success Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

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

.modal-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.modal-icon svg {
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
  animation: scaleIn 0.5s ease-out 0.2s both;
}

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

.modal-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
  animation: fadeInUp 0.5s ease-out 0.3s both;
}

.modal-message {
  font-family: 'Lato', arial, sans-serif;
  font-size: 18px;
  color: #6B7280;
  line-height: 1.5;
  animation: fadeInUp 0.5s ease-out 0.4s both;
}

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

@media (max-width: 768px) {
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-title {
    font-size: 24px;
  }
  
  .modal-message {
    font-size: 16px;
  }
  
  .modal-icon svg {
    width: 56px;
    height: 56px;
  }
}

.mission-button {
  display: inline-block;
  margin-top: 24px;
  border-radius: 40px;
  background-color: rgba(255, 157, 1, 1);
  border: 1px solid rgba(255, 157, 1, 1);
  padding: 12px 32px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Lato', arial, sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mission-button:hover {
  background-color: white;
  color: rgba(255, 157, 1, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .mission-button {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 60px 30px;
}
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-header .faq-badge {
  display: inline-block;
  background: #ede7fe;
  color: #7c5cff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  padding: 4px 16px;
  margin-bottom: 16px;
}
.faq-header h2 {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #23272f;
  margin-bottom: 12px;
}
.faq-header p {
  font-family: 'Lato', arial, sans-serif;
  font-size: 18px;
  color: #5d5d5d;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e6e6e6;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 18px;
  color: #23272f;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:after {
  content: "▼";
  font-size: 14px;
  color: #52688f;
  margin-left: 10px;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"]:after {
  transform: rotate(180deg);
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Lato', arial, sans-serif;
  font-size: 16px;
  color: #5d5d5d;
  padding-bottom: 0;
  padding-right: 10px;
  padding-left: 2px;
  line-height: 1.6;
}
.faq-section .faq-footer {
  text-align: center;
  margin-top: 40px;
}
.faq-section .faq-footer p {
  color: #23272f;
  font-family: 'Libre Franklin', sans-serif;
  margin-bottom: 8px;
}
.faq-section .faq-footer a {
  color: #52688f;
  font-weight: 600;
  text-decoration: underline;
}

/* Coming Soon Section Badges */
.feature-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Lato', arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.feature-badge svg {
  width: 24px;
  height: 24px;
}

.badge-blue {
  background-color: #e8f1f9;
  color: #52688f;
}

.badge-purple {
  background-color: #f8e8e6;
  color: #e58d7d;
}

/* Bottom Feature Badges */
.bottom-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.bottom-feature-badge {
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Lato', arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.badge-yellow {
  background-color: #fff3d6;
  color: #e89b1c;
}

.badge-blue-alt {
  background-color: #e8f1f9;
  color: #52688f;
}

.badge-purple-alt {
  background-color: #f8e8e6;
  color: #e58d7d;
}

@media (max-width: 768px) {
  .bottom-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .bottom-feature-badge {
    font-size: 16px;
  }
}

/* Privacy Policy Page Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  color: #111827;
  font-size: 24px;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}

.privacy-section p {
  color: #4B5563;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.privacy-section ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}

.privacy-section li {
  color: #4B5563;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 20px;
  }
  
  .privacy-section h2 {
    font-size: 20px;
  }
  
  .privacy-section p,
  .privacy-section li {
    font-size: 15px;
  }
}
