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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 12px 0;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .top-bar-content {
    gap: 2px;
    flex-direction: column;
  }
}

.top-bar-content span {
  font-size: 14px;
}

.top-bar-content strong {
  font-weight: 700;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
  width: auto;
}

@media (max-width: 768px) {
  .logo img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 35px;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 15px;
}

.nav-menu a:hover {
  color: #ff6b35;
}

.nav-cta {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white !important;
  padding: 10px 25px;
  border-radius: 25px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  background-image: 
    linear-gradient(135deg, rgba(15, 32, 39, 0.7) 0%, rgba(32, 58, 67, 0.7) 50%, rgba(44, 83, 100, 0.7) 100%),
    url('https://c.animaapp.com/mlijkh1sCAWvSL/img/uploaded-asset-1770848957060-0.jpeg?v=20260223-002');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  margin-bottom: 30px;
  animation: floatIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  display: inline-block;
  background: rgba(255, 255, 255, 0.25) !important;
  padding: 30px 40px !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  will-change: transform, opacity;
}

  .hero-logo img {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2)) !important;
    display: block;
    animation: logoFloat 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    will-change: transform, opacity;
  }

  @media (max-width: 768px) {
    .hero-logo img {
      height: 100px;
    }
  }

  @media (max-width: 480px) {
    .hero-logo img {
      height: 80px;
    }
  }

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #ff6b35;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
  }
  60% {
    transform: translateY(10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoFloat {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  60% {
    transform: translateY(5px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.cta-button.large {
  padding: 18px 50px;
  font-size: 20px;
}

/* Why Section */
.why-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.why-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
  color: #1a1a2e;
  font-weight: 800;
}

.section-intro {
  text-align: center;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #666;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: #ff6b35;
}

.benefit-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a1a2e;
  font-weight: 700;
}

.benefit-card p {
  color: #666;
  line-height: 1.8;
}

/* Opportunity Section */
.opportunity-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.opportunity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.opportunity-text h2 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 800;
}

.opportunity-text h3 {
  font-size: 28px;
  margin: 30px 0 15px;
  color: #ff6b35;
  font-weight: 700;
}

.opportunity-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.opportunity-list {
  list-style: none;
  margin: 20px 0;
}

.opportunity-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
}

.opportunity-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 20px;
}

.opportunity-image {
  position: relative;
}

.image-placeholder {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* Investment Section */
.investment-section {
  padding: 100px 0;
  background: white;
}

.investment-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
  color: #1a1a2e;
  font-weight: 800;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.investment-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.investment-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
}

.investment-card.featured {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  transform: scale(1.05);
}

.investment-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.investment-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.investment-amount {
  font-size: 36px;
  font-weight: 800;
  margin: 20px 0;
}

.investment-note {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 10px;
}

.investment-includes {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 15px;
  margin: 60px 0;
}

.investment-includes h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1a1a2e;
  text-align: center;
  font-weight: 700;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.include-item {
  padding: 15px 20px;
  background: white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.financing-info {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.financing-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.financing-info p {
  font-size: 18px;
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
  color: #1a1a2e;
  font-weight: 800;
}

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

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #ff6b35;
}

.testimonial-stars {
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.testimonial-detail {
  font-size: 14px;
  color: #666;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
  color: #1a1a2e;
  font-weight: 800;
}

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

.faq-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a1a2e;
  font-weight: 700;
}

.faq-item p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-section p {
  font-size: 22px;
  margin-bottom: 40px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1a1a2e;
  font-weight: 800;
}

.contact-info p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.contact-details {
  margin: 40px 0;
}

.contact-detail {
  margin-bottom: 25px;
}

.contact-detail strong {
  display: block;
  color: #1a1a2e;
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-detail p {
  margin: 0;
  color: #666;
}

.awards {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
}

.awards h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.awards ul {
  list-style: none;
}

.awards li {
  padding: 8px 0;
  font-size: 16px;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #1a1a2e;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.checkbox-label input {
  margin-top: 3px;
}

.contact-form button {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 60px 0 30px;
}

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

  .footer-logo img {
    height: 60px;
    margin-bottom: 15px;
  }

  @media (max-width: 768px) {
    .footer-logo img {
      height: 50px;
    }
  }

  @media (max-width: 480px) {
    .footer-logo img {
      height: 40px;
    }
  }

.footer-logo p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-contact p {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
}

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

.footer-bottom p {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.disclaimer {
  font-size: 12px !important;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .opportunity-content,
  .contact-wrapper,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 90px);
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 30px 0;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

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

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 10px 20px;
  }

  .nav-cta {
    margin: 20px;
    display: inline-block;
    width: auto;
  }

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


  .hero-subtitle {
    font-size: 18px;
  }

  .stat-number {
    font-size: 36px;
  }

  .why-section h2,
  .investment-section h2,
  .testimonials-section h2,
  .faq-section h2 {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
