/* ==========================================================================
   SU Dein-Shop Vendor Widgets — Combined Styles
   Prefix: .su-v-  (vendor)
   ========================================================================== */

/* ---------- SHARED ---------- */
.su-v-hero, .su-v-ben, .su-v-calc, .su-v-steps, .su-v-split, .su-v-pkg-wrap,
.su-v-cmp, .su-v-vis-wrap, .su-v-test-wrap, .su-v-faq, .su-v-cta, .su-v-links {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --- Einheitliche Buttons --- */
.su-v-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 999px; font-size: 16px; font-weight: 600;
  text-decoration: none; transition: all 0.3s; cursor: pointer; line-height: 1.2;
}
.su-v-btn--primary { background: #db2777; color: #fff; border: 2px solid #db2777; }
.su-v-btn--primary:hover { background: #fff; color: #db2777; }
.su-v-btn--primary svg { stroke: #fff; }
.su-v-btn--primary:hover svg { stroke: #db2777; }
.su-v-btn--outline { background: #fff; color: #1e293b; border: 2px solid #e2e8f0; }
.su-v-btn--outline:hover { border-color: #db2777; color: #db2777; }
.su-v-btn--outline svg { stroke: #db2777; }
.su-v-btn--outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.su-v-btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
@media (max-width:767px) {
  .su-v-btn { padding: 13px 28px; font-size: 15px; }
}
.su-v-module-cta { text-align: center; margin-top: 32px; position: relative; z-index: 1; }
.su-v-split .su-v-module-cta { text-align: left; margin-top: 24px; }

/* ---------- 01 HERO ---------- */
.su-v-hero { text-align: center; color: #1e293b; padding: 20px 0 0; }
.su-v-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #e2e8f0; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; color: #64748b; margin-bottom: 16px; }
.su-v-hero-badge svg { width: 16px; height: 16px; stroke: #db2777; }
.su-v-hero h1 { margin: 0 0 16px; font-size: 36px; line-height: 1.2; font-weight: 800; color: #1e293b; }
.su-v-hero h1 span { display: block; font-size: 0.7em; font-weight: 700; background: linear-gradient(90deg,#db2777,#ec4899); -webkit-background-clip: text; background-clip: text; color: transparent; margin-top: 6px; }
.su-v-hero-text { margin: 0 auto 28px; max-width: 640px; font-size: 17px; line-height: 1.7; color: #64748b; }
.su-v-hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.su-v-hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; font-size: 14px; color: #374151; }
.su-v-hero-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.su-v-hero-dot { width: 10px; height: 10px; background: #22c55e; border-radius: 999px; display: inline-block; }
@media (max-width:767px) {
  .su-v-hero h1 { font-size: 26px; }
  .su-v-hero-text { font-size: 15px; }
  .su-v-hero-buttons { flex-direction: column; align-items: center; }
  .su-v-hero-buttons .su-v-btn { width: 100%; max-width: 300px; }
  .su-v-hero-trust { gap: 12px; font-size: 13px; }
}
@media (min-width:768px) { .su-v-hero h1 { font-size: 40px; } }
@media (min-width:1024px) { .su-v-hero h1 { font-size: 48px; } }

/* ---------- 02 BENEFITS ---------- */
.su-v-ben { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0; }
.su-v-ben-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.su-v-ben-card:hover { transform: translateY(-4px); border-color: #db2777; box-shadow: 0 8px 24px rgba(219,39,119,0.12); }
.su-v-ben-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin: 0 auto 18px; background: linear-gradient(135deg,#fdf2f8,#fce7f3); border-radius: 14px; }
.su-v-ben-icon svg { width: 28px; height: 28px; stroke: #db2777; }
.su-v-ben-card h3 { font-size: 19px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.su-v-ben-card p { font-size: 15px; color: #64748b; line-height: 1.6; margin: 0; }
@media (max-width:767px) {
  .su-v-ben { grid-template-columns: 1fr; gap: 14px; }
  .su-v-ben-card { padding: 24px 18px; }
  .su-v-ben-card h3 { font-size: 17px; }
  .su-v-ben-card p { font-size: 14px; }
}

/* ---------- 03 CALCULATOR ---------- */
.su-v-calc { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 20px; padding: 50px 40px; text-align: center; position: relative; overflow: hidden; }
.su-v-calc::before { content: ''; position: absolute; top: -80px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(219,39,119,0.1); pointer-events: none; }
.su-v-calc::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 160px; height: 160px; border-radius: 50%; background: rgba(219,39,119,0.06); pointer-events: none; }
.su-v-calc h2 { color: #fff; font-size: 28px; margin: 0 0 6px; font-weight: 700; border: none; padding: 0; }
.su-v-calc-sub { color: rgba(255,255,255,0.6); font-size: 15px; margin: 0 0 36px; }
.su-v-calc-sliders { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 600px; margin: 0 auto 36px; text-align: left; position: relative; z-index: 1; }
.su-v-calc-group label { display: flex; justify-content: space-between; color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 12px; font-weight: 500; }
.su-v-calc-group label span { font-weight: 700; color: #ec4899; font-size: 17px; }
.su-v-calc-group input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.15); outline: none; cursor: pointer; }
.su-v-calc-group input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #ec4899; cursor: pointer; box-shadow: 0 2px 8px rgba(219,39,119,0.5); border: 3px solid #fff; }
.su-v-calc-group input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #ec4899; cursor: pointer; box-shadow: 0 2px 8px rgba(219,39,119,0.5); border: 3px solid #fff; }
.su-v-calc-result { background: rgba(219,39,119,0.12); border: 1px solid rgba(219,39,119,0.25); border-radius: 16px; padding: 28px 32px; display: inline-block; min-width: 280px; position: relative; z-index: 1; }
.su-v-calc-amount { font-size: 52px; font-weight: 800; color: #fff; margin: 0; line-height: 1.1; }
.su-v-calc-amount small { font-size: 20px; font-weight: 600; opacity: 0.8; }
.su-v-calc-note { color: rgba(255,255,255,0.45); font-size: 12px; margin: 8px 0 0; }
@media (max-width:767px) {
  .su-v-calc { padding: 36px 20px; border-radius: 16px; }
  .su-v-calc h2 { font-size: 22px; }
  .su-v-calc-sliders { grid-template-columns: 1fr; gap: 20px; }
  .su-v-calc-amount { font-size: 40px; }
  .su-v-calc-result { min-width: auto; width: 100%; box-sizing: border-box; }
}

/* ---------- 04 STEPS ---------- */
.su-v-steps-header { text-align: center; margin-bottom: 36px; }
.su-v-steps-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #e2e8f0; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; color: #64748b; margin-bottom: 16px; }
.su-v-steps-badge svg { width: 16px; height: 16px; stroke: #db2777; }
.su-v-steps-title { font-size: 28px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.su-v-steps-sub { font-size: 16px; color: #64748b; margin: 0 auto; max-width: 580px; line-height: 1.6; }
.su-v-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.su-v-steps-card { background: #f8f9fa; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px 22px; text-align: center; transition: all 0.3s; }
.su-v-steps-card:hover { border-color: #db2777; box-shadow: 0 4px 20px rgba(219,39,119,0.1); transform: translateY(-3px); }
.su-v-steps-num { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin: 0 auto 16px; background: linear-gradient(135deg,#db2777,#ec4899); border-radius: 12px; font-size: 18px; font-weight: 700; color: #fff; }
.su-v-steps-card h3 { font-size: 17px; font-weight: 600; color: #1e293b; margin: 0 0 8px; }
.su-v-steps-card p { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0; }
@media (max-width:1023px) { .su-v-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:767px) {
  .su-v-steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .su-v-steps-title { font-size: 22px; }
  .su-v-steps-sub { font-size: 14px; }
  .su-v-steps-card { padding: 22px 18px; }
}

/* ---------- 05 SPLIT (Bild+Text) ---------- */
.su-v-split { display: flex; gap: 36px; align-items: center; background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.su-v-split-text { flex: 1; min-width: 280px; }
.su-v-split-text h2 { font-size: 26px; font-weight: 700; color: #1e293b; margin: 0 0 16px; line-height: 1.3; }
.su-v-split-text p { font-size: 15px; color: #64748b; line-height: 1.7; margin: 0 0 14px; }
.su-v-split-text p:last-child { margin-bottom: 0; }
.su-v-split-text a { color: #db2777; text-decoration: none; font-weight: 600; }
.su-v-split-text a:hover { text-decoration: underline; }
.su-v-split-features { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.su-v-split-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #334155; font-weight: 500; }
.su-v-split-feat-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: linear-gradient(135deg,#fdf2f8,#fce7f3); border-radius: 8px; flex-shrink: 0; }
.su-v-split-feat-icon svg { width: 16px; height: 16px; stroke: #db2777; }
.su-v-split-img { flex: 0 0 42%; max-width: 42%; }
.su-v-split-img img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); display: block; }
@media (max-width:767px) {
  .su-v-split { flex-direction: column; padding: 28px 20px; gap: 24px; }
  .su-v-split-text h2 { font-size: 22px; }
  .su-v-split-img { flex: 1 1 100%; max-width: 100%; }
  .su-v-split-features { gap: 14px; }
}

/* ---------- 06 PACKAGES ---------- */
.su-v-pkg-wrap { text-align: center; }
.su-v-pkg-header { margin-bottom: 32px; }
.su-v-pkg-title { font-size: 28px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.su-v-pkg-sub { font-size: 16px; color: #64748b; margin: 0 auto; max-width: 560px; line-height: 1.6; }
.su-v-pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.su-v-pkg { background: #fff; border: 2px solid #e2e8f0; border-radius: 18px; padding: 30px 20px; position: relative; transition: all 0.3s; text-align: center; }
.su-v-pkg:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.su-v-pkg--pop { border-color: #db2777; box-shadow: 0 8px 30px rgba(219,39,119,0.15); }
.su-v-pkg-label { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,#db2777,#ec4899); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 18px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.su-v-pkg h4 { font-size: 18px; font-weight: 700; color: #1e293b; margin: 8px 0 4px; }
.su-v-pkg-price { font-size: 38px; font-weight: 800; color: #db2777; margin: 4px 0 18px; line-height: 1; }
.su-v-pkg-price small { font-size: 15px; color: #64748b; font-weight: 400; }
.su-v-pkg ul { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; }
.su-v-pkg li { font-size: 14px; color: #334155; padding: 7px 0 7px 26px; position: relative; line-height: 1.5; }
.su-v-pkg li::before { content: '\2713'; position: absolute; left: 0; color: #db2777; font-weight: 700; font-size: 14px; }
@media (max-width:1023px) { .su-v-pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:767px) {
  .su-v-pkg-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .su-v-pkg-title { font-size: 22px; }
  .su-v-pkg-sub { font-size: 14px; }
  .su-v-pkg { padding: 26px 18px; }
}

/* ---------- 07 COMPARE ---------- */
.su-v-cmp { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.su-v-cmp-header { text-align: center; margin-bottom: 28px; }
.su-v-cmp-title { font-size: 26px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.su-v-cmp-sub { font-size: 15px; color: #64748b; margin: 0 auto; max-width: 600px; line-height: 1.6; }
.su-v-cmp table { width: 100%; border-collapse: collapse; }
.su-v-cmp thead th { padding: 14px 16px; text-align: left; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #e2e8f0; }
.su-v-cmp thead th:first-child { color: #64748b; }
.su-v-cmp thead th:nth-child(2) { color: #db2777; }
.su-v-cmp thead th:nth-child(3) { color: #94a3b8; }
.su-v-cmp tbody td { padding: 14px 16px; border-bottom: 1px solid #f1f5f9; font-size: 15px; }
.su-v-cmp tbody td:first-child { color: #334155; font-weight: 500; }
.su-v-cmp-yes { color: #16a34a; font-weight: 600; }
.su-v-cmp-yes::before { content: '\2713 '; }
.su-v-cmp-part { color: #d97706; font-weight: 500; }
.su-v-cmp-part::before { content: '\26A0 '; }
.su-v-cmp-no { color: #dc2626; font-weight: 500; }
.su-v-cmp-no::before { content: '\2717 '; }
.su-v-cmp tbody tr:hover { background: #fdf2f8; }
.su-v-cmp-note { font-size: 12px; color: #94a3b8; margin: 14px 0 0; text-align: center; }
@media (max-width:767px) {
  .su-v-cmp { padding: 24px 16px; overflow-x: auto; }
  .su-v-cmp-title { font-size: 22px; }
  .su-v-cmp table { min-width: 480px; }
  .su-v-cmp thead th, .su-v-cmp tbody td { padding: 10px 12px; font-size: 13px; }
}

/* ---------- 08 VISIBILITY ---------- */
.su-v-vis-header { text-align: center; margin-bottom: 36px; }
.su-v-vis-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #e2e8f0; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; color: #64748b; margin-bottom: 16px; }
.su-v-vis-badge svg { width: 16px; height: 16px; stroke: #db2777; }
.su-v-vis-title { font-size: 28px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.su-v-vis-sub { font-size: 15px; color: #64748b; margin: 0 auto; max-width: 620px; line-height: 1.6; }
.su-v-vis-ladder { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto 32px; }
.su-v-vis-tier { display: flex; align-items: center; gap: 18px; padding: 20px 24px; border-left: 4px solid transparent; transition: all 0.3s; position: relative; }
.su-v-vis-tier:hover { background: #f8fafc; border-radius: 12px; }
.su-v-vis-pos { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; flex-shrink: 0; color: #fff; }
.su-v-vis-tier--boost .su-v-vis-pos { background: linear-gradient(135deg, #f59e0b, #d97706); }
.su-v-vis-tier--vip .su-v-vis-pos { background: linear-gradient(135deg, #db2777, #be185d); }
.su-v-vis-tier--premium .su-v-vis-pos { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.su-v-vis-tier--verified .su-v-vis-pos { background: linear-gradient(135deg, #27ae60, #16a34a); }
.su-v-vis-tier--standard .su-v-vis-pos { background: #94a3b8; }
.su-v-vis-tier--boost { border-left-color: #f59e0b; }
.su-v-vis-tier--vip { border-left-color: #db2777; }
.su-v-vis-tier--premium { border-left-color: #8b5cf6; }
.su-v-vis-tier--verified { border-left-color: #27ae60; }
.su-v-vis-tier--standard { border-left-color: #94a3b8; }
.su-v-vis-info { flex: 1; }
.su-v-vis-info h4 { font-size: 17px; font-weight: 700; color: #1e293b; margin: 0 0 4px; }
.su-v-vis-info p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.5; }
.su-v-vis-tag { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.su-v-vis-tier--boost .su-v-vis-tag { background: #fef3c7; color: #92400e; }
.su-v-vis-tier--vip .su-v-vis-tag { background: #fce7f3; color: #9d174d; }
.su-v-vis-tier--premium .su-v-vis-tag { background: #ede9fe; color: #5b21b6; }
.su-v-vis-tier--verified .su-v-vis-tag { background: #dcfce7; color: #166534; }
.su-v-vis-tier--standard .su-v-vis-tag { background: #f1f5f9; color: #475569; }
.su-v-vis-note { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 14px; padding: 20px 24px; max-width: 700px; margin: 0 auto; }
.su-v-vis-note h4 { font-size: 15px; font-weight: 700; color: #166534; margin: 0 0 8px; display: flex; align-items: center; gap: 8px; }
.su-v-vis-note h4 svg { width: 18px; height: 18px; stroke: #16a34a; flex-shrink: 0; }
.su-v-vis-note p { font-size: 14px; color: #334155; margin: 0; line-height: 1.6; }
.su-v-vis-note a { color: #16a34a; font-weight: 600; text-decoration: none; }
.su-v-vis-note a:hover { text-decoration: underline; }
@media (max-width:767px) {
  .su-v-vis-title { font-size: 22px; }
  .su-v-vis-tier { padding: 16px 14px; gap: 14px; flex-wrap: wrap; }
  .su-v-vis-pos { width: 42px; height: 42px; font-size: 16px; }
  .su-v-vis-tag { margin-top: 6px; }
  .su-v-vis-note { padding: 16px 18px; }
}

/* ---------- 09 TESTIMONIALS ---------- */
.su-v-test-header { text-align: center; margin-bottom: 28px; }
.su-v-test-title { font-size: 26px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.su-v-test-sub { font-size: 15px; color: #64748b; margin: 0; }
.su-v-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.su-v-test-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; position: relative; transition: all 0.3s; }
.su-v-test-card:hover { border-color: #db2777; box-shadow: 0 4px 20px rgba(219,39,119,0.08); }
.su-v-test-card::before { content: '\201C'; position: absolute; top: 14px; right: 22px; font-size: 56px; color: rgba(219,39,119,0.1); font-family: Georgia, serif; line-height: 1; }
.su-v-test-stars { color: #fbbf24; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.su-v-test-card p { font-size: 15px; color: #334155; line-height: 1.7; margin: 0 0 16px; font-style: italic; }
.su-v-test-author { display: flex; align-items: center; gap: 12px; }
.su-v-test-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#fdf2f8,#fce7f3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.su-v-test-avatar svg { width: 20px; height: 20px; stroke: #db2777; }
.su-v-test-meta { font-size: 13px; color: #64748b; line-height: 1.4; }
.su-v-test-meta strong { color: #1e293b; font-weight: 600; display: block; }
.su-v-test-meta span { color: #db2777; font-weight: 500; }
@media (max-width:767px) {
  .su-v-test-grid { grid-template-columns: 1fr; gap: 14px; }
  .su-v-test-title { font-size: 22px; }
  .su-v-test-card { padding: 22px 18px; }
}

/* ---------- 10 FAQ ---------- */
.su-v-faq { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.su-v-faq-header { text-align: center; margin-bottom: 28px; }
.su-v-faq-title { font-size: 26px; font-weight: 700; color: #1e293b; margin: 0 0 8px; }
.su-v-faq-sub { font-size: 15px; color: #64748b; margin: 0; }
.su-v-faq-item { background: #f8f9fa; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 10px; padding: 18px 22px; transition: all 0.2s; }
.su-v-faq-item[open] { border-color: #db2777; background: #fdf2f8; }
.su-v-faq-q { cursor: pointer; list-style: none; font-size: 16px; font-weight: 600; color: #1e293b; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.su-v-faq-item[open] .su-v-faq-q { color: #db2777; }
.su-v-faq-q::after { content: '+'; font-size: 20px; color: #db2777; font-weight: 400; flex-shrink: 0; }
.su-v-faq-item[open] .su-v-faq-q::after { content: '\2212'; }
.su-v-faq-item summary::-webkit-details-marker { display: none; }
.su-v-faq-item summary::marker { display: none; content: ''; }
.su-v-faq-a { padding: 14px 0 4px; color: #64748b; line-height: 1.7; font-size: 15px; }
.su-v-faq-a a { color: #db2777; text-decoration: none; font-weight: 500; }
.su-v-faq-a a:hover { text-decoration: underline; }
@media (max-width:767px) {
  .su-v-faq { padding: 24px 16px; }
  .su-v-faq-title { font-size: 22px; }
  .su-v-faq-q { font-size: 15px; }
  .su-v-faq-a { font-size: 14px; }
  .su-v-faq-item { padding: 14px 16px; }
}

/* ---------- 11 CTA ---------- */
.su-v-cta { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 20px; padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.su-v-cta::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(219,39,119,0.08); pointer-events: none; }
.su-v-cta::after { content: ''; position: absolute; bottom: -30px; left: -30px; width: 120px; height: 120px; border-radius: 50%; background: rgba(219,39,119,0.06); pointer-events: none; }
.su-v-cta-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin: 0 auto 20px; background: rgba(219,39,119,0.15); border-radius: 14px; position: relative; z-index: 1; }
.su-v-cta-icon svg { width: 28px; height: 28px; stroke: #ec4899; }
.su-v-cta h2 { color: #fff; font-size: 30px; font-weight: 700; margin: 0 0 12px; position: relative; z-index: 1; }
.su-v-cta p { color: rgba(255,255,255,0.75); font-size: 17px; margin: 0 auto 32px; max-width: 560px; line-height: 1.6; position: relative; z-index: 1; }
.su-v-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width:767px) {
  .su-v-cta { padding: 40px 22px; border-radius: 16px; }
  .su-v-cta h2 { font-size: 24px; }
  .su-v-cta p { font-size: 15px; }
  .su-v-cta-buttons { flex-direction: column; align-items: center; }
  .su-v-cta-buttons .su-v-btn { width: 100%; max-width: 300px; }
}

/* ---------- 12 LINKS ---------- */
.su-v-links { background: linear-gradient(135deg, #db2777 0%, #ec4899 100%); border-radius: 20px; padding: 40px; display: grid; grid-template-columns: 1fr 260px; gap: 30px; align-items: start; }
.su-v-links h2 { grid-column: 1 / -1; font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 4px; border-bottom: 2px solid rgba(255,255,255,0.3); padding-bottom: 12px; }
.su-v-links-list ul { list-style: none; padding: 0; margin: 0; }
.su-v-links-list li { margin-bottom: 12px; padding-left: 24px; position: relative; }
.su-v-links-list li::before { content: '\2192'; position: absolute; left: 0; color: rgba(255,255,255,0.9); font-weight: bold; font-size: 14px; }
.su-v-links-list a { color: rgba(255,255,255,0.95); text-decoration: none; font-size: 15px; line-height: 1.5; transition: all 0.2s; }
.su-v-links-list a:hover { color: #fff; text-decoration: underline; }
.su-v-links-img img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.2); display: block; }
@media (max-width:767px) {
  .su-v-links { grid-template-columns: 1fr; padding: 28px 20px; gap: 20px; }
  .su-v-links h2 { font-size: 20px; }
  .su-v-links-list a { font-size: 14px; }
}
