:root {
  /* Couleurs principales */
  --color-primary: #00c851;
  --color-primary-dark: #00a843;
  --color-primary-darker: #003110;
  --color-secondary: #ffeb3b;

  /* Couleurs de fond */
  --color-bg-dark: #1a1a1a;
  --color-bg-light: #f8f9fa;

  /* Couleurs de texte */
  --color-text: #333;
  --color-text-light: #666;
  --color-text-lighter: #888;
  --color-text-white: #ffffff;

  /* Couleurs utilitaires */
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-shadow-dark: rgba(0, 0, 0, 0.2);
  --color-overlay: rgba(0, 49, 16, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  overflow-x: hidden;
}

/* Import de la police Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  /* backdrop-filter: blur(10px); */
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--color-primary-darker);
  box-shadow: 0 2px 20px var(--color-shadow-dark);
}

.navbar.scrolled .nav-link {
  color: var(--color-text-white);
}

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

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-menu li a {
  text-decoration: none;
  color: var(--color-text-white);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.cta-nav {
  color: var(--color-text-white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--color-bg-light);
  transition: all 0.3s ease;
}

.cta-nav:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 2px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(var(--color-overlay), rgba(0, 0, 0, 0.7)),
    url("../img/mockup.png");
  background-size: cover;
  background-position: 30% center; /* Changed from 'center' to '30% center' */
  background-attachment: fixed; /* Ajout de cette ligne */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="squares" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="2" y="2" width="6" height="6" fill="rgba(255,255,255,0.1)" rx="1"/><rect x="12" y="12" width="6" height="6" fill="rgba(255,255,255,0.05)" rx="1"/></pattern></defs><rect width="100" height="100" fill="url(%23squares)"/></svg>');
  opacity: 0.3;
  height: 100vh;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1;
  animation: slideInLeft 1s ease-out;
  width: 100%;
  white-space: nowrap;
}

.hero-content .hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  white-space: nowrap;
  background: linear-gradient(to right, var(--color-secondary), #ffc107);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: slideInLeft 1s ease-out 0.2s both;
  letter-spacing: 1px;
  position: relative;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.hero-content .hero-offer {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;

  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 700;
  animation: slideInLeft 1s ease-out 0.3s both;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: slideInLeft 1s ease-out 0.4s both;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  font-family: "Montserrat", sans-serif;
}

.cta-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out 0.3s both;
  height: 100vh;
  width: 100%;
  background-color: re;
}
.hero-visual img {
  width: auto;
  height: 100%;
  margin-top: 20%;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--color-bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature h4::before {
  content: "✨";
  font-size: 1.2rem;
}

.feature p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Special sections styling */
.payment-section {
  background: #fff;
  padding: 0;
}

.payment-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 80vh;
  padding: 3rem 0;
}

.payment-content {
  flex: 1 1 0;
  max-width: 600px;
  text-align: left;
  margin-left: 2rem;
}

.payment-badge {
  display: inline-block;
  background: #f6f6f6;
  color: #222;
  font-weight: 600;
  border-radius: 22px;
  padding: 0.5rem 1.3rem;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.payment-badge .emoji {
  margin-right: 0.5em;
}

.payment-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #111;
}

.payment-desc {
  color: #666;
  font-size: 1.18rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.payment-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: #fff;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
  border-radius: 30px;
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: none;
  text-decoration: none;
}

.payment-btn:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 200, 81, 0.1);
}

.arrow-btn i {
  font-size: 1.1em;
  transition: transform 0.2s;
}

.payment-btn:hover .arrow-btn i {
  transform: translateX(5px);
}

.payment-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  width: 50%;
  height: 60dvh;
  background: none;
  gap: 0;
  position: relative;
  border-radius: 2.5rem;
  background-color: #f6f8f7;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-visual img {
  height: 100%;
  width: 50%;
  min-width: 0;
  max-width: none;
  object-fit: cover;
  background: none;
  margin: 0;
  border-radius: 2rem;
  box-shadow: none;
  position: relative;
  z-index: 1;
  display: block;
}

.payment-visual img:first-child {
  margin-left: 4%;
  margin-right: 2%;
  margin-top: 130px;
}

.payment-visual img:last-child {
  margin-right: 4%;
  margin-left: 2%;

  margin-top: -130px;
}

@media (max-width: 1100px) {
  .payment-flex {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 2rem 0;
  }
 
  .payment-content {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }
  .payment-visual {
    width: 100%;
    min-height: 320px;
    justify-content: center;
    border-radius: 1.5rem;
  }
  .payment-visual img {
    min-width: 120px;
    max-width: 180px;
  }
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,100 100,0 100,100" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: white;
  color: var(--color-primary);
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
  background: #f5f5f5;
  color: var(--color-primary-dark);
}

/* Payment Partners Section */
.payment-partners {
  background: var(--color-bg-light);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.partners-grid img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: all 0.3s ease;
}

.partners-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .partners-grid {
    gap: 2rem;
  }

  .partners-grid img {
    width: 100px;
    height: 50px;
  }
}

/* Footer */
.footer {
  background: var(--color-bg-light);
  color: #444;
  padding: 3rem 0 1.5rem 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-store {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-store img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.footer-store img:hover {
  transform: scale(1.06);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.2rem;
  font-size: 1.08rem;
}

.footer-links a {
  color: #3c3c3c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--color-bg-dark);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.08);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #3c3c3c;
}

.footer-legal a {
  color: #3c3c3c;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-legal span {
   color: #3c3c3c;
  font-weight: 400;
}

.footer-copyright {
   color: #3c3c3c;
  font-size: 1rem;
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .footer-links {
    gap: 1.2rem;
    font-size: 0.98rem;
  }
  .footer-store {
    gap: 1rem;
  }
  .footer-social {
    gap: 0.7rem;
  }
  .footer-legal {
    gap: 0.4rem;
    font-size: 0.92rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }


  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
.cta-nav{
  display: none;
}
.logo img{
  width: auto;
  height: 25px;
}
  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;

  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
    transform: none;
  }

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

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links,
  .footer-legal {
    /* flex-direction: column; */
    gap: 1rem;
  }
}



/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.5s ease;
}

.loader-container {
  text-align: center;
}

.loader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.loader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-progress::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--color-primary);
  animation: progress 1s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes progress {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(500%);
  }
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
}

.trust-badge span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.trust-badge span {
  margin-right: 5px;
}

.security-section {
  background: url("../img/bg-conf.png") center/cover no-repeat;
  padding: 0;
}

.security-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 80vh;
  padding: 3rem 0;
}

.security-content {
  flex: 1 1 0;
  max-width: 650px;
  text-align: left;
  margin-right: 2rem;
}

.security-badge {
  display: inline-block;
  background: #0d2c3f;
  color: #fff;
  font-weight: 600;
  border-radius: 22px;
  padding: 0.5rem 1.3rem;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.security-badge .emoji {
  margin-right: 0.5em;
}

.security-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
}

.security-desc {
  color: #e0e0e0;
  font-size: 1.18rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.security-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0, 200, 81, 0.1);
  text-decoration: none;
}

.security-btn:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.arrow-btn i {
  font-size: 1.1em;
  transition: transform 0.2s;
}

.security-btn:hover .arrow-btn i {
  transform: translateX(5px);
}

.security-visual {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  min-width: 320px;
  min-height: 350px;
  height: 400px;
}

.security-phone {
  height: 440px;
  width: auto;
  z-index: 2;
  border-radius: 2rem;
  position: relative;
}

.security-card {
  position: absolute;
  left: 110px;
  bottom: 0;
  width: 270px;
  max-width: 60%;
  z-index: 3;
  transform: translateY(30px);
}

@media (max-width: 1100px) {
  .security-flex {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 2rem 0;
  }
  .security-content {
    margin-right: 0;
    text-align: center;
    max-width: 100%;
  }
  .security-visual {
    min-width: 0;
    min-height: 220px;
    height: 260px;
    justify-content: center;
  }
  .security-phone {
    height: 200px;
  }
  .security-card {
    left: 60px;
    width: 160px;
    transform: translateY(15px);
  }
}

/* Features Section */
.features-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.features-badge {
  display: inline-block;
  background: #fff;
  color: #ff9800;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.2rem 1.2rem;
  border-radius: 16px;
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
  border: 1px solid #eee;
}

.features-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin: 0;
  color: #111;
  letter-spacing: -1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.04);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.feature-card--wide {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.feature-card--wide .feature-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.feature-card--light {
  background: #f8fafc;
  color: #222;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}

.feature-card--dark {
  background: #061c3d;
  color: #fff;
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 350px;
  padding-bottom: 2.5rem;
}

.feature-card--dark .feature-img-card {
  width: 90%;
  max-width: 260px;
  margin-top: 2rem;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  align-self: center;
}

.feature-card--gray {
  background: #f4f5f7;
  color: #222;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}

.feature-card--green {
  background: #00c851;
  color: #fff;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}

.feature-icon {
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
  color: #00c851;
  min-width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card--dark .feature-icon,
.feature-card--green .feature-icon {
  color: #fff;
}

.feature-card h4 {
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.2px;
}

.feature-card p {
  font-size: 1rem;
  color: inherit;
  margin: 0;
  font-weight: 400;
}

.feature-img-inline {
  display: block;
  margin: 1.2rem auto 0 auto;
  max-width: 120px;
  width: 100%;
  height: auto;
}
.img-inter {
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1.2rem;
  }
  .feature-card--wide,
  .feature-card--dark {
    grid-column: auto;
    grid-row: auto;
    min-height: unset;
  }
}

/* Modern CTA Section */
.cta-section--modern {
  background: radial-gradient(ellipse at 60% 40%, #0a2a43 0%, #00203a 100%);
  border-radius: 22px;
  margin: 3rem auto 0 auto;
  max-width: 1200px;
  padding: 0;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 100px;
}

.cta-modern-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  padding: 3.5rem 3rem 3.5rem 3.5rem;
  gap: 2rem;
}

.cta-modern-content {
  flex: 1 1 0;
  color: #fff;
  z-index: 2;
}

.cta-modern-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: start;
}

.cta-modern-desc {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  font-weight: 400;

  text-align: start;
}

.cta-modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0, 200, 81, 0.1);
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: start;
  width: 270px;
  white-space: nowrap;
}

.cta-modern-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-primary);
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  margin-left: 0.8rem;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
}

.cta-modern-btn:hover {
  background: var(--color-primary-dark);
}

.cta-modern-btn:hover .cta-modern-btn-icon {
  background: var(--color-primary);
  color: #fff;
}

.cta-modern-visual {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0;
  position: relative;
  min-width: 320px;
  min-height: 320px;
}

.cta-modern-img {
  height: 460px;
  width: auto;
  border-radius: 2rem;
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}
 .cta-button1{
  display: none;
 }

@media (max-width: 900px) {
  .cta-section--modern {
    border-radius: 0;
    margin: 2rem 0 0 0;
    max-width: 100%;
  }
  .cta-modern-flex {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
    min-height: unset;
  }
  .cta-modern-visual {
    min-width: 0;
    min-height: 180px;
    justify-content: center;
    gap: 0;
  }
  .cta-modern-img {
    height: 180px;
  }
}

/* Contact Section */
.contact-section {
  background: linear-gradient(120deg, #f8f9fa 60%, #e3f6ef 100%);
  padding: 5rem 0 4rem 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg-contact.png") center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.contact-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2.2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
}

.contact-info {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 400px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.contact-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
}

.contact-title {
  font-size: 2.1rem;
  font-weight: 600;
  color: #00a843;
  margin: 0;
}

.contact-desc {
  font-size: 1.13rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-list li {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-list i {
  color: var(--color-primary);
  font-size: 1.15rem;
}

.contact-info a {
  color: #00a843;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #007d34;
  text-decoration: underline;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.contact-social a:hover {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.08);
}

.contact-form {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  background: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.contact-form-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #00a843;
  margin-bottom: 1.2rem;
  text-align: left;
}

.form-group {
  margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8f9fa;
  color: #222;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.03);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--color-primary);
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(0, 200, 81, 0.08);
}

.contact-btn {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 200, 81, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  display: flex;
  justify-content: center;
}

.contact-btn:hover {
  background: var(--color-primary-dark);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
    padding: 1.5rem 0.5rem;
  }
  .contact-info,
  .contact-form {
    max-width: 100%;
  }
  .contact-form {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 768px) {
  .hero-container{
    padding: 0;
  }
  .hero-content{
    margin-left: 0;
    height: 60vh;
     background-attachment: fixed;
     display: flex;
     flex-direction: column;
     /* align-items: center; */
     position: relative;
     padding-top: 30%;
  }
  .hero-content h1,
  .hero-content .hero-subtitle,
  .hero-content .hero-offer {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    max-width: 100vw;
  }
  .navbar{
    /* padding: 0.5rem; */
  }
  .trust-badge{
   display: none;
  }
  .cta-button{
   display: none;
  }
  
  .cta-button1{
    display: block;
    margin-top: 30px;
  }
.cta-button1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: slideInLeft 1s ease-out 0.4s both;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  font-family: "Montserrat", sans-serif;
}
.hero-visual {
 height: auto;
 margin-top: 50px;

}
.hero-visual img {
 margin:auto;
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: -50px;
  /* margin-right: -20px; */
}
.nav-link {
 color: var(--color-bg-dark) !important;
}
}
@media (max-width: 400px) {
.hero-visual img {

  margin-right: -20px;
}
.hero{
  background-attachment: fixed;
}
.payment-title{
  padding: 10px;
  font-size: 2.5rem;
}
.payment-desc {
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 1em;
}

.security-title {
  padding: 10px;
  font-size: 2.5rem;
}
.features-title {
  font-size: 2.5rem;
  padding: 10px;
}
.cta-modern-title{
  font-size: 2.5rem;
  text-align: center;
}
  .cta-modern-desc {
  font-size: 1.2rem;
  text-align: center;

}

.cta-modern-btn {
  width: 80%;
  justify-content: center;
  padding: 0.5rem;
  font-size: 1.2em;
  margin: 0 auto;

}
.security-visual{
  display: none;
}
.logo img{
  margin-left: -20px;
}
.mobile-toggle{
  margin-right: -20px;
}
.payment-visual{
  display: none;
}

}
.contact-title {
  font-size: 2.5rem;
  text-align: center;
}
.contact-desc {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-info-header {
  justify-content: center;
}
.contact-logo {
  width: 60px;
  height: 60px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}