/* Global Styles */
:root {
  --primary-color: #4a6cf7;
  --secondary-color: #6a7c92;
  --dark-color: #1d2144;
  --light-color: #f8f9ff;
  --body-color: #959cb1;
  --container-width: 1170px;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--body-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #3a5ce4;
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Demo Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.popup-container {
  background-color: white;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.popup-overlay.active .popup-container {
  transform: scale(1);
}

.popup-header {
  background-color: var(--primary-color);
  padding: 20px;
  text-align: center;
  color: white;
}

.popup-header h3 {
  color: white;
  margin-bottom: 5px;
}

.popup-body {
  padding: 30px;
  text-align: center;
}

.popup-body p {
  margin-bottom: 20px;
}

.popup-form {
  margin-top: 20px;
}

.popup-form .form-group {
  margin-bottom: 15px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.show-popup-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: all 0.3s ease;
}

.show-popup-btn:hover {
  transform: scale(1.1);
  background-color: #3a5ce4;
}

/* Header Styles */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 500;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 15px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background-color: white;
}

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

.hero-text {
  flex: 1;
  padding-right: 50px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: white;
}

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

.about-image {
  flex: 1;
  padding-right: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* Mission Section */
.mission {
  padding: 80px 0;
  background-color: var(--light-color);
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.mission-item {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary-color);
}

.mission-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Team Section */
.team {
  padding: 80px 0;
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-member-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.team-member p {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding: 0 20px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--light-color);
}

.contact-content {
  display: flex;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  padding-right: 50px;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-color);
  font-size: 20px;
}

.contact-text h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.social-links {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  margin-top: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-form {
  flex: 1;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-color);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Map Section */
.map {
  padding: 80px 0;
  background-color: white;
}

.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta .btn {
  background-color: white;
  color: var(--primary-color);
}

.cta .btn:hover {
  background-color: var(--dark-color);
  color: white;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #b4b8c8;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Basic Page */
.basic-page {
  padding: 60px 0;
  background-color: white;
}

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

.basic-page-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.basic-page-content p {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content,
  .about-content,
  .contact-content {
    flex-direction: column;
  }
  
  .hero-text,
  .about-image,
  .contact-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .features-grid,
  .mission-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid,
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid,
  .mission-content,
  .team-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .page-header h1 {
    font-size: 36px;
  }
}

/* Example Popup Section */
.example-popup {
  background-color: #f0f7ff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.example-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.example-title {
  font-size: 2.8rem;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.example-subtitle {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 500;
}

.example-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: var(--secondary-color);
  line-height: 1.6;
}

.popup-showcase {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.popup-notification {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  min-width: 300px;
  max-width: 400px;
  text-align: left;
  transition: transform 0.3s ease;
}

.popup-notification:hover {
  transform: translateY(-5px);
}

.popup-notification-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.popup-notification-content p {
  margin: 0;
  line-height: 1.4;
}

.popup-text-normal {
  font-size: 1rem;
  color: var(--dark-color);
}

.popup-highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.popup-time {
  font-size: 0.9rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.popup-verified {
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 4px;
}

.popup-verified i {
  font-size: 0.8rem;
}

.example-cta {
  margin: 40px 0 20px;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background-color: #7fe7d3;
  color: var(--dark-color);
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-large:hover {
  background-color: #6cd7c3;
  transform: translateY(-2px);
}

.launch-offer {
  margin: 20px 0;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.offer-highlight {
  color: #4CAF50;
  font-weight: 600;
}

.powered-by {
  margin-top: 30px;
  color: var(--secondary-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

.powered-logo {
  font-weight: 600;
  color: var(--dark-color);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .example-title {
    font-size: 2rem;
  }
  
  .example-subtitle {
    font-size: 1.4rem;
  }
  
  .example-description {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .popup-notification {
    min-width: 280px;
    margin: 0 15px;
  }
}

/* Workflow Steps Styles */
.workflow-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
  flex-wrap: wrap;
}

.workflow-step {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  text-align: center;
  position: relative;
}

.workflow-arrow {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 10px;
}

.workflow-cta {
  margin-top: 40px;
  text-align: center;
}

.workflow-image {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .workflow-steps {
    flex-direction: column;
    gap: 20px;
  }
  
  .workflow-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .example-popup .section-title h2 {
    font-size: 2rem;
  }
  
  .example-popup .subtitle {
    font-size: 1.4rem;
  }
}

.popup-image-example {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-image-example img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.popup-image-example img:hover {
  transform: translateY(-5px);
} 