/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f3f4f6;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.logo-text {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.25rem;
}

.footer-logo-text {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1f2937;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(0, 122, 204, 0.1);
  color: #007acc;
  border: 1px solid rgba(0, 122, 204, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid #007acc;
  color: #007acc;
}

.btn-outline:hover {
  background: #007acc;
  color: white;
}

/* Hero Section */
.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #007acc, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Full Width Traditions */
.traditions-full-width {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
}

.traditions-full-width .traditions-text {
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.traditions-full-width .traditions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.traditions-full-width .tradition-tag {
  padding: 0.5rem 1rem;
  background: rgba(0, 122, 204, 0.08);
  border: 1px solid rgba(0, 122, 204, 0.2);
  color: #007acc;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.traditions-full-width .tradition-tag:hover {
  background: rgba(0, 122, 204, 0.15);
  border-color: rgba(0, 122, 204, 0.3);
  transform: translateY(-1px);
}

.app-store-section {
  text-align: center;
  margin-bottom: 3rem;
}

.app-store-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.app-store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.app-badge {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.app-badge.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.app-badge img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  display: block;
}

.app-badge .coming-soon {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(107, 114, 128, 0.9);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-badge:hover {
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Sections */
.why-cashfro,
.who-its-for,
.why-choose {
  padding: 5rem 0;
  background: #f9fafb;
}

.how-it-works,
.features {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

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

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

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

/* Cards */
.step-card,
.target-card,
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover,
.target-card:hover,
.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.step-icon,
.target-icon,
.feature-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007acc;
}

.icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.step-title,
.target-title,
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description,
.target-description,
.feature-description {
  color: #6b7280;
  font-size: 0.875rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 122, 204, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #007acc;
}

.benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Trusted Partners */
.trusted-partners {
  padding: 4rem 0;
  text-align: center;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.partners-logos a {
  transition: opacity 0.3s ease;
  opacity: 0.6;
}

.partners-logos a:hover {
  opacity: 1;
}

.partner-logo {
  height: 5rem;
  width: auto;
  transition: opacity 0.3s ease;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #007acc, #0056b3);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

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

.footer-logo .logo {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.coming-soon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Hamburger Menu Styles */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 28px;
  height: 20px;
  justify-content: space-between;
  z-index: 1001;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: #007acc;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 1rem 0;
    display: block;
    margin: 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Prevent background scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Adjust navbar container for mobile */
  .nav-container {
    justify-content: space-between;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .steps-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .target-groups,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .partners-logos {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-description {
    max-width: 100%;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
  }

  .traditions-full-width {
    padding: 2rem 0 1.5rem;
  }

  .traditions-full-width .traditions-tags {
    gap: 0.5rem;
  }

  .traditions-full-width .tradition-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .app-store-badges {
    max-width: 100%;
    gap: 0.75rem;
  }

  .app-badge img {
    height: 45px;
  }
}

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

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .traditions-tags {
    justify-content: center;
  }
}
