@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #ff5757;
  --primary-hover: #ff3b3b;
  --secondary: #64748b;
  --background: #FFFFFF;
  --surface: #F9FAFB;
  --surface-light: #F3F4F6;
  --text: #111827;
  --text-muted: #4B5563;
  --error: #EF4444;
  --success: #10B981;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #6B7280;
  --light-gray: #D1D5DB;
  --glass: rgba(255, 255, 255, 0.85);
}

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

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

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

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

ul {
  list-style: none;
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

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

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

.navbar .logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(255, 87, 87, 0.3);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 87, 0.4);
}

/* HERO SECTION */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Add a glowing orb in the background */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,87,87,0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: -1;
}

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

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 87, 87, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(255, 87, 87, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: var(--surface);
  color: var(--text);
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--surface-light);
  border-color: var(--primary);
  transform: translateY(-3px);
}

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

.hero-image img {
  max-width: 100%;
  width: 550px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* FEATURES SECTION */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}

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

.features {
  padding: 100px 0;
  background: var(--surface);
}

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

.feature-card {
  background: var(--background);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255,87,87,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 87, 87, 0.1);
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

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

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

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  background: var(--background);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--surface);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 87, 87, 0.2);
  line-height: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-muted);
}

/* CONTENT PAGES (Legal/Info) */
.page-header {
  padding: 150px 0 60px;
  background: linear-gradient(180deg, rgba(255,87,87,0.05) 0%, var(--background) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.page-content {
  padding: 60px 0 100px;
  max-width: 900px;
  margin: 0 auto;
}

.content-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.content-box h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text);
}

.content-box h2:first-child {
  margin-top: 0;
}

.content-box h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 10px;
}

.content-box p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.content-box ul {
  list-style: disc inside;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-box ul li {
  margin-bottom: 8px;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--background);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.contact-info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.contact-info-card p {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.form-control {
  width: 100%;
  padding: 15px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 25px;
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 0;
  color: var(--primary);
}

/* FOOTER */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 15px;
  color: var(--text-muted);
  max-width: 300px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text);
}

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

.footer-links a {
  color: var(--text-muted);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-text p {
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-links {
    display: flex;
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--background);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 30px;
    transition: left 0.3s ease;
  }
  
  .nav-links.active {
    left: 0;
  }
}
