/* Wrapper */
.evbc-wrap{ width:100%; }
.evbc-main{ display:grid; grid-template-columns:1fr; gap:20px; }
.evbc-layout-split .evbc-main{ grid-template-columns: 2fr 3fr; } /* 40/60 ratio */
@media (max-width: 900px){ .evbc-layout-split .evbc-main{ grid-template-columns:1fr; } }
/* Calculator */
.evbc-calculator{ border:1px solid #e5e7eb; padding:16px; border-radius:12px; background:#fff; }
.evbc-section-title{ font-size:16px; font-weight:700; margin-bottom:10px; }
.evbc-calculator .evbc-inputs{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.evbc-layout-split .evbc-calculator .evbc-inputs{ grid-template-columns: 1fr; } /* one per row in split */
.evbc-calculator .evbc-field{ display:flex; flex-direction:column; gap:6px; }
.evbc-calculator label{ font-weight:600; }
.evbc-calculator input[type="range"]{ width:100%; }
.evbc-results{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:16px; }
@media (max-width: 768px){ .evbc-results{ grid-template-columns: 1fr; } }
.evbc-result{ background:#f8fafc; border:1px solid #e5e7eb; border-radius:10px; padding:12px; }
.evbc-result .evbc-label{ font-size:14px; opacity:.8; margin-bottom:6px; }
.evbc-result .evbc-number{ font-size:20px; font-weight:700; }
.evbc-footnote{ margin-top:12px; font-size:12px; opacity:.7; }
/* Plan */
.evbc-plan{ border:1px solid #e5e7eb; padding:16px; border-radius:12px; background:#fff; }
.evbc-plan-header{ display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:10px; }
.evbc-plan-title{ font-size:18px; font-weight:700; }
/* Toggle switch next to title */
.evbc-yearly-toggle{ display:inline-flex; align-items:center; gap:8px; font-weight:600; }
.evbc-yearly-toggle .evbc-toggle{ position:relative; width:46px; height:24px; background:#e5e7eb; border-radius:999px; transition:.2s; display:inline-block; }
.evbc-yearly-toggle .evbc-knob{ position:absolute; top:2px; left:2px; width:20px; height:20px; border-radius:50%; background:#fff; transition:.2s; box-shadow:0 1px 2px rgba(0,0,0,.15); }
.evbc-yearly-toggle input{ display:none; }
.evbc-yearly-toggle input:checked + .evbc-toggle{ background:#0ea5e9; }
.evbc-yearly-toggle input:checked + .evbc-toggle .evbc-knob{ transform:translateX(22px); }
.evbc-save-badge{ font-style:normal; font-size:12px; padding:2px 6px; border-radius:999px; background:#e0f2fe; color:#0369a1; }
/* Plan body */
.evbc-plan-body{ display:grid; grid-template-columns: 1fr; gap:16px; background:#f8fafc; border:1px solid #e5e7eb; border-radius:10px; padding:16px; }
@media (min-width: 768px){ .evbc-plan-body{ grid-template-columns: 1fr 1fr; align-items:start; } }
.evbc-plan-left{ display:grid; gap:10px; } /* name + includes */
.evbc-plan-right{ display:grid; gap:10px; } /* pricing column */
.evbc-plan-name{ font-size:22px; font-weight:800; }
.evbc-plan-price-under{ font-size:16px; font-weight:700; opacity:.9; text-align:right; }
.evbc-plan-billing-note{ font-size:13px; opacity:.9; text-align:right; }
.evbc-save-inline{ display:inline; font-weight:700; padding:0 6px; border-radius:6px; }
.evbc-layout-split .evbc-save-inline{ display:block; margin-top:6px; } /* move Save to new line in split */
/* Actions */
.evbc-plan-actions{ display:flex; align-items:center; gap:12px; justify-content:flex-end; }
.evbc-plan-btn{ display:inline-block; padding:10px 14px; border-radius:8px; border:1px solid #0ea5e9; background:#0ea5e9; color:#fff; text-decoration:none; font-weight:600; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.evbc-plan-compare{ display:block; margin-top:8px; font-size:12px; text-decoration:underline; color:#0f172a; text-align:right; }
/* Includes on left */
.evbc-includes-list{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.evbc-include-item{ display:flex; align-items:center; gap:8px; }
.evbc-include-icon{ color:#059669; fill:#059669; display:inline-flex; width:16px; height:16px; }
.evbc-include-icon svg{ width:1em; height:1em; display:inline-block; fill: currentColor; color: currentColor; }
/* Features below both */
.evbc-features-wrapper{ grid-column:1 / -1; }
.evbc-features-divider{ border-top:1px solid #e5e7eb; margin:12px 0; }
.evbc-features-grid{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns: repeat(var(--evbc-features-cols, 2), minmax(0, 1fr)); gap:8px 16px; }
.evbc-features-grid .evbc-feature{ display:flex; align-items:center; gap:8px; }
.evbc-feature-icon{ color:#059669; fill:#059669; display:inline-flex; width:14px; height:14px; }
.evbc-feature-icon svg{ width:1em; height:1em; display:inline-block; fill: currentColor; color: currentColor; }
/* Overlimit */
.evbc-overlimit{ margin-top:12px; background:#fff7ed; border:1px solid #fed7aa; border-radius:10px; padding:16px; }
.evbc-overlimit-title{ font-size:18px; font-weight:800; margin-bottom:6px; }
.evbc-overlimit-text{ font-size:14px; margin-bottom:10px; }
.evbc-contact-btn{ display:inline-block; padding:10px 14px; border-radius:8px; border:1px solid #0ea5e9; background:#0ea5e9; color:#fff; text-decoration:none; font-weight:600; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
