/* =====================================================
   Webty Request Tool — Public CSS v1.1
   Webtymize Brand: #FF6B35 (turuncu) / #2D2D50 (lacivert)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --wrt-orange:       #FF6B35;
    --wrt-orange-light: #FF8A5B;
    --wrt-orange-pale:  #FFF0EB;
    --wrt-navy:         #2D2D50;
    --wrt-navy-light:   #3D3D68;
    --wrt-navy-pale:    #EEEEF5;
    --wrt-white:        #ffffff;
    --wrt-gray:         #f5f5f8;
    --wrt-text:         #1e1e35;
    --wrt-muted:        #7a7a9a;
    --wrt-border:       #e2e2ef;
    --wrt-radius:       18px;
    --wrt-shadow:       0 4px 28px rgba(45,45,80,0.10);
    --wrt-shadow-lg:    0 12px 48px rgba(45,45,80,0.16);
    --wrt-font:         'Plus Jakarta Sans', sans-serif;
}

/* ─── WRAP ─── */
.wrt-wrap {
    font-family: var(--wrt-font);
    max-width: 1140px;
    margin: 16px auto 0;
    padding: 0 24px 0;
    color: var(--wrt-text);
    -webkit-font-smoothing: antialiased;
    position: relative;
    isolation: isolate;
    box-sizing: border-box;
    line-height: normal;
}
.wrt-wrap *,
.wrt-wrap *::before,
.wrt-wrap *::after {
    box-sizing: border-box;
}
/* Neutralize common theme overrides inside the tool */
.wrt-wrap h1,
.wrt-wrap h2 {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    text-transform: none;
    letter-spacing: normal;
}
.wrt-wrap p {
    margin: 0;
    padding: 0;
}
.wrt-wrap ul,
.wrt-wrap ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wrt-wrap button {
    background: none;
    border: none;
    margin: 0;
    cursor: pointer;
    font-family: var(--wrt-font);
    line-height: normal;
}
.wrt-wrap input,
.wrt-wrap textarea {
    margin: 0;
    font-family: var(--wrt-font);
    line-height: normal;
}
.wrt-wrap a {
    text-decoration: none;
    color: inherit;
}
.wrt-wrap img {
    max-width: 100%;
    height: auto;
}

/* ─── HERO HEADER ─── */
.wrt-hero {
    border-radius: 18px;
    background: linear-gradient(125deg, #151530 0%, #2D2D50 45%, #3a2448 75%, #251535 100%);
    padding: 48px 56px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 200px;
}
.wrt-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--wrt-orange) 30%, rgba(180,100,255,0.6) 70%, transparent 100%);
}
.wrt-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-right: 180px;
}
.wrt-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 32px !important;
    line-height: 1.18;
    letter-spacing: -1px;
}
.wrt-hero-title span {
    background: linear-gradient(90deg, var(--wrt-orange) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wrt-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.52);
    margin: 0 0 28px !important;
    line-height: 1.72;
    font-weight: 400;
    max-width: 100%;
}
.wrt-hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wrt-hero-stat {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.48);
    display: flex;
    align-items: center;
    gap: 5px;
}
.wrt-hero-stat span {
    font-size: 17px;
    font-weight: 800;
    color: var(--wrt-orange-light);
}
.wrt-hero-stat-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
}
.wrt-hero-graphic {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 0;
}
.wrt-hero-circle {
    position: absolute;
    border-radius: 50%;
}
.wrt-hero-circle-1 {
    width: 120px; height: 120px;
    top: 0; left: 0;
    border: 1.5px solid rgba(255,107,53,0.12);
    animation: wrtRotate 18s linear infinite;
}
.wrt-hero-circle-2 {
    width: 78px; height: 78px;
    top: 21px; left: 21px;
    border: 1.5px dashed rgba(255,107,53,0.22);
    animation: wrtRotate 12s linear infinite reverse;
}
.wrt-hero-circle-3 {
    width: 36px; height: 36px;
    top: 42px; left: 42px;
    background: rgba(255,107,53,0.08);
    border: 1.5px solid rgba(255,107,53,0.35);
}
@keyframes wrtRotate {
    to { transform: rotate(360deg); }
}

/* ─── PROGRESS BAR ─── */
.wrt-progress-bar-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-top: 4px;
}
.wrt-progress-steps-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.wrt-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--wrt-border);
    transition: all 0.35s ease;
}
.wrt-dot.active  { background: var(--wrt-orange); transform: scale(1.35); }
.wrt-dot.done    { background: var(--wrt-orange-light); opacity: 0.55; }
.wrt-progress-bar-track {
    flex: 1;
    height: 6px;
    background: var(--wrt-border);
    border-radius: 99px;
    overflow: hidden;
}
.wrt-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wrt-orange), var(--wrt-orange-light));
    border-radius: 99px;
    width: 0%;
    transition: width 0.55s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.wrt-progress-bar-fill::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 24px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
    animation: wrtShimmer 1.6s infinite;
}
@keyframes wrtShimmer {
    0%, 100% { opacity: 0; }
    50%       { opacity: 1; }
}
.wrt-progress-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--wrt-muted);
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
    letter-spacing: 0.3px;
}

/* ─── LOADING OVERLAY ─── */
.wrt-loading-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--wrt-radius);
    z-index: 50;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    pointer-events: all;
}
.wrt-loading-overlay.active {
    display: flex;
    animation: wrtOverlayIn 0.2s ease;
}
@keyframes wrtOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.wrt-loading-ring {
    width: 48px; height: 48px;
    position: relative;
}
.wrt-loading-ring::before,
.wrt-loading-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
}
.wrt-loading-ring::before {
    border-top-color: var(--wrt-orange);
    animation: wrtSpin 0.7s linear infinite;
}
.wrt-loading-ring::after {
    border-bottom-color: rgba(255,107,53,0.25);
    animation: wrtSpin 1.2s linear infinite reverse;
}
@keyframes wrtSpin { to { transform: rotate(360deg); } }
.wrt-loading-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--wrt-muted);
    letter-spacing: 0.4px;
}

/* ─── STEP TRANSITIONS ─── */
.wrt-step { display: none; }
.wrt-step.active {
    display: block;
    animation: wrtFadeIn 0.42s cubic-bezier(.4,0,.2,1);
}
@keyframes wrtFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ─── CARD ─── */
.wrt-card {
    background: var(--wrt-white);
    border-radius: var(--wrt-radius);
    box-shadow: var(--wrt-shadow);
    border: 1px solid var(--wrt-border);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

/* ─── CARD HEADER ─── */
.wrt-card-header {
    background: linear-gradient(135deg, var(--wrt-navy) 0%, var(--wrt-navy-light) 100%);
    padding: 40px 44px 38px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 26px;
}
/* big decorative circles */
.wrt-card-header::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(255,107,53,0.13) 0%, transparent 65%);
    pointer-events: none;
}
.wrt-card-header::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 30%;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
/* orange left accent line */
.wrt-card-header-accent {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--wrt-orange) 0%, rgba(255,107,53,0.2) 100%);
    border-radius: 0 2px 2px 0;
}
/* step number block */
.wrt-step-number {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: rgba(255,107,53,0.14);
    border: 1.5px solid rgba(255,107,53,0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: var(--wrt-orange-light);
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
}
.wrt-card-header-text {
    flex: 1;
    position: relative;
    z-index: 1;
}
.wrt-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    color: var(--wrt-orange-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 0 5px 0;
    border-radius: 0;
    margin-bottom: 10px;
    border: none;
    border-bottom: 2px solid rgba(255,107,53,0.5);
}
.wrt-step-badge::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--wrt-orange);
    border-radius: 50%;
    animation: wrtPulse 2s infinite;
}
@keyframes wrtPulse {
    0%, 100% { opacity: 1; transform: scale(1);    }
    50%       { opacity: 0.4; transform: scale(0.7); }
}
.wrt-card-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--wrt-white);
    margin: 0 0 28px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}
.wrt-card-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    font-weight: 400;
    line-height: 1.65;
}

/* ─── OPTIONS GRID ─── */
.wrt-options {
    padding: 20px 28px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
/* Steps 1, 2, 6 stay 2-col (4 options fits nicely) */
/* Steps 3, 4, 5 — 3 options → 3 col */
.wrt-step[data-step="3"] .wrt-options,
.wrt-step[data-step="4"] .wrt-options,
.wrt-step[data-step="5"] .wrt-options {
    grid-template-columns: repeat(3, 1fr);
}

/* Step 1 & 6: 3 options in 2-col → last odd card spans full & caps at 50% */
.wrt-step[data-step="1"] .wrt-option-btn:last-child:nth-child(odd),
.wrt-step[data-step="6"] .wrt-option-btn:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.wrt-option-btn {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1.5px solid var(--wrt-border);
    border-radius: 14px;
    padding: 18px 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.24s cubic-bezier(.4,0,.2,1);
    width: 100%;
    outline: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(45,45,80,0.06);
}
.wrt-option-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--wrt-orange-pale) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.24s;
    border-radius: 12px;
    pointer-events: none;
}
.wrt-option-btn:hover {
    border-color: var(--wrt-orange);
    background: var(--wrt-white);
    box-shadow: 0 6px 24px rgba(255,107,53,0.15);
    transform: translateY(-3px);
}
.wrt-option-btn:hover::after { opacity: 1; }
.wrt-option-btn:hover .wrt-opt-icon {
    transform: scale(1.1) rotate(-4deg);
    background: var(--wrt-orange-pale);
    border-color: rgba(255,107,53,0.35);
}
.wrt-option-btn.selected {
    border-color: var(--wrt-orange);
    background: var(--wrt-orange-pale);
    box-shadow: 0 4px 18px rgba(255,107,53,0.16);
}
.wrt-option-btn.selected::before {
    content: '✓';
    position: absolute;
    top: 10px; right: 12px;
    width: 22px; height: 22px;
    background: var(--wrt-orange);
    color: white;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: wrtCheckIn 0.2s cubic-bezier(.4,0,.2,1);
}
@keyframes wrtCheckIn {
    from { transform: scale(0) rotate(-90deg); }
    to   { transform: scale(1) rotate(0deg);   }
}
.wrt-opt-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wrt-white);
    border-radius: 12px;
    border: 1.5px solid var(--wrt-border);
    box-shadow: 0 2px 8px rgba(45,45,80,0.07);
    transition: all 0.24s ease;
    position: relative;
    z-index: 1;
}
.wrt-opt-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
    flex: 1;
}
.wrt-opt-content strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--wrt-navy);
    line-height: 1.3;
}
.wrt-opt-content em {
    font-size: 15px;
    font-style: normal;
    color: var(--wrt-muted);
    line-height: 1.5;
}

/* ─── CONTACT FORM — single column ─── */
.wrt-contact-card .wrt-form {
    padding: 22px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.wrt-form-row { display: flex; flex-direction: column; gap: 5px; }
.wrt-form-row.wrt-full { width: 100%; }
.wrt-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--wrt-navy);
    letter-spacing: 0.2px;
}
.wrt-required { color: var(--wrt-orange); margin-left: 2px; }
.wrt-optional  { color: var(--wrt-muted); font-weight: 400; font-size: 11.5px; }
.wrt-input,
.wrt-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--wrt-font);
    font-size: 14px;
    color: var(--wrt-text);
    background: var(--wrt-gray);
    border: 1.5px solid var(--wrt-border);
    border-radius: 10px;
    outline: none;
    transition: all 0.22s ease;
    box-sizing: border-box;
}
.wrt-input:focus,
.wrt-textarea:focus {
    border-color: var(--wrt-orange);
    background: var(--wrt-white);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.10);
}
.wrt-input:hover:not(:focus),
.wrt-textarea:hover:not(:focus) { border-color: #c5c5dc; }
.wrt-textarea { resize: vertical; min-height: 80px; }
.wrt-input::placeholder,
.wrt-textarea::placeholder { color: #b8b8d0; }

/* PRIVACY */
.wrt-privacy-row { padding: 2px 0; }
.wrt-privacy-label {
    display: flex; align-items: flex-start; gap: 10px;
    cursor: pointer; line-height: 1.4;
}
.wrt-privacy-check { position: absolute; opacity: 0; width: 0; height: 0; }
.wrt-privacy-custom {
    width: 20px; height: 20px; min-width: 20px;
    border: 2px solid var(--wrt-border);
    border-radius: 6px;
    background: var(--wrt-gray);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; margin-top: 1px;
}
.wrt-privacy-check:checked + .wrt-privacy-custom {
    background: var(--wrt-orange);
    border-color: var(--wrt-orange);
}
.wrt-privacy-check:checked + .wrt-privacy-custom::after {
    content: '✓'; color: white; font-size: 11px; font-weight: 800;
}
.wrt-privacy-text { font-size: 15px; color: var(--wrt-muted); }
.wrt-privacy-text a { color: var(--wrt-orange); text-decoration: none; font-weight: 600; }
.wrt-privacy-text a:hover { text-decoration: underline; }

/* FORM ERROR */
.wrt-form-error {
    background: #fff0eb;
    border: 1px solid #ffccb3;
    color: #c0440a;
    border-radius: 10px;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 500;
}

/* SUBMIT */
.wrt-wrap .wrt-submit-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 13px 24px !important;
    background: linear-gradient(135deg, var(--wrt-orange) 0%, #ff5522 100%) !important;
    color: #ffffff !important;
    font-family: var(--wrt-font) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.24s ease !important;
    box-shadow: 0 6px 24px rgba(255,107,53,0.38) !important;
    letter-spacing: 0.2px !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    line-height: normal !important;
    height: auto !important;
    min-height: unset !important;
    margin: 0 !important;
    outline: none !important;
}
.wrt-wrap .wrt-submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}
.wrt-wrap .wrt-submit-btn:hover::before { left: 150%; }
.wrt-wrap .wrt-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 32px rgba(255,107,53,0.48) !important;
    background: linear-gradient(135deg, #ff5a1f 0%, #e04010 100%) !important;
    color: #ffffff !important;
}
.wrt-wrap .wrt-submit-btn:active { transform: translateY(0) !important; }
.wrt-wrap .wrt-submit-btn:disabled { opacity: 0.65 !important; cursor: not-allowed !important; transform: none !important; }
.wrt-submit-arrow { font-size: 18px; transition: transform 0.22s; }
.wrt-wrap .wrt-submit-btn:hover .wrt-submit-arrow { transform: translateX(5px); }

/* ─── BACK BUTTON ─── */
.wrt-nav { margin-top: 18px; }
.wrt-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid var(--wrt-border);
    color: var(--wrt-muted);
    font-family: var(--wrt-font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 9px;
    transition: all 0.2s;
}
.wrt-back-btn:hover {
    border-color: var(--wrt-navy);
    color: var(--wrt-navy);
    background: var(--wrt-navy-pale);
}

/* ─── SUCCESS ─── */
.wrt-success-card {
    text-align: center !important;
    padding: 52px 48px 48px;
    border-top: 4px solid var(--wrt-orange);
    background: linear-gradient(160deg, #fff 0%, var(--wrt-orange-pale) 100%);
    border-radius: 0 0 var(--wrt-radius) var(--wrt-radius);
    display: block;
    width: 100%;
}
.wrt-success-title {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: var(--wrt-navy) !important;
    margin: 0 0 18px !important;
    letter-spacing: -0.3px !important;
    text-align: center !important;
    display: block !important;
}
.wrt-success-text {
    font-size: 15px !important;
    color: var(--wrt-muted) !important;
    line-height: 1.75 !important;
    max-width: 560px !important;
    margin: 0 auto 28px !important;
    text-align: center !important;
    display: block !important;
}
.wrt-success-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--wrt-orange), #ff5522);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(255,107,53,0.35);
    animation: wrtPop 0.55s cubic-bezier(.4,0,.2,1);
    font-size: 0;
}
.wrt-success-icon::after {
    content: '✓';
    color: white;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--wrt-font);
}
@keyframes wrtPop {
    from { transform: scale(0.4) rotate(-12deg); opacity: 0; }
    to   { transform: scale(1)   rotate(0deg);   opacity: 1; }
}
.wrt-success-divider {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--wrt-orange), var(--wrt-orange-light));
    border-radius: 99px;
    margin: 0 auto 20px;
}
.wrt-success-dots {
    display: flex; justify-content: center; gap: 8px;
}
.wrt-success-dots span {
    width: 9px; height: 9px;
    border-radius: 50%;
    animation: wrtDot 1.4s infinite ease-in-out;
}
.wrt-success-dots span:nth-child(1) { background: var(--wrt-orange); }
.wrt-success-dots span:nth-child(2) { background: var(--wrt-orange-light); animation-delay: 0.2s; }
.wrt-success-dots span:nth-child(3) { background: #ffb899; animation-delay: 0.4s; }
@keyframes wrtDot {
    0%, 80%, 100% { opacity: 0.25; transform: scale(0.75); }
    40%           { opacity: 1;    transform: scale(1.3);  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .wrt-hero-inner { padding-right: 80px; }
    .wrt-step[data-step="3"] .wrt-options,
    .wrt-step[data-step="4"] .wrt-options,
    .wrt-step[data-step="5"] .wrt-options {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .wrt-hero { padding: 32px 24px; min-height: auto; }
    .wrt-hero-inner { padding-right: 0; }
    .wrt-hero-title { font-size: 26px; }
    .wrt-hero-sub { font-size: 14px; margin-bottom: 20px; }
    .wrt-hero-graphic { display: none; }
    .wrt-wrap { padding: 0 14px 48px; }
    .wrt-card-header { padding: 22px 20px 18px; gap: 16px; }
    .wrt-step-number { width: 42px; height: 42px; font-size: 18px; border-radius: 11px; }
    .wrt-card-title { font-size: 19px; }
    .wrt-options,
    .wrt-step[data-step="3"] .wrt-options,
    .wrt-step[data-step="4"] .wrt-options,
    .wrt-step[data-step="5"] .wrt-options {
        grid-template-columns: 1fr;
        padding: 18px 18px 22px;
        gap: 10px;
    }
    .wrt-step[data-step="1"] .wrt-option-btn:last-child:nth-child(odd),
    .wrt-step[data-step="6"] .wrt-option-btn:last-child:nth-child(odd) {
        max-width: 100%;
    }
    .wrt-contact-card .wrt-form { padding: 20px 18px 26px; }
    .wrt-submit-btn { font-size: 15px; }
    .wrt-success-card { padding: 40px 22px; }
    .wrt-progress-steps-dots { display: none; }
}
