/*
  NOTA: Para usar la fuente Inter, agrega esta línea en el <head> de tu index.php
  ANTES del link a este CSS:

  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet">
*/

:root{
  --primary:#0094ff;
  --primary-dark:#0b3b66;
  --secondary:#111827;
  --text:#1f2937;
  --muted:#6b7280;
  --white:#ffffff;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:18px;
  --page-width:1240px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
  overflow-x:hidden;
}

main{
  max-width: calc(var(--page-width) + 40px);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 32px;
}

main > *{
  margin-bottom: 20px;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section{
  position:relative;
}

.section-spaced{
  padding:56px 0;
}

.center{
  text-align:center;
}

.white-text{
  color:#fff;
}

/* =========================
   HEADER
   ========================= */

   .header{
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0 0;
    background: transparent;
    margin-bottom: 12px;
  }

  .header-inner{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 18px;
  }

  .brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--secondary);
  }

  .brand img{
    width: 120px;
    height: auto;
    flex-shrink: 0;
  }

  .brand-copy{
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }

  .brand-copy strong{
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
  }

  .header-nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
  }

  .header-nav a{
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
  }

  .header-nav a:hover{
    opacity: .72;
  }

  .header-nav a.active{
    color: var(--primary);
    font-weight: 700;
  }

  .header-contact{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .header-label{
    display: block;
    color: var(--muted);
    font-size: 13px;
  }

  .header-phone{
    display: block;
    color: var(--secondary);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 800;
    text-decoration: none;
  }

/* Tablet */
@media (min-width: 768px){
  .header{
    padding: 12px 0 0;
  }

  .header-inner{
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
  }

  .brand{
    gap: 12px;
  }

  .brand img{
    width: 160px;
  }

  .brand-copy strong{
    font-size: 15px;
  }

  .header-nav{
    justify-content: center;
    gap: 12px 18px;
  }

  .header-nav a{
    font-size: 15px;
  }

  .header-contact{
    align-items: flex-end;
    text-align: right;
  }

  .header-label{
    font-size: 14px;
  }

  .header-phone{
    font-size: 21px;
  }
}

/* Desktop */
@media (min-width: 1024px){
  .header-inner{
    gap: 24px;
    padding: 18px 20px;
  }

  .brand img{
    width: 180px;
  }

  .header-nav{
    gap: 18px 22px;
  }

  .header-phone{
    font-size: 24px;
  }
}

/* =========================
   HERO / PARALLAX
   ========================= */

   .custom-parallax{
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 22px;
  }

  .custom-parallax > img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .custom-parallax::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      to bottom,
      rgba(0,0,0,.72),
      rgba(0,0,0,.58)
    );
    z-index:1;
  }

  .custom-parallax .section{
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 72px 0;
  }

  .hero-parallax{
    min-height: 640px;
  }

  .hero-section{
    display:flex;
    align-items:center;
  }

  .hero-stack{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    width:100%;
  }

  .hero-content{
    max-width:920px;
    width:100%;
    margin:0 auto;
  }

  .hero-content-below{
    text-align:center;
  }

  .hero-title{
    font-size:28px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:16px;
  }

  .hero-description{
    max-width:760px;
    font-size:16px;
    line-height:1.65;
    color:rgba(255,255,255,.92);
    margin:0 auto 14px;
  }

  .hero-description:last-of-type{
    margin-bottom:22px;
  }

  .hero-actions{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:center;
    gap:12px;
    width:100%;
    max-width:320px;
    margin:0 auto;
  }

  .cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:14px 18px;
    border-radius:14px;
    font-weight:800;
    transition:.25s ease;
  }

  .cta-btn:hover{
    transform:translateY(-2px);
  }

  .cta-btn-primary{
    background:var(--primary);
    color:#fff;
    box-shadow:var(--shadow);
  }

  .cta-btn-secondary{
    background:#f3c245;
    color:#111;
  }

  @media (min-width: 768px){
    .container{
      padding:0 20px;
    }

    .hero-parallax{
      min-height:700px;
    }

    .hero-title{
      font-size:36px;
    }

    .hero-description{
      font-size:17px;
      margin-bottom:16px;
    }

    .hero-description:last-of-type{
      margin-bottom:26px;
    }

    .hero-actions{
      flex-direction:row;
      align-items:center;
      width:auto;
      max-width:none;
    }

    .cta-btn{
      width:auto;
      min-height:52px;
      padding:14px 24px;
    }
  }

  @media (min-width: 1024px){
    .hero-parallax{
      min-height:760px;
    }

    .hero-title{
      font-size:40px;
    }

    .hero-description{
      font-size:18px;
    }
  }

  .custom-parallax{
    margin: 0 0 16px;
    border-radius: 22px;
  }

  .nav-toggle{
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--secondary);
  }

  @media (max-width: 767px){
    .nav-toggle{
      display: block;
    }

    .header-nav{
      display: none !important;
    }

    .header-contact{
      display: flex;
      align-items: flex-start;
      grid-column: 1 / -1;
    }

    .header-nav.is-open{
      display: flex !important;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      width: 100%;
      grid-column: 1 / -1;
      padding-top: 6px;
    }
  }

  /* =========================
   VALOR
   ========================= */

   .valor-logos .hero-logos-card-title{
    text-align: center;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.35;
    color: var(--primary-dark);
    font-weight: 700;
  }

  .section-title{
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-dark);
    font-weight: 800;
  }

  .section-intro{
    max-width: 860px;
    margin: 0 auto 32px;
    color: var(--muted);
    font-size: 16px;
  }

  .cards-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .info-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,.04);
  }

  .card-icon{
    font-size: 32px;
    margin-bottom: 14px;
  }

  .info-card h3{
    font-size: 20px;
    line-height: 1.25;
    color: var(--primary-dark);
    margin-bottom: 10px;
  }

  .info-card p{
    color: var(--muted);
    font-size: 15px;
  }

  .valor-logos{
    max-width: 640px;
    margin: 0 auto 40px;
  }

  .valor-logos.hero-logos-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 26px 28px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
  }

  .valor-logos .hero-logos-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .valor-logos .hero-logo-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 6px;
  }

  .valor-logos .hero-logo-item{
    background: transparent;
  }

  .valor-logos .hero-logo-item img{
    max-height: 34px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .valor-logos img[src*="inmuebles24"]{
    max-height: 60px;
  }

  /* =========================
   PARALLAX DIFUSIÓN
   ========================= */

   .parallax-title{
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
    text-align: center;
  }

  .texto-fijo{
    max-width: 760px;
    margin: 0 auto 14px;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
    color: rgba(255,255,255,.92);
  }

  .texto-fijo:last-of-type{
    margin-bottom: 0;
  }

  .custom-parallax .container{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .parallax-title{
    max-width: 820px;
    margin: 0 auto 16px;
  }

  /* =========================
   PROCESO
   ========================= */

   .steps-row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .step-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,.04);
  }

  .step-number{
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .step-card h3{
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--primary-dark);
  }

  .step-card p{
    font-size: 15px;
    color: var(--muted);
  }

  @media (min-width: 768px){
    .steps-row{
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px){
    .steps-row{
      grid-template-columns: repeat(3, 1fr);
    }
  }

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

  /* =========================
   PARALLAX CTA FINAL
   ========================= */

   .final-cta-title{
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
    color: #fff;
  }

  .cta-text{
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,.92);
  }

  @media (min-width: 768px){
    .final-cta-title{
      font-size: 32px;
    }

    .cta-text{
      font-size: 17px;
    }
  }

  @media (min-width: 1024px){
    .final-cta-title{
      font-size: 36px;
    }

    .cta-text{
      font-size: 18px;
    }
  }

  /* =========================
   FOOTER
   ========================= */

  /* =========================
   FOOTER
   ========================= */

   .footer{
    background: var(--secondary);
    color: rgba(255,255,255,.9);
    padding: 32px 0;
    margin-top: 40px;
  }

  .footer-inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    align-items: start;
  }

  .footer-col{
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.9);
  }

  .footer-col strong{
    display: inline-block;
    margin-bottom: 4px;
    color: #fff;
  }

  .footer a{
    color: rgba(255,255,255,.9);
    text-decoration: none;
  }

  .footer a:hover{
    text-decoration: underline;
  }

  .footer-phone span{
    display: inline-block;
    margin-bottom: 4px;
    font-size: 13px;
    color: rgba(255,255,255,.72);
  }

  .footer-phone a{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
  }

/* Tablet */
@media (min-width: 768px){
  .footer{
    padding: 36px 0;
  }

  .footer-inner{
    gap: 24px 20px;
  }
}

/* Desktop */
@media (min-width: 1024px){
  .footer{
    padding: 40px 0;
  }

  .footer-inner{
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* FAQ PAGE */
.faq-page {
  padding: 0 0 4rem;
}

.faq-hero {
  padding: 2.5rem 0 1.5rem;
}

.faq-hero__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.faq-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-title {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}

.faq-intro {
  margin: 1rem auto 0;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.faq-section {
  padding: 1rem 0 0;
}

.faq-grid {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: #d1d5db;
}
.faq-item:hover,
.tip-item:hover{
  border-color:#d1d5db;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.faq-item[open] {
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.1rem 3rem 1.1rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: #111827;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 600;
  color: #6b7280;
}

.faq-item[open] .faq-question::after {
  content: "–";
}

.faq-answer {
  padding: 0 1rem 1rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4b5563;
}

.faq-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 22px;
  background: #f9fafb;
  text-align: center;
}

.faq-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.25;
  color: #111827;
}

.faq-cta p {
  margin: 0 0 1.25rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Tablet */
@media (min-width: 768px) {
  .faq-hero {
    padding: 4rem 0 2rem;
  }

  .faq-title {
    font-size: 2.7rem;
  }

  .faq-intro {
    font-size: 1.08rem;
  }

  .faq-grid {
    gap: 1rem;
  }

  .faq-question {
    padding: 1.25rem 3.5rem 1.25rem 1.25rem;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  .faq-cta {
    margin-top: 2.5rem;
    padding: 2rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .faq-page {
    padding-bottom: 5rem;
  }

  .faq-title {
    font-size: 3.2rem;
  }

  .faq-grid {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-cta {
    max-width: 900px;
    margin: 3rem auto 0;
  }
}

/* CONSEJOS PAGE */
.tips-page {
  padding: 0 0 4rem;
}

.tips-hero {
  padding: 2.5rem 0 1.5rem;
}

.tips-hero__content {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.tips-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tips-title {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}

.tips-intro {
  margin: 1rem auto 0;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.tips-section {
  padding: 1rem 0 0;
}

.tips-list {
  display: grid;
  gap: 0.9rem;
}

.tip-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tip-item:hover {
  border-color: #d1d5db;
}

.tip-item[open] {
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.tip-question {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 3rem 1rem 1rem;
}

.tip-question::-webkit-details-marker {
  display: none;
}

.tip-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 600;
  color: #6b7280;
}

.tip-item[open] .tip-question::after {
  content: "–";
}

.tip-question-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.tip-question-text {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  color: #111827;
}

.tip-answer {
  padding: 0 1rem 1rem 1rem;
}

.tip-answer p {
  margin: 0;
  padding-left: calc(34px + 0.85rem);
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
}

.tips-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 22px;
  background: #f9fafb;
  text-align: center;
}

.tips-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.25;
  color: #111827;
}

.tips-cta p {
  margin: 0 0 1.25rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Tablet */
@media (min-width: 768px) {
  .tips-hero {
    padding: 4rem 0 2rem;
  }

  .tips-title {
    font-size: 2.7rem;
  }

  .tips-intro {
    font-size: 1.08rem;
  }

  .tips-list {
    gap: 1rem;
  }

  .tip-question {
    padding: 1.15rem 3.5rem 1.15rem 1.15rem;
  }

  .tip-question-text {
    font-size: 1.05rem;
  }

  .tip-answer {
    padding: 0 1.15rem 1.15rem 1.15rem;
  }

  .tips-cta {
    margin-top: 2.5rem;
    padding: 2rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .tips-page {
    padding-bottom: 5rem;
  }

  .tips-title {
    font-size: 3.2rem;
  }

  .tips-list {
    max-width: 900px;
    margin: 0 auto;
  }

  .tips-cta {
    max-width: 900px;
    margin: 3rem auto 0;
  }
}

/* =========================
   3VOLUTION VENTA
   ========================= */

   .section-3volution{
    padding: 20px 0 36px;
  }

  .threevolution-card{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px 20px;
    border-radius: 22px;
    background:
    radial-gradient(circle at top right, rgba(0,148,255,.18), transparent 34%),
    linear-gradient(135deg, #0b3b66 0%, #111827 100%);
    color: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .threevolution-copy{
    max-width: 720px;
  }

  .threevolution-eyebrow{
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .threevolution-copy h2{
    max-width: 760px;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
  }

  .threevolution-copy p{
    max-width: 680px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,.86);
  }

  .threevolution-actions{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .threevolution-note{
    color: rgba(255,255,255,.72);
    font-size: 14px;
  }

  .threevolution-points{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .threevolution-point{
    padding: 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
  }

  .threevolution-point strong{
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 15px;
  }

  .threevolution-point span{
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.45;
  }

  @media (min-width: 768px){
    .section-3volution{
      padding: 24px 0 44px;
    }

    .threevolution-card{
      padding: 38px 34px;
    }

    .threevolution-copy h2{
      font-size: 34px;
    }

    .threevolution-actions{
      flex-direction: row;
      align-items: center;
    }

    .threevolution-points{
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 1024px){
    .threevolution-card{
      grid-template-columns: 1.25fr .75fr;
      padding: 44px 42px;
    }

    .threevolution-copy h2{
      font-size: 38px;
    }

    .threevolution-points{
      grid-template-columns: 1fr;
    }
  }

  .tip-bullets {
    margin: 1rem 0;
  }

  .tip-bullets p {
    margin: 0 0 0.6rem 0;
    line-height: 1.8;
  }

/* =========================
   HUB CONSEJOS / FAQ - MEJORA MOBILE FIRST
   ========================= */

   .faq-page .hero{
    padding: 28px 0 20px;
  }

  .faq-page .hero .container,
  .faq-page .content > .container{
    padding-left: 18px;
    padding-right: 18px;
  }

  .breadcrumbs{
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--muted);
  }

  .breadcrumbs a{
    color: var(--primary-dark);
    font-weight: 700;
  }

  .faq-page h1{
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--secondary);
    font-weight: 800;
  }

  .faq-page .lead{
    max-width: 860px;
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
  }

  .faq-page .hero .btn,
  .faq-page .hero .btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    text-align: center;
    box-shadow: var(--shadow);
  }

  .faq-section{
    padding: 28px 0 0;
  }

  .faq-section > .container{
    padding-left: 0;
    padding-right: 0;
  }

  .faq-section h2{
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 1.25;
    color: var(--primary-dark);
    font-weight: 800;
  }

  .faq-grid{
    gap: 14px;
  }

  .faq-item{
    border-radius: 18px;
  }

  .faq-question{
    padding: 18px 48px 18px 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .faq-answer{
    padding: 0 18px 18px;
  }

  .faq-answer p{
    margin-bottom: 12px;
    font-size: 15.5px;
    line-height: 1.75;
  }

  .faq-answer a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f3f8ff;
    color: var(--primary-dark);
    font-weight: 800;
  }

  .faq-cta{
    margin-top: 34px;
    padding: 24px 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
    radial-gradient(circle at top right, rgba(0,148,255,.12), transparent 34%),
    #f9fafb;
    text-align: left;
  }

  .faq-cta h2{
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.25;
    color: var(--secondary);
  }

  .faq-cta p{
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
  }

  .faq-cta .cta-btn{
    width: 100%;
    margin-top: 10px;
    min-height: 54px;
    font-size: 16px;
    border-radius: 14px;
  }

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

  .faq-cta .cta-btn-secondary{
    background: var(--primary-dark);
    color: #fff;
  }

/* Tablet */
@media (min-width: 768px){

  .faq-page .hero{
    padding: 44px 0 28px;
  }

  .faq-page h1{
    font-size: 42px;
  }

  .faq-page .lead{
    font-size: 17px;
  }

  .faq-page .hero .btn,
  .faq-page .hero .btn-primary{
    width: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .faq-section{
    padding-top: 36px;
  }

  .faq-section h2{
    font-size: 28px;
    text-align: center;
  }

  .faq-cta{
    padding: 34px;
    text-align: center;
  }

  .faq-cta .cta-btn{
    width: auto;
    min-width: 190px;
    margin: 10px 6px 0;
  }
}

/* Desktop */
@media (min-width: 1024px){

  .faq-page .hero{
    padding: 56px 0 34px;
  }

  .faq-page h1{
    max-width: 900px;
    font-size: 48px;
  }

  .faq-page .lead{
    max-width: 900px;
  }

  .faq-grid{
    max-width: 960px;
  }

  .faq-cta{
    max-width: 960px;
  }
}

/* =========================
   FAQ RELATED
   ========================= */

   .faq-related{
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 24px 20px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
    radial-gradient(circle at top right, rgba(11, 59, 102, .08), transparent 35%),
    #f9fafb;
  }

  .faq-related h2{
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 800;
  }

  .faq-related p{
    margin-bottom: 18px;
    color: #4b5563;
    line-height: 1.75;
  }

  .faq-related .cta-btn{
    width: 100%;
  }

/* Tablet */
@media (min-width:768px){

  .faq-related{
    padding: 30px;
  }

  .faq-related h2{
    font-size: 1.7rem;
  }

  .faq-related .cta-btn{
    width: auto;
    min-width: 220px;
  }

}

/* Desktop */
@media (min-width:1024px){

  .faq-related{
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

}