/*!
 * LegalFamily — Home page styles.
 * Extracted from Elementor custom-HTML widget. Organized by partial section.
 */


/* ==========================================================================
   Hero
   ========================================================================== */

    :root {
      --lf-green: #105050;
      --lf-orange: #E67E22;
      --lf-bg: #EEE8DE;
      --lf-text: #333333;
      --lf-muted: #555555;
      --font-heading: "Anuphan", sans-serif;
      --font-body: "Albert Sans", sans-serif;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--lf-orange);
      outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {

      .hero-legalfamily-right,
      .hero-card,
      .partners-logos {
        animation: none !important;
      }
    }

    body {
      font-family: var(--font-body);
      font-weight: 400;
      color: var(--lf-text);
      line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .hero-title,
    .pack-title,
    .testimonials-title,
    .why-legalfamily-title,
    .how-it-works-title,
    .faq-title {
      font-family: var(--font-heading);
      font-weight: 700;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .hero-legalfamily {
      background: #fff;
      padding: 28px clamp(20px, 4vw, 40px) 36px;
      position: relative;
      overflow: hidden;
    }

    .hero-background-pattern {
      display: none;
    }

    .hero-legalfamily-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 1;
    }


    .hero-certifications-block {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 12px;
      margin-top: 0;
      justify-content: flex-start;
      max-width: 100%;
    }

    .hero-cert-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0;
      background: transparent;
      border: none;
      border-radius: 0;
      font-size: 12px;
      font-weight: 600;
      color: #777;
      box-shadow: none;
    }

    .hero-cert-icon {
      width: 16px;
      height: 16px;
      color: #777;
      flex-shrink: 0;
    }

    .hero-title {
      font-size: 46px !important;
      line-height: 1.16;
      color: var(--lf-green);
      margin: 0 0 16px;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .hero-title-highlight {
      color: var(--lf-orange);
      position: relative;
      display: inline-block;
    }

    .hero-sub {
      font-size: 19px;
      line-height: 1.55;
      color: var(--lf-muted);
      margin: 0 0 24px;
      max-width: 540px;
    }

    .hero-sub-highlight {
      color: var(--lf-orange);
      font-weight: 700;
    }

    .hero-trust-signals {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px 14px;
      margin-bottom: 22px;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 12px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 12px;
      border: 1px solid rgba(16, 80, 80, 0.1);
      transition: all 0.3s ease;
    }

    .hero-trust-item:hover {
      background: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .hero-trust-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--lf-green), #0d3f3f);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-trust-icon svg {
      width: 20px;
      height: 20px;
      color: #fff;
    }

    .hero-trust-content {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .hero-trust-content strong {
      font-size: 16px;
      font-weight: 800;
      color: var(--lf-green);
      line-height: 1;
    }

    .hero-trust-content span {
      font-size: 12px;
      color: var(--lf-muted);
      font-weight: 600;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 12px;
      margin-bottom: 14px;
    }

    .hero-primary-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--lf-green), #0d3f3f);
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(16, 80, 80, 0.25);
      transition: all 0.3s ease;
    }

    .hero-primary-cta svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .hero-primary-cta:hover {
      background: linear-gradient(135deg, var(--lf-orange), #D35400);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
    }

    .hero-primary-cta:hover svg {
      transform: translateX(4px);
    }

    .hero-secondary-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 12px;
      background: #fff;
      color: var(--lf-green);
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      border: 2px solid var(--lf-green);
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .hero-secondary-cta svg {
      width: 18px;
      height: 18px;
    }

    .hero-secondary-cta:hover {
      background: var(--lf-green);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(16, 80, 80, 0.2);
    }


    .hero-legalfamily-right {
      position: relative;
      height: 430px;
      max-width: 100%;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .hero-cards-stack {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-card {
      position: absolute;
      width: 280px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      transition: all 0.4s ease;
      pointer-events: none;
      user-select: none;
    }

    .hero-card-1 {
      top: 0;
      left: 0;
      z-index: 3;
      animation: float 6s ease-in-out infinite;
    }

    .hero-card-2 {
      top: 64px;
      right: 0;
      z-index: 2;
      animation: float 7s ease-in-out infinite 1s;
    }

    .hero-card-3 {
      bottom: 0;
      left: 24px;
      z-index: 1;
      animation: float 8s ease-in-out infinite 2s;
    }

    .hero-card-figure {
      position: relative;
      overflow: hidden;
    }

    .hero-card-image {
      width: 100%;
      height: 130px;
      object-fit: cover;
      display: block;
    }

    .hero-card-body {
      padding: 12px 14px 14px;
    }

    .hero-card-tag {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 700;
      color: #fff;
      background: var(--lf-green);
      padding: 4px 10px;
      border-radius: 6px;
      margin: 0 0 12px 0;
    }

    .hero-card-title {
      font-size: 14px;
      font-weight: 700;
      color: #222;
      line-height: 1.35;
      margin: 0 0 10px 0;
      min-height: 38px;
    }

    .hero-card-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .hero-card-feature {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--lf-green);
      font-weight: 600;
      padding: 6px 10px;
      background: rgba(16, 80, 80, 0.08);
      border-radius: 8px;
    }

    .hero-card-feature svg {
      width: 14px;
      height: 14px;
      color: var(--lf-green);
      flex-shrink: 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-legalfamily-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .hero-legalfamily-right {
        height: 360px;
        order: 2;
      }

      .hero-legalfamily-left {
        order: 1;
      }

      .hero-title {
        font-size: 38px !important;
      }

      .hero-sub {
        font-size: 18px;
        max-width: 100%;
      }

      .hero-card {
        width: 252px;
      }

      .hero-card-image {
        height: 118px;
      }

      .hero-card-2 {
        top: 52px;
      }
    }

    @media (max-width: 768px) {
      .hero-legalfamily {
        padding: 48px 20px 36px;
      }

      .hero-legalfamily-left {
        text-align: center;
      }

      .hero-certifications-block {
        justify-content: center;
        gap: 10px;
      }

      .hero-cert-item {
        font-size: 12px;
        padding: 0;
      }

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

      .hero-sub {
        font-size: 17px;
      }

      .hero-trust-signals {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .hero-primary-cta,
      .hero-secondary-cta {
        width: auto;
        max-width: 100%;
        min-width: 280px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
      }

      .hero-primary-cta svg,
      .hero-secondary-cta svg {
        width: 18px;
        height: 18px;
      }

      .hero-certifications-block {
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }

      .hero-legalfamily-right {
        display: none;
      }
    }

    @media (max-width: 480px) {

      .hero-primary-cta,
      .hero-secondary-cta {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 260px;
      }

      .hero-primary-cta svg,
      .hero-secondary-cta svg {
        width: 16px;
        height: 16px;
      }

      .hero-ctas {
        gap: 10px;
      }
    }

/* ==========================================================================
   Formations
   ========================================================================== */

    :root {
      --brand: #105050;
      --accent: #EB6328;
      --pill: #0d3f3f;
    }

    .formations-section {
      padding: 40px 20px;
      background: #f8f9fa;
      position: relative;
    }

    .formations-section > h2 {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .formations-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(16, 80, 80, 0.1), transparent);
    }

    .formation-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1280px;
      margin: 0 auto;
      padding: 16px clamp(0px, 1vw, 8px) 20px;
      align-items: stretch;
      grid-auto-rows: 1fr;
    }

    .formation-card {
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 6px rgba(0, 0, 0, .05);
      transition: .2s ease;
      height: 100%;
      cursor: pointer
    }

    .formation-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, .08)
    }

    .figure {
      display: block
    }

    .formation-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: transform .25s ease
    }

    .formation-card:hover .formation-image {
      transform: scale(1.03)
    }

    .card-content {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 14px 16px 18px;
      flex: 1
    }

    .badge-avocat {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--pill);
      color: #fff;
      border-radius: 999px;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: .04em;
      padding: 6px 10px;
      margin-bottom: 6px;
      white-space: nowrap;
      width: 50%
    }

    .badge-avocat .cam {
      width: 14px;
      height: 14px;
      color: #fff
    }

    .title {
      font-size: 16px;
      font-weight: 800;
      color: #222;
      line-height: 1.34;
      margin: 0;
      text-decoration: none;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 44px
    }

    .title:hover {
      color: var(--accent)
    }

    .trainer {
      display: inline-block;
      font-weight: 600;
      font-size: 12px;
      color: #6b7280;
      margin-left: 6px;
      white-space: nowrap
    }

    .meta-short {
      font-size: 12.5px;
      color: var(--brand);
      font-weight: 600;
      margin: 0
    }

    .cta-visible {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--brand);
      color: #fff !important;
      text-decoration: none;
      padding: 11px 14px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 3px 0 rgba(0, 0, 0, .06);
      transition: .18s ease
    }

    .cta-visible:hover {
      background: var(--accent)
    }

    @media (max-width:1180px) {
      .formation-image {
        height: 170px
      }
    }

    @media (max-width:1024px) {
      .formation-cards {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media (max-width:768px) {
      .formation-cards {
        grid-template-columns: 1fr
      }

      .formation-image {
        height: 160px
      }

      .title {
        -webkit-line-clamp: 3;
        min-height: auto
      }
    }

/* ==========================================================================
   Pack 20h
   ========================================================================== */

    .pack-section {
      padding: 40px 20px;
      background: #fff;
      position: relative;
    }

    .pack-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(16, 80, 80, 0.1), transparent);
    }

    .pack-container {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .pack-header-content {
      text-align: center;
      margin-bottom: 50px;
    }

    .pack-title {
      font-size: 32px !important;
      color: var(--lf-green);
      font-weight: 800;
      margin: 0 0 16px 0;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .pack-header-content::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      margin: 16px auto 0;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--lf-green), var(--lf-orange));
    }

    .pack-subtitle {
      font-size: 18px;
      color: #5b6b6b;
      line-height: 1.6;
      max-width: 720px;
      margin: 0 auto;
    }

    .pack-cards-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .pack-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 32px 32px;
      box-shadow: 0 18px 45px rgba(16, 80, 80, 0.12);
      border: 1px solid rgba(16, 80, 80, 0.12);
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .pack-card-complete {
      overflow: hidden;
    }

    .pack-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--lf-green), var(--lf-orange));
    }

    .pack-card-complete {
      border-color: var(--lf-green);
      border-width: 2px;
      box-shadow: 0 22px 55px rgba(16, 80, 80, 0.18);
    }

    .pack-card-custom {
      border-color: rgba(16, 80, 80, 0.16);
      box-shadow: 0 14px 35px rgba(16, 80, 80, 0.10);
      overflow: hidden;
    }

    .pack-badge-popular {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, var(--lf-orange), #D35400);
      color: #fff;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
      z-index: 10;
    }

    .pack-badge-flexible {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, #105050, #0d3f3f);
      color: #fff;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(16, 80, 80, 0.3);
      z-index: 10;
    }

    .pack-badge-promo {
      position: absolute;
      top: 50px;
      right: -35px;
      background: linear-gradient(135deg, var(--lf-orange), #D35400);
      color: #fff;
      padding: 8px 45px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
      transform: rotate(45deg);
      z-index: 9;
    }

    .pack-card-title {
      font-size: 26px;
      color: var(--lf-green);
      font-weight: 800;
      margin: 0 0 32px 0;
      line-height: 1.2;
      padding-top: 10px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.25em 0.35em;
    }

    .pack-card-title-emoji {
      flex-shrink: 0;
    }

    .pack-section-title {
      font-size: 18px;
      color: var(--lf-green);
      font-weight: 700;
      margin: 0 0 20px 0;
    }

    .pack-formations-table-section {
      margin-bottom: 32px;
    }

    .pack-formations-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    .pack-formations-table thead {
      background: #f8f9fa;
    }

    .pack-formations-table th {
      padding: 12px 8px;
      text-align: left;
      font-weight: 700;
      color: var(--lf-green);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-bottom: 2px solid rgba(16, 80, 80, 0.4);
    }

    .pack-formations-table th:first-child {
      padding-left: 0;
    }

    .pack-formations-table th:nth-child(2) {
      text-align: right;
      padding-right: 40px;
    }

    .pack-formations-table th:last-child {
      text-align: right;
      padding-right: 0;
    }

    .pack-table-price-label {
      display: block;
      text-align: right;
    }

    .pack-formations-table td {
      padding: 14px 8px;
      border-bottom: 1px solid #e5e5e5;
      color: #333;
      line-height: 1.5;
    }

    .pack-formations-table td:first-child {
      padding-left: 0;
      font-weight: 500;
    }

    .pack-formations-table td:nth-child(2) {
      text-align: right;
      padding-right: 40px;
      color: var(--lf-green);
      font-weight: 600;
    }

    .pack-formations-table td:nth-child(3) {
      text-align: right;
      padding-right: 0;
      color: var(--lf-green);
      font-weight: 600;
    }

    .pack-formations-table tbody tr:hover {
      background-color: rgba(16, 80, 80, 0.02);
    }

    .pack-table-total {
      background: #f8f9fa;
      border-top: 2px solid rgba(16, 80, 80, 0.4);
    }

    .pack-table-total td {
      padding: 16px 8px;
      border-bottom: none;
      font-size: 15px;
    }

    .pack-table-total td:first-child {
      padding-left: 0;
    }

    .pack-table-total td:last-child {
      padding-right: 0;
    }

    .pack-total-label {
      font-size: 18px;
    }

    .pack-price-old {
      text-decoration: line-through;
      color: #999;
      font-weight: 600;
      margin-right: 8px;
      font-size: 20px;
    }

    .pack-price-final {
      font-size: 22px;
      color: var(--lf-green);
    }

    .pack-total-hours {
      font-size: 20px;
    }

    .pack-advantages-section {
      margin-bottom: 24px;
    }

    .pack-advantages-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 1025px) {
      .pack-advantages-list {
        gap: 1.1rem;
      }
    }

    .pack-advantages-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: #333;
      line-height: 1.55;
    }

    .pack-advantage-icon {
      width: 20px;
      height: 20px;
      color: #E67E22;
      flex-shrink: 0;
    }

    .pack-advantages-list li strong {
      color: var(--lf-green);
      font-weight: 700;
    }

    .pack-promotions-section {
      margin-bottom: 32px;
    }

    .pack-custom-intro {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin: 0 0 24px 0;
    }

    .pack-discount-item {
      padding: 16px;
      background: #f8f9fa;
      border-radius: 12px;
      margin-bottom: 20px;
      min-height: 140px;
      display: flex;
      align-items: flex-start;
      overflow: visible;
    }

    .pack-discount-content {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      width: 100%;
      position: relative;
    }

    .pack-discount-text {
      flex: 1;
      min-width: 0;
    }

    .pack-discount-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .pack-discount-header strong {
      font-size: 15px;
      color: var(--lf-green);
      font-weight: 700;
    }

    .pack-discount-amount {
      font-size: 28px;
      color: var(--lf-orange);
      font-weight: 800;
      line-height: 1;
    }

    .pack-discount-vignettes {
      position: relative;
      width: 180px;
      flex-shrink: 0;
      min-height: 140px;
      padding-bottom: 20px;
    }

    .pack-vignette {
      display: flex;
      flex-direction: column;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
      border: 1px solid #eee;
      position: absolute;
      width: 160px;
    }

    .pack-vignette-1 {
      left: 0;
      top: 0;
      z-index: 2;
    }

    .pack-vignette-2 {
      left: 20px;
      top: 12px;
      z-index: 1;
    }

    .pack-vignette:hover {
      transform: translateY(-2px);
      z-index: 3;
    }

    .pack-vignette-image {
      width: 100%;
      height: 90px;
      overflow: hidden;
    }

    .pack-vignette img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pack-vignette-content {
      padding: 10px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .pack-vignette-tag {
      background: #105050;
      color: #fff;
      font-size: 8px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      align-self: flex-start;
      margin-bottom: 6px;
      position: static;
    }

    .pack-vignette-title {
      font-size: 11px;
      font-weight: 700;
      color: #222;
      margin: 0 0 8px 0;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex: 1;
    }

    .pack-vignette-footer {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .pack-vignette-footer span {
      font-size: 9px;
      color: #105050;
      font-weight: 600;
      padding: 2px 6px;
      background: rgba(16, 80, 80, 0.08);
      border-radius: 4px;
      white-space: nowrap;
    }

    .pack-code {
      display: inline-block;
      font-size: 13px;
      color: #E67E22;
      font-weight: 700;
      background: rgba(230, 126, 34, 0.1);
      padding: 4px 10px;
      border-radius: 6px;
      font-family: monospace;
    }

    .pack-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 18px 36px;
      background: linear-gradient(135deg, var(--lf-green), #0d3f3f);
      color: #fff;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 700;
      font-size: 18px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(16, 80, 80, 0.3);
      width: 100%;
      text-align: center;
      margin: 0;
      max-width: 100%;
      box-sizing: border-box;
    }

    .pack-cta span {
      display: inline-flex;
      align-items: center;
      text-align: center;
      flex-shrink: 0;
    }

    .pack-cta svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .pack-cta:hover {
      background: linear-gradient(135deg, var(--lf-orange), #D35400);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
    }

    .pack-cta:hover svg {
      transform: translateX(4px);
    }

    .pack-cta-complete {
      margin-top: auto;
      align-self: center;
    }

    .pack-cta-custom {
      margin-top: auto;
      align-self: center;
    }

    @media (max-width: 1024px) {
      .pack-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      .pack-section {
        padding: 40px 20px;
      }

      .pack-header-content {
        margin-bottom: 40px;
      }

      .pack-title {
        font-size: 26px;
      }

      .pack-subtitle {
        font-size: 17px;
      }

      .pack-card {
        padding: 32px 24px;
      }

      .pack-card-title {
        font-size: 22px;
        margin-bottom: 24px;
      }

      .pack-badge-popular,
      .pack-badge-flexible {
        top: 16px;
        right: 16px;
        font-size: 11px;
        padding: 5px 12px;
      }

      .pack-badge-promo {
        top: 45px;
        right: -30px;
        font-size: 11px;
        padding: 6px 40px;
      }

      .pack-section-title {
        font-size: 16px;
        margin-bottom: 16px;
      }

      .pack-formations-table {
        font-size: 13px;
      }

      .pack-formations-table th {
        font-size: 11px;
        padding: 10px 6px;
      }

      .pack-formations-table th:nth-child(2) {
        padding-right: 20px;
      }

      .pack-formations-table td {
        padding: 12px 6px;
        font-size: 13px;
      }

      .pack-formations-table td:nth-child(2) {
        padding-right: 20px;
      }

      .pack-table-total td {
        font-size: 14px;
        padding: 14px 6px;
      }

      .pack-advantages-list li {
        font-size: 14px;
      }

      .pack-custom-intro {
        font-size: 15px;
      }

      .pack-discount-item {
        padding: 14px;
        min-height: 120px;
      }

      .pack-discount-content {
        gap: 16px;
      }

      .pack-discount-item strong {
        font-size: 14px;
      }

      .pack-discount-amount {
        font-size: 24px;
      }

      .pack-discount-vignettes {
        width: 150px;
        min-height: 120px;
      }

      .pack-vignette {
        width: 140px;
      }

      .pack-vignette-2 {
        left: 16px;
        top: 10px;
      }

      .pack-badge-promo {
        top: 42px;
        right: -28px;
        font-size: 10px;
        padding: 5px 35px;
      }

      .pack-vignette-image {
        height: 80px;
      }

      .pack-vignette-title {
        font-size: 10px;
      }

      .pack-total-label {
        font-size: 16px;
      }

      .pack-price-old {
        font-size: 17px;
      }

      .pack-price-final {
        font-size: 19px;
      }

      .pack-total-hours {
        font-size: 17px;
      }

      .pack-cta {
        font-size: 17px;
        padding: 16px 28px;
      }
    }

    @media (max-width: 480px) {
      .pack-section {
        padding: 40px 20px;
      }

      .pack-card {
        padding: 24px 18px;
      }

      .pack-title {
        font-size: 22px;
      }

      .pack-subtitle {
        font-size: 16px;
      }

      .pack-card-title {
        font-size: 20px;
      }

      .pack-formations-table {
        font-size: 12px;
      }

      .pack-formations-table th {
        font-size: 10px;
        padding: 8px 4px;
      }

      .pack-formations-table th:nth-child(2) {
        padding-right: 15px;
      }

      .pack-formations-table td {
        padding: 10px 4px;
        font-size: 12px;
      }

      .pack-formations-table td:nth-child(2) {
        padding-right: 15px;
      }

      .pack-table-total td {
        font-size: 13px;
        padding: 12px 4px;
      }

      .pack-advantages-list li {
        font-size: 13px;
      }

      .pack-discount-item {
        padding: 12px;
        min-height: 110px;
      }

      .pack-discount-content {
        flex-direction: column;
        gap: 12px;
      }

      .pack-discount-text {
        width: 100%;
      }

      .pack-discount-header {
        flex-wrap: wrap;
      }

      .pack-discount-header strong {
        font-size: 13px;
      }

      .pack-discount-amount {
        font-size: 22px;
      }

      .pack-discount-vignettes {
        width: 100%;
        position: relative;
        height: auto;
        min-height: auto;
        display: flex;
        justify-content: flex-start;
        padding-left: 0;
      }

      .pack-vignette {
        position: relative;
        width: calc(50% - 8px);
        flex-direction: column;
        left: auto !important;
        top: auto !important;
      }

      .pack-vignette-2 {
        margin-left: -20px;
        margin-top: 10px;
      }

      .pack-vignette-image {
        width: 100%;
        height: 70px;
        flex-shrink: 0;
      }

      .pack-vignette-content {
        padding: 8px;
      }

      .pack-vignette-title {
        font-size: 10px;
        margin-bottom: 4px;
      }

      .pack-vignette-tag {
        margin-bottom: 4px;
      }

      .pack-badge-promo {
        top: 38px;
        right: -25px;
        font-size: 9px;
        padding: 4px 30px;
      }

      .pack-code {
        font-size: 12px;
        padding: 3px 8px;
      }

      .pack-cta {
        font-size: 16px;
        padding: 14px 24px;
      }

      .pack-total-label {
        font-size: 15px;
      }

      .pack-price-old {
        font-size: 16px;
      }

      .pack-price-final {
        font-size: 18px;
      }

      .pack-total-hours {
        font-size: 16px;
      }
    }

/* ==========================================================================
   Why
   ========================================================================== */

    .why-legalfamily-section {
      padding: 90px 20px;
      background: #f8f9fa;
      position: relative;
    }

    .why-legalfamily-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(16, 80, 80, 0.1), transparent);
    }

    .why-legalfamily-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .why-header-with-founder {
      display: flex;
      align-items: flex-start;
      gap: 60px;
      margin-bottom: 60px;
    }

    .founder-section {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .founder-image-wrapper {
      position: relative;
      width: 140px;
      height: 140px;
    }

    .founder-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50% !important;
      border: 4px solid #105050;
      box-shadow: 0 4px 16px rgba(16, 80, 80, 0.2);
    }

    .founder-badge {
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      background: #105050;
      color: #fff;
      padding: 6px 20px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(16, 80, 80, 0.3);
    }

    .founder-info {
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .founder-text {
      font-size: 14px;
      color: #666;
      margin: 0;
      line-height: 1.5;
    }

    .founder-linkedin {
      font-size: 14px;
      color: #105050;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .founder-linkedin:hover {
      color: #E67E22;
      text-decoration: underline;
    }

    .why-header {
      flex: 1;
      text-align: left;
    }

    .why-legalfamily-title {
      font-size: 38px !important;
      color: #105050;
      font-weight: 800;
      margin: 0 0 16px 0;
      line-height: 1.2;
    }

    .why-subtitle {
      font-size: 19px;
      color: #666;
      margin: 0;
      line-height: 1.5;
    }

    .why-legalfamily-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .why-card {
      background: #fff;
      padding: 36px 28px;
      border-radius: 16px;
      border: 1px solid #e5e5e5;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.35s ease;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #105050, #E67E22);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }

    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
      border-color: #105050;
    }

    .why-card:hover::before {
      transform: scaleX(1);
    }

    .why-card-icon-wrapper {
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, #105050, #0d3f3f);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.35s ease;
      box-shadow: 0 4px 12px rgba(16, 80, 80, 0.2);
    }

    .why-card:hover .why-card-icon-wrapper {
      background: linear-gradient(135deg, #E67E22, #D35400);
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 6px 16px rgba(230, 126, 34, 0.3);
    }

    .why-card-icon {
      width: 32px;
      height: 32px;
      color: #fff;
    }

    .why-card-title {
      font-size: 19px;
      color: #105050;
      font-weight: 700;
      margin: 0 0 14px 0;
      line-height: 1.35;
    }

    .why-card-text {
      font-size: 15px;
      color: #666;
      line-height: 1.65;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .why-header-with-founder {
        flex-direction: column;
        align-items: center;
        gap: 40px;
      }

      .why-header {
        text-align: center;
      }

      .why-legalfamily-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .why-legalfamily-section {
        padding: 60px 20px;
      }

      .why-header-with-founder {
        margin-bottom: 40px;
        gap: 30px;
      }

      .founder-image-wrapper {
        width: 120px;
        height: 120px;
      }

      .founder-badge {
        font-size: 12px;
        padding: 5px 16px;
      }

      .why-header {
        margin-bottom: 0;
      }

      .why-legalfamily-title {
        font-size: 28px;
      }

      .why-subtitle {
        font-size: 17px;
      }

      .why-legalfamily-cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .why-card {
        padding: 28px 24px;
      }

      .why-card-icon-wrapper {
        width: 56px;
        height: 56px;
      }

      .why-card-icon {
        width: 28px;
        height: 28px;
      }

      .why-card-title {
        font-size: 18px;
      }

      .why-card-text {
        font-size: 14px;
      }
    }

/* ==========================================================================
   Testimonials
   ========================================================================== */

    .testimonials-section {
      padding: 90px 20px;
      background: #fff;
    }

    .testimonials-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .testimonials-title {
      font-size: 38px !important;
      color: #105050;
      font-weight: 800;
      margin: 0 0 32px 0;
      line-height: 1.2;
    }

    .testimonials-trust-bar {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 20px 32px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 12px;
      border: 1px solid rgba(16, 80, 80, 0.1);
      max-width: 600px;
      margin: 0 auto;
    }

    .testimonials-trust-subtitle {
      font-size: 16px;
      color: var(--lf-green);
      font-weight: 600;
      text-align: center;
    }

    .testimonials-rating-compact {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .rating-stars-inline {
      display: flex;
      gap: 2px;
    }

    .rating-stars-inline svg {
      width: 16px;
      height: 16px;
    }

    .testimonials-rating-compact strong {
      font-size: 18px;
      font-weight: 800;
      color: var(--lf-green);
      line-height: 1;
    }

    .testimonials-rating-compact span {
      font-size: 14px;
      color: var(--lf-muted);
      font-weight: 600;
    }

    .testimonials-rating {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .rating-stars {
      display: flex;
      gap: 4px;
    }

    .rating-stars svg {
      width: 24px;
      height: 24px;
    }

    .rating-text {
      font-size: 16px;
      color: #666;
      font-weight: 600;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testimonial-card {
      background: #fff;
      padding: 36px;
      border-radius: 16px;
      border: 1px solid #e5e5e5;
      display: flex;
      flex-direction: column;
      transition: all 0.35s ease;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      position: relative;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #105050, #E67E22);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }

    .testimonial-card:hover {
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
      border-color: #105050;
    }

    .testimonial-card:hover::before {
      transform: scaleX(1);
    }

    .testimonial-content {
      flex: 1;
      margin-bottom: 28px;
      position: relative;
    }

    .testimonial-quote-open {
      font-size: 64px;
      line-height: 1;
      color: #E67E22;
      font-weight: 700;
      font-family: Georgia, serif;
      opacity: 0.3;
      position: absolute;
      top: -10px;
      left: -8px;
    }

    .testimonial-text {
      font-size: 16px;
      line-height: 1.7;
      color: #333;
      margin: 0;
      padding-top: 20px;
      padding-right: 20px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 24px;
      border-top: 2px solid #f0f0f0;
    }

    .author-photo {
      width: 64px;
      height: 64px;
      border-radius: 50% !important;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid #105050;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .author-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .author-name {
      font-size: 16px;
      color: #105050;
      font-weight: 700;
      display: block;
    }

    .author-role {
      font-size: 13px;
      color: #666;
      font-weight: 500;
      line-height: 1.4;
    }

    @media (max-width: 1024px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }

      .testimonials-trust-bar {
        padding: 20px 24px;
        max-width: 100%;
      }

      .testimonial-quote-open {
        font-size: 56px;
        top: -8px;
        left: -6px;
      }
    }

    @media (max-width: 768px) {
      .testimonials-section {
        padding: 60px 20px;
      }

      .testimonials-header {
        margin-bottom: 40px;
      }

      .testimonials-title {
        font-size: 28px;
        margin-bottom: 24px;
      }

      .testimonials-trust-bar {
        padding: 18px 20px;
        gap: 16px;
      }

      .testimonials-trust-subtitle {
        font-size: 14px;
      }

      .testimonials-rating-compact strong {
        font-size: 16px;
      }

      .testimonials-rating-compact span {
        font-size: 12px;
      }

      .rating-stars-inline svg {
        width: 14px;
        height: 14px;
      }

      .rating-stars svg {
        width: 20px;
        height: 20px;
      }

      .rating-text {
        font-size: 14px;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .testimonial-card {
        padding: 28px 24px;
      }

      .testimonial-quote-open {
        font-size: 48px;
        top: -6px;
        left: -4px;
      }

      .testimonial-text {
        font-size: 15px;
        padding-top: 16px;
        padding-right: 16px;
      }

      .author-photo {
        width: 64px;
        height: 64px;
      }
    }

/* ==========================================================================
   How it works
   ========================================================================== */

    .how-it-works {
      padding: 90px 20px;
      background: #f8f9fa;
      position: relative;
    }

    .how-it-works::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(16, 80, 80, 0.1), transparent);
    }

    .how-it-works-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .how-it-works-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .how-it-works-title {
      font-size: 38px !important;
      color: #105050;
      font-weight: 800;
      margin: 0 0 16px 0;
      line-height: 1.2;
    }

    .how-it-works-subtitle {
      font-size: 19px;
      color: #666;
      margin: 0;
    }

    .steps-container {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .step {
      display: flex;
      gap: 32px;
      padding: 32px 0;
      position: relative;
    }

    .step-number-wrapper {
      position: relative;
      flex-shrink: 0;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #105050, #0d3f3f);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 800;
      box-shadow: 0 4px 16px rgba(16, 80, 80, 0.2);
      position: relative;
      z-index: 2;
    }

    .step-connector {
      position: absolute;
      left: 50%;
      top: 60px;
      transform: translateX(-50%);
      width: 2px;
      height: 60px;
      background: linear-gradient(180deg, #105050, #e5e5e5);
    }

    .step:last-child .step-connector {
      display: none;
    }

    .step-content {
      flex: 1;
      padding-top: 8px;
    }

    .step-title {
      font-size: 22px;
      color: #105050;
      font-weight: 700;
      margin: 0 0 12px 0;
      line-height: 1.3;
    }

    .step-description {
      font-size: 16px;
      color: #666;
      line-height: 1.7;
      margin: 0;
    }

    @media (max-width: 768px) {
      .how-it-works {
        padding: 60px 20px;
      }

      .how-it-works-header {
        margin-bottom: 40px;
      }

      .how-it-works-title {
        font-size: 28px;
      }

      .how-it-works-subtitle {
        font-size: 17px;
      }

      .step {
        gap: 20px;
        padding: 24px 0;
      }

      .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .step-connector {
        top: 50px;
        height: 50px;
      }

      .step-title {
        font-size: 19px;
      }

      .step-description {
        font-size: 15px;
      }
    }

/* ==========================================================================
   Partners
   ========================================================================== */

    .partners-section {
      text-align: center;
      padding: 90px 20px;
      background: #fff;
      overflow: hidden;
      position: relative;
    }

    .partners-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(16, 80, 80, 0.1), transparent);
    }

    .partners-heading {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }

    .partners-heading h2 {
      font-size: 32px;
      font-family: var(--font-heading);
      font-weight: 700;
      margin-bottom: 15px;
      color: #105050;
    }

    .partners-heading p {
      font-size: 20px;
      color: #555;
      margin-bottom: 40px;
    }

    .partners-logos {
      display: flex;
      gap: 30px;
      padding: 0 40px;
      align-items: center;
      animation: scroll 20s linear infinite;
      width: max-content;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-1 * (150px + 30px) * 2));
      }
    }

    .logo-item {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      padding: 15px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      flex: 0 0 150px;
    }

    .logo-item img {
      max-width: 140px;
      max-height: 70px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: all 0.4s ease;
    }

    .logo-item:hover img {
      filter: grayscale(0%);
      transform: scale(1.08);
    }

    .logo-tooltip {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      background: #105050;
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 14px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      width: max-content;
      max-width: 200px;
      z-index: 100;
    }

    .logo-item:hover .logo-tooltip {
      opacity: 1;
      visibility: visible;
      bottom: -50px;
    }

    @media (max-width: 768px) {
      .partners-heading h2 {
        font-size: 24px;
      }

      .partners-heading p {
        font-size: 16px;
      }

      .logo-tooltip {
        display: none;
      }
    }

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

    .faq-section {
      padding: 90px 20px;
      background: #f8f9fa;
      position: relative;
    }

    .faq-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(16, 80, 80, 0.1), transparent);
    }

    .faq-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .faq-title {
      font-size: 32px !important;
      color: #105050;
      font-weight: 800;
      margin: 0 0 16px 0;
      line-height: 1.3;
      font-family: var(--font-heading);
    }

    .faq-subtitle {
      font-size: 18px;
      color: #666;
      margin: 0;
      line-height: 1.6;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .faq-item:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
      border-color: #105050;
      background-color: white;
      background: #fff;
    }

    .faq-item.active {
      border-color: #105050;
      box-shadow: 0 6px 20px rgba(16, 80, 80, 0.12);
    }

    .faq-question {
      width: 100%;
      padding: 20px 24px;
      background: transparent;
      background-color: transparent !important;
      border: none;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-size: 18px;
      font-weight: 700;
      color: #105050;
      transition: background-color 0.2s ease;
    }

    .faq-question:hover {
      background-color: #f8f9fa;
    }

    .faq-question span {
      flex: 1;
      line-height: 1.5;
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
      color: #105050;
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 24px;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 24px 20px 24px;
    }

    .faq-answer p {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin: 0;
      padding-top: 8px;
    }

    @media (max-width: 768px) {
      .faq-section {
        padding: 60px 20px;
      }

      .faq-header {
        margin-bottom: 40px;
      }

      .faq-title {
        font-size: 26px;
        margin-bottom: 12px;
      }

      .faq-subtitle {
        font-size: 16px;
      }

      .faq-question {
        padding: 16px 20px;
        font-size: 16px;
      }

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

      .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
      }

      .faq-answer p {
        font-size: 15px;
      }
    }

/* ==========================================================================
   Final CTA
   ========================================================================== */

    .final-cta {
      padding: 48px 20px;
      text-align: center;
      background: linear-gradient(135deg, #105050 0%, #0d3f3f 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .final-cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: 0.5;
    }

    .final-cta-content {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .final-cta-badge {
      display: inline-block;
      background: rgba(230, 126, 34, 0.2);
      border: 1px solid rgba(230, 126, 34, 0.4);
      color: #E67E22;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 24px;
    }

    .final-cta-content h2 {
      font-size: 30px;
      font-family: var(--font-heading);
      font-weight: 700;
      margin: 0 0 12px 0;
      color: #fff;
      line-height: 1.25;
    }

    .final-cta-content>p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 24px;
      line-height: 1.6;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    .final-cta-benefits {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin: 20px 0 16px;
    }

    .final-cta-benefit-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      color: #fff;
      font-weight: 600;
    }

    .final-cta-benefit-item svg {
      width: 24px;
      height: 24px;
      color: #E67E22;
      flex-shrink: 0;
    }

    .final-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 8px;
      margin-bottom: 16px;
    }

    .final-cta-button-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      font-weight: 700;
      border-radius: 10px;
      transition: all 0.3s ease;
      padding: 14px 28px;
      background: linear-gradient(135deg, #E67E22, #D35400);
      color: #fff;
      text-decoration: none;
      box-shadow: 0 6px 18px rgba(230, 126, 34, 0.4);
    }

    .final-cta-button-primary svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .final-cta-button-primary:hover {
      background: linear-gradient(135deg, #cf5d18, #B14400);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(230, 126, 34, 0.5);
    }

    .final-cta-button-primary:hover svg {
      transform: translateX(4px);
    }

    .final-cta-button-secondary {
      display: inline-flex;
      align-items: center;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      transition: all 0.3s ease;
      padding: 12px 24px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #fff;
      text-decoration: none;
    }

    .final-cta-button-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-color: #fff;
      transform: translateY(-2px);
    }

    .final-cta-guarantee {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .final-cta {
        padding: 36px 20px;
      }

      .final-cta-badge {
        font-size: 13px;
        padding: 6px 16px;
      }

      .final-cta-content h2 {
        font-size: 24px;
      }

      .final-cta-content>p {
        font-size: 15px;
      }

      .final-cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }

      .final-cta-benefit-item {
        font-size: 16px;
      }

      .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .final-cta-button-primary,
      .final-cta-button-secondary {
        justify-content: center;
        font-size: 17px;
        padding: 16px 28px;
      }

      .final-cta-guarantee {
        font-size: 14px;
      }
    }
