.service-card:target {
      scroll-margin-top: 140px;
      animation: highlightCardBounce 1s ease-out;
      border: 2px solid var(--accent-color, #764ba2) !important;
      box-shadow: 0 0 35px rgba(118, 75, 162, 0.4) !important;
      position: relative;
    }
    .service-card:target::before {
      content: 'SELECCIONADO';
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      padding: 6px 20px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1px;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
      animation: floatBadge 2s infinite ease-in-out;
    }
    @keyframes highlightCardBounce {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }
    @keyframes floatBadge {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, -6px); }
    }
    /* Ultra Premium Services Hero */
    .main {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }

    #services-hero {
      position: relative;
      min-height: 100vh;
      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-top: 180px;
      padding-bottom: 80px;
      margin-top: 0;
    }

    /* Floating Shapes */
    .floating-shape {
      position: absolute;
      opacity: 0.12;
      animation: float-rotate 15s infinite ease-in-out;
    }
    .shape-1 { top: 12%; left: 12%; width: 110px; height: 110px; background: linear-gradient(45deg, #a4b494, #8fa57d); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    .shape-2 { top: 55%; right: 12%; width: 150px; height: 150px; background: linear-gradient(45deg, #667eea, #764ba2); border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; animation-delay: -5s; }
    .shape-3 { bottom: 18%; left: 18%; width: 130px; height: 130px; background: linear-gradient(45deg, #f093fb, #f5576c); border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%; animation-delay: -10s; }
    .shape-4 { top: 25%; right: 35%; width: 90px; height: 90px; background: linear-gradient(45deg, #11998e, #38ef7d); border-radius: 50%; animation-delay: -7s; }

    @keyframes float-rotate {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(20px, -20px) rotate(90deg); }
      50% { transform: translate(0, -40px) rotate(180deg); }
      75% { transform: translate(-20px, -20px) rotate(270deg); }
    }

    #services-hero .container { position: relative; z-index: 2; }

    /* Hero 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);
    }

    #services-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;
    }

    #services-hero h1 .highlight {
      background: linear-gradient(135deg, #a4b494 0%, #8fa57d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .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: linear-gradient(135deg, #a4b494 0%, #8fa57d 100%);
      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(164, 180, 148, 0.4);
      transition: all 0.3s ease;
    }

    .btn-whatsapp:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(164, 180, 148, 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;
    }

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

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

    .stat-item .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) {
      #services-hero { 
        min-height: 100vh; 
        padding-top: 140px;
        padding-bottom: 60px;
      }
      #services-hero h1 { font-size: 2.2rem; }
      .hero-description { font-size: 1rem; }
      .stats-row { gap: 24px; }
      .stat-item .stat-number { font-size: 2rem; }
      .floating-shape { width: 70px !important; height: 70px !important; }
    }

    /* ============================================
       PREMIUM SERVICE CARDS STYLES
       ============================================ */
    .servicios-section {
      padding: 80px 0;
      background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    }

    .section-header {
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1a1a1a;
    }

    .section-header .highlight {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #666;
    }

    /* Premium Service Cards */
    .service-card {
      position: relative;
      background: white;
      border-radius: 24px;
      padding: 32px;
      height: 100%;
      transition: all 0.4s ease;
      border: 1px solid rgba(102, 126, 234, 0.1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

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

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
      border-color: rgba(102, 126, 234, 0.3);
    }

    /* Featured Card */
    .service-card.featured {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
    }

    .service-card.featured h3,
    .service-card.featured p,
    .service-card.featured li {
      color: white;
    }

    .service-card.featured .card-icon {
      background: rgba(255, 255, 255, 0.25) !important;
      color: white !important;
    }

    .featured-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: rgba(164, 180, 148, 0.95);
      color: white;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.5px;
      border-radius: 50px;
      margin-bottom: 16px;
      box-shadow: 0 4px 15px rgba(164, 180, 148, 0.4);
    }

    /* Card Header */
    .card-header {
      margin-bottom: 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .card-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      flex-shrink: 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .card-icon.purple {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    }

    .card-icon.pink {
      background: linear-gradient(135deg, #a4b494 0%, #8fa57d 100%);
      color: white;
    }

    .card-icon.green {
      background: linear-gradient(135deg, #a4b494 0%, #8fa57d 100%);
      color: white;
    }

    .card-header h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0;
      line-height: 1.3;
    }

    /* Card Body */
    .card-body p {
      color: #555;
      margin-bottom: 16px;
      font-size: 0.95rem;
    }

    .service-features {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
    }

    .service-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      color: #444;
      font-size: 0.9rem;
    }

    .service-features li i {
      color: #667eea;
      font-size: 1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .service-card.featured .service-features li i {
      color: #a4b494;
    }

    /* Service Buttons */
    .btn-service {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 14px 24px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .btn-service:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
      color: white;
    }

    .btn-service.primary {
      background: linear-gradient(135deg, #a4b494 0%, #8fa57d 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(164, 180, 148, 0.4);
    }

    .btn-service.primary:hover {
      box-shadow: 0 8px 25px rgba(164, 180, 148, 0.6);
      color: white;
    }

    /* CTA Section */
    .cta-services {
      padding: 80px 0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .cta-box {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
      border-radius: 32px;
      padding: 60px 40px;
      text-align: center;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .cta-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: white;
    }

    .cta-content h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: white;
      margin-bottom: 16px;
    }

    .cta-content .highlight {
      color: #a4b494;
    }

    .cta-content p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 32px;
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-whatsapp-large {
      padding: 18px 40px;
      background: linear-gradient(135deg, #a4b494 0%, #8fa57d 100%);
      color: white;
      border: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      box-shadow: 0 10px 30px rgba(164, 180, 148, 0.4);
      transition: all 0.3s ease;
    }

    .btn-whatsapp-large:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(164, 180, 148, 0.6);
      color: white;
    }

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

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

    /* Responsive */
    @media (max-width: 768px) {
      .servicios-section { padding: 60px 0; }
      .section-header h2 { font-size: 2rem; }
      .service-card { padding: 24px; }
      .card-header { flex-direction: column; text-align: center; }
      .card-icon { margin: 0 auto; }
      .cta-box { padding: 40px 24px; }
      .cta-content h2 { font-size: 1.8rem; }
      .cta-actions { flex-direction: column; }
      .btn-whatsapp-large, .btn-outline-white { width: 100%; }
    }
    @media (max-width: 1199px) {
      #services-hero { background-attachment: scroll; }
    }
/* ── Botó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;
    }

    /* ── 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;
    }

    /* ── 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;
      }
    }