@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-VariableFont.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Italic-VariableFont.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: Inter, sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #0f172a;
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li{
  line-height: 30px;
}

h2{
  font-size: 36px;
  text-align: center;
}

.left{text-align: left}

.fa-solid, .fa-brands{margin-right: 5px;}

/* Layout */
.container {
  max-width: 1150px;
  margin: auto;
  padding: 60px 20px;
}

header{
  border-bottom: 1px solid #eee;
}

/* Navbar */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.highlight{color: red}

.logo span { color: #2563eb; }

/* Buttons */
.btn {
  padding: 15px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.primary {
  background: #142F57;
  color: white;

}

.tag{
  display: inline-block;
  width: auto;
  background: #eee;
  
  padding: 5px 15px;
  border-radius: 20px;
  border:1px solid #ccc;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  vertical-align: middle;
}

.white {
  background: white;
  color: #1e3a8a;
}

.ghost {
  border: 1px solid #ddd;
}

a.full { display: block; 
  width: 100%;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  border: 1px solid;
  border-radius: 10px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero h1 {
  font-size: 60px;
  line-height: 79px;
  font-weight: 700;
  margin-bottom: -10px;
  margin-top: 10px;
}

.hero h1 span {
  color: #2563eb;
}

.sub {
  color: #6b7280;
  margin: 20px 0;
  font-size: 20px;
  line-height: 30px;
}

.hero-cta{
  margin-top: 40px;
}

.phone-mock {
  
  background: #e5e7eb;
  border-radius: 20px;
}

/* PRICING */
.pricing {
  background: #fff;
}
.pricing .section-tag{
  text-align: center;
}

.pricing h2{
  font-size: 36px;
  text-align: center;
  margin-top: -10px;
  margin-bottom: -10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-top: 48px;
}

.price-card {
  padding: 40px;
  border-radius: 16px;
}

.price-card h3{
  font-size: 20px;
  line-height: 20px;
  margin-bottom: -20px;
  width: 70%;
}

.price-card .save{
  background:#2C446A; 
  padding:4px 12px;  
  border-radius:6px; 
  border:1px solid #576A87;
  float: right;
  font-size: 13px;
}

.price-card .price{
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 0px;
}

.price-card i{
  margin-right: 5px;
}

.price-card .price span{
  font-size: 15px;
  color: #888;
}

.price-card ul{
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
.price-card ul li{
  margin-bottom: 20px;
}

.price-card.light {
  background: #f1f5f9;
}

.price-card.dark {
  background: #142F57;
  color: white;
  position: relative;
}

.protection{
  padding:15px 20px;
  background:#2C446A;
  border:1px solid #576A87; 
  border-radius: 12px;
}

.no-protection{
  margin-top:90px;
}
.badge {
  position: absolute;
  top: -16px;
  right: 40px;
  background: linear-gradient(133deg, #142F57 0%, #2A4E83 100%);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
}

/* PROBLEM */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.problem-list li {
  margin: 10px 0;
}

.red { color: red; }

.image-box {
  width: 100%;
  max-width: 100%;
  border-radius: 14px;

}

.image-box img{
  width: 100%;
  border-radius: 14px;
}
.image-box-content{
  padding: 30px 20px;
}


/* ADV */
.adv-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.adv {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 20px;
  border-radius: 14px;
  align-items: center;

}

/* STEPS */
.steps {
  background: #f1f5f9;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  text-align: center;

}

.step{border: 1px solid #ccc;
border-radius: 16px;
padding: 20px;
background: #fff;}

.step span{
  display: block;
  margin: 0 auto;
  background: #142F57;
  color: #fff;
  width: 50px;
  line-height: 50px;
  border-radius: 40px;
  margin-top: -45px;
  font-weight: 700;
}

.step img{
  height: 100px;
  margin-top: 40px;
  border-radius: 100px;
}

/* FAQ */



.faq-wrapper{
  width:80%; 
  margin:0 auto;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 16px;
  border-radius: 10px;
}

/* Question */
.faq-q {
  width: 100%;
  padding: 24px;
  text-align: left;
  font-weight: 600;
  color: #142F57;
  background: none;
  border: none;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f6f6f6;
  border-radius: 10px;
}

/* Answer (collapsed state) */
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #6b7280;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

/* Open state */
.faq-item.active .faq-a {
  max-height: 300px; /* adjust if needed */
  padding: 24px 24px 24px;
}

.faq-item.active i {
  transform: rotate(180deg);
}

/* CTA */
.cta {
  background: #142F57;
  color: white;
  text-align: center;
  padding: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero,
  .pricing-grid,
  .problem,
  .steps-grid,
  .adv-grid  {
    grid-template-columns: 1fr;
  }

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

  .price-card {
    padding: 30px;
  }

  .protection{
    padding: 15px 15px;
  }

  .no-protection{
    margin-top: 30px;
  }

  .faq-wrapper{
    width: 100%;
  }


}

}