/* ---------- Base ---------- */
:root {
  --blue: #009fe3;
  --blue-dark: #0084bd;
  --blue-light: #e6f6fd;
  --text: #555;
  --text-dark: #333;
  --border: #e0e0e0;
  --bg-gray: #f4f4f4;
  --footer-dark: #1c2733;
  --footer-gray: #4a4a4a;
  --social-bar: #2b2b2b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
  min-width: 1000px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

/* ---------- Layout ---------- */
.top-bar-inner,
.header-inner,
.container,
.signup-cta-inner,
.footer-inner {
  width: 1000px;
  margin: 0 auto;
}

/* ---------- Top bar ---------- */
.top-bar {
  background: #f7f7f7;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: #777;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.top-bar a {
  color: #777;
  margin-right: 20px;
  letter-spacing: 0.5px;
}
.top-bar a i { margin-right: 5px; color: #999; }
.top-bar-right a { margin: 0 10px; }
.top-bar-right .sep { color: #ccc; }
.top-bar-right .phone { color: #555; font-weight: 600; }
.top-bar-right .phone i { color: #555; }

/* ---------- Header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 80px;
}
.logo img { height: 32px; display: block; }
.main-nav {
  display: flex;
  margin-left: 40px;
  flex: 1;
}
.main-nav a {
  color: #555;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 0 12px;
  line-height: 80px;
  white-space: nowrap;
}
.main-nav a i { font-size: 10px; margin-left: 2px; }
.main-nav a:hover { color: var(--blue); text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  border: none;
  color: #fff;
  transition: background 0.15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-small { padding: 6px 18px; font-size: 12px; }
.btn-block { display: block; width: 100%; margin-top: 15px; }

/* ---------- Referral banner ---------- */
.referral-banner {
  position: relative;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  padding: 20px 40px;
  margin: 30px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.referral-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.referral-text { position: relative; z-index: 1; }
.referral-text h2 { font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.referral-text p { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.referral-links a {
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
  margin-right: 15px;
}
.referral-links a i { text-decoration: none; margin-left: 4px; font-size: 10px; }

.referral-steps {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  width: 100px;
  text-align: center;
}
.step i { font-size: 26px; margin-bottom: 8px; }
.step-arrow { font-size: 14px; color: rgba(255,255,255,0.7); }

.banner-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.tab {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  color: #999;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}
.tab:hover { text-decoration: none; color: var(--blue); }
.tab.active { color: var(--blue); }
.tab.active::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -1px;
  height: 2px;
  background: var(--blue);
}
.tab.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateX(-50%) rotate(45deg);
}

/* ---------- Content grid ---------- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  padding-bottom: 60px;
}

/* Services */
.services { border-right: 1px solid var(--border); padding-right: 30px; }
.service {
  display: flex;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}
.service:last-child { border-bottom: none; }
.service-icon {
  width: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.service-icon i {
  font-size: 42px;
  color: var(--blue);
  font-weight: 300;
}
.service-icon svg {
  width: 55px;
  height: auto;
  color: var(--blue);
}
.service-icon svg.icon-phone { width: 38px; }
.service-icon svg.icon-security { width: 48px; }
.service-body { flex: 1; }
.service-body h3 {
  font-size: 28px;
  font-weight: 300;
  color: #555;
  margin-bottom: 15px;
}
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.service-header h3 { margin-bottom: 0; }
.service-links {
  columns: 2;
  column-gap: 30px;
}
.service.service-inline .service-links { columns: 1; }
.service-links li { margin-bottom: 6px; break-inside: avoid; }
.service-links a { font-size: 14px; }
.service-links i { font-size: 10px; margin-right: 4px; }

/* ---------- Details page ---------- */
.breadcrumb {
  padding-top: 25px;
  font-size: 13px;
  color: #888;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb .sep { margin: 0 6px; color: #bbb; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  font-size: 14px;
}
.data-table th {
  text-align: left;
  padding: 12px 20px;
  color: #555;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 15px 20px;
  color: #666;
}
.data-table tbody tr:nth-child(odd) td { background: #f6f6f6; }

/* Manage section in sidebar */
.manage-section { margin-top: 20px; }
.manage-section h3 {
  color: var(--blue);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.action-buttons button {
  padding: 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: inherit;
  width: 50%;
}
.btn-dont-cancel {
  background: var(--blue);
  border: none;
  color: #fff;
}
.btn-dont-cancel:hover { background: #2a8ecf; }
.btn-continue-cancel {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
}
.btn-continue-cancel:hover { background: #f5f5f5; }
.btn-continue-cancel:disabled,
.btn-continue-cancel[disabled] {
  background: #f5f5f5;
  color: #b0b0b0;
  border-color: #e5e5e5;
  cursor: not-allowed;
}
.btn-continue-cancel:disabled:hover { background: #f5f5f5; }

/* TV impact modal (Internet cancel only) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn .18s ease-out;
}
.modal-overlay.is-open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp .22s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal .modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.modal .modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eaf4fb;
  color: var(--blue);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal h3 {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  flex: 1;
}
.modal p {
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.modal-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 22px;
  cursor: pointer;
}
.modal-checkbox input {
  margin-top: 3px;
  accent-color: var(--blue);
  cursor: pointer;
}
.modal-checkbox span {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-actions button {
  padding: 13px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.modal-btn-keep {
  background: var(--blue);
  color: #fff;
  border: none;
}
.modal-btn-keep:hover { background: #2a8ecf; }
.modal-btn-continue {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}
.modal-btn-continue:hover { background: #f5f5f5; }
.modal-btn-continue:disabled {
  background: #f5f5f5;
  color: #b0b0b0;
  border-color: #e5e5e5;
  cursor: not-allowed;
}
.modal-btn-continue:disabled:hover { background: #f5f5f5; }

.cancel-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 30px 0 20px;
}
.talk-to-agent {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.talk-to-agent h4 {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
}
.talk-to-agent p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.talk-to-agent a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.talk-to-agent a:hover { text-decoration: underline; }

/* Callback booking form */
.callback-form { max-width: 620px; padding-top: 5px; }
.callback-form h2 {
  font-size: 22px;
  color: #444;
  font-weight: 400;
  margin: 15px 0 10px;
}
.callback-lead {
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 25px;
}
.callback-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
.field-group { display: flex; flex-direction: column; }
.field-group label {
  font-weight: 700;
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
}
.field-group input[type="date"],
.field-group select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #333;
  background: #fff;
  cursor: pointer;
}
.reason-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}
.reason-fieldset legend {
  font-weight: 700;
  font-size: 14px;
  color: #333;
  padding: 0;
  margin-bottom: 12px;
}
.reason-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.reason-option:hover { border-color: #b8dbf1; }
.reason-option:has(input:checked) {
  border-color: var(--blue);
  background: #f5faff;
}
.reason-option input {
  accent-color: var(--blue);
  cursor: pointer;
}
.reason-option span {
  font-size: 14px;
  color: #333;
}
#reasonOther {
  display: none;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  min-height: 90px;
  margin-top: 4px;
  box-sizing: border-box;
}
.reason-fieldset:has(input[value="other"]:checked) #reasonOther {
  display: block;
}
.callback-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.callback-actions button {
  padding: 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: inherit;
  width: 60%;
}
.btn-callback-submit {
  background: var(--blue);
  color: #fff;
  border: none;
}
.btn-callback-submit:hover { background: #2a8ecf; }
.btn-callback-submit:disabled {
  background: #f5f5f5;
  color: #b0b0b0;
  cursor: not-allowed;
}
.btn-callback-back {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}
.btn-callback-back:hover { background: #f5f5f5; }

/* Callback — success state */
.callback-success {
  max-width: 520px;
  padding-top: 20px;
  text-align: center;
}
.callback-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eaf7ef;
  color: #27ae60;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.callback-success h2 {
  font-size: 22px;
  color: #333;
  font-weight: 400;
  margin: 0 0 12px;
}
.callback-success p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 25px;
}
.btn-return {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 25px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}
.btn-return:hover { background: #2a8ecf; }

/* ============ Scenario visibility (prototype scenario switcher) ============ */
html[data-scenario="bundle"] [data-scenario="internet-only"] { display: none !important; }
html[data-scenario="internet-only"] [data-scenario="bundle-only"] { display: none !important; }

/* MY ACCOUNT dropdown menu */
.account-menu {
  position: relative;
  display: inline-block;
}
.account-menu > a {
  cursor: pointer;
}
.account-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  min-width: 280px;
  padding: 6px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s;
}
.account-menu.is-open .account-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.account-dropdown-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #999;
  font-weight: 700;
  padding: 8px 12px 6px;
}
.account-dropdown .account-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: background .12s;
}
.account-dropdown .account-option:hover {
  background: #f5faff;
}
.account-dropdown .account-option i {
  color: #ccc;
  font-size: 18px;
  flex-shrink: 0;
}
.account-dropdown .account-option.is-active i {
  color: var(--blue);
}
.account-option-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.account-option-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: none;
  letter-spacing: 0;
}
.account-option-text span {
  font-size: 11px;
  color: #777;
  text-transform: none;
  letter-spacing: 0;
}

/* ============ Pending cancellation notice on overview service cards ============ */
.cancellation-notice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff8e6;
  border-left: 3px solid #f5a623;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.cancellation-notice .notice-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cancellation-notice .notice-text strong {
  font-size: 14px;
  color: #7a5300;
  font-weight: 700;
}
.cancellation-notice .notice-text span {
  font-size: 12.5px;
  color: #7a5300;
}
.btn-revoke {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background: #27ae60;
  color: #fff;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.btn-revoke:hover { background: #219653; }
.btn-revoke i { font-size: 12px; }

/* ============ Revoke modal ============ */
.modal-icon.revoke-icon {
  background: #eaf7ef;
  color: #27ae60;
}
.modal-btn-secondary {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  padding: 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}
.modal-btn-secondary:hover { background: #f5f5f5; }
.btn-revoke-confirm {
  background: #27ae60;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}
.btn-revoke-confirm:hover { background: #219653; }
.btn-revoke-confirm:disabled {
  background: #d5efe0;
  color: #fff;
  cursor: not-allowed;
}
.btn-revoke-confirm:disabled:hover { background: #d5efe0; }

/* ============ Cancellation confirmation (done page) ============ */
.cancel-success { max-width: 620px; padding-top: 10px; }
.cancel-success .success-icon-large {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #eaf7ef;
  color: #27ae60;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.cancel-success h2 {
  font-size: 26px;
  color: #333;
  font-weight: 400;
  margin: 0 0 18px;
}
.cancel-success-lead {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 22px;
}
.cancel-success [data-mode] { display: none; }
.cancel-success.mode-immediate [data-mode="immediate"] { display: inline; }
.cancel-success.mode-scheduled [data-mode="scheduled"] { display: inline; }

/* Revoke tip (scheduled mode only, hidden in immediate) */
.revoke-tip {
  background: #f0f8ff;
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  padding: 16px 18px;
  margin: 0 0 24px;
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
}
.cancel-success:not(.mode-scheduled) .revoke-tip { display: none !important; }
.revoke-tip-icon {
  color: var(--blue);
  font-size: 20px;
  flex-shrink: 0;
  padding-top: 2px;
}
.revoke-tip-text strong {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}
.revoke-tip-text p {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}
.revoke-tip-text a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.revoke-tip-text a:hover { text-decoration: underline; }

.next-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: #555;
  font-size: 13.5px;
  line-height: 1.55;
  border-bottom: 1px solid #eee;
}
.next-steps li:last-child { border-bottom: none; }
.next-steps li i {
  color: var(--blue);
  font-size: 16px;
  padding-top: 2px;
  flex-shrink: 0;
  width: 20px;
}
.cancel-success-actions {
  display: flex;
  justify-content: flex-start;
}

/* Cancel — choose when (immediate vs scheduled) */
.cancel-choice-form { max-width: 720px; padding-top: 5px; }
.cancel-choice-form h2 {
  font-size: 22px;
  color: #444;
  font-weight: 400;
  margin: 15px 0 10px;
}
.cancel-choice-lead {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.5;
}
.cancel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}
.cancel-option {
  display: block;
  cursor: pointer;
  position: relative;
  padding: 20px 20px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.cancel-option:hover { border-color: #b8dbf1; }
.cancel-option input[type="radio"] {
  position: absolute;
  top: 16px;
  right: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}
.cancel-option:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(50,152,213,.12);
  background: #f5faff;
}
.cancel-option-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eaf4fb;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.cancel-option h3 {
  font-size: 15px;
  color: #333;
  font-weight: 700;
  margin: 0 0 6px;
}
.cancel-option p {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.scheduled-date {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5eef5;
  opacity: .45;
  pointer-events: none;
  transition: opacity .15s;
}
.cancel-option:has(input[value="scheduled"]:checked) .scheduled-date {
  opacity: 1;
  pointer-events: auto;
}
.scheduled-date label {
  display: block;
  font-size: 12px;
  color: #444;
  font-weight: 700;
  margin-bottom: 6px;
}
.scheduled-date input[type="date"] {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  color: #333;
  background: #fff;
}
@media (max-width: 640px) {
  .cancel-options { grid-template-columns: 1fr; }
}

/* Confirm — mode-driven copy swap */
.confirm-cancel [data-mode] { display: none; }
.confirm-cancel.mode-immediate [data-mode="immediate"] { display: inline; }
.confirm-cancel.mode-scheduled [data-mode="scheduled"] { display: inline; }

/* Cancel — confirmation step */
.confirm-cancel {
  max-width: 620px;
  padding-top: 10px;
}
.confirm-cancel .warning-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff4e0;
  color: #e67e22;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.confirm-cancel h2 {
  font-size: 22px;
  color: #333;
  font-weight: 400;
  margin: 5px 0 8px;
  line-height: 1.35;
}
.confirm-cancel .confirm-lead {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.5;
}
.impact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.impact-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 3px solid #ddd;
}
.impact-item.impact-warning {
  background: #fef4e8;
  border-left-color: #e67e22;
}
.impact-item.impact-positive {
  background: #eaf7ef;
  border-left-color: #27ae60;
}
.impact-item > i {
  font-size: 18px;
  color: var(--blue);
  min-width: 22px;
  margin-top: 3px;
  text-align: center;
}
.impact-item.impact-warning > i { color: #e67e22; }
.impact-item.impact-positive > i { color: #27ae60; }
.impact-item .impact-body { flex: 1; }
.impact-item strong {
  display: block;
  color: #333;
  font-size: 14px;
  margin-bottom: 4px;
}
.impact-item p {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.confirm-actions {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.btn-keep,
.btn-confirm-cancel {
  padding: 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: inherit;
}
.btn-keep {
  background: var(--blue);
  color: #fff;
  border: none;
}
.btn-keep:hover { background: #2a8ecf; }
.btn-confirm-cancel {
  background: #fff;
  color: #c0392b;
  border: 1px solid #e74c3c;
}
.btn-confirm-cancel:hover { background: #fef2f0; }

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: 25px; }

.user-card { padding-top: 25px; }
.user-name {
  font-size: 20px;
  font-weight: 400;
  color: #555;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.user-info p {
  font-size: 13px;
  margin-bottom: 6px;
  color: #666;
}
.user-info span { color: #888; }
.user-info .highlight { color: var(--blue); font-weight: 600; }

.user-links {
  margin-top: 15px;
}
.user-links li { margin-bottom: 4px; }
.user-links a { font-size: 13px; }
.user-links i { font-size: 10px; margin-right: 4px; }

/* Rewards card */
.rewards-card {
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 18px 20px;
  text-align: center;
}
.rewards-card h3 {
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}
.rewards-tag {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.rewards-tag strong { color: var(--blue); }
.promo-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}
.promo-row a { font-size: 12px; }
.promo-row i { margin-right: 3px; }
.promo-code {
  background: #f0f0f0;
  border-radius: 4px;
  padding: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.btn-social {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  padding: 8px 15px;
  font-size: 11px;
  border-radius: 20px;
}
.btn-social i { margin-right: 6px; }
.btn-facebook { background: #4267B2; }
.btn-facebook:hover { background: #365899; }
.btn-twitter { background: #55acee; }
.btn-twitter:hover { background: #3d94d1; }
.rewards-learn {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

/* ---------- Signup CTA ---------- */
.signup-cta {
  background: var(--footer-dark);
  padding: 25px 0;
}
.signup-cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.signup-cta span { color: #fff; font-size: 14px; letter-spacing: 1px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--footer-gray);
  color: #fff;
  padding: 40px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .footer-logo {
  height: 26px;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}
.copyright { font-size: 11px; color: #ccc; margin-bottom: 25px; }
.footer-brand h4 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.mailing-form {
  display: flex;
  border-bottom: 1px solid #888;
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.mailing-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 12px;
  outline: none;
}
.mailing-form input::placeholder { color: #ccc; }
.mailing-form button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
}
.mailing-consent {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  color: #ccc;
}
.mailing-consent input { margin-top: 2px; }

.footer-col h4 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  color: #eee;
  font-size: 13px;
  font-weight: 600;
}
.footer-col a:hover { color: var(--blue); }

/* Social bar */
.social-bar {
  background: var(--social-bar);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.social:hover { text-decoration: none; opacity: 0.85; }
.social.facebook { background: #3b5998; }
.social.x { background: #000; }
.social.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social.linkedin { background: #0077b5; }
.social.youtube { background: #ff0000; }
