/* Global Styles */
:root {
  --primary-color: #6d9ee7;
  --secondary-color: #ffa88c;
  --accent-color: #9ed89e;
  --text-color: #444b59;
  --light-text: #f8f5f2;
  --dark-text: #2d3748;
  --background: #f8f5f2;
  --card-bg: rgba(255, 255, 255, 0.85);
  --shadow: 0 4px 20px rgba(50, 50, 93, 0.11), 0 1px 5px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../rst1pkssd4f71.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

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

section {
  padding: 5rem 0;
  position: relative;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

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

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

.logo img {
  height: 40px;
  margin-right: 0.8rem;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 2.5rem;
}

nav ul li a {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

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

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.btn-primary:hover {
  background: #5c8ad9;
  color: white;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: rgba(109, 158, 231, 0.1);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.cta-buttons {
  margin-top: 2rem;
}

/* Hero Section */
.hero {
  padding-top: 10rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.phone-mockup {
  position: relative;
  max-width: 400px;
  margin-left: 2rem;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Features Section */
.features {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 6rem 0;
  position: relative;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(109, 158, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 35px;
  height: 35px;
}

/* How It Works */
.how-it-works {
  background: linear-gradient(
    180deg,
    rgba(248, 245, 242, 0) 0%,
    rgba(248, 245, 242, 0.8) 100%
  );
  padding: 6rem 0;
}

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

.step {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  margin: 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step img {
  margin-top: 1.5rem;
  border-radius: 10px;
  width: 100%;
  max-width: 250px;
  margin: 1.5rem auto 0;
}

/* Examples Section */
.examples {
  background: var(--card-bg);
  padding: 6rem 0;
}

.example-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.example {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.before-after {
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow);
  border-radius: 20px;
  overflow: hidden;
}

.before,
.after {
  flex: 1;
  position: relative;
}

.before span,
.after span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Download Section */
.download {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(248, 245, 242, 0) 0%,
    rgba(248, 245, 242, 0.9) 100%
  );
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.app-button img {
  height: 50px;
  transition: var(--transition);
}

.app-button:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 30px;
  margin-right: 0.8rem;
}

.footer-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-column h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--text-color);
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .hero-image {
    justify-content: center;
  }

  .phone-mockup {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  header .container {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 1rem;
  }

  nav ul {
    justify-content: center;
  }

  nav ul li {
    margin: 0 1rem;
  }

  .hero {
    padding-top: 12rem;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    margin-bottom: 3rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .btn-secondary {
    margin-left: 0;
  }

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

  .app-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Contact Section */
.contact {
  background: linear-gradient(
    180deg,
    rgba(248, 245, 242, 0) 0%,
    rgba(248, 245, 242, 0.9) 100%
  );
  padding: 6rem 0;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(109, 158, 231, 0.2);
}

.contact-form .btn {
  margin-top: 1rem;
  padding: 0.8rem 2.5rem;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.demo-photo {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.privacy-content h1,
.terms-content h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.effective-date {
  text-align: center;
  font-style: italic;
  margin-bottom: 3rem;
  color: #777;
}

.policy-section {
  background: var(--card-bg);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.policy-section h2 {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.policy-section h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  color: var(--dark-text);
}

.policy-section ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }
}

/* Add this to your existing CSS */