/* ============================================
   HOME PAGE STYLES
   Uses variables from main.css
============================================ */

/* ============================================
   HERO - Mobile Base
============================================ */
@media(min-width: 1200px) {
    .header-inner {
        padding: 0 35px;
    }
}

@media(min-width: 1520px) {
    .header-inner {
        padding: 0 60px !important;
    }

    .hero-content{
        margin-left: 60px !important;
    }
}

.hero {
  position: relative;
  min-height: 105vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-align: center;
    background: #f0f8ffb3;
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(14px);
}

.hero-title {
  font-size: var(--font-hero-title);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: var(--lh-hero-title);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: var(--font-hero-subtitle);
  color: var(--primary-blue);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: normal;
}

.hero-description {
  font-size: var(--font-hero-description);
  color: var(--primary-dark);
  margin-bottom: 40px;
  line-height: normal;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  margin-bottom: 9px;
  height: 48px;
  width: 100%;
  border-radius: 30px;
  font-size: var(--font-button-lg);
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
  max-width: max-content;
}

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

.btn-primary:hover {
  background: var(--primary-blue);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-secondary:hover .btn-arrow{
  filter: invert(1); 
}

.btn-secondary:hover {
  /*background: #e0e0e0;*/
}

.btn-arrow {
  width: 20px;
  height: 8px;
}

.hero-floating-cards {
  display: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.card-harassment {
  top: 18%;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: var(--font-caption);
  color: var(--text-gray);
  font-weight: 400;
}

.card-title {
  font-size: var(--font-body);
  color: var(--primary-dark);
  font-weight: 600;
}

.card-defense {
  top: 42%;
  right: 30%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
}

.floating-card-content {
  display: flex;
  align-items: center;
}

.card-defense-text {
  font-size: var(--font-body-sm);
  color: var(--text-dark);
}

.card-defense-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.floating-card-icon-scales {
  width: 36px;
  height: 36px;
  background: var(--light-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-protect {
  bottom: 15%;
  right: 8%;
  padding: 20px 24px;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
}

.card-protect-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.protect-title {
  font-size: var(--font-final-cta-title);
  font-weight: 600;
  color: var(--primary-dark);
}

.protect-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protect-subtitle {
  font-size: var(--font-body-sm);
  color: var(--primary-dark);
  display: block;
  margin-bottom: 16px;
}

.card-protect-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.protect-text {
  font-size: var(--font-caption);
  color: var(--text-gray);
}

.protect-arrow-btn {
  width: 32px;
  height: 32px;
  background: var(--accent-blue);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.protect-arrow-btn:hover {
  background: var(--primary-dark);
}

/* ============================================
   TESTIMONIALS - Mobile Base (Bootstrap Grid)
============================================ */
.testimonials {
  background: var(--bg-gray);
  padding: 40px 0;
}



.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content {
  max-width: 100%;
}

.stars {
  margin: auto;
  width: 97px;
  margin-bottom: 10px !important;
}

.testimonial-name {
  font-size: var(--font-card-title);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: var(--font-caption);
  color: var(--text-gray);
  line-height: 1.5;
}

/* ============================================
   MISSION - Mobile Base (Bootstrap Grid)
============================================ */
.mission {
  background: #f4f5f7 !important;
  padding: 40px 0;
  padding-bottom: 0px !important;
}

.mission-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission-content .section-title{
  margin-bottom: 25px;
}

.mission-content .mission-subtitle{
  margin-bottom: 25px;
  max-width: 482px;
}

.section-title {
  font-size: var(--font-section-title);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: var(--lh-section-title);
  margin-bottom: 20px;
}

.section-title.center {
  text-align: center;
}

.mission-subtitle {
  font-size: 23px;
  color: var(--primary-blue);
  margin-bottom: 24px;
  line-height: normal;
}

.mission-text {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: normal;
  max-width: 539px;
}

.mission-image {
  order: -1;
}

.mission-image img {
    width: 100%;
    max-width: 100%;
    height: 310px;
    object-fit: contain;
    margin-top: -20px;
}

/* ============================================
   PROTECTION AREAS - Mobile Base (Bootstrap Grid)
============================================ */
.protection-areas {
  padding: 20px 0;
}

.protection-areas .section-title {
  margin-bottom: 30px;
}

.protection-card {
  display: flex;
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(180deg, var(--bg-gray) 0%, var(--light-blue) 100%);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  flex-direction: column;
  height: -webkit-fill-available;
  max-width: 253px;
  margin: auto;
}

.protection-icon {
  width: 80px;
  height: 80px;
  margin: 15px auto;
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protection-icon img {
  width: 110px;
  height: 110px;
  margin-bottom: 5px;
  object-fit: contain;
}

.protection-card h3 {
  font-size: var(--font-card-title);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  width: -webkit-fill-avalaible;
  line-height: 1.3;
  min-height: auto;
  display: flex;
  align-items: flex-end;
}

.protection-card p {
  font-size: 12px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ============================================
   FINANCIAL AREAS - Mobile Base (Bootstrap Grid)
============================================ */
.financial-areas {
  background: var(--bg-gray);
  padding: 40px 0;
}

.financial-areas .section-title {
  margin-bottom: 30px;
}

.financial-card {
  text-align: center;
  max-width: 218px;
  width: 100%;
}

.financial-icon {
  margin: 0 auto 15px;
}

.financial-icon img {
  width: 100%;
    height: 90px;
    margin-bottom: 28px;
    object-fit: contain;
}

.financial-card h3 {
  font-size: var(--font-card-title);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: auto;
}

.financial-card p {
  font-size: 11px;
  max-width: 178px;
  /* text-wrap-style: pretty; */
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent-blue);
  text-decoration: none;
  font-size: var(--font-link);
  font-weight: 600;
}

.learn-more img {
  width: 20px;
  height: 7px;
}

.learn-more:hover {
  text-decoration: underline;
}

/* ============================================
   CONSUMER DEFENSE - Mobile Base (Bootstrap Grid)
============================================ */
.consumer-defense {
  padding: 40px 0;
}

.consumer-defense .section-title {
  margin-bottom: 30px;
}

.defense-card {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.defense-card-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.defense-image {
  width: 100%;
  height: 280px;
  margin: auto;
  object-fit: contain;
  border-radius: 20px;
}

.defense-card-badge {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f9fbff 0%, #dce8ff 100%);
  box-shadow: 0 18px 45px rgba(15, 74, 242, 0.18);
  border: 4px solid var(--bg-light);
}

.defense-card-badge img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.defense-card-content {
  padding: 0 20px;
  text-align: center;
}

.defense-card h3 {
  font-size: var(--font-section-subtitle);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.defense-card p {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* ============================================
   DIGITAL PROTECTION - Mobile Base
============================================ */
.digital-protection {
  padding-top: 0px !important;
  padding: 40px 0;
}

.digital-protection .section-title {
  margin-bottom: 30px;
}

.digital-container {
  border-radius: 30px;
  overflow: hidden;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: auto;
}

.digital-image {
  width: 100%;
  max-width: 280px;
}

.digital-image img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: contain;
}

.digital-cards {
  display: flex;
  flex-direction: column;
  flex-flow: wrap;
  justify-content: center;
  flex: 1;
  gap: 20px;
  width: 100%;
}

.digital-card {
  text-align: left;
  width: 103%;
  background: linear-gradient(180deg, var(--bg-gray) 0%, var(--light-blue) 100%);
  border-radius: 20px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex: auto;
  max-width: 280px;
}

.digital-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.digital-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.digital-card h3 {
  font-size: var(--font-card-title);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.digital-card p {
  font-size: 12px;
  color: #525280;
  line-height: normal;
  flex: 1;
}

.digital-arrow-btn {
  display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: aliceblue;
    box-shadow: -1px 10px 20px rgba(8, 13, 66, 0.15);
    margin-left: auto;
    margin-top: 10px;
}

.digital-arrow-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================
   SUPPORT SECTION - Mobile Base (Bootstrap Grid)
============================================ */
.support-section {
  padding: 40px 0;
  padding-bottom: 0 !important;
}

.support-image {
  width: 100%;
}

.support-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 0;
}

.support-content {
  flex: none;
  width: 100%;
  min-width: auto;
  background: var(--light-blue);
  padding: 30px 25px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-content h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 22px;
}

.support-content h2 em {
  color: var(--accent-blue);
  font-style: italic;
}

.support-content p {
  font-size: var(--font-card-text);
  color: var(--primary-dark);
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; 
  background: var(--white);
  color: var(--primary-dark);
  padding: 10px 25px;
  height: 53px;
  width: 100%;
  max-width: max-content;
  border-radius: 26.5px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.btn-consultation .btn-arrow {
  width: 20px;
  height: 8px;
}

.btn-consultation:hover {
  background: #e0e0e0;
}

/* ============================================
   CTA SECTION - Mobile Base (Bootstrap Grid)
============================================ */
.cta-section {
  text-align: center;
  padding: 40px 0;
}

.cta-text {
  font-size: var(--font-body);
  color: var(--text-dark);
  max-width: 100%;
  margin: 0 auto 30px;
  margin-bottom: 40px !important;
  line-height: normal;
}

.btn-start {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0 40px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 38px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 250px;
}

.btn-start:hover{
  background:#cbe4fa !important;
  color:#000 !important;
}



/* ============================================
   FOOTER - Mobile Base (Bootstrap Grid)
============================================ */
.contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.contact-item span {
  font-size: var(--font-body-sm);
  color: var(--text-gray);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  width: 30px;
  height: 30px;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media(min-width:992px){
  .support-section .container-figma{
    max-width: 560px;
  }
}

/* ============================================
   TABLET ENHANCEMENT (1024px+)
============================================ */

@media (min-width: 1024px) {
  .header {
  }

  .stars{
    margin: 0;
  }

  .mission-image img {
    width: 100%;
    max-width: 100%;
    height: 510px;
    object-fit: contain;
    margin-top: -35px;
  }



  
  .logo img {
    height: 45px;
  }
  
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .desktop-only {
    display: flex;
  }
  
  .contact-btn {
    padding: 10px 20px;
    font-size: var(--font-button-lg);
  }

  .support-section .container-figma{
    max-width: 1560px;
  }
  
  .hero {
    padding: 120px 50px 80px;
    min-height: 105vh;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: left;
    margin-left: 30px;
    margin-top: -148px;
    background: transparent;
    padding: 0px;
    border-radius: 0px;
    backdrop-filter: none;
  }
  
  .hero-title {
    font-size: 56px;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .hero-description {
    font-size: var(--font-body-lg);
    margin-bottom: 60px;
    max-width: 500px;
  }
  
  .hero-buttons {
    gap:15px;
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .btn {
    width: auto;
    height: 50px;
    font-size: var(--font-button);
    max-width: none;
  }
  
  .testimonials {
    padding: 50px 0;
  }
  
  .testimonial {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    max-width: none;
  }
  .testimonial .testimonial-text{
    font-size: 10px;
  }

  .testimonial .testimonial-name{
    font-size: 17px;
  }

  .row .col-12:nth-child(1) .testimonial-text {
  max-width: 185px;
}

.row .col-12:nth-child(2) .testimonial-text {
  font-size: 10px;
  max-width: 179px;
}

.row .col-12:nth-child(3) .testimonial-text {
  max-width: 190px;
}

.row .col-12:nth-child(4) .testimonial-text {
  max-width: 187px;
}

  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }
  
  .testimonial-content {
    max-width: 200px;
  }

  .protection-card{ 
    align-items: flex-start;
  }
  
  .mission {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
  }
  
  .mission-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
  }
  
  .mission-text {
    font-size: var(--font-body-lg);
  }
  
  .protection-areas {
    padding: 60px 0;
  }
  
  .protection-card {
    padding: 30px 34px;
    max-width: 267px;
    text-align: left;
    height: 360px;
    margin: none;
  }
  
  .protection-icon {
    margin: auto;
    margin-bottom: 5px;
  }

  .protection-card-container{
    margin: auto;
  }
  
  .protection-card h3 {
    width: -webkit-fill-avalaible;
    font-size: var(--font-section-subtitle);
    min-height: 50px;
  }
  
  .financial-areas {
    padding: 60px 0;
  }
  
  .financial-card {
    text-align: left;
  }
  
  .financial-icon {
    margin: auto;
  }
  
  .financial-card h3 {
    font-size: var(--font-section-subtitle);
  }
  
  .learn-more {
    justify-content: flex-start;
  }
  
  .consumer-defense {
    padding: 60px 0;
  }
  
  .defense-image {
    height: 202px;

  }

  
  .defense-card-badge {
    width: 80px;
    height: 80px;
    bottom: -35px;
  }
  
  .defense-card-badge img {
    width: 42px;
    height: 42px;
  }
  
  .defense-card-media {
    margin-bottom: 55px;
  } 
  
  .defense-card h3 {
    font-size: 22px;
  }
  
  .defense-card p {
    font-size: var(--font-body-lg);
  }
  
  .defense-card-content {
    text-align: left;
    padding: 0 30px;
  }
  
  .digital-protection {
    padding: 60px 0;
  }
  
  .digital-container {
    flex-direction: row;
    align-items: center;
    padding: 40px 30px;
    max-width:922px ;
  }
  
  .digital-cards {
    flex-direction: row;
    flex: 1;
  }
  
  .digital-card {
    flex: auto;
    width: 100%;
    max-width: 276px;
    height: 286px;
  }
  
  .support-section {
    padding: 60px 0;
  }
  
  .support-image img {
    height: 522px;
    border-radius: 0;
  }
  
  .support-content {
    padding: 40px;
    border-radius: 40px;
  }
  
  .support-content h2 {
    font-size: var(--font-section-title);
    line-height: 1.2;
    max-width: 356px;
  }
  
  .btn-consultation {
    width: fit-content;
    height: 53px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-text {
    font-size: var(--font-body-lg);
    max-width: 800px;
  }
  
  .btn-start {
    width: auto;
    height: 55px;
    padding: 0 50px;
  }

  .protection-card-container{
    max-width: 972px;
  }

  

  .contact-item {
    justify-content: flex-start;
  }
}

@media(min-width:1116px){
  .financial-card{
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  .financial-card p{
    flex: 1;
  }

  .learn-more{
    flex: 1;
  }

  .card-financial-debt-defense .learn-more{
    margin-top: 30px;
  }
}

/* ============================================
   DESKTOP ENHANCEMENT (1200px+)
============================================ */
@media (min-width: 1200px) {
  .header {
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-menu {
    gap: 50px;
  }
  
  .nav-menu a {
    font-size: var(--font-body-lg);
  }
  
  .contact-btn {
    padding: 12px 24px;
    font-size: var(--font-button);
  }
  
  .hero {
    padding: 120px 50px 80px;
    min-height: 105vh;
  }
  
  .hero-content {
    max-width: 900px;
  }
  
  .hero-title {
    font-size: var(--font-hero-title);
    line-height: 0.95;
  }
  
  .hero-subtitle {
    font-size: var(--font-hero-subtitle);
    margin-bottom: 50px;
  }
  
  .hero-description {
    font-size: var(--font-hero-description);
    margin-bottom: 80px;
    max-width: 561px;
  }
  
  .hero-floating-cards {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }

  .hero-content{
    margin-left: 35px;
  }
  
  .testimonials {
    padding: 50px 0;
  }
  
  .testimonial-avatar {
    width: 90px;
    height: 91px;
  }
  
  .testimonial-content {
    max-width: 220px;
  }

  .defense-image {
    height: 350px;
  }
  
  .mission {
    margin-top: 50px;
    padding: 80px 0;
  }

  .mission-content{
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
  }
  
  .mission-image {
    order: 0;
  }
  
  .section-title {
    font-size: var(--font-section-title);
    line-height: 1.3;
    margin-bottom: 30px;
  }
  
  .mission-subtitle {
    font-size: 24px;
    margin-bottom: 50px;
  }
  
  .mission-text {
    font-size: 16px;
  }

  .mission-image img{
    margin-top: -80px;
  }
  
  .protection-areas {
    margin-top: 20px;
    padding: 80px 0;
  }

  .protection-areas .container-figma .protection-card-container{
    gap: 30px !important;
  }
  
  .protection-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 0px;
  }
  
  .protection-card h3 {
    width: -webkit-fill-avalaible;
    font-size: 17px;
    min-height: 60px;
  }
  
  .financial-areas {
    padding: 80px 0;
  }
  
 
  
  .financial-card h3 {
    font-size: 22px;
  }
  
  .consumer-defense {
    padding: 80px 0;
  }
  
  .defense-image {
    height: max-content;
    border-radius: 28px;
  }
  
  .defense-card-media {
    border-radius: 28px;
    margin-bottom: 20px;
  }
  
  .defense-card-badge {
    width: 90px;
    height: 90px;
    bottom: -40px;
    border-width: 5px;
  }
  
  .defense-card-badge img {
    width: 48px;
    height: 48px;
  }
  
  .defense-card-content {
    padding: 0 40px;
    max-width: 404px;
  }
  
 
  
  
  
  .digital-protection {
    padding: 80px 0;
  }
  
  .digital-container {
    border-radius: 50px;
    min-height: 457px;
    padding: 40px 70px 40px 70px;
    gap: 30px;
    max-width: unset;
  }
  
  .digital-image {
    max-width: 363px;
  }
  
  .digital-image img {
    width: 112%;
    height: 336px;
    object-fit: contain;
    margin-top: -45px;
    margin-left: -4px;
    max-width: 112%;
    min-width: 259px;
  }
  
  .digital-cards {
    gap: 30px;
    padding: 0;
    justify-content: center;
  }
  
  .digital-card {
    flex: auto;
    width: 100%;
    max-width: 272px;
    text-wrap-style: pretty;
  }
  
  .digital-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
 
  
  .support-section {
    padding: 80px 0;
    padding-top: 0px !important;
  }
  
  .support-image img {
    height: 400px;
    border-radius: 0;
    margin-left: 0;
    display: flex;
    width: auto;
  }
  
  .support-content {
    padding: 45px 44px;
    border-radius: 40px;
    margin-top: 61px;
    height: 342px;
  }
  
  .support-content h2 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 24px;
  }
  
  .support-content p {
    font-size: 12px;
    margin-bottom: 30px;
    max-width: 403px;
  }
  
  .btn-consultation {
    height: 53px;
    width: max-content;
    font-size: var(--font-button);
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-text {
    max-width: 1028px;
    margin-bottom: 40px;
  }
  
  .btn-start {
    width: 200px;
  }

  .contact-item span {
    font-size: var(--font-rights-list);
  }
}


/* ============================================
   LARGE DESKTOP (1400px+) - Uses Bootstrap xxl breakpoint
============================================ */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 78px;
    line-height: 0.95;
  }

  .protection-card{
    max-width: 264px;
  }

  .protection-card-container{
    flex-flow: nowrap !important;

  }
  
  .hero-subtitle {
    font-size: 46px;
    margin-bottom: 60px;
  }
  
  .hero-description {
    margin-bottom: 100px;
  }

  .container-figma {
        padding-left: 100px;
        padding-right: 100px;
    }
 
  .testimonials .container-figma {
        padding-left: 110px;
        padding-right: 110px;
    }
  

  .protection-card-container{
    max-width: unset;
  }
  .protection-areas {
    padding: 80px 0;
  }
  
  .financial-areas {
    padding: 80px 0;
  }
  
  .consumer-defense {
    padding: 80px 0;
  }
  
  .digital-protection {
    padding: 80px 0;
  }
  
  .support-section {
    padding: 80px 0;
  }
  
  .cta-section {
    padding: 60px 0;
  }
}

@media(min-width:1560px){
  .protection-areas .container-figma .protection-card-container{
    gap: 21px !important;
  }
}

/* ============================================
   DIGITAL PROTECTION - Equal Height Cards Fix
============================================ */


@media (max-width: 1024px) {
  .digital-container {
    border-radius: 30px;
    padding: 32px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    max-width: 405px;
  }

  .digital-cards {
    display: contents;
  }

  .digital-card {
    background: linear-gradient(180deg, #F5F8FF 0%, #E8EEFF 100%);
    border-radius: 20px;
    padding: 17px 11px;
    display: flex;
    flex-direction: column;
    max-width: 164px;
    min-height: 0;
    margin: auto;
    height: 182px;
    padding-bottom: 11px;
  }

  /* Image card - top left */
  .digital-card:first-child {
    grid-column: 1;
    grid-row: 1;
    background: transparent !important;
    padding: 0 !important;
    max-width: 184px !important;
  }

  .digital-card:first-child .digital-image {
    width: 107%;
    overflow: unset;
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .digital-card:first-child .digital-image img {
              width: 100%;
        height: 207px;
        object-fit: contain;
        border-radius: 20px;
        margin: 0;
        margin-top: -27px;
        overflow: visible;
        margin-left: 2px;
  }

  /* Data Privacy card - top right */
  .digital-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  /* E-Commerce card - bottom left */
  .digital-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  /* Identity Theft card - bottom right */
  .digital-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .digital-card p {
    flex: 1;
  }

  .digital-arrow-btn {
    margin-top: auto;
    width: 22px;
    height: 22px;
  }

  .digital-arrow-btn svg{
    width: 10px;
  }

  .digital-card h3{
    font-size: 11px;
    margin-bottom: 11px;
  }

  .digital-card p {
    font-size: 8px;
  }

  .digital-icon img{
    width: 36px;
    height: 36px;
  }

  .digital-icon{
    width: 36px;
    height: 36px;
    margin-bottom: 15px;
  }

  .digital-card p{
    margin: 0;
  }

  .cta-section .container-figma{
        max-width: 560px;
  }

  .support-section .container-figma{
        max-width: 560px;
  }

}



/* ============================================
   VERY SMALL SCREENS - Single Column (<420px)
============================================ */
@media (max-width: 420px) {
  .digital-card:first-child .digital-image{
    margin: auto;
  }

  .digital-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
    padding: 20px 15px;
  }

  .digital-card:first-child,
  .digital-card:nth-child(2),
  .digital-card:nth-child(3),
  .digital-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    max-width: 242px;
    margin: auto;
  }

  .digital-card:first-child{
        background: transparent !important;
    padding: 0 !important;
    justify-content: flex-end !important;
    max-width: unset !important;
  }

  .digital-card {
    min-height: auto;
    height: auto;
    padding: 18px 15px;
  }

  .digital-card:first-child .digital-image img {
    height: 302px;
    object-fit: contain;
    margin-left: 3px;
  }

  .digital-card h3 {
    font-size: 15px;
  }

  .digital-card p {
    font-size: 12px;
  }
}

@media(max-width:1024px){
  .financial-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 218px;
      width: 100%;
  }

  .digital-protection .section-title{
      max-width: 373px;
     margin: 20px auto;
  }
}