
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Send+Flowers&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap');

.light-text { color: #fff; transition: color 0.3s ease; }
.dark-text { color: #000; transition: color 0.3s ease; }

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'futura_ptlight';
  font-family: "Inter", sans-serif;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
}

/* ======================== */
/* NAVBAR STILING  */
/* ========================== */


/* STYLING NAVBAR  */

.overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  /* Modificare aici pentru a seta meniul la dreapta */
  background-color: #111111;
  overflow-y: hidden;
  transition: width 0.8s cubic-bezier(.7, 0, .2, 1);
  /* Utilizare cubic-bezier pentru o tranziție personalizată */
  overflow: hidden;
}

.overlay-content {
  position: relative;
  top: 25%;
  left: 10%;
  width: 100%;
  text-align: left;
  margin-top: 30px;
}

.overlay a:not(.overlay-socials a) {
  padding: 8px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  display: block;
  transition: 0.3s;
  letter-spacing: 2px;
  font-family: 'Mulish', serif;
  text-transform: capitalize;
}

.overlay-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Mulish', serif;
  text-transform: uppercase;
  margin-top: 30px;
}

.overlay-socials a {
  color: #818181;
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  padding: 0 8px;
  letter-spacing: 3px;
  opacity: 0.7;

}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 30px;
  right: 60px;
  font-size: 35px;
}

hr.new1 {
  margin-top: 30px;
  width: 60%;
  height: 5px;
  border-top: 1px solid rgba(57, 57, 57, 0.832);
  border-left: transparent;
  border-bottom: transparent;
  border-right: transparent;
}

.stop-scrolling {
  overflow: hidden;
}

@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
  }

  .overlay a {
    font-size: 16px
  }

  .overlay .closebtn {
    font-size: 20px;
    top: 15px;
    right: 35px;
  }
}

@media screen and (max-width: 450px) {
  .overlay-content {
    top: 20%;
  }
}

/* NAVBAR  */

.nav-btn {
  display: none;
}

.navbar {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
  padding: 0rem 2rem 0rem 2rem;
  z-index: 2;
  top: 0px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  /* Smooth transition for background color */
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
}

.navbar.scrolled {
  background-color: black;
  /* Change background color when scrolled */
}

.logo-navbar {
  width: 4rem;
  padding: 0.7rem 0;
}

.first-item-navbar ul {
  display: flex;
  gap: 40px;
  font-size: 0.9rem;
  transition: color 300ms ease-in-out;
  align-items: flex-start;
  list-style: none;
  font-weight: 100;
  letter-spacing: 1px;
  /* text-transform: capitalize; */
  /* text-shadow: 1px 1px 2px black; */
}

.first-item-navbar ul a {
  color: white;
  text-decoration: none;
  transition: 200ms ease-in-out;
  /* text-transform: uppercase; */
}


.navbar li {
  color: red;
  /* background-color: #404040; */
  float: left;
  position: relative;
  padding: 15px 10px;
  font-weight: 400;
  overflow: hidden;
}

.navbar li::after {
  background-color: #162b88;
  content: "";
  width: 0;
  height: 3px;
  left: 0;
  top: 10px;
  transition: width 0.35s ease 0s;
  position: absolute;
}

.navbar li:hover::after {
  width: 100%;
}

.navbar ul a.active-nav{
  /* border-top: 3px solid #47b749; */
  /* padding: 1.95rem 0; */
  width: 100%;
  color: #001563;
}

.overlay-content .action.active-nav{
  color: #0037ff;


}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  font-size: 0.8rem;
  padding: 0;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: rgba(255, 170, 0, 0.833);
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dashboard-btn{
  padding: 10px 10px;
  border-radius: 10px;
  outline: none;
  background-color: #001563;
  color: white;
  cursor: pointer;
  transition: 200ms ease-in;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 1px solid rgba(0, 0, 0, 0.422);
}

.dashboard-btn:hover{
  background-color: #0037ff;
  transform: scale(1.02);
}


@media only screen and (max-width: 1260px) {

  .navbar {
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }

  .first-item-navbar {
    padding-bottom: 1rem;
  }

  .logo {
    width: 5rem;
  }

  .navbar {
    justify-content: space-around;
    flex-direction: row;
  }

  .first-item-navbar {
    padding-bottom: 0rem;
  }

  .first-item-navbar {
    display: none;
  }

  .nav-btn {
    display: block;
    color: rgb(255, 255, 255);
  }
}



/* 
=========================
HERO SECTION 
========================= */

#gradient-canvas {
    width: 100%;
    height: 100%;
    --gradient-color-1: #6a7dff;  /* Albastru-indigo puternic, punct central */
  --gradient-color-2: #8e5fff;  /* Mov electric, adaugă dinamism */
  --gradient-color-3: #a7c8ff;  /* Albastru pastel, luminează gradientul */
  --gradient-color-4: #fe4040;  /* Albastru pastel, luminează gradientul */
  --gradient-color-5: #e4eaff;  /* Alb-lavandă foarte subtil, pentru final */
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 100%);
  }
  
  .hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* Canvas-ul animat */
  #gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  /* Conținutul din față */
  .hero-content,.hero-content-faq {
    position: relative;
    z-index: 2; /* Peste gradient */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1250px;
    color: #fff;
    margin-top: 3rem;
  }


  
  /* Bloc text */
  .text-block {
    min-width: 500px;
    text-align: left;
    color: rgb(0, 0, 92);

  }
  
  .text-block h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  @media screen and (max-width: 550px) {
    .text-block h1{
    font-size: 11.5vw;
    }
}

@media screen and (max-width: 450px) {
    .text-block h1{
    font-size: 13vw;
    }
}
  
  .text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
  }
  
  .cta {
    background-color: rgb(0, 0, 92);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid black;
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: 200ms ease-in-out;
  }

  .cta:hover{
    transform: scale(1.05);
  }

  .signature-text{
    font-family: "Ms Madi", cursive;
    font-size: 6rem;
    color: white;
    font-weight: 400;
  }


  @media screen and (max-width: 550px) {
    .signature-text{
    font-size: 16.5vw;
    }
}

@media screen and (max-width: 450px) {
    .signature-text{
    font-size: 17vw;
    }
}
  
  /* Mock-up-uri */

  .mockup-block{
    display: flex;
    align-items: center;
  }

  .iphone-mockup{
    max-width: 350px;
    margin-left: 20px;
    z-index: 5;
  }

  .iphone-mockup-faq{
    max-width: 750px;
    margin-left: 20px;
    z-index: 5;
  }

  .report-mockup{
    max-width: 350px;
    margin-left: -40px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 4;
  }

  @media screen and (max-width: 550px) {
    .text-block{
        width: 100%;
        max-width: 400px;
        min-width: 100%;
    }

    .mockup-block{
        display: none;
    }
  }

/* GLOB PAMANTESC  */

.globe-section {
  position: relative;
  background: #0d1b2a;
  color: #fff;
  overflow: hidden;
  padding: 2rem 0;
}

.globe-title{
  font-size: 3.5rem;
}

.globe-width{
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
}

/* Globul absolut */
.globe-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1; /* sub text */
}

#globeViz {
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-35%);
  width: min(140vw, 1000px);   /* crește pe mobil dar nu trece de 1000px */
  height: min(140vw, 1000px);  /* păstrează proporțiile */
  pointer-events: none;        /* dezactivează interacțiunea */
}

/* Conținutul (peste glob) */
.globe-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  /* margin: 0 120px; */
  padding: 20px 0;
  text-align: left;
}

.globe-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
}

.globe-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 200;
}


@media screen and (max-width: 550px) {
  .globe-content h1{
  font-size: 11.5vw;
  }
  
  .globe-title{
    font-size: 2rem;
  }
}


.globe-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #dce3f1;
}

.stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stats div strong {
  display: block;
  font-size: 1.8rem;
  color: #fff;
}

.stats div span {
  font-size: 0.9rem;
  color: #a8b2c8;
}

/* Responsive */
@media screen and (max-width: 820px) {
  #globeViz {
    right: -35%;
    top: 60%;
    width: min(180vw, 1000px); 
    height: min(180vw, 1000px);
  }
}

@media screen and (max-width: 540px) {
  #globeViz {
    right: -50%;
    top: 65%;
    width: 200vw;   /* îl menținem mare ca background */
    height: 200vw;
  }
}

/* Pe telefoane foarte mici (ex. iPhone SE) */
@media screen and (max-width: 400px) {
  #globeViz {
    width: 900px;
    height: 900px;
    right: -60%;   /* mai mult spre dreapta ca să nu acopere textul */
    top: 60%;
  }
}

@media screen and (max-width: 375px) {
  #globeViz {
    transform: translateY(-38%);
  }
}


/* ICONS ANIMATION  */

/* Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, #f8f9fb, #eef4ff);
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #0056D2;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.benefit-card img {
  width: 60px;
  margin-bottom: 15px;
}

/* Savings Calculator */
.savings-section {
  background: #fff;
  padding: 60px 10px;
  text-align: center;
  border-top: 1px solid #e6e6e65b;
}

.savings-flex{
  display: flex;
  max-width: 1250px;
  margin: 0 auto;
  width: 90%;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.savings-text-box{
  flex: 1 1 500px;

}


.calculator-box {
  background: linear-gradient(135deg, #0056D2, #00D19D);
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.calculator-box {
  flex: 1 1 800px;
}

@media screen and (max-width: 950px) {
  .savings-flex{
   flex-wrap: wrap;
   gap: 2rem;
  }
 }

.savings-text-box .section-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  text-align: right;
  color: rgb(0, 0, 92);
  text-align: left;
}


.section-subtitle{
  text-align: left;
  font-size: 1.25rem;
  font-weight: 300;
}

@media screen and (max-width: 550px) {
  .savings-text-box .section-title {
  font-size: 11.5vw;
  }
}

.calculator-box input[type="range"] {
  width: 100%;
  margin: 20px 0;
}

.calculator-box label{
  font-size: 2rem;
}
.result-box h3 {
  font-size: 2.5rem;
  margin-top: 10px;
}

.cta-button {
  /* margin-top: 20px; */
  padding: 12px 30px;
  font-size: 1.2rem;
  color: #0056D2;
  background: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button:hover {
  /* background: #f2f2f2; */
  transform: scale(1.05);
}

/* Features Section */
.features-section {
  background: #fff;
  padding: 70px 10px;
  border-top: 1px solid #e6e6e666;

}

.features-container {
  max-width: 1250px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;


}

.features-text {
  flex: 1 1 400px;
}

.features-text h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  text-align: right;
  color: rgb(0, 0, 92);
}

@media screen and (max-width: 550px) {
  .features-text h2 {
  font-size: 11.5vw;
  }
}

.features-text p {
  font-size: 1.25rem;
  font-weight: 300;
  color: #444;
  line-height: 1.6;
  text-align: right;
}

.features-highlights {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}


.feature-item {
  background: #f8f9fb;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-item img {
  width: 55px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1070px) {
  .features-container {
    flex-direction: column-reverse;
  }

.features-text h2, .features-text p {
  text-align: left;
}

.features-text{
  flex: auto;
}
}

/* HOW IT WORKS  */

.step-wizard {
  background: #f8f9fb;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-wizard-list {
  background: #fff;
  box-shadow: 0 15px 25px rgba(0,0,0,0.08);
  border-radius: 12px;
  display: flex;
  padding: 20px;
  list-style: none;
  width: 80%;
  max-width: 800px;
  position: relative;
}

.step-wizard-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

/* Linia vizibilă (între pași) */
.step-wizard-item::after {
  content: "";
  position: absolute;
  top: 25px; /* centrul bulinei */
  left: 50%; /* pleacă din centrul bulinei */
  height: 4px;
  width: 100%; /* linia se oprește fix la începutul următorului item */
  max-width: calc(100% - 24px); /* evită depășirea spre bulină */
  background: linear-gradient(90deg, #0056D2, #00D19D);
  transform: scaleX(var(--line-progress, 0));
  transform-origin: left;
  z-index: 1;
  border-radius: 4px;
}

/* Ultimul pas nu are linie */
.step-wizard-item:last-child::after {
  display: none;
}

/* Buline */
.progress-count {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #dcdcdc;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

/* Activare bulină */
.step-wizard-item.active {
  opacity: 1;
}

.step-wizard-item.active .progress-count {
  background: linear-gradient(135deg, #0056D2, #00D19D);
  color: #fff;
  box-shadow: 0 0 25px rgba(0,209,157,0.5);
}

@media (max-width: 768px) {
  .step-wizard-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding: 30px 20px;
    position: relative;
  }

  .step-wizard-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    position: relative;
  }

  .step-wizard-item::after {
    content: "";
    position: absolute;
    left: 25px; /* centrat pe bulină */
    top: 50%;
    width: 4px;
    height: calc(100% + 100px);
    background: linear-gradient(180deg, #0056D2, #00D19D);
    transform: scaleY(var(--line-progress-y, 0));
    transform-origin: top;
    z-index: 0;
  }

  .step-wizard-item:last-child::after {
    display: none;
  }
}

.border{
  border-top: 1px solid rgba(130, 130, 130, 0.116);
  background-color: #f6f9fc;
  padding-bottom: 3rem;
}

.howitWorks{
  width: 90%;
  margin-inline: auto;
  max-width: 1250px;
  padding: 60px 0;
}

.howit-title{
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  color: rgb(0, 0, 92);
  width: min(100%, 600px);
}

@media screen and (max-width: 550px) {
  .howit-title{
  font-size: 10.5vw;
  }

  .br-howit{
    display: none;
  }
}

.howitWorks-container{
  display: flex;
  justify-content: space-around;
}

.howit-first-item img ,.howit-second-item img{
  width: 10rem;
  margin: 0 auto;
  display: block;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 coloane egale */
  grid-template-areas: 
    "card1 card1 card2 card2"
    "card3 card4 card4 card5";
  gap: 25px;
  padding: 10px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Mapăm zonele */
.card-1 { grid-area: card1; }
.card-2 { grid-area: card2; }
.card-3 { grid-area: card3; }
.card-4 { grid-area: card4; }
.card-5 { grid-area: card5; }

.card-3 img{
  border-radius: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  text-align: left;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  color: rgb(0, 0, 92);
}

.feature-card p {
  color: #444;
  font-size: 1.25rem;
  line-height: 1.4;
}

.feature-card img {
  max-width: 100%;
  margin-top: auto;
}

.start-free-trial-btn{
  text-align: center;
  padding: 10px 20px;
  display: block;
  width: 11rem;
  border-radius: 15px;
  margin: 1rem auto;
  color: white;
  text-decoration: none;
  background-color: rgb(0, 0, 92);
}
/* Responsive (pe mobil devine o coloană) */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "card1"
      "card2"
      "card3"
      "card4"
      "card5";
  }
}

/* FOOTER SECTION  */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}



.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.pricing-card h3 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 10px;
}


.price span {
  font-size: 0.9rem;
  color: rgb(0, 0, 92);
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  width: 100%;
  text-align: left;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #444;
  font-size: 0.95rem;
}

.benefits img {
  width: 22px;
  height: 22px;
}

/* Featured Plan (Yearly) */
.featured {
  background: linear-gradient(135deg, #0056D2, #00D19D);
  color: #fff;
  transform: scale(1.05);
}

.featured h3, .featured .price, .featured .savings, .featured li {
  color: #fff;
}

.badge {
  background: #fff;
  color: #0056D2;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.savings {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Buttons */
.cta-button {
  background: #0056D2;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.featured-btn {
  background: #fff;
  color: #0056D2;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .featured {
    transform: scale(1);
  }
}


/* TOGGLE SWITCH  */

.pricing-section {
  text-align: center;
  padding: 20px 20px 90px 20px;
  background: white;
  border-top: 1px solid rgba(137, 137, 137, 0.088);
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
}

.pricing-text-section{
  text-align: left;
}

.pricing-title {
  font-size: 4rem;
  color: rgb(0, 0, 92);
  margin-bottom: 10px;
}

@media screen and (max-width: 550px) {
  .pricing-title{
  font-size: 11.5vw;
  }
}

.pricing-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
}

/* Card */
.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: #111;
}

.price {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0056D2;
}

.price-text{
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.price-second-item p{
  font-size: 0.75rem;
  text-align: left;
  margin-left: 5px;
  color: rgb(187, 187, 187);
}
/* Features */
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  width: 100%;
  text-align: center;
}

.features li {
  /* display: flex; */
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
  text-align: center;
}

.features img {
  width: 20px;
  height: 20px;
}

/* Featured Card */
.featured {
  background: linear-gradient(135deg, #0056D2, #00D19D);
  color: #fff;
  transform: scale(1.05);
}

.featured h3, 
.featured .price, 
.featured .features li {
  color: #fff;
}

.badge {
  background: #fff;
  color: #0056D2;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.savings {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 15px;
  font-style: italic;
}

/* Buttons */
.cta-button {
  background: #0056D2;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.price-free-trial{
  padding: 12px 30px;
  font-size: 1.2rem;
  color: white;
  background: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #0037ff;
}


.price-free-trial:hover{
  background-color: #001563!important;
  opacity: 0.85;
  transform: scale(1.05);
}

.featured-btn {
  background: #fff;
  color: #0056D2;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .featured {
    transform: scale(1);
  }
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

/* Switch Style */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.4s;
}

/* Checked state */
input:checked + .slider {
  background: linear-gradient(135deg, #0056D2, #00D19D);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.fa-check-circle{
  color: rgb(0, 0, 92);
}

.white{
  color: white;
}

/* FOOTER SECTION  */

footer{
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(13, 27, 42);
  height: auto;
  width: 95%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding-top: 40px;
  color: #fff;
  padding: 20px;
  margin-bottom: 2rem;
}

.logo-footer{
  width: 7rem;
}

.footer-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.footer-content h3{
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 3rem;
}
.footer-content p{
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
  color: #cacdd2;
}
.socials{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 3rem 0;
}
.socials li{
  margin: 0 10px;
}
.socials a{
  text-decoration: none;
  color: #fff;
  border: 1.1px solid white;
  padding: 5px;

  border-radius: 50%;

}
.socials a i{
  font-size: 1.1rem;
  width: 20px;


  transition: color .4s ease;

}
.socials a:hover i{
  color: blue;
}

.footer-bottom{
  background: rgb(13, 27, 42);
  width: 95%;
  margin: 0 auto;
  border-radius: 20px;  
  padding: 20px;
  padding-bottom: 40px;
  text-align: center;
  color: black;
  margin-bottom: 1.5rem;

}

.footer-bottom p{
float: left;
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
  font-size: 0.75rem;
  color: white;
}

.footer-bottom p a{
color:#44bae8;
font-size: 16px;
text-decoration: none;
font-size: 0.75rem;

}
.footer-bottom span{
  /* text-transform: uppercase; */
  opacity: .4;
  font-weight: 200;
}
.footer-menu{
float: right;

}
.footer-menu ul{
display: flex;
font-size: 0.75rem;
}
.footer-menu ul li{
padding-right: 10px;
display: block;
}
.footer-menu ul li a{
  color: white;

text-decoration: none;
}
.footer-menu ul li a:hover{
color: rgb(178, 178, 178);
}

#cookie-settings-link:hover{
  color: rgb(161, 161, 161);
  cursor: pointer;
}

@media (max-width:500px) {
.footer-menu ul{
display: flex;
margin-top: 10px;
margin-bottom: 20px;
}
}

@media (max-width: 720px) {
  
  .footer-bottom{
    display: flex;
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
  }
  }

/* FAQ PAGE  */

.faq-section{
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  width: min(95%, 50rem);
  margin: 2rem auto;
}

.accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  width: 100%;
  font-size: 16px;
  transition: 0.4s;
  display: block;
  border-radius: 10px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.active, .accordion:hover {
  background-color: #0037ff;
  color: white;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  /* background-color: #eee; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin: 10px auto;
}

/* END FAQ PAGE  */