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

:root {
  /* Surface Colors */
  --surface-10: #FAFAFA;
  --surface-25: #F4F4F4;
  --surface-50: #E9E9E9;
  --surface-100: #D3D3D3;
  --surface-200: #BDBDBD;
  --surface-300: #A7A7A7;
  --surface-400: #919191;
  --surface-500: #7B7B7B;
  --surface-600: #656565;
  --surface-700: #4E4E4E;
  --surface-800: #383838;
  --surface-900: #222222;

  /* Primary Colors (Magenta/Pink) */
  --primary-50: #FCEDF5;
  --primary-100: #FADCEB;
  --primary-300: #F096C3;
  --primary-500: #E6509B;
  --primary-700: #983E6B;
  --primary-900: #492B3A;

  /* Secondary Colors (Purple/Blue) */
  --secondary-50: #F5F3F8;
  --secondary-100: #DBD8E8;
  --secondary-300: #8D83B5;
  --secondary-500: #7164A3;
  --secondary-700: #3C3969;
  --secondary-900: #192049;

  /* Error Colors */
  --error-50: #FFEAF0;
  --error-100: #FFD5E1;
  --error-300: #FF729C;
  --error-500: #FF155A;
  --error-700: #A7294E;
  --error-900: #4E2431;

  /* Success Colors */
  --success-50: #EDF5E6;
  --success-100: #DAEBCD;
  --success-300: #91C36A;
  --success-500: #489B06;
  --success-700: #396B11;
  --success-900: #2A3A1C;

  /* Warning Colors */
  --warning-50: #FBF5E5;
  --warning-100: #F6EACC;
  --warning-300: #E3C166;
  --warning-500: #D09800;
  --warning-700: #8A690E;
  --warning-900: #453A1B;

  /* Typography */
  --font-heading: "Lexend Deca", sans-serif;
  --font-body: "Lexend Deca", sans-serif;

  --base-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  background-color: var(--surface-10);
  color: var(--surface-900);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  color: var(--surface-900);
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--surface-50);
  padding: 16px 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-900);
}

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

.navbar-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar-nav a {
  color: var(--surface-700);
  font-weight: 500;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--primary-500);
}

/* Button System */
.btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--base-transition);
  cursor: pointer;
  border: none;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  height: 40px;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--primary-500);
  color: var(--surface-10);
  border: none;
}

.btn-primary:hover {
  background: var(--primary-300);
  color: var(--surface-10);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 80, 155, 0.3);
}

.btn-primary:active {
  background: var(--primary-700);
  color: var(--surface-10);
}

.btn-primary:focus {
  background: var(--primary-500);
  color: var(--surface-10);
  outline: 2px solid var(--primary-300);
  outline-offset: 2px;
}

.btn-primary:disabled {
  background: var(--surface-25);
  color: var(--surface-300);
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: var(--surface-10);
  color: var(--primary-900);
  border: 1px solid var(--surface-100);
}

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

.btn-secondary:active {
  background: var(--surface-10);
  color: var(--primary-700);
  border-color: var(--primary-700);
}

.btn-secondary:focus {
  background: var(--surface-10);
  color: var(--primary-500);
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(230, 80, 155, 0.1);
}

.btn-secondary:disabled {
  background: var(--surface-10);
  color: var(--surface-300);
  border-color: var(--surface-50);
  cursor: not-allowed;
  transform: none;
}

.btn-lg {
  padding: 0.625rem 2rem;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  height: auto;
  box-sizing: border-box;
}

/* Sections */
section {
  padding: 96px 0;
}

.section-light {
  background: var(--surface-10);
}

.section-gray {
  background: var(--surface-25);
}

.section-dark {
  background: var(--secondary-900);
  color: var(--surface-10);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--surface-10);
}

.hero {
  text-align: center;
  padding: 48px 0 96px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--secondary-900);
}

.hero p {
  font-size: 18px;
  color: var(--surface-600);
  max-width: 600px;
  margin: 0 auto 40px;
}

.button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-split .container {
  display: flex;
  align-items: center;
  gap: 64px;
  text-align: left;
}

.hero-split .hero-content {
  flex: 1.2;
}

.hero-split .hero-content p {
  margin-left: 0;
}

.hero-split .button-group {
  justify-content: flex-start;
}

.hero-split .hero-image {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
}

.hero-split .hero-image img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.1);
  transform-origin: center center;
  transition: var(--base-transition);
}

.hero-split .hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.06);
}

/* Trust Indicators */
.trust-indicators {
  padding: 40px 0;
  border-top: 1px solid var(--surface-50);
  border-bottom: 1px solid var(--surface-50);
  background: var(--surface-10);
}

.trust-indicators ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-indicators li {
  font-weight: 600;
  color: var(--secondary-500);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card {
  position: relative;
  background: var(--surface-10);
  border: 1px solid var(--surface-100);
  border-radius: 12px;
  padding: 40px;
  transition: var(--base-transition);
  box-shadow: 0 15px 35px rgba(25, 32, 73, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-light {
  background: var(--surface-10);
}

.card-dark {
  background: var(--secondary-900);
  border: none;
}

.card-dark h3 {
  color: var(--surface-10) !important;
}

.card-dark p {
  color: var(--surface-300) !important;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.card-dark .card-icon {
  background: rgba(255, 255, 255, 0.1);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary-500);
}

.card-dark .card-icon svg {
  color: var(--surface-10);
}

.card-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-300);
  opacity: 0.8;
}

.card-dark .card-number {
  color: var(--primary-500);
  opacity: 0.4;
}

.card h3 {
  color: var(--secondary-900);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.card p {
  color: var(--surface-600);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* How It Works */
.step {
  text-align: center;
  flex: 1;
}

.step-number {
  background: var(--primary-50);
  color: var(--primary-700);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.how-it-works-flex {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

/* FAQ */
/* .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--surface-50);
  padding: 24px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--secondary-700);
}
.faq-answer {
  color: var(--surface-600);
} */

/* Footer */
footer {
  background: var(--surface-25);
  padding: 64px 0 32px;
  border-top: 1px solid var(--surface-50);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-brand-title h2 {
  color: var(--primary-900);
  margin-bottom: 0px;
}

.footer-brand-title img {
  height: 40px;
  width: auto;
}

.footer-brand p {
  color: var(--surface-500);
  max-width: 300px;
}

.footer-links h4 {
  color: var(--secondary-900);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--surface-600);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--surface-100);
  color: var(--surface-500);
  font-size: 14px;
}

/* Utility */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-8 {
  margin-top: 32px;
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 32px;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--surface-200);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  box-sizing: border-box;
  transition: var(--base-transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(230, 80, 155, 0.1);
}

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

.contact-info p {
  font-size: 16px;
  color: var(--surface-600);
  margin-bottom: 16px;
}

/* Features page */
.feature-block {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 96px;
}

.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-content h2 {
  color: var(--secondary-700);
  margin-bottom: 16px;
}

.feature-content p {
  color: var(--surface-600);
  font-size: 16px;
}

.feature-image {
  flex: 1;
  background: var(--surface-25);
  border-radius: 8px;
  border: 1px solid var(--surface-50);
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content layout for About */
.content-box {
  max-width: 800px;
  margin: 0 auto;
}

.content-box h2 {
  color: var(--secondary-700);
  margin-top: 48px;
  margin-bottom: 16px;
}

.content-box p {
  color: var(--surface-600);
  font-size: 16px;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero-split .container,
  .feature-block,
  .feature-block:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-split .button-group {
    justify-content: center;
  }

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

  .hero-split .hero-image {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-split .hero-image img {
    max-width: none;
    width: 100%;
    transform: scale(1.08);
  }

  .hero-split .hero-image img:hover {
    transform: scale(1.05);
  }

  .how-it-works-flex {
    flex-direction: column;
  }
}

@media (max-width: 600px) {

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .navbar-nav {
    display: none;
  }

  .navbar .btn {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .button-group {
    flex-direction: column;
  }
}