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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2c2e2f;
}

/* Header */
.header {
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.location-banner {
  background: #002991;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
}

.location-banner a {
  color: white;
  text-decoration: underline;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Megamenu Navigation */
.megamenu-nav {
  flex: 1;
  margin: 0 40px;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.menu-item {
  position: relative;
}

.menu-item > a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  display: block;
  transition: color 0.3s ease;
}

.menu-item > a:hover {
  color: #002991;
}

/* Megamenu Dropdown */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
  min-width: 600px;
}

.dropdown:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.megamenu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px;
}

.menu-column h4 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 2px solid #002991;
  padding-bottom: 8px;
}

.menu-column ul {
  list-style: none;
}

.menu-column li {
  margin-bottom: 8px;
}

.menu-column a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  padding: 6px 0;
  display: block;
  transition: color 0.3s ease;
}

.menu-column a:hover {
  color: #002991;
  padding-left: 8px;
}

/* Dropdown arrow indicator */
.dropdown > a::after {
  content: '▼';
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
  transform: rotate(180deg);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #0070ba;
}
.logo-img {
  height: 32px;
  width: auto;
}
.nav-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}

.btn-login {
  background: white;
  color: #000;
  border-color: #000;
}

.btn-signup {
  background: #000;
  color: white;
  border-color: #000;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: white;
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #000;
  line-height: 1.2;
}

.hero p {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: #000;
  color: white;
  padding: 14px 28px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 40px;
  display: inline-block;
  border: none;
  font-family: inherit;
}

/* Business Images Section */
.business-showcase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
  align-items: center;
}

.business-image {
  width: 100%;
  height: 400px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  background-size: cover;
  background-position: center;
}

.business-image.left {
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=400&h=400&fit=crop&crop=center');
}

.business-image.right {
  background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=400&h=400&fit=crop&crop=center');
}

.loan-widget {
  background: rgba(108, 117, 125, 0.9);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: left;
  min-width: 320px;
  position: relative;
  z-index: 2;
  color: white;
}

.loan-amount {
  font-size: 14px;
  color: #e9ecef;
  margin-bottom: 8px;
  font-weight: 500;
}

.amount-display {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.loan-slider {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin-bottom: 16px;
  position: relative;
}

.slider-track {
  height: 100%;
  background: linear-gradient(to right, #17a2b8, #20c997);
  border-radius: 4px;
  width: 65%;
  position: relative;
}

.slider-handle {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.loan-range {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #e9ecef;
  margin-bottom: 20px;
}

.loan-terms {
  font-size: 14px;
  color: #e9ecef;
  line-height: 1.4;
}

/* Do More Section */
.do-more {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.do-more h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
}

/* Pay Later Showcase */
.pay-later-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
  align-items: center;
}

.mobile-mockup {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.mobile-screen {
  background: #f5f5f5;
  border: 8px solid #000;
  border-radius: 25px;
  padding: 20px 15px;
  position: relative;
  overflow: hidden;
  height: 600px;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.brand-name {
  font-weight: bold;
  font-size: 16px;
}

.brand-sub {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}

.mobile-icons {
  display: flex;
  gap: 15px;
}

.cart-icon,
.menu-icon {
  font-size: 18px;
}

.product-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #d4b896 0%, #c8a882 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="8" fill="%23fff" opacity="0.3"/><circle cx="70" cy="50" r="12" fill="%23fff" opacity="0.2"/><circle cx="50" cy="70" r="6" fill="%23fff" opacity="0.4"/></svg>')
    no-repeat center;
  background-size: contain;
  border-radius: 8px;
}

.paypal-modal {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.paypal-logo-modal {
  color: #002991;
  font-weight: bold;
  font-size: 18px;
}

.close-btn {
  font-size: 24px;
  color: #999;
  cursor: pointer;
}

.modal-content {
  padding: 20px;
}

.modal-content h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.payment-option {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.payment-option:last-child {
  border-bottom: none;
}

.option-radio {
  color: #002991;
  font-size: 14px;
  margin-top: 2px;
}

.payment-option:not(.selected) .option-radio {
  color: #ccc;
}

.option-details h4 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.option-details p {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.showcase-content {
  text-align: left;
}

.showcase-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 30px;
}

.benefits-list li {
  padding: 8px 0;
  font-size: 16px;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature {
  text-align: left;
}

.feature-image {
  width: 200px;
  height: 350px;
  background: #e9ecef;
  border-radius: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 12px;
  margin: 0 auto 24px auto;
}

.feature-image.pay-later {
  background: url('https://via.placeholder.com/200x350/6f42c1/ffffff?text=Pay+Later+App')
    center/cover;
}

.feature-image.invoicing {
  background: url('https://via.placeholder.com/200x350/20c997/ffffff?text=Invoicing+App')
    center/cover;
}

.feature h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.feature p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-outline {
  border: 1px solid #000;
  color: #000;
  background: white;
  padding: 12px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
}

/* Connect Section */
.connect {
  padding: 80px 0;
  text-align: center;
  background: white;
}

.connect h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.partner {
  text-align: left;
}

.partner h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.partner p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-partner {
  border: 1px solid #d1d1d1;
  color: #000;
  background: white;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 0 20px;
}

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

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 12px;
  color: #999;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #999;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .megamenu {
    min-width: 500px;
  }

  .megamenu-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .nav-buttons {
    display: none;
  }

  .megamenu-nav {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

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

  .business-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pay-later-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .mobile-mockup {
    order: -1;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
