
    /* ── HERO ── */
    .hero {
      background:
        linear-gradient(rgba(8,14,26,0.62) 0%, rgba(8,14,26,0.52) 100%),
        url('/img/web/foto-nyt-tag-sort.jpg') center/cover no-repeat;
      min-height: 88vh;
      display: flex;
      align-items: center;
      padding: 5rem 2.5rem;
    }
    .hero-inner {
      max-width: 760px;
      margin: 0 auto;
      width: 100%;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 900;
      color: white;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--orange);
    }
    .hero-desc {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      margin-bottom: 2.25rem;
      max-width: 620px;
    }
    .hero-desc strong { color: white; }
    .btn-hero {
      display: inline-block;
      background: var(--orange);
      color: white;
      text-decoration: none;
      padding: 1.1rem 2.5rem;
      border-radius: 30px;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 4px 24px rgba(232,118,26,0.4);
    }
    .btn-hero:hover { background: var(--orange-btn); transform: translateY(-2px); box-shadow: 0 6px 30px rgba(232,118,26,0.5); }
    .hero-trust {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: rgba(255,255,255,0.7);
      font-size: 0.88rem;
      line-height: 1.4;
    }
    .hero-trust-item strong { color: white; display: block; font-size: 0.95rem; }
    .hero-trust-item svg { flex-shrink: 0; }
    /* ── TRUST BAR ── */
    .trust-bar {
      background: white;
      border-bottom: 1px solid #e8e8e4;
      padding: 2rem 2.5rem;
    }
    .trust-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      flex-wrap: nowrap;
    }
    .trust-item {
      text-align: center;
      padding: 0 2rem;
    }
    .trust-item + .trust-item {
      border-left: 1px solid #ddd;
    }
    .trust-num {
      font-size: 2rem;
      font-weight: 900;
      color: var(--slate-dark);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .trust-label {
      font-size: 0.8rem;
      color: #777;
      margin-top: 0.3rem;
      line-height: 1.3;
    }

    /* ── COMPARA ── */
    .compara-section {
      background: white;
      padding: 5rem 2.5rem;
    }
    .compara-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .compara-section h2 {
      font-size: 2rem;
      font-weight: 900;
      color: var(--slate-deeper);
      margin-bottom: 1.2rem;
      letter-spacing: -0.02em;
    }
    .compara-section p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.75;
    }
    .compara-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .stat-num {
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .stat-label {
      font-size: 0.9rem;
      color: #555;
      margin-top: 0.4rem;
      line-height: 1.4;
    }

    /* ── FOR WHOM ── */
    .for-whom {
      background: var(--light-bg);
      padding: 5rem 2.5rem;
      text-align: center;
    }
    .for-whom h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 900;
      color: var(--slate-deeper);
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .for-whom .sub-orange {
      font-size: 1rem;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 0.75rem;
    }
    .for-whom .sub-text {
      font-size: 0.95rem;
      color: #666;
      max-width: 560px;
      margin: 0 auto 3rem;
      line-height: 1.65;
    }
    .whom-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      max-width: 900px;
      margin: 0 auto;
    }
    .whom-card { text-align: center; }
    .whom-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 1.2rem;
    }
    .whom-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--slate-deeper);
      line-height: 1.35;
    }

    /* ── FAQ ── */
    .faq-section {
      background: white;
      padding: 5rem 2.5rem;
    }
    .faq-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 4rem;
      align-items: start;
    }
    .faq-left h2 {
      font-size: 2rem;
      font-weight: 900;
      color: var(--slate-deeper);
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .faq-left p {
      font-size: 0.9rem;
      color: #777;
      line-height: 1.65;
    }
    .faq-list { display: flex; flex-direction: column; }
    .faq-item {
      border-bottom: 1px solid #e8e8e4;
    }
    .faq-item:first-child { border-top: 1px solid #e8e8e4; }
    .faq-summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.1rem 0;
      cursor: pointer;
      gap: 1rem;
      user-select: none;
    }
    .faq-summary span {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--slate-deeper);
    }
    .faq-chevron {
      color: var(--orange);
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-body {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.65;
      padding-bottom: 1.1rem;
      display: none;
    }
    .faq-item.open .faq-body { display: block; }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: white;
      padding: 5rem 2.5rem;
    }
    .testimonials h2 {
      text-align: center;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--slate-deeper);
      margin-bottom: 3rem;
      letter-spacing: -0.02em;
    }
    .carousel-wrap {
      overflow: hidden;
      width: 100%;
    }
    .carousel-track {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.4s ease;
      will-change: transform;
    }
    .tcard {
      background: var(--slate);
      border-radius: 12px;
      padding: 2rem;
      width: 260px;
      flex: 0 0 260px;
      box-sizing: border-box;
    }
    .tcard-quote {
      font-size: 0.9rem;
      font-weight: 700;
      color: white;
      margin: 1rem 0 0.6rem;
    }
    .tcard-text {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .tcard-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .tcard-name { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
    .tcard-stars { color: var(--orange); font-size: 0.9rem; }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: none;
      background: white;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      color: var(--slate-dark);
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s;
    }
    .carousel-btn:hover { background: var(--orange); color: white; }
    .carousel-btn.prev { left: -20px; }
    .carousel-btn.next { right: -20px; }

    /* ── PRICE CARD ── */
    .price-card {
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: 14px;
      padding: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }
    .price-num {
      font-size: 3.5rem;
      font-weight: 900;
      color: white;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 0.3rem;
    }
    .price-detail {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 1.5rem;
    }
    .price-features {
      list-style: none;
      text-align: left;
      display: inline-block;
      margin: 0;
    }
    .price-features li {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.8);
      padding: 0.25rem 0;
    }
    .price-features li::before { color: var(--orange); margin-right: 0.3rem; }

    /* ── LEAD FORM ── */
    .lead-form-section {
      background: linear-gradient(180deg, var(--slate) 0%, var(--slate-dark) 100%);
      padding: 6rem 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .lead-form-inner {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .lead-form-inner h2 {
      text-align: center;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: white;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .lead-form-inner h2 em { color: var(--orange); font-style: normal; }
    .lead-form-sub {
      text-align: center;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.65);
      margin-bottom: 2.5rem;
    }
    .radio-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .radio-option {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 0.9rem 1.1rem;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .radio-option:hover { background: rgba(255,255,255,0.12); }
    .radio-option.selected {
      background: rgba(232,118,26,0.15);
      border-color: var(--orange);
    }
    .radio-option input[type=radio] { display: none; }
    .radio-circle {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.4);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
    }
    .radio-option.selected .radio-circle {
      border-color: var(--orange);
    }
    .radio-option.selected .radio-circle::after {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--orange);
    }
    .radio-label {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.3;
    }
    .form-fields {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }
    .form-fields input {
      width: 100%;
      padding: 1rem 1.1rem;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      font-size: 0.95rem;
      color: white;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .form-fields input::placeholder { color: rgba(255,255,255,0.4); }
    .form-fields input:focus {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.12);
    }
    .form-fields input.error { border-color: #ff6b6b; }
    .promo-field-wrap #lf-promo {
      width: 100%;
      padding: 0.8rem 1.1rem;
      background: rgba(255,255,255,0.05);
      border: 1.5px dashed rgba(255,255,255,0.2);
      border-radius: 8px;
      font-size: 0.9rem;
      color: white;
      font-family: 'Courier New', monospace;
      font-weight: 700;
      letter-spacing: 0.08em;
      outline: none;
      text-transform: uppercase;
      transition: border-color 0.2s, background 0.2s;
    }
    .promo-field-wrap #lf-promo:focus {
      border-color: var(--orange);
      background: rgba(232,118,26,0.1);
      border-style: solid;
    }
    .promo-field-wrap #lf-promo::placeholder {
      color: rgba(255,255,255,0.3);
      font-weight: 400;
      letter-spacing: 0;
      font-family: 'Inter', sans-serif;
    }
    .lf-select {
      width: 100%;
      padding: 1rem 1.1rem;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      font-size: 0.95rem;
      color: white;
      font-family: 'Inter', sans-serif;
      outline: none;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      transition: border-color 0.2s, background-color 0.2s;
    }
    .lf-select:focus { border-color: rgba(255,255,255,0.5); background-color: rgba(255,255,255,0.12); }
    .lf-select option { background: #2e3f4f; color: white; }
    .meeting-offer-box {
      background: rgba(232, 118, 26, 0.15);
      border: 1.5px solid rgba(232, 118, 26, 0.5);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      margin-top: 0.25rem;
    }
    .meeting-offer-box strong { color: var(--orange); font-size: 0.95rem; display: block; margin-bottom: 0.35rem; }
    .meeting-offer-box p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin: 0 0 0.6rem; line-height: 1.5; }
    .btn-submit {
      width: 100%;
      padding: 1.1rem;
      background: var(--orange);
      color: white;
      border: none;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      margin-top: 0.5rem;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-submit:hover { background: var(--orange-btn); transform: translateY(-1px); }
    .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
    .form-checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin-top: 0.75rem;
    }
    .form-checkbox-wrap input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      accent-color: var(--orange);
      margin-top: 2px;
      cursor: pointer;
    }
    .form-checkbox-wrap label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.5;
      cursor: pointer;
    }
    .form-disclaimer {
      text-align: center;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.35);
      margin-top: 0.75rem;
      line-height: 1.5;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
      color: white;
    }
    .form-success .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
    .form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
    .form-success p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; }

    /* ── CHAPTER TABLE ── */
    .chapters {
      background: white;
      padding: 5rem 2.5rem;
    }
    .chapters h2 {
      text-align: center;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--slate-deeper);
      margin-bottom: 3rem;
      letter-spacing: -0.02em;
    }
    .chapter-table {
      max-width: 800px;
      margin: 0 auto;
      border: 1.5px solid #e8e8e4;
      border-radius: 12px;
      overflow: hidden;
    }
    .chapter-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid #e8e8e4;
    }
    .chapter-row:last-child { border-bottom: none; }
    .chapter-row.section-header {
      background: #f4f4f2;
    }
    .chapter-row.section-header .ch-title {
      font-weight: 800;
      color: var(--slate-deeper);
      font-size: 0.95rem;
    }
    .ch-title {
      font-size: 0.9rem;
      color: #444;
      font-weight: 500;
      flex: 1;
    }
    a.ch-link {
      color: inherit;
      text-decoration: none;
      transition: color 0.15s;
    }
    a.ch-link:hover { color: var(--orange); }
    .chapter-row:has(a.ch-link):hover { background: #faf8f5; }
    .ch-num {
      font-size: 0.8rem;
      font-weight: 700;
      color: #aaa;
      width: 28px;
      flex-shrink: 0;
    }
    .ch-title { flex: 1; padding: 0 0.75rem; }
    .ch-pages {
      font-size: 0.85rem;
      color: #999;
      margin-right: 1rem;
      white-space: nowrap;
    }
    .ch-btn {
      background: var(--orange);
      color: white;
      border: none;
      border-radius: 20px;
      padding: 0.35rem 0.9rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      white-space: nowrap;
      text-decoration: none;
      transition: background 0.2s;
    }
    .ch-btn:hover { background: var(--orange-btn); }
    .ch-spacer { width: 90px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .compara-inner { grid-template-columns: 1fr; }
      .whom-cards { grid-template-columns: 1fr; max-width: 360px; }
      .faq-inner { grid-template-columns: 1fr; }
      .radio-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-cols { grid-template-columns: 1fr; }
      .tcard { flex: 0 0 calc(100vw - 5rem); width: calc(100vw - 5rem); }
      .tcard-footer { flex-wrap: wrap; gap: 0.4rem; }
      .tcard-stars { flex-shrink: 0; }
      .trust-item { padding: 0.75rem 1.5rem; }
      .trust-item + .trust-item { border-left: none; border-top: 1px solid #ddd; }
    }
    @media (max-width: 480px) {
      .hero { min-height: auto; padding: 3rem 1.25rem; }
      .hero h1 { font-size: 1.9rem; }
      .hero-desc { font-size: 0.92rem; }
      .hero-trust { flex-direction: column; gap: 1.25rem; }
      .trust-inner { flex-direction: column; align-items: center; gap: 0; }
      .trust-item { width: 100%; padding: 0.75rem 1rem; border-left: none !important; border-top: 1px solid #ddd; }
      .trust-item:first-child { border-top: none; }
      .lead-form-inner { padding: 2rem 1.25rem; }
    }
