
  .sd7-root {
    font-family: 'Manrope', sans-serif;
    color: #ffffff;
    width: 100%;
    background: #243141;
    padding: 100px 0 110px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .sd7-root *,
  .sd7-root *::before,
  .sd7-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* фоновый декор */
  .sd7-root::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    border-radius: 50%;
    pointer-events: none;
  }

  .sd7-root::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,88,35,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .sd7-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
  }

  /* ── Layout ── */
  .sd7-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 5rem;
    align-items: start;
  }

  /* ── Left ── */
  .sd7-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .sd7-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F7802A;
    background: rgba(247,128,42,0.12);
    border: 1px solid rgba(247,128,42,0.3);
    padding: 6px 16px;
    border-radius: 40px;
  }

  .sd7-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #F7802A;
    flex-shrink: 0;
  }

  .sd7-h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }

  .sd7-h2 span { color: #F7802A; }

  .sd7-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
  }

  /* Что входит */
  .sd7-includes {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sd7-includes-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
  }

  .sd7-includes-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    line-height: 1.4;
  }

  .sd7-inc-icon {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(247,128,42,0.15);
    border: 1px solid rgba(247,128,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
  }

  /* Online-индикатор */
  .sd7-online {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
  }

  .sd7-online-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0;
    position: relative;
  }

  .sd7-online-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #22C55E;
    opacity: 0.3;
    animation: sd7Pulse 2s ease-in-out infinite;
  }

  @keyframes sd7Pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.6); opacity: 0; }
  }

  /* ── Right — форма ── */
  .sd7-form-wrap {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .sd7-form-title {
    font-size: 18px;
    font-weight: 800;
    color: #243141;
    letter-spacing: -0.015em;
    line-height: 1.3;
  }

  .sd7-form-sub {
    font-size: 13px;
    color: #6B7A8D;
    line-height: 1.6;
    margin-top: -4px;
  }

  .sd7-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .sd7-label {
    font-size: 12px;
    font-weight: 700;
    color: #6B7A8D;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .sd7-input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid #EAE7E2;
    background: #F7F5F2;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #243141;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    appearance: none;
  }

  .sd7-input::placeholder { color: #B0B8C4; }

  .sd7-input:focus {
    border-color: #F7802A;
    background: #ffffff;
  }

  .sd7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F18722, #FF5823);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(241,135,34,0.42);
    letter-spacing: 0.01em;
    margin-top: 4px;
  }

  .sd7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(241,135,34,0.5);
  }

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

  .sd7-form-disclaimer {
    font-size: 12px;
    color: #94A3B8;
    text-align: center;
    line-height: 1.6;
  }

  .sd7-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 4px;
    border-top: 1px solid #F0EDE8;
  }

  .sd7-trust-online-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0;
    position: relative;
  }

  .sd7-trust-online-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #22C55E;
    opacity: 0.25;
    animation: sd7Pulse 2s ease-in-out infinite;
  }

  .sd7-form-trust-text {
    font-size: 12px;
    color: #6B7A8D;
    font-weight: 600;
  }

  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .sd7-container { padding: 0 32px; }
    .sd7-grid { gap: 3.5rem; grid-template-columns: 1fr 400px; }
    .sd7-h2 { font-size: 36px; }
  }

  @media (max-width: 900px) {
    .sd7-root { padding: 72px 0 80px; }
    .sd7-container { padding: 0 24px; }
    .sd7-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sd7-h2 { font-size: 30px; }
    .sd7-form-wrap { max-width: 520px; }
  }

  @media (max-width: 600px) {
    .sd7-root { padding: 56px 0 64px; }
    .sd7-container { padding: 0 16px; }
    .sd7-h2 { font-size: 24px; }
    .sd7-sub { font-size: 14px; }
    .sd7-form-wrap { padding: 1.75rem; }
    .sd7-includes-item { font-size: 14px; }
  }

  /* ── Чекбокс ── */
  .sd7-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  .sd7-checkbox-input {
    display: none;
  }

  .sd7-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
  }

  .sd7-checkbox-box {
    width: 22px; height: 22px;
    border-radius: 6px;
    border: 2px solid #D1D5DB;
    background: #F7F5F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.18s, background 0.18s;
  }

  .sd7-checkbox-box::after {
    content: '';
    width: 5px; height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.15s;
  }

  .sd7-checkbox-input:checked + .sd7-checkbox-label .sd7-checkbox-box {
    background: linear-gradient(135deg, #F18722, #FF5823);
    border-color: transparent;
  }

  .sd7-checkbox-input:checked + .sd7-checkbox-label .sd7-checkbox-box::after {
    opacity: 1;
  }

  .sd7-checkbox-text {
    font-size: 13px;
    font-weight: 600;
    color: #4A5568;
    line-height: 1.45;
  }

  /* Кнопка задизейблена */
  .sd7-submit:disabled {
    background: #D1D5DB;
    color: #9CA3AF;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
  }

  .sd7-submit:disabled:hover {
    transform: none;
    box-shadow: none;
  }

  /* Политика */
  .sd7-policy-text {
    font-size: 11px;
    color: #94A3B8;
    line-height: 1.65;
    text-align: center;
  }

  .sd7-policy-link {
    color: #6B7A8D;
    text-decoration: underline;
    text-decoration-color: rgba(107,122,141,0.4);
    text-underline-offset: 2px;
    transition: color 0.15s;
  }

  .sd7-policy-link:hover {
    color: #F7802A;
    text-decoration-color: rgba(247,128,42,0.4);
  }


  /* ── Статус отправки ── */
  .sd7-status {
    display: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
  }

  .sd7-status.sd7-success {
    display: block;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #166534;
  }

  .sd7-status.sd7-error {
    display: block;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
  }

  .sd7-submit.sd7-loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
  }

</style>
