/* Base Styles */
:root {
  --primary: #ff416c;
  --secondary: #ff4b2b;
  --dark: #1a1a1a;
  --light: #ffffff;
  --text: #333333;
  --muted: #777777;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #f8f8f8;
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

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

h1, h2, h3 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

p {
  margin-bottom: 1rem;
  color: var(--text);
}

section {
  padding: 80px 0;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-md);
  border: none;
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translateX(5px);
}

/* Header Styles */
header {
  background-color: var(--light);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  margin-right: 10px;
}

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

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Banner Section */
.banner {
  padding: 160px 0 80px;
  background-color: #FAFAFA;
}

.banner .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.banner-text {
  flex: 1;
}

.overline {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.overline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 2px;
  background: var(--gradient);
  transform: translateY(-50%);
}

.banner p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 90%;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.rating {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.stars {
  color: #ffb700;
  letter-spacing: 3px;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.banner-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.banner-graphic {
  max-width: 100%;
  filter: drop-shadow(0 10px 15px rgba(255, 65, 108, 0.3));
}

/* Trust Indicators Section */
.trust-indicators {
  padding: 40px 0;
  background-color: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-indicators .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

.trust-text h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.trust-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Features Section */
.features {
  background-color: #f8f8f8;
}

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.feature-card p {
  color: var(--muted);
}

/* How It Works Section */
.how-it-works {
  background-color: white;
}

.steps-container {
  max-width: 800px;
  margin: 50px auto 40px;
}

.step {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% - 30px);
  background: var(--primary);
  opacity: 0.3;
  z-index: 0;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 1;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content p {
  color: var(--muted);
  margin-bottom: 0;
}

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

/* FAQ Section */
.faq {
  background-color: #f8f8f8;
}

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

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 20px 30px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--dark);
  position: relative;
  padding-left: 30px;
}

.faq-item h3::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.answer {
  margin-top: 15px;
  padding-left: 30px;
}

.answer p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Final CTA Section */
.final-cta {
  text-align: center;
  background: var(--gradient);
  color: white;
  padding: 100px 0;
}

.final-cta h2 {
  color: white;
  margin-bottom: 20px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

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

.footer-logo img {
  margin-right: 10px;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .banner {
    padding: 120px 0 60px;
  }
  
  .banner .container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  
  .banner p {
    max-width: 100%;
  }
  
  .action-buttons {
    justify-content: center;
  }
  
  .overline {
    padding-left: 0;
  }
  
  .overline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background: white;
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    gap: 20px;
  }
  
  .main-nav ul.active {
    display: flex;
  }
  
  .main-nav ul li {
    width: 100%;
  }
  
  .trust-indicators .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .trust-item {
    min-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
    padding-left: 25px;
    gap: 15px;
  }
  
  .step-number {
    margin-bottom: 0;
  }
  
  .step::after {
    top: 0;
    left: 25px;
    height: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .faq-item {
    padding: 20px;
  }
}
