.sv-hero-section {
    position: relative;
    background: linear-gradient(135deg, #112012 0%, #1c321e 50%, #0d1a0e 100%);
    color: #ffffff;
    padding: 64px 0 84px;
    overflow: hidden;
    text-align: center;
}
.sv-hero-glow-l {
    position: absolute; width: 420px; height: 420px;
    background: rgba(186, 128, 92, 0.16); border-radius: 50%;
    filter: blur(110px); top: -120px; left: -140px; pointer-events: none;
}
.sv-hero-glow-r {
    position: absolute; width: 420px; height: 420px;
    background: rgba(46, 102, 48, 0.22); border-radius: 50%;
    filter: blur(110px); bottom: -160px; right: -120px; pointer-events: none;
}
.sv-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.sv-hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; background: rgba(186, 128, 92, 0.16);
    border: 1px solid rgba(186, 128, 92, 0.4); border-radius: 9999px;
    color: #ffe4d7; font-size: 0.82rem; font-weight: 700;
    margin-bottom: 16px; backdrop-filter: blur(6px);
}
.sv-hero-breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 18px;
}
.sv-hero-breadcrumb a {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: color 0.2s;
}
.sv-hero-breadcrumb a:hover { color: #e9b395; }
.sv-hero-breadcrumb-sep { opacity: 0.5; }
.sv-hero-title {
    font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700; margin: 0 0 10px; color: #ffffff;
}
.sv-hero-title .brand-accent { color: #e9b395; }
.sv-hero-heart { font-size: 1.4rem; line-height: 1; }
.sv-hero-lead {
    font-size: 1.02rem; line-height: 1.7; color: rgba(255, 255, 255, 0.82);
    max-width: 640px; margin: 0 auto 0;
}
html[dir="rtl"] .sv-hero-title,
html[dir="rtl"] .sv-hero-lead,
html[dir="rtl"] .sv-hero-breadcrumb {
    direction: rtl;
    text-align: center;
    unicode-bidi: plaintext;
}
.sv-form-section { padding: 72px 0 88px; }
.sv-form-card {
    max-width: 760px; margin: 0 auto;
    background: linear-gradient(135deg, #112012 0%, #1e3822 100%);
    border: 1px solid rgba(186, 128, 92, 0.4);
    border-radius: 28px; padding: 44px 48px; color: #ffffff;
    box-shadow: 0 24px 60px rgba(9, 36, 28, 0.28);
}
.sv-form-card > h2 {
    font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; margin: 0 0 8px;
}
html[dir="rtl"] .sv-form-card > h2 { direction: rtl; text-align: right; unicode-bidi: plaintext; }
.sv-form-card > p.sv-form-lead {
    color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; margin: 0 0 30px;
}
html[dir="rtl"] .sv-form-card > p.sv-form-lead { direction: rtl; text-align: right; unicode-bidi: plaintext; }
.sv-question { margin-bottom: 30px; }
.sv-question-label {
    font-size: 0.95rem; font-weight: 700; color: rgba(255, 255, 255, 0.95);
    margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.sv-question-num {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background: rgba(233, 179, 149, 0.18); border: 1px solid rgba(233, 179, 149, 0.45);
    color: #ffdcc6; font-size: 0.8rem; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
}
html[dir="rtl"] .sv-question-label { direction: rtl; text-align: right; unicode-bidi: plaintext; }
.sv-options {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.sv-option {
    position: relative; cursor: pointer;
}
.sv-option input {
    position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; inset: 0;
}
.sv-option-box {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 16px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    height: 100%;
}
.sv-option input:hover ~ .sv-option-box {
    border-color: rgba(233, 179, 149, 0.55);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
}
.sv-option input:checked ~ .sv-option-box {
    border-color: #e9b395;
    background: rgba(233, 179, 149, 0.14);
}
.sv-option-emoji { font-size: 1.35rem; line-height: 1; flex-shrink: 0; }
.sv-option-text {
    font-size: 0.92rem; font-weight: 600; color: rgba(255, 255, 255, 0.92);
}
.sv-option-check {
    margin-left: auto; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative; transition: all 0.2s ease;
}
html[dir="rtl"] .sv-option-check { margin-left: 0; margin-right: auto; }
.sv-option input:checked ~ .sv-option-box .sv-option-check {
    background: #e9b395; border-color: #e9b395;
}
.sv-option input:checked ~ .sv-option-box .sv-option-check::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    width: 6px; height: 6px; background: #1a231d; border-radius: 50%;
    transform: translate(-50%, -50%);
}
.sv-btn-submit {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #ba805c, #a96a45);
    color: #ffffff; border: none; border-radius: 12px;
    padding: 14px 34px; font-size: 1rem; font-weight: 800; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%; justify-content: center; margin-top: 6px;
}
.sv-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(186, 128, 92, 0.4); }
html[dir="rtl"] .sv-btn-submit { flex-direction: row-reverse; }
.sv-btn-submit:disabled { opacity: 0.7; cursor: wait; transform: none; }
.sv-redirect-note {
    margin-top: 14px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
html[dir="rtl"] .sv-redirect-note { direction: rtl; text-align: center; unicode-bidi: plaintext; }
.sv-thanks-note {
    margin-top: 22px; padding-top: 18px;
    border-top: 1px dashed rgba(255, 255, 255, 0.16);
    font-size: 0.88rem; color: rgba(255, 255, 255, 0.78); text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.sv-thanks-note > i { color: #e9b395; }
html[dir="rtl"] .sv-thanks-note { direction: rtl; text-align: center; unicode-bidi: plaintext; }
.sv-error-msg {
    color: #ffb4a2; font-size: 0.8rem; margin-top: 8px; display: block;
}
.sv-alert {
    background: rgba(201, 57, 43, 0.22); border: 1px solid rgba(255, 143, 128, 0.5);
    color: #ffffff; border-radius: 12px; padding: 12px 16px; margin-bottom: 22px;
    font-size: 0.9rem;
}
@media (max-width: 640px) {
    .sv-form-card { padding: 30px 22px; }
    .sv-options { grid-template-columns: 1fr; }
}