/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0db250;
  --primary-dark: #0a8f3e;
  --navy: #13254b;
  --navy-light: #1e3a6d;
  --navy-dark: #0d1a35;
  --text-dark: #0b0f11;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;

  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #06d65f 100%);
  --gradient-navy: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-light) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    #0d1a35 0%,
    #1e3a6d 50%,
    #13254b 100%
  );

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-image:hover {
  transform: scale(1.05);
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-md);
}

.logo-text {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 178, 80, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 178, 80, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(13, 178, 80, 0.05);
}

.btn-white {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #06d65f;
  bottom: -50px;
  left: -50px;
  animation-delay: -7s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}

.title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-image {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  animation: floatCard 6s infinite ease-in-out;
}

.floating-card .card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.floating-card .card-text {
  font-weight: 600;
  color: var(--navy);
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 15%;
  animation-delay: -2s;
}

.card-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Quick Features */
.quick-features {
  padding: 4rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(13, 178, 80, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mv-item {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}

.mv-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.mv-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.about-image,
.services-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gradient-navy);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.placeholder-icon {
  font-size: 6rem;
  opacity: 0.5;
}

/* Steps Section */
.steps-section {
  padding: 6rem 0;
  background: var(--navy);
  color: white;
}

.steps-section .section-title {
  color: white;
}

.steps-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin: 4rem 0;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(13, 178, 80, 0.4);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.steps-cta {
  text-align: center;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-item:hover {
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.service-item span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Products Section */
.products-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.product-card.featured {
  background: var(--gradient-navy);
  color: white;
}

.product-card.featured h3,
.product-card.featured p {
  color: white;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-card .btn {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-text {
  color: white;
}

.footer-col p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.disclaimer {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .services-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    height: 300px;
  }

  .steps-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-timeline::before {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: var(--transition);
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Page Styles */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-navy);
  color: var(--white);
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white) 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.7;
}

.content-section {
  padding: 80px 0;
  background: var(--white);
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.content-main {
  background: var(--white);
}

.content-block {
  margin-bottom: 3rem;
}

.lead-text {
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 2rem;
}

.content-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mv-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--gradient-navy);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #06d65f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  width: 100%;
}

/* Services Detailed */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-detail-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-detail-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.service-detail-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-detail-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

.why-choose-section {
  margin-top: 5rem;
  padding: 4rem 0;
  background: var(--bg-light);
  border-radius: 24px;
  padding: 3rem;
}

.center-text {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid-alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-alt-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.feature-alt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-alt-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.feature-alt-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-alt-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* FAQ Page Styles */
.faq-page-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list-page {
  margin-bottom: 3rem;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.faq-contact-cta {
  background: var(--gradient-navy);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  color: var(--white);
  margin-top: 3rem;
}

.faq-contact-cta h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.faq-contact-cta .btn {
  background: var(--white);
  color: var(--navy);
}

.faq-contact-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Contact Page Styles */
.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: var(--transition);
}

.contact-link:hover {
  transform: scale(1.05);
}

.contact-address {
  font-style: normal;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-hours {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-form-section {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 16px;
  margin-bottom: 3rem;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 178, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.95rem;
}

.checkbox-group label a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group label a:hover {
  text-decoration: underline;
}

.additional-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
}

.info-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.info-section p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.map-section {
  background: var(--bg-light);
  padding: 0;
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.map-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.map-placeholder-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.map-placeholder-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   MODERN HERO SECTION
   ======================================== */

.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1a35 0%, #1e3a6d 50%, #13254b 100%);
}

.hero-background-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at top right,
      rgba(13, 178, 80, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(6, 214, 95, 0.1) 0%,
      transparent 50%
    );
}

.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: gridMove 20s linear infinite;
}

.grid-line:nth-child(1) {
  top: 20%;
  left: 0;
  right: 0;
  height: 1px;
  animation-delay: 0s;
}

.grid-line:nth-child(2) {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  animation-delay: 5s;
}

.grid-line:nth-child(3) {
  top: 0;
  bottom: 0;
  left: 30%;
  width: 1px;
  animation-delay: 10s;
}

.grid-line:nth-child(4) {
  top: 0;
  bottom: 0;
  left: 70%;
  width: 1px;
  animation-delay: 15s;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.float-element {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: floatAround 20s ease-in-out infinite;
}

.float-element.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.float-element.element-2 {
  top: 20%;
  right: 15%;
  animation-delay: 4s;
}

.float-element.element-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 8s;
}

.float-element.element-4 {
  bottom: 30%;
  right: 20%;
  animation-delay: 12s;
}

.float-element.element-5 {
  top: 50%;
  left: 50%;
  animation-delay: 16s;
}

.hero-content-modern {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-main {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(13, 178, 80, 0.2);
  border: 1px solid rgba(13, 178, 80, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title-modern {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.title-highlight {
  color: var(--white);
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(13, 178, 80, 0.3);
  z-index: -1;
}

.title-gradient-modern {
  background: linear-gradient(135deg, var(--primary) 0%, #06d65f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-modern {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-description-modern strong {
  color: var(--primary);
  font-weight: 700;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.feature-item-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.check-icon-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(13, 178, 80, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(13, 178, 80, 0.4);
}

.btn-arrow {
  font-size: 1.5rem;
  transition: var(--transition);
}

.btn-hero-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-trust-badges {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 0.6s ease-out 1s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  font-size: 2.5rem;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.trust-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trading-card-showcase {
  position: relative;
  height: 600px;
}

.trading-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.trading-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.card-primary {
  top: 50px;
  left: 0;
  right: 0;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}

.card-header-trade {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

.card-trend {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.card-trend.positive {
  color: var(--primary);
  background: rgba(13, 178, 80, 0.1);
}

.card-trend.negative {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.card-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.mini-chart {
  height: 80px;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.card-secondary {
  top: 200px;
  right: -20px;
  width: 280px;
  z-index: 2;
  animation: floatCard 6s ease-in-out 2s infinite;
}

.stock-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.stock-item:last-child {
  border-bottom: none;
}

.stock-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.stock-name {
  font-weight: 700;
  color: var(--navy);
}

.stock-change {
  font-size: 0.9rem;
  font-weight: 600;
}

.stock-change.positive {
  color: var(--primary);
}

.stock-change.negative {
  color: #ef4444;
}

.stock-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.card-accent {
  bottom: 50px;
  left: -20px;
  width: 320px;
  z-index: 2;
  background: var(--gradient-primary);
  color: var(--white);
  animation: floatCard 6s ease-in-out 4s infinite;
}

.achievement-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.achievement-icon {
  font-size: 3rem;
}

.achievement-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.achievement-text span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.floating-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floatStat 4s ease-in-out infinite;
}

.stat-1 {
  top: 20px;
  right: -30px;
  z-index: 4;
}

.stat-2 {
  bottom: 180px;
  left: -40px;
  z-index: 4;
  animation-delay: 2s;
}

.stat-icon-float {
  font-size: 2rem;
}

.stat-number-float {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-label-float {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ========================================
   MODERN QUICK FEATURES
   ======================================== */

.quick-features-modern {
  padding: 60px 0;
  background: var(--bg-light);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card-modern {
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.feature-card-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card-modern:hover .feature-card-inner {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(13, 178, 80, 0.15);
}

.feature-card-modern:hover .feature-card-inner::before {
  transform: scaleX(1);
}

.feature-icon-modern .icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 2.5rem;
  background: var(--bg-light);
  border-radius: 16px;
  transition: var(--transition);
}

.feature-card-modern:hover .icon-bg {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(5deg);
}

.feature-content-modern h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-content-modern p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-arrow {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
}

.feature-card-modern:hover .feature-arrow {
  transform: translateX(8px);
}

.featured-card .feature-card-inner {
  background: var(--gradient-navy);
  color: var(--white);
}

.featured-card .feature-content-modern h3,
.featured-card .feature-content-modern p {
  color: var(--white);
}

.featured-card .icon-bg {
  background: rgba(255, 255, 255, 0.2);
}

.featured-card:hover .icon-bg {
  background: rgba(255, 255, 255, 0.3);
}

.featured-card .feature-arrow {
  color: var(--white);
}

/* ========================================
   MODERN PRODUCTS SECTION
   ======================================== */

.products-section-modern {
  padding: 100px 0;
  background: var(--white);
}

.section-header-modern {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-modern {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle-modern {
  font-size: 1.25rem;
  color: var(--text-light);
}

.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card-modern {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.product-card-modern:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(13, 178, 80, 0.2);
}

.product-card-modern:hover::before {
  opacity: 0.03;
}

.product-card-modern > * {
  position: relative;
  z-index: 1;
}

.product-badge-corner {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  z-index: 2;
}

.product-badge-corner.popular {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  animation: pulse 2s ease-in-out infinite;
}

.product-icon-modern {
  margin-bottom: 1.5rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
  background: var(--bg-light);
  border-radius: 20px;
  transition: var(--transition);
}

.product-card-modern:hover .icon-circle {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gradient-primary);
}

.featured-icon {
  background: var(--gradient-primary);
}

.product-card-modern h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.product-card-modern p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 60px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-tag {
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  border: 2px solid var(--navy);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-product:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-product-featured {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(13, 178, 80, 0.3);
}

.btn-product-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 178, 80, 0.4);
}

.featured-product {
  border-color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(13, 178, 80, 0.02) 0%,
    rgba(6, 214, 95, 0.02) 100%
  );
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAround {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(-15px, -30px) rotate(-5deg);
  }
  75% {
    transform: translate(15px, -15px) rotate(3deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatStat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gridMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title-modern {
    font-size: 2.75rem;
  }

  .trading-card-showcase {
    height: 500px;
  }

  .hero-trust-badges {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-title-modern {
    font-size: 2.25rem;
  }

  .hero-description-modern {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-features-list {
    grid-template-columns: 1fr 1fr;
  }

  .trading-card-showcase {
    display: none;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
  }

  .products-grid-modern {
    grid-template-columns: 1fr;
  }

  .section-title-modern {
    font-size: 2rem;
  }
}

/* ========================================
   PREMIUM CTA SECTION
   ======================================== */

.cta-section-premium {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0d1a35 0%, #1e3a6d 50%, #0a1428 100%);
  overflow: hidden;
}

.cta-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(13, 178, 80, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(6, 214, 95, 0.1) 0%,
      transparent 50%
    );
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 30%;
  animation-delay: 3s;
}

.particle:nth-child(3) {
  top: 40%;
  right: 20%;
  animation-delay: 6s;
}

.particle:nth-child(4) {
  bottom: 30%;
  left: 60%;
  animation-delay: 9s;
}

.particle:nth-child(5) {
  top: 70%;
  right: 40%;
  animation-delay: 12s;
}

.cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cta-shape {
  position: absolute;
  opacity: 0.05;
  animation: shapeRotate 20s linear infinite;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  top: -100px;
  right: 10%;
}

.shape-square {
  width: 200px;
  height: 200px;
  border: 3px solid var(--primary);
  bottom: -50px;
  left: 5%;
  animation-delay: 5s;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid var(--primary);
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

.cta-content-premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.cta-main-content {
  color: var(--white);
}

.cta-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(13, 178, 80, 0.15);
  border: 2px solid rgba(13, 178, 80, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}

.badge-pulse {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
}

.cta-title-premium {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-title-highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.cta-title-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #06d65f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description-premium {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.cta-description-premium strong {
  color: var(--white);
  font-weight: 700;
}

.highlight-text {
  color: var(--primary);
  font-weight: 700;
  background: rgba(13, 178, 80, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.cta-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.cta-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.cta-benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateX(5px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefit-text strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.benefit-text span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-actions-premium {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.btn-cta-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 15px 40px rgba(13, 178, 80, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.btn-cta-primary:hover::before {
  left: 100%;
}

.btn-cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(13, 178, 80, 0.5);
}

.btn-icon {
  font-size: 2rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  margin: 0 1.5rem;
}

.btn-text strong {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.btn-text small {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.btn-arrow-cta {
  font-size: 2rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-cta-primary:hover .btn-arrow-cta {
  transform: translateX(8px);
}

.cta-secondary-actions {
  display: flex;
  gap: 1rem;
}

.btn-cta-secondary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-icon-small {
  font-size: 1.25rem;
}

.cta-trust-indicators {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease-out 1s both;
}

.trust-indicator {
  text-align: center;
}

.trust-stat {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* CTA Visual Content */
.cta-visual-content {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-mockup-container {
  position: relative;
  height: 500px;
}

.mockup-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  animation: floatCard 6s ease-in-out infinite;
}

.mockup-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
}

.mockup-1 {
  top: 50px;
  left: 0;
  right: 0;
  z-index: 2;
}

.mockup-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-dot:nth-child(1) {
  background: #ff5f57;
}

.mockup-dot:nth-child(2) {
  background: #ffbd2e;
}

.mockup-dot:nth-child(3) {
  background: #28ca42;
}

.mockup-body {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 3rem;
  color: var(--white);
  animation: scaleIn 0.5s ease-out;
}

.mockup-body h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.mockup-body p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.progress-bar {
  height: 8px;
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  animation: progressFill 2s ease-out;
}

.mockup-2 {
  bottom: 80px;
  right: -20px;
  width: 280px;
  z-index: 1;
  animation-delay: 2s;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.stat-label {
  font-weight: 600;
  color: var(--text-light);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-value.positive {
  color: var(--primary);
}

.mini-graph {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
}

.graph-bar {
  flex: 1;
  background: var(--gradient-primary);
  border-radius: 4px 4px 0 0;
  animation: barGrow 1s ease-out;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  color: var(--navy);
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-1 {
  top: 20px;
  right: -30px;
  z-index: 3;
}

.badge-2 {
  bottom: 30px;
  left: -40px;
  z-index: 3;
  animation-delay: 2s;
}

.badge-emoji {
  font-size: 1.5rem;
}

.badge-text {
  font-size: 0.95rem;
}

.cta-bottom-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease-out 1.2s both;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.strip-icon {
  font-size: 1.5rem;
}

/* CTA Animations */
@keyframes particleFloat {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(50px, -50px);
    opacity: 1;
  }
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(13, 178, 80, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(13, 178, 80, 0);
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes progressFill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes barGrow {
  0% {
    height: 0;
  }
  100% {
    height: var(--bar-height);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* CTA Responsive */
@media (max-width: 1024px) {
  .cta-content-premium {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-title-premium {
    font-size: 2.5rem;
  }

  .cta-benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-mockup-container {
    height: 400px;
  }

  .cta-trust-indicators {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .cta-section-premium {
    padding: 80px 0;
  }

  .cta-title-premium {
    font-size: 2rem;
  }

  .cta-description-premium {
    font-size: 1.05rem;
  }

  .cta-secondary-actions {
    flex-direction: column;
  }

  .cta-trust-indicators {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .cta-mockup-container {
    display: none;
  }

  .cta-bottom-strip {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .btn-cta-primary {
    padding: 1.5rem 1.75rem;
  }

  .btn-text strong {
    font-size: 1.15rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
