/* Ultra Premium Hero Styles */
    #hero {
      position: relative;
      min-height: 650px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      background-image:
        linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.85) 50%, rgba(240, 147, 251, 0.8) 100%),
        url('../img/hero/hero.webp');
      background-size: cover;
      background-position: center;
      background-attachment: scroll;
      overflow: hidden;
      padding: 120px 0 0;
    }

    /* Floating Geometric Shapes */
    .floating-shape {
      position: absolute;
      z-index: 1;
    }

    .shape-1 {
      top: 15%;
      left: 8%;
      width: 80px;
      height: 80px;
      border: 3px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      animation: float-rotate 15s ease-in-out infinite;
    }

    .shape-2 {
      top: 60%;
      right: 10%;
      width: 60px;
      height: 60px;
      border: 3px solid rgba(255, 255, 255, 0.15);
      transform: rotate(45deg);
      animation: float-rotate 12s ease-in-out infinite reverse;
    }

    .shape-3 {
      bottom: 20%;
      left: 15%;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: pulse 4s ease-in-out infinite;
    }

    .shape-4 {
      top: 40%;
      right: 25%;
      width: 100px;
      height: 100px;
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      animation: float-rotate 20s ease-in-out infinite;
    }

    @keyframes float-rotate {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
      }

      50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
      }
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.3;
      }

      50% {
        transform: scale(1.3);
        opacity: 0.6;
      }
    }

    /* Additional animations for dark sections */
    @keyframes float-rotate-alt {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
      }

      50% {
        transform: translateY(-25px) rotate(180deg);
        opacity: 0.4;
      }
    }

    @keyframes pulse-alt {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.2;
      }

      50% {
        transform: scale(1.2);
        opacity: 0.4;
      }
    }

    /* Hero Content */
    #hero .container {
      position: relative;
      z-index: 2;
    }

    #hero .hero-content {
      color: white;
    }

    /* Premium Badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 1px;
      margin-bottom: 24px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    #hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      color: white;
      margin-bottom: 24px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
    }

    #hero h1 .highlight {
      color: #a4b494;
      font-weight: 900;
      position: relative;
    }

    .hero-description {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 32px;
      line-height: 1.8;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Actions */
    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .btn-whatsapp {
      padding: 16px 36px;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      transition: all 0.3s ease;
    }

    .btn-whatsapp:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
      color: white;
    }

    .btn-outline {
      padding: 16px 36px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
      color: white;
    }

    /* Stats Row */
    .stats-row {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .stats-row .stat-item {
      text-align: center;
    }

    .stats-row .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: white;
      margin-bottom: 8px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .stats-row .stat-label {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    /* Wave Divider */
    .wave-divider {
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      z-index: 5;
    }

    .wave-divider svg {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Responsive */
    @media (max-width: 768px) {
      #hero {
        min-height: 550px;
        padding: 80px 0 60px;
      }

      #hero h1 {
        font-size: 2.2rem;
      }

      .hero-description {
        font-size: 1rem;
      }

      .stats-row {
        gap: 24px;
      }

      .stats-row .stat-number {
        font-size: 2rem;
      }

      .floating-shape {
        width: 60px !important;
        height: 60px !important;
      }
    }

    @media (max-width: 1199px) {
      #hero {
        background-attachment: scroll;
      }
    }
.vf-card {
          background: #fff;
          border-radius: 24px;
          overflow: hidden;
          box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
          transition: transform .35s ease, box-shadow .35s ease;
          height: 100%;
          display: flex;
          flex-direction: column;
          position: relative;
        }

        .vf-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 20px 55px rgba(118, 75, 162, .18);
        }

        .vf-card-featured {
          box-shadow: 0 12px 45px rgba(118, 75, 162, .2);
          border: 2px solid rgba(102, 126, 234, .25);
        }

        .vf-ribbon {
          position: absolute;
          top: 18px;
          right: -8px;
          background: linear-gradient(135deg, #667eea, #764ba2);
          color: #fff;
          font-size: .72rem;
          font-weight: 700;
          letter-spacing: .08em;
          text-transform: uppercase;
          padding: 5px 14px 5px 10px;
          border-radius: 4px 0 0 4px;
          z-index: 2;
          box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
        }

        .vf-ribbon::after {
          content: '';
          position: absolute;
          bottom: -6px;
          right: 0;
          border-width: 6px 8px 0 0;
          border-style: solid;
          border-color: #4a2d7a transparent transparent transparent;
        }

        .vf-card-header {
          padding: 28px 24px 16px;
          text-align: center;
          position: relative;
        }

        .vf-badge {
          display: inline-block;
          color: #fff;
          font-size: .72rem;
          font-weight: 700;
          letter-spacing: .1em;
          text-transform: uppercase;
          padding: 4px 14px;
          border-radius: 50px;
          margin-bottom: 18px;
        }

        .vf-icons-strip {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          flex-wrap: wrap;
          min-height: 72px;
        }

        .vf-icons-strip img {
          height: 60px;
          width: auto;
          object-fit: contain;
          filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .12));
          transition: transform .25s ease;
        }

        .vf-card:hover .vf-icons-strip img {
          transform: translateY(-3px);
        }

        .vf-count {
          font-size: .78rem;
          color: #999;
          margin: 12px 0 0;
          font-weight: 600;
        }

        .vf-card-body {
          padding: 20px 24px 28px;
          flex: 1;
          display: flex;
          flex-direction: column;
        }

        .vf-card-body h3 {
          font-size: 1.05rem;
          font-weight: 800;
          color: #2d2d2d;
          margin-bottom: 10px;
          line-height: 1.3;
        }

        .vf-card-body p {
          font-size: .9rem;
          color: #666;
          line-height: 1.65;
          flex: 1;
          margin-bottom: 18px;
        }

        .vf-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          background: #f3f0ff;
          color: #764ba2;
          padding: 11px 24px;
          border-radius: 50px;
          font-weight: 700;
          font-size: .88rem;
          text-decoration: none;
          transition: all .25s ease;
          border: 2px solid rgba(118, 75, 162, .15);
        }

        .vf-btn:hover {
          background: linear-gradient(135deg, #667eea, #764ba2);
          color: #fff;
          border-color: transparent;
          transform: translateY(-1px);
          box-shadow: 0 6px 18px rgba(118, 75, 162, .3);
        }

        .vf-btn-featured {
          background: linear-gradient(135deg, #667eea, #764ba2);
          color: #fff;
          border-color: transparent;
          box-shadow: 0 6px 18px rgba(118, 75, 162, .3);
        }

        .vf-btn-featured:hover {
          background: linear-gradient(135deg, #764ba2, #667eea);
          color: #fff;
        }

        @media (max-width: 575px) {
          .vf-icons-strip img {
            height: 48px;
          }
        }
.suscripcion-left-col { padding: 55px 50px; box-sizing: border-box; }
        .suscripcion-right-col { padding: 55px 45px; box-sizing: border-box; }
        @media (max-width: 768px) {
          #suscripcion-pdf { padding: 60px 0 !important; }
          .suscripcion-left-col, .suscripcion-right-col { 
            padding: 40px 25px !important; 
            flex: 1 1 100% !important;
            max-width: 100% !important;
          }
        }
        @media (max-width: 480px) {
          .suscripcion-left-col, .suscripcion-right-col { 
            padding: 30px 20px !important; 
          }
        }
#suscripcionForm input::placeholder {
          color: rgba(255, 255, 255, 0.65);
        }

        #suscripcionForm input:-webkit-autofill {
          -webkit-box-shadow: 0 0 0 30px rgba(155, 123, 168, 0.5) inset;
          -webkit-text-fill-color: #fff;
        }

        @media (max-width: 767px) {
          #suscripcion-pdf .container>.row>div>div {
            flex-direction: column !important;
          }

          #suscripcion-pdf .container>.row>div>div>div {
            padding: 38px 28px !important;
          }
        }
@keyframes spinSub {
          to {
            transform: rotate(360deg);
          }
        }
/* &#9472;&#9472; Bot&oacute;n flotante */
    @keyframes ff-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.08); }
      100% { transform: scale(1); }
    }

    #ff-trigger {
      position: fixed;
      bottom: 15px;
      right: 75px;
      width: 95px;
      height: 95px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 10010;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    #ff-trigger:not(.open) {
      animation: ff-pulse 2s ease-in-out infinite;
    }

    #ff-trigger:not(.open):hover {
      animation: none;
      transform: translateY(-6px) scale(1.1);
    }

    #ff-trigger.open {
      transform: rotate(45deg) scale(0.9);
    }

    #ff-trigger .ff-label {
      position: absolute;
      right: 90px;
      left: auto;
      padding: 10px 20px;
      border-radius: 999px;
      background: linear-gradient(135deg, #6a4c93 0%, #a88ff8 100%);
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      box-shadow: 0 10px 28px rgba(76, 41, 137, 0.25);
      opacity: 1;
      transition: opacity 0.22s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    #ff-trigger.open .ff-label {
      opacity: 0;
    }

    /* &#9472;&#9472; Overlay */
    #ff-overlay {
      position: fixed;
      inset: 0;
      background: rgba(12, 8, 40, 0.72);
      backdrop-filter: blur(4px);
      z-index: 10008;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    #ff-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    /* &#9472;&#9472; Panel */
    #ff-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: min(520px, 100vw);
      height: 100%;
      background: #ffffff;
      z-index: 10009;
      display: flex;
      flex-direction: column;
      box-shadow: -14px 0 60px rgba(23, 11, 68, 0.18);
      transform: translateX(100%);
      visibility: hidden;
      transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.38s;
    }

    #ff-panel.open {
      transform: translateX(0);
      visibility: visible;
    }

    .ff-head {
      background: linear-gradient(135deg, #6a4c93 0%, #764ba2 58%, #a484f7 100%);
      padding: 28px 30px 24px;
      color: #fff;
      flex-shrink: 0;
    }

    .ff-head-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .ff-head h2 {
      margin: 0 0 10px;
      font-size: 1.22rem;
      font-weight: 700;
      line-height: 1.28;
    }

    .ff-head p {
      margin: 0;
      opacity: 0.9;
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .ff-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.22);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.22s ease;
    }

    .ff-close:hover {
      background: rgba(255, 255, 255, 0.32);
    }

    .ff-body {
      flex: 1;
      overflow-y: auto;
      padding: 28px 30px 18px;
      background: #ffffff;
      scrollbar-width: thin;
      scrollbar-color: #bfa2f7 #f6efff;
    }

    .ff-body::-webkit-scrollbar {
      width: 9px;
    }

    .ff-body::-webkit-scrollbar-track {
      background: #f6efff;
    }

    .ff-body::-webkit-scrollbar-thumb {
      background: #bfa2f7;
      border-radius: 999px;
    }

    .ff-section-title {
      margin: 20px 0 14px;
      padding-bottom: 6px;
      border-bottom: 2px solid rgba(117, 84, 209, 0.16);
      color: #563e8f;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .ff-section-title:first-child {
      margin-top: 0;
    }

    .ff-field {
      margin-bottom: 18px;
    }

    .ff-field label {
      display: block;
      margin-bottom: 8px;
      color: #2f2644;
      font-size: 0.94rem;
      font-weight: 600;
    }

    .ff-field label .req {
      color: #d35b86;
    }

    .ff-field label .opt {
      color: #7c6b96;
      font-weight: 500;
      font-size: 0.78rem;
    }

    .ff-field input[type=text],
    .ff-field input[type=email],
    .ff-field input[type=tel],
    .ff-field textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 16px;
      border: 1.5px solid #e8dcff;
      background: #ffffff;
      font-size: 0.96rem;
      color: #342d50;
      transition: border-color 0.24s ease, box-shadow 0.24s ease;
      box-sizing: border-box;
    }

    .ff-field input:focus,
    .ff-field textarea:focus {
      outline: none;
      border-color: #8e72f4;
      box-shadow: 0 0 0 4px rgba(142, 114, 244, 0.14);
      background: #ffffff;
    }

    .ff-field textarea {
      min-height: 90px;
      resize: vertical;
    }

    .ff-radios {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ff-radio-label {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 16px;
      border: 1.5px solid #e9ddff;
      background: #ffffff;
      color: #3f3562;
      font-size: 0.92rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.22s ease;
    }

    .ff-radio-label:hover {
      border-color: #d7c1ff;
      background: #f7f1ff;
    }

    .ff-radio-label input[type=radio] {
      width: 18px;
      height: 18px;
      accent-color: #6a4c93;
      margin: 0;
    }

    .ff-radio-label.checked {
      border-color: #6a4c93;
      background: #f2e9ff;
      color: #533e85;
    }

    .ff-foot {
      padding: 22px 30px 24px;
      background: #ffffff;
      border-top: 1px solid rgba(117, 84, 209, 0.14);
      flex-shrink: 0;
    }

    .ff-quote {
      margin-bottom: 16px;
      text-align: center;
      font-size: 0.9rem;
      color: #6e539d;
      font-style: italic;
      line-height: 1.65;
    }

    #ff-panel {
      position: fixed;
      top: 0;
      right: -100%;
      width: 480px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15);
      z-index: 10009;
      display: flex;
      flex-direction: column;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    #ff-panel.open {
      right: 0;
    }

    .ff-head {
      padding: 40px 35px 30px;
      background: linear-gradient(135deg, #6a4c93 0%, #8fa57d 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .ff-head::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 150px;
      height: 150px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .ff-head h2 {
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 12px;
      color: white;
    }

    .ff-head p {
      font-size: 0.95rem;
      opacity: 0.9;
      margin: 0;
    }

    .ff-close {
      position: absolute;
      top: 25px;
      right: 25px;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .ff-close:hover {
      background: white;
      color: #6a4c93;
      transform: rotate(90deg);
    }

    .ff-body {
      flex: 1;
      overflow-y: auto;
      padding: 35px;
      scrollbar-width: thin;
      scrollbar-color: #a4b494 #f0f0f0;
    }

    .ff-section-title {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #a4b494;
      margin: 30px 0 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ff-section-title:first-child {
      margin-top: 0;
    }

    .ff-field {
      margin-bottom: 24px;
      transition: transform 0.3s ease;
    }

    .ff-field label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: #444;
      margin-bottom: 8px;
    }

    .ff-field input[type=text],
    .ff-field input[type=email],
    .ff-field input[type=tel],
    .ff-field textarea {
      width: 100%;
      padding: 14px 18px;
      background: #f8f9fa;
      border: 2px solid #eee;
      border-radius: 14px;
      font-size: 0.95rem;
      color: #333;
      transition: all 0.3s ease;
      outline: none;
    }

    .ff-field input:focus,
    .ff-field textarea:focus {
      background: white;
      border-color: #a4b494;
      box-shadow: 0 5px 15px rgba(164, 180, 148, 0.15);
      transform: translateY(-2px);
    }

    .ff-radios {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .ff-radio-label {
      background: #f8f9fa;
      border: 2px solid #eee;
      border-radius: 14px;
      padding: 14px 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
      font-weight: 500;
      color: #555;
    }

    .ff-radio-label:hover {
      background: #fff;
      border-color: #a4b494;
    }

    .ff-radio-label.checked {
      background: rgba(164, 180, 148, 0.1);
      border-color: #a4b494;
      color: #2d5a27;
      font-weight: 600;
    }

    .ff-radio-label input {
      margin-right: 12px;
      accent-color: #a4b494;
    }

    .ff-foot {
      padding: 25px 35px 35px;
      background: #fff;
      border-top: 1px solid #eee;
    }

    .ff-submit {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, #a4b494 0%, #8fa57d 100%);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 10px 25px rgba(164, 180, 148, 0.4);
      transition: all 0.3s ease;
    }

    .ff-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(164, 180, 148, 0.5);
    }

    .ff-submit:active {
      transform: translateY(0);
    }

    .ff-alert {
      padding: 15px 20px;
      border-radius: 12px;
      font-size: 0.9rem;
      margin-bottom: 20px;
      display: none;
      animation: fadeIn 0.4s ease;
    }

    .ff-alert.ok {
      display: block;
      color: #135540;
      border: 1px solid #86d3a2;
    }

    .ff-alert.err {
      display: block;
      background: #fff1f4;
      color: #8e1d47;
      border: 1px solid #f0a7bb;
    }

    .ff-submit {
      width: 100%;
      padding: 16px;
      border-radius: 16px;
      border: none;
      background: linear-gradient(135deg, #6a4c93 0%, #7f5fe8 100%);
      color: #ffffff;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .ff-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 34px rgba(76, 41, 137, 0.18);
    }

    .ff-submit:disabled {
      opacity: 0.72;
      cursor: not-allowed;
      transform: none;
    }

    .ff-step-dots {
      display: flex;
      gap: 8px;
      margin-top: 18px;
    }

    .ff-step-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.35);
    }

    .ff-step-dot.active {
      width: 24px;
      background: #ffffff;
    }

    @media (max-width: 860px) {
      #ff-panel {
        width: 100vw;
        max-width: 100vw;
      }

      .ff-head,
      .ff-body,
      .ff-foot {
        padding-left: 24px;
        padding-right: 24px;
      }

      .ff-head {
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
      }

      .ff-body {
        padding-top: 22px;
      }
    }

    @media (max-width: 620px) {
      #ff-trigger {
        bottom: 15px;
        right: 15px;
        left: auto;
        width: 75px;
        height: 75px;
      }

      #ff-trigger .ff-label {
        display: none;
      }

      #ff-panel {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
      }

      .ff-head {
        padding: 20px 18px 18px;
      }

      .ff-body {
        padding: 18px 18px 14px;
      }

      .ff-foot {
        padding: 16px 18px 18px;
      }

      .ff-field {
        margin-bottom: 16px;
      }

      .ff-field input[type=text],
      .ff-field input[type=email],
      .ff-field input[type=tel],
      .ff-field textarea {
        padding: 13px 14px;
      }

      .ff-radio-label {
        padding: 12px 14px;
      }

      .ff-close {
        width: 38px;
        height: 38px;
      }
    }
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface-color, #fff);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 100000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid color-mix(in srgb, var(--accent-color, #9b7ba8), transparent 80%);
}
.cookie-consent.show {
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-icon {
  background: color-mix(in srgb, var(--accent-color, #9b7ba8), transparent 90%);
  color: var(--accent-color, #9b7ba8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.cookie-text h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color, #4a3d52);
}
.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: var(--default-color, #3c4049);
  line-height: 1.5;
}
.cookie-text a {
  color: var(--accent-color, #9b7ba8);
  text-decoration: none;
  font-weight: 600;
}
.cookie-text a:hover {
  text-decoration: underline;
}
.cookie-buttons .btn-accept {
  background: var(--accent-color, #9b7ba8);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.cookie-buttons .btn-accept:hover {
  background: color-mix(in srgb, var(--accent-color, #9b7ba8), #000 15%);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  .cookie-content {
    flex-direction: column;
  }
  .cookie-buttons {
    width: 100%;
  }
  .cookie-buttons .btn-accept {
    width: 100%;
  }
}