/* =====================================================================
   WEBIXA — ₹14,999 Website Campaign Landing Page
   Palette derived from WebixaOS.Web/wwwroot/css/wx-theme.css (same brand
   tokens). Yellow is used confidently here — hero glow, CTA buttons,
   badges, icon fills, one dark-contrast band — with real depth (shadows,
   gradients, iconography) instead of flat stacked rectangles.
   ===================================================================== */
:root {
    --wx-yellow: #FBCD00;
    --wx-yellow-deep: #E6B800;
    --wx-yellow-soft: #FFF6CC;
    --wx-ink: #231F20;
    --wx-ink-soft: #4A4445;
    --wx-cyan: #29ABE2;
    --wx-cyan-soft: #E7F6FD;
    --wx-white: #FFFFFF;
    --wx-bg: #FFFDF6;
    --wx-surface: #FFFFFF;
    --wx-border: #ECE6D2;
    --wx-danger: #D7263D;
    --wx-danger-soft: #FDECEF;
    --wx-success: #1B998B;
    --wx-success-soft: #E7F6F3;
    --wx-warn: #E08A00;
    --wx-maxw: 1160px;
    --shadow-sm: 0 2px 8px rgba(35,31,32,.06);
    --shadow-md: 0 10px 30px rgba(35,31,32,.10);
    --shadow-lg: 0 24px 60px rgba(35,31,32,.18);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--wx-bg);
    color: var(--wx-ink);
    font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--wx-maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 68px 0; position: relative; }
h1, h2, h3 { font-family: 'Segoe UI Semibold', 'Segoe UI', system-ui, sans-serif; margin: 0 0 .5em; line-height: 1.22; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.1rem); text-align: center; }
p { margin: 0 0 1em; }
.section-head { max-width: 640px; margin: 0 auto 38px; text-align: center; }
.section-head p { color: var(--wx-ink-soft); font-size: 1.02rem; }
.ico { display: inline-flex; }
.ico svg { width: 1em; height: 1em; stroke-width: 2.2; }
.eyebrow-label { display: inline-flex; align-items: center; gap: 6px; background: var(--wx-white); border: 1px solid var(--wx-border); box-shadow: var(--shadow-sm); color: var(--wx-warn); font-weight: 800; font-size: .76rem; letter-spacing: .03em; padding: 7px 15px; border-radius: 30px; margin-bottom: 16px; }
.section-head .eyebrow-label { margin: 0 auto 14px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 12px; padding: 16px 30px; font-weight: 800; font-size: 1.02rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-cta { background: linear-gradient(180deg, var(--wx-yellow) 0%, var(--wx-yellow-deep) 100%); color: var(--wx-ink); box-shadow: 0 10px 24px rgba(251,205,0,.45), 0 2px 0 rgba(35,31,32,.15) inset; }
.btn-cta:hover { box-shadow: 0 16px 32px rgba(251,205,0,.55); }
.btn-dark { background: var(--wx-ink); color: var(--wx-yellow); box-shadow: var(--shadow-md); }
.btn-dark:hover { background: #35302f; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--wx-yellow); border-bottom: 3px solid var(--wx-ink); padding: 14px 0; position: sticky; top: 0; z-index: 30; box-shadow: var(--shadow-sm); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar .logo { display: inline-flex; align-items: center; }
.topbar .logo img { height: 46px; width: auto; }
.topbar .right { display: flex; align-items: center; gap: 14px; }
.topbar .call { font-weight: 800; font-size: .88rem; display: flex; align-items: center; gap: 6px; white-space: nowrap; color: var(--wx-ink); background: var(--wx-white); padding: 8px 14px; border-radius: 30px; box-shadow: var(--shadow-sm); }
.langsw { display: inline-flex; border: 1px solid rgba(35,31,32,.15); border-radius: 30px; overflow: hidden; background: #fff; padding: 3px; gap: 2px; box-shadow: var(--shadow-sm); }
.langsw button { border: 0; background: none; padding: 6px 13px; font-size: .78rem; font-weight: 700; cursor: pointer; color: var(--wx-ink-soft); border-radius: 20px; transition: background .15s ease; }
.langsw button.on { background: var(--wx-ink); color: var(--wx-yellow); }

/* ---------- Hero ---------- */
.hero {
    padding: 56px 0 60px;
    background:
        radial-gradient(720px 420px at 82% 8%, rgba(251,205,0,.55), rgba(251,205,0,0) 70%),
        radial-gradient(520px 360px at 8% 90%, rgba(41,171,226,.14), rgba(41,171,226,0) 70%),
        var(--wx-bg);
    overflow: hidden;
}
.hero .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 6px; background: var(--wx-white); border: 1px solid var(--wx-border); box-shadow: var(--shadow-sm); color: var(--wx-warn); font-weight: 800; font-size: .78rem; letter-spacing: .03em; padding: 8px 16px; border-radius: 30px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(1.85rem, 1.3rem + 2.2vw, 2.7rem); margin: 0 0 .35em; }
.hero .subheadline { font-size: clamp(1.05rem, .95rem + .4vw, 1.25rem); font-weight: 700; color: var(--wx-ink-soft); margin-bottom: 16px; }
.hero .pain-para { max-width: 50ch; margin: 0 0 28px; color: var(--wx-ink-soft); font-size: 1.02rem; }
.hero .micro { font-size: .84rem; font-weight: 700; margin-top: 14px; color: var(--wx-ink-soft); display: flex; align-items: center; gap: 7px; }
.hero .micro .ico { color: var(--wx-success); }

/* Hero visual: CSS-only itemized value card — real numbers from the offer, nothing invented */
.hero-visual { position: relative; }
.invoice-card { background: var(--wx-white); border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--wx-border); transform: rotate(-1.4deg); position: relative; }
.invoice-head { background: var(--wx-yellow); padding: 12px 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--wx-ink); }
.invoice-head img { height: 30px; width: auto; }
.invoice-head .tag { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(35,31,32,.6); font-weight: 700; }
.invoice-body { padding: 18px 22px 6px; }
.invoice-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .88rem; padding: 11px 0; border-bottom: 1px dashed var(--wx-border); }
.invoice-row .free { color: var(--wx-success); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; }
.invoice-total { display: flex; justify-content: space-between; align-items: center; padding: 18px 90px 18px 22px; border-top: 2px solid var(--wx-ink); }
.invoice-total .label { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--wx-ink-soft); font-weight: 700; }
.invoice-total .amounts { text-align: right; }
.invoice-total .strike { display: block; font-size: .85rem; color: #9a938f; text-decoration: line-through; }
.invoice-total .final { font-size: 1.5rem; font-weight: 900; color: var(--wx-ink); }
.stamp { position: absolute; right: -16px; bottom: -20px; width: 96px; height: 96px; border-radius: 50%; border: 3px solid var(--wx-danger); color: var(--wx-danger); display: flex; align-items: center; justify-content: center; text-align: center; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; transform: rotate(10deg); background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); line-height: 1.25; }
.float-badge { position: absolute; background: var(--wx-white); border-radius: 30px; padding: 9px 16px; font-weight: 800; font-size: .8rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 7px; border: 1px solid var(--wx-border); }
.badge-1 { top: -14px; left: -18px; color: var(--wx-success); }
.badge-1 .ico { color: var(--wx-success); }
.badge-2 { top: -14px; right: -18px; color: var(--wx-warn); }
.badge-2 .ico { color: var(--wx-yellow-deep); }

/* ---------- Self-check ---------- */
.selfcheck { background: var(--wx-surface); border-top: 1px solid var(--wx-border); border-bottom: 1px solid var(--wx-border); }
.sc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 820px; margin: 0 auto 28px; }
.sc-pill { border: 1.5px solid var(--wx-border); background: #fff; border-radius: 14px; padding: 16px 18px; font-size: .92rem; font-weight: 600; cursor: pointer; text-align: left; transition: all .15s ease; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-sm); }
.sc-pill:hover { border-color: var(--wx-ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.sc-pill .box { flex: none; width: 24px; height: 24px; border: 2px solid var(--wx-border); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: transparent; transition: all .15s ease; }
.sc-pill .box svg { width: 14px; height: 14px; stroke-width: 3; }
.sc-pill.on { border-color: var(--wx-danger); background: var(--wx-danger-soft); box-shadow: var(--shadow-md); }
.sc-pill.on .box { background: var(--wx-danger); border-color: var(--wx-danger); color: #fff; }
.sc-result { text-align: center; }
.sc-count { font-weight: 800; font-size: 1.1rem; margin-bottom: 10px; }
.sc-count b { color: var(--wx-danger); font-size: 1.5em; display: inline-block; min-width: 1.2em; }
.sc-warn { max-width: 480px; margin: 0 auto 22px; font-weight: 700; color: var(--wx-ink-soft); }

/* ---------- Future cost ---------- */
.future { background: var(--wx-ink); color: var(--wx-white); }
.future h2 { color: var(--wx-white); }
.future .section-head p { color: #cfc8c9; }
.future .eyebrow-label, .bonus-band .eyebrow-label { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--wx-yellow); box-shadow: none; }
.future-list { list-style: none; margin: 0 auto 30px; padding: 0; max-width: 580px; display: flex; flex-direction: column; gap: 12px; }
.future-list li { display: flex; gap: 12px; align-items: center; font-size: .98rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 13px 16px; }
.future-list .ico { flex: none; color: var(--wx-danger); background: rgba(215,38,61,.16); width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.future-closing { text-align: center; max-width: 540px; margin: 0 auto 28px; font-weight: 700; font-size: 1.08rem; color: var(--wx-yellow); }

/* ---------- Offer reveal ---------- */
.offer { text-align: center; background: linear-gradient(180deg, var(--wx-yellow-soft), var(--wx-bg)); border-bottom: 3px solid var(--wx-ink); }
.offer h2 { font-size: clamp(1.3rem, 1rem + 1.3vw, 1.7rem); }
.offer .price { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.3rem); font-weight: 900; margin-bottom: 10px; }
.offer .subtext { max-width: 52ch; margin: 0 auto 22px; color: var(--wx-ink-soft); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 14px; justify-content: center; font-weight: 700; font-size: .84rem; margin-bottom: 26px; }
.trust-strip span { background: var(--wx-white); border: 1px solid var(--wx-border); box-shadow: var(--shadow-sm); border-radius: 30px; padding: 7px 14px; }

/* ---------- Feature grid (desire) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature { display: flex; gap: 12px; align-items: center; background: var(--wx-surface); border: 1px solid var(--wx-border); border-radius: 14px; padding: 15px 16px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature .tick { flex: none; width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--wx-ink); }
.feature:nth-child(3n+1) .tick { background: var(--wx-yellow-soft); color: var(--wx-warn); }
.feature:nth-child(3n+2) .tick { background: var(--wx-cyan-soft); color: var(--wx-cyan); }
.feature:nth-child(3n+3) .tick { background: var(--wx-success-soft); color: var(--wx-success); }
.feature span.label { font-weight: 700; font-size: .92rem; }

/* ---------- Bonus ---------- */
.bonus-band { background: var(--wx-ink); color: var(--wx-white); text-align: center; }
.bonus-band h2 { color: var(--wx-white); }
.bonus-band .sub { color: #cfc8c9; margin-bottom: 30px; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto 28px; }
.bcard { background: #322c2d; border: 1px solid #46403f; border-radius: 16px; padding: 24px 18px; }
.bcard .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(251,205,0,.16); color: var(--wx-yellow); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.bcard .name { font-weight: 800; margin-bottom: 4px; }
.bcard .val { color: #b6afb0; font-size: .82rem; }
.bonus-band .badge { display: inline-flex; align-items: center; gap: 8px; background: var(--wx-yellow); color: var(--wx-ink); font-weight: 900; padding: 10px 26px; border-radius: 30px; font-size: 1.05rem; box-shadow: 0 10px 24px rgba(251,205,0,.3); }

/* ---------- Myth busting ---------- */
.myth-grid { display: flex; flex-direction: column; gap: 14px; max-width: 720px; margin: 0 auto; }
.myth-card { background: var(--wx-surface); border: 1px solid var(--wx-border); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.myth-claim { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.myth-claim .tag { flex: none; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--wx-danger); border: 1.5px solid var(--wx-danger); border-radius: 20px; padding: 3px 10px; }
.myth-claim .text { font-weight: 700; color: #9a938f; text-decoration: line-through; text-decoration-color: var(--wx-danger); font-size: .98rem; }
.myth-truth { display: flex; gap: 10px; align-items: flex-start; padding-left: 2px; }
.myth-truth .ico { flex: none; color: var(--wx-success); margin-top: 2px; }
.myth-truth p { margin: 0; font-size: .92rem; color: var(--wx-ink-soft); }

/* ---------- Before / After ---------- */
.ba-table { max-width: 760px; margin: 0 auto; border: 1px solid var(--wx-border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-row { display: grid; grid-template-columns: 1fr 1fr; }
.ba-row.head { background: var(--wx-ink); color: var(--wx-white); }
.ba-cell { padding: 14px 18px; font-size: .9rem; border-bottom: 1px solid var(--wx-border); }
.ba-row:last-child .ba-cell { border-bottom: none; }
.ba-row.head .ba-cell { font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; border-bottom: none; }
.ba-cell.before { border-right: 1px solid var(--wx-border); color: #8a8480; }
.ba-cell.after { font-weight: 700; color: var(--wx-ink); background: var(--wx-success-soft); }
.ba-row.head .before { border-right: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6); }
.ba-row.head .after { background: transparent; color: var(--wx-yellow); }

/* ---------- Guarantee ---------- */
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.g-card { background: var(--wx-surface); border: 1px solid var(--wx-border); border-radius: 14px; padding: 20px 18px; text-align: center; box-shadow: var(--shadow-sm); }
.g-card .seal { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--wx-success); color: var(--wx-success); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.g-card h4 { font-family: 'Segoe UI Semibold', 'Segoe UI', system-ui, sans-serif; font-size: .98rem; margin-bottom: 6px; }
.g-card p { font-size: .84rem; color: var(--wx-ink-soft); margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--wx-surface); border: 1px solid var(--wx-border); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 700; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--wx-yellow-soft); color: var(--wx-warn); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; transition: transform .15s ease; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 18px; color: var(--wx-ink-soft); margin: 0; font-size: .93rem; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(160deg, var(--wx-yellow) 0%, var(--wx-yellow-deep) 100%); border-top: 3px solid var(--wx-ink); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--wx-ink); color: #cfc8c9; padding: 30px 0; font-size: .81rem; text-align: center; }
.site-footer a { color: var(--wx-yellow); text-decoration: none; font-weight: 700; }
.site-footer .legal { margin-top: 10px; color: #9a9394; font-size: .76rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }

/* ---------- Modal (lead form) ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(35,31,32,.6); display: none; align-items: flex-start; justify-content: center; z-index: 60; padding: 24px 14px; overflow-y: auto; }
.modal-overlay.show { display: flex; }
.modal-box { background: var(--wx-surface); border-radius: 22px; width: 100%; max-width: 580px; padding: 0; position: relative; margin: auto 0; box-shadow: 0 30px 70px rgba(0,0,0,.35); overflow: hidden; }
.modal-head { background: linear-gradient(135deg, var(--wx-yellow-soft), #fff); padding: 26px 26px 18px; border-bottom: 1px solid var(--wx-border); }
.modal-body { padding: 22px 26px 26px; }
.modal-close { position: absolute; top: 16px; right: 16px; border: 0; background: var(--wx-white); box-shadow: var(--shadow-sm); width: 34px; height: 34px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; line-height: 1; z-index: 2; }
.modal-box h3 { font-size: 1.15rem; text-align: center; margin-bottom: 4px; padding-right: 20px; }
.modal-box .form-sub { text-align: center; color: var(--wx-ink-soft); font-size: .85rem; margin: 0; }

.f-row { margin-bottom: 15px; }
.f-row label { display: block; font-weight: 700; font-size: .84rem; margin-bottom: 6px; }
.f-row .opt { font-weight: 500; color: #9a938f; }
.f-row input, .f-row select, .f-row textarea {
    width: 100%; padding: 12px 13px; border: 1.5px solid var(--wx-border); border-radius: 10px;
    font-size: .95rem; font-family: inherit; background: #fff; color: var(--wx-ink); transition: border-color .15s ease;
}
.f-row input:focus, .f-row select:focus, .f-row textarea:focus { outline: none; border-color: var(--wx-cyan); box-shadow: 0 0 0 3px rgba(41,171,226,.15); }
.f-row textarea { resize: vertical; min-height: 64px; }
.f-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.f-err { color: var(--wx-danger); font-size: .78rem; margin-top: 4px; font-weight: 600; }
.f-honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-legal { font-size: .72rem; color: #9a938f; text-align: center; margin-top: 14px; }
.form-alert { border-radius: 10px; padding: 10px 14px; font-size: .85rem; font-weight: 700; margin-bottom: 14px; }
.form-alert.err { background: var(--wx-danger-soft); color: var(--wx-danger); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero .grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 460px; margin: 0 auto; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .sc-grid { grid-template-columns: 1fr; }
    .guarantee-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 640px) {
    section { padding: 46px 0; }
    .wrap { padding: 0 16px; }
    .feature-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .f-grid2 { grid-template-columns: 1fr; }
    .ba-row { grid-template-columns: 1fr; }
    .ba-cell.before { border-right: 0; border-bottom: 1px dashed var(--wx-border); }
    .ba-row.head .ba-cell:first-child { display: none; }
    .ba-row.head { grid-template-columns: 1fr; text-align: center; }
    .myth-claim { flex-wrap: wrap; }
    .topbar { padding: 10px 0; }
    .topbar .logo img { height: 28px; }
    .topbar .right { gap: 8px; }
    .topbar .call { padding: 8px; border-radius: 50%; }
    .topbar .call span.txt { display: none; }
    .langsw button { padding: 5px 9px; font-size: .68rem; }
    /* Floating badges: absolute corner positions risk colliding on narrow screens — stack them
       centered below the card instead. */
    .hero-visual { display: flex; flex-direction: column; align-items: center; }
    .float-badge { position: static; margin: 10px 0 0; font-size: .7rem; padding: 6px 12px; }
    .invoice-total { padding-right: 70px; }
    .stamp { width: 78px; height: 78px; font-size: .6rem; right: -10px; bottom: -14px; }
    body { padding-bottom: 76px; } /* room for sticky CTA */
    .sticky-cta {
        display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
        background: var(--wx-ink); padding: 10px 14px; box-shadow: 0 -6px 20px rgba(0,0,0,.18);
    }
    .sticky-cta .btn { flex: 1; }
    .modal-head { padding: 22px 20px 14px; }
    .modal-body { padding: 18px 20px 22px; }
}
