/* Base styles */
:root {
  --primary: #FF6B6B;
  --secondary: #FF8E53;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --dark: #252525;
  --light: #FAFAFA;
  --text: #333333;
  --text-light: #777777;
  --shadow: 0 5px 20px rgba(255, 107, 107, 0.15);
}

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

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

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

a {text-decoration: none; color: var(--primary);}
ul {list-style: none;}

.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.logo-symbol {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  margin-right: 15px;
}

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

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

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--dark);
}

.navigation ul {display: flex; gap: 30px;}
.navigation a {
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s;
}
.navigation a:hover {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  text-align: center;
}

.primary-button {
  background: var(--gradient);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.primary-button:hover {box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); transform: translateY(-3px);}

.secondary-button {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.secondary-button:hover {background: rgba(255, 107, 107, 0.1);}
.large {padding: 15px 35px; font-size: 1.1rem;}

/* Hero section */
.hero {
  padding: 180px 0 100px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, rgba(255, 142, 83, 0.05) 90%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h2 {font-size: 3rem; line-height: 1.2; margin-bottom: 20px;}
.hero-content p {font-size: 1.2rem; color: var(--text-light); margin-bottom: 30px;}
.cta-buttons {display: flex; gap: 20px; margin-bottom: 40px;}

.trust-indicators {display: flex; gap: 40px;}
.indicator {display: flex; flex-direction: column;}
.indicator-value {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.indicator-label {font-size: 0.9rem; color: var(--text-light);}

.hero-visual {position: relative; height: 400px;}
.geometric-elements {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.geo-element {
  position: absolute;
  background: var(--gradient);
  opacity: 0.7;
}

.triangle {
  width: 150px;
  height: 150px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s infinite alternate ease-in-out;
}

.circle-1 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 60px;
  right: 80px;
  opacity: 0.5;
  animation: float 2.5s infinite alternate-reverse ease-in-out;
}

.rectangle {
  width: 120px;
  height: 60px;
  bottom: 100px;
  left: 60px;
  opacity: 0.6;
  animation: float 3.5s infinite alternate ease-in-out;
}

.circle-2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  bottom: 80px;
  right: 120px;
  opacity: 0.4;
  animation: float 2s infinite alternate-reverse ease-in-out;
}

.diamond {
  width: 100px;
  height: 100px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 200px;
  left: 80px;
  opacity: 0.6;
  animation: float 4s infinite alternate ease-in-out;
}

@keyframes float {
  0% {transform: translateY(0);}
  100% {transform: translateY(-20px);}
}

/* Section styles */
section {padding: 100px 0;}
.section-header {text-align: center; max-width: 700px; margin: 0 auto 60px;}
.section-header h2 {font-size: 2.5rem; margin-bottom: 15px;}
.section-header p {font-size: 1.1rem; color: var(--text-light);}
.section-header.light h2, .section-header.light p {color: white;}

/* Features */
.features {background-color: white;}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--light);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.feature-card:hover {transform: translateY(-10px);}
.feature-card h3 {margin-bottom: 15px; font-size: 1.3rem;}

.feature-icon {
  width: 70px; height: 70px;
  border-radius: 14px;
  margin-bottom: 25px;
  background: var(--gradient);
  position: relative;
}

/* How It Works */
.how-it-works {background-color: var(--light);}
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.step {flex: 1; max-width: 300px; text-align: center;}
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {margin-bottom: 15px; font-size: 1.3rem;}
.step-connector {width: 100px; height: 3px; background: var(--gradient); margin-top: 30px;}
.action-center {text-align: center; margin-top: 50px;}

/* Benefits */
.benefits {background: var(--gradient); color: white;}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-item {display: flex; align-items: flex-start; gap: 15px;}
.check-icon {
  min-width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  position: relative;
}

.check-icon::before {
  content: '';
  position: absolute;
  top: 7px; left: 6px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.quote-icon::before {
  content: '"';
  font-size: 4rem;
  font-weight: 700;
  color: white;
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  padding-left: 40px;
}

.testimonial-author {
  text-align: right;
  font-size: 0.9rem;
  margin-top: 20px;
  opacity: 0.8;
}

/* FAQ */
.faq {background-color: white;}
.faq-container {max-width: 800px; margin: 0 auto;}
.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light);
  cursor: pointer;
}

.faq-question h3 {font-size: 1.1rem; font-weight: 600;}
.toggle-icon {font-size: 1.5rem; color: var(--primary);}
.faq-item.active .toggle-icon {transform: rotate(45deg);}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  background: white;
}

.faq-item.active .faq-answer {padding: 0 20px 20px; max-height: 1000px;}

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

.cta-section h2 {font-size: 2.5rem; margin-bottom: 20px;}
.cta-section p {font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9;}

/* Footer */
footer {background-color: var(--dark); color: white; padding: 80px 0 30px;}
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.footer-brand {display: flex; align-items: center; margin-bottom: 30px;}
.footer-logo {margin-right: 20px;}
.footer-brand-name {font-size: 1.2rem; font-weight: 600;}
.footer-brand-tagline {font-size: 0.9rem; opacity: 0.7;}

.footer-links {display: flex; gap: 60px;}
.footer-link-group h4 {margin-bottom: 20px; opacity: 0.8;}
.footer-link-group li {margin-bottom: 10px;}
.footer-link-group a {color: rgba(255,255,255,0.7); transition: 0.3s;}
.footer-link-group a:hover {color: var(--primary);}

.footer-disclaimer {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 30px;
}

.footer-bottom {text-align: center; font-size: 0.8rem; opacity: 0.5;}

/* Mobile responsive */
@media (max-width: 992px) {
  .hero .container, .benefits-grid {grid-template-columns: 1fr;}
  .hero-content {order: 1; text-align: center;}
  .hero-content h2 {font-size: 2.5rem;}
  .cta-buttons, .trust-indicators {justify-content: center;}
}

@media (max-width: 768px) {
  .menu-toggle {display: block;}
  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  .navigation.active {height: auto; padding: 20px 0;}
  .navigation ul {flex-direction: column; gap: 15px; padding: 0 20px;}
  .footer-links {gap: 30px; flex-direction: column;}
  .process-steps {flex-direction: column; align-items: center; gap: 40px;}
  .step-connector {height: 40px; width: 2px; margin: 0;}
}
