:root {
  --green: #25d366;
  --green-dark: #0ca84d;
  --green-soft: #eafaf0;
  --ink: #111827;
  --muted: #687082;
  --line: #dedede;
  --panel: #ffffff;
  --app-bg: #f3f3f3;
  --nav-active: #cbd2e3;
  --shadow: 0 2px 8px rgba(17, 24, 39, 0.12);
  --soft-shadow: 0 2px 10px rgba(17, 24, 39, 0.08);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-width: 1120px;
  min-height: 100vh;
  background: var(--app-bg);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 15px 0 56px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.09);
}

.brand {
  width: 92px;
  height: 44px;
  display: grid;
  place-items: center;
}

.brand img {
  width: 44px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.nav-item {
  height: 36px;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  background: transparent;
  color: #676b7c;
  font-size: 15px;
  white-space: nowrap;
}

.nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.nav-item.active {
  background: var(--nav-active);
  color: var(--green);
  font-weight: 700;
}

.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
}

.tiny-action,
.round-action,
.avatar {
  border: 0;
  background: #fff;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.16);
}

.tiny-action {
  width: 22px;
  height: 22px;
  box-shadow: none;
  background: transparent;
}

.tiny-action svg {
  width: 20px;
}

.round-action {
  width: 36px;
  height: 36px;
  border-radius: 999px;
}

.round-action svg {
  width: 20px;
  height: 20px;
}

.usage {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 118px;
  color: #b8b8b8;
}

.usage-bar {
  flex: 1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e1e1;
}

.usage-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--green);
}

.usage small {
  margin-left: -54px;
  color: #fff;
  font-size: 10px;
  pointer-events: none;
}

.avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #6658df;
  color: #fff;
  font-weight: 700;
  border: 3px solid var(--green);
}

.avatar::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -2px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #25d366;
  border: 2px solid #fff;
}

.workspace {
  min-height: calc(100vh - 54px);
  padding-top: 54px;
}

.page {
  display: none;
  min-height: calc(100vh - 54px);
}

.page.active {
  display: block;
}

.attendance-page {
  grid-template-columns: 50px 370px minmax(0, 1fr);
  gap: 0;
  padding: 16px;
}

.attendance-page.active {
  display: grid;
}

.tool-rail {
  min-height: calc(100vh - 86px);
  background: #fff;
  border-radius: 10px 0 0 10px;
  border-right: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  padding: 22px 7px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
}

.rail-action {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid #d8d8d8;
  background: #fff;
  color: #6f6f77;
  display: grid;
  place-items: center;
}

.rail-action svg {
  width: 21px;
  height: 21px;
}

.rail-action.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.queue-panel {
  min-height: calc(100vh - 86px);
  background: #fff;
  border-right: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.queue-toolbar {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px 0 14px;
  border-bottom: 1px solid var(--line);
}

.ghost-icon {
  border: 0;
  background: transparent;
  color: #676a71;
  width: 20px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
}

.ghost-icon svg {
  width: 19px;
  height: 19px;
}

.ghost-icon.active {
  width: 29px;
  height: 29px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
}

.queue-select {
  margin-left: auto;
  height: 31px;
  min-width: 91px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 16px;
}

.queue-select svg {
  width: 17px;
}

.empty-queue {
  min-height: calc(100vh - 158px);
  border-top: 1px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 42px;
  text-align: center;
}

.empty-queue strong {
  font-size: 16px;
}

.empty-queue p {
  max-width: 280px;
  margin: 8px 0 0;
  color: #53658d;
  line-height: 1.42;
  font-size: 14px;
}

.conversation-stage {
  min-height: calc(100vh - 86px);
  border-radius: 0 10px 10px 0;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.conversation-empty {
  transform: translateY(-16px);
  width: min(920px, 78%);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.conversation-empty > img {
  width: 118px;
  margin-bottom: 20px;
}

.conversation-empty h1 {
  margin: 0;
  font-size: 29px;
  letter-spacing: 0;
}

.conversation-empty > p {
  margin: 34px 0 18px;
  color: #707384;
  font-size: 15px;
}

.primary-btn,
.outline-btn {
  min-height: 38px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  font-weight: 700;
  border: 1px solid transparent;
}

.primary-btn {
  background: var(--green);
  color: #fff;
  box-shadow: 0 5px 10px rgba(37, 211, 102, 0.24);
}

.primary-btn svg,
.outline-btn svg {
  width: 18px;
  height: 18px;
}

.outline-btn {
  background: #fff;
  color: var(--green);
  border-color: rgba(37, 211, 102, 0.58);
}

.feature-grid {
  width: 100%;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 20px 20px;
}

.feature-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 15px 18px 15px 12px;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 9px;
  box-shadow: 0 2px 7px rgba(15, 23, 42, 0.09);
}

.feature-card > span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.25);
  flex: 0 0 auto;
}

.feature-card svg {
  width: 22px;
  height: 22px;
}

.feature-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.feature-card p {
  margin: 0;
  color: #687082;
  font-size: 13px;
  line-height: 1.35;
}

.campaigns-page {
  height: calc(100vh - 54px);
  overflow: hidden;
  padding: 26px 16px 16px;
}

.campaigns-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 6px 10px;
}

.campaigns-header h1 {
  margin: 0;
  color: #00c853;
  font-size: 25px;
  font-weight: 800;
}

.campaign-actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.search-field {
  width: 305px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #909090;
  color: #8a8a8a;
}

.search-field svg {
  width: 22px;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 18px;
}

.campaign-create {
  width: 304px;
  height: 38px;
  border-radius: 6px;
  font-size: 14px;
}

.filter-card {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(300px, 0.34fr) 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.select-like {
  height: 42px;
  border: 1px solid #c9c9c9;
  border-radius: 7px;
  background: #fff;
  color: #65707d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  font-size: 16px;
}

.select-like svg {
  width: 18px;
}

.table-card {
  margin-top: 16px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #dedede;
  height: calc(100vh - 232px);
  min-height: 420px;
  overflow: hidden;
}

.campaign-table {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.table-head,
.campaign-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.15fr 1.3fr 1.1fr 1.35fr 1.35fr 1fr 1.1fr 0.85fr;
  align-items: center;
}

.table-head {
  height: 36px;
  background: #f7f7f7;
  border-bottom: 1px solid #ddd;
  font-weight: 800;
  font-size: 14px;
}

.table-head span,
.campaign-row span {
  padding: 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-body {
  flex: 1;
}

.table-empty {
  padding: 34px 16px;
  color: #5f6877;
  font-size: 14px;
}

.campaign-row {
  min-height: 52px;
  border-bottom: 1px solid #efefef;
  color: #3a4351;
  font-size: 14px;
}

.campaign-row .status-pill {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
}

.row-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px;
}

.row-actions button {
  width: 30px;
  height: 30px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
}

.table-footer {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  font-size: 14px;
}

.table-footer > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mini-select,
.page-arrow {
  border: 0;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-arrow {
  color: #b8b8b8;
  padding: 3px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30px;
  background: rgba(0, 0, 0, 0.55);
}

.modal-backdrop.open {
  display: flex;
}

.campaign-modal {
  width: min(1280px, calc(100vw - 72px));
  max-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.modal-header {
  height: 65px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid #eeeeee;
}

.modal-header h2 {
  margin: 0;
  font-size: 21px;
}

.modal-body {
  overflow-y: auto;
  padding: 28px 24px 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px 16px;
}

.field {
  position: relative;
  height: 41px;
  display: flex;
  align-items: center;
}

.field input,
.field select {
  width: 100%;
  height: 41px;
  border: 1px solid #c8c8c8;
  border-radius: 7px;
  background: #fff;
  color: #6c6c6c;
  padding: 0 38px 0 13px;
  outline: none;
  font-size: 16px;
}

.field input:focus,
.field select:focus,
.textarea-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.11);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
  background-position: calc(100% - 16px) 18px, calc(100% - 11px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.floating-label span {
  position: absolute;
  z-index: 2;
  top: -9px;
  left: 10px;
  padding: 0 4px;
  color: #777;
  background: #fff;
  font-size: 12px;
}

.field > svg {
  position: absolute;
  right: 13px;
  width: 18px;
  height: 18px;
  color: #111;
}

.recurrence-box {
  margin: 34px 0 24px;
  min-height: 158px;
  padding: 32px 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 7px rgba(15, 23, 42, 0.1);
}

.recurrence-box h3 {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
}

.recurrence-box h3 svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.switch-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 16px;
}

.switch-row input {
  position: absolute;
  opacity: 0;
}

.switch {
  position: relative;
  width: 38px;
  height: 18px;
  border-radius: 999px;
  background: #a9a9a9;
}

.switch::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #f5f5f5;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.24);
  transition: transform 0.2s ease;
}

.switch-row input:checked + .switch {
  background: var(--green);
}

.switch-row input:checked + .switch::before {
  transform: translateX(19px);
}

.form-grid.secondary {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.field.compact {
  max-width: 400px;
}

.message-tabs {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #f0f0f0;
  border: 1px solid #dfdfdf;
  min-height: 49px;
}

.message-tab {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #777;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.message-tab svg {
  width: 17px;
  height: 17px;
}

.message-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: #fff;
}

.template-step {
  color: var(--green-dark);
}

.message-panel {
  display: none;
}

.message-panel.active {
  display: block;
}

.textarea-field {
  display: block;
  margin-top: 20px;
}

.textarea-field textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid #c9c9c9;
  border-radius: 7px;
  padding: 18px 13px;
  color: #545454;
  outline: none;
  font-size: 16px;
}

.message-panel p {
  margin: 8px 13px 0;
  color: #858585;
  font-size: 13px;
}

.template-panel {
  margin-top: 20px;
}

.template-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.template-form {
  border: 1px solid #dddddd;
  border-radius: 9px;
  padding: 18px;
  background: #fff;
}

.template-fields {
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 14px;
}

.template-text textarea {
  min-height: 110px;
}

.variables-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.variables-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.template-side {
  border: 1px solid #dbdbdb;
  border-radius: 9px;
  padding: 18px;
  background: #fafafa;
}

.template-side h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.template-side p {
  margin: 0 0 16px;
  color: #667085;
  line-height: 1.45;
  font-size: 14px;
}

.template-status {
  min-height: 38px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 14px;
}

.template-status svg {
  width: 18px;
}

.primary-btn.full {
  width: 100%;
}

.modal-footer {
  min-height: 73px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 8px 0 24px;
  border-top: 1px solid #eeeeee;
}

.modal-footer .outline-btn,
.modal-footer .primary-btn {
  min-width: 90px;
  min-height: 37px;
}

.modal-footer .attach-btn {
  min-width: 139px;
}

.template-send-footer {
  display: none;
}

.campaign-modal.template-mode .template-send-footer {
  display: inline-flex;
  min-width: 142px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  min-height: 42px;
  max-width: 360px;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.page-placeholder {
  position: fixed;
  inset: 54px 0 0;
  z-index: 5;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
}

.page-placeholder[hidden] {
  display: none;
}

.page-placeholder h1 {
  margin: 0;
  color: var(--green);
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 18%, rgba(37, 211, 102, 0.12), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(34, 211, 238, 0.08), transparent 28%),
    #f3f3f3;
}

.auth-card {
  width: min(430px, calc(100vw - 32px));
  border: 1px solid #dfe4e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  padding: 34px;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #1f2937;
  font-weight: 900;
}

.auth-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.auth-card h1 {
  margin: 0 0 9px;
  font-size: 29px;
  letter-spacing: 0;
}

.auth-card > p {
  margin: 0 0 24px;
  color: #667085;
  line-height: 1.52;
}

.auth-form {
  display: grid;
  gap: 15px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.auth-form input {
  height: 43px;
  border: 1px solid #cfd6dd;
  border-radius: 8px;
  padding: 0 12px;
  color: #111827;
  outline: none;
}

.auth-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.11);
}

.auth-error {
  margin-top: 14px;
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff1f2;
  color: #be123c;
  font-size: 14px;
  font-weight: 700;
}

.auth-policy {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.privacy-page {
  min-height: 100vh;
  background: #f3f3f3;
  color: var(--ink);
  overflow-x: hidden;
}

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid #eeeeee;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.09);
}

.privacy-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2d343b;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.privacy-brand img {
  width: 36px;
  height: auto;
}

.privacy-back {
  min-height: 36px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--green-dark);
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.privacy-main {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
}

.privacy-hero {
  min-height: 260px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  padding: 34px 40px;
  margin-bottom: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.privacy-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  margin: 18px 0 12px;
  color: #111827;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

.privacy-hero p {
  max-width: 650px;
  margin: 0;
  color: #647084;
  font-size: 16px;
  line-height: 1.62;
}

.privacy-summary {
  min-height: 206px;
  border: 1px solid #dfe4e8;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 22px;
  background: #fbfbfb;
  text-align: center;
}

.privacy-summary img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 6px;
}

.privacy-summary strong {
  color: #111827;
  font-size: 15px;
}

.privacy-summary span,
.privacy-summary small {
  color: #667085;
  font-size: 13px;
}

.privacy-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.privacy-quick div {
  min-height: 72px;
  border-radius: 9px;
  border: 1px solid #dfe4e8;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  color: #202938;
  font-weight: 800;
}

.privacy-quick svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.22);
}

.privacy-card {
  border: 1px solid #dfe4e8;
  border-radius: 9px;
  background: #fff;
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--soft-shadow);
}

.privacy-card h2 {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #141a23;
  font-size: 19px;
  letter-spacing: 0;
}

.privacy-card h2 span {
  min-width: 37px;
  min-height: 22px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  letter-spacing: 0;
}

.privacy-card p,
.privacy-card li {
  color: #647084;
  line-height: 1.72;
  font-size: 15px;
}

.privacy-card p {
  margin: 0 0 14px;
}

.privacy-card strong {
  color: #111827;
}

.privacy-card a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.privacy-card ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.privacy-card li {
  position: relative;
  padding-left: 26px;
  margin: 9px 0;
}

.privacy-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.privacy-info {
  margin: 14px 0 0;
}

.privacy-info div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #edf0f2;
}

.privacy-info div:last-child {
  border-bottom: 0;
}

.privacy-info dt {
  color: #667085;
  font-size: 14px;
}

.privacy-info dd {
  margin: 0;
  color: #344054;
  font-size: 14px;
}

.privacy-note {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 14px;
  border-radius: 10px;
  padding: 0 14px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.privacy-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.privacy-contact-grid a {
  min-height: 84px;
  border: 1px solid #dfe4e8;
  border-radius: 9px;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-content: center;
  padding: 14px;
  background: #fbfbfb;
}

.privacy-contact-grid svg {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  padding: 10px;
  border-radius: 11px;
  color: #fff;
  background: var(--green);
}

.privacy-contact-grid strong {
  color: #667085;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-contact-grid span {
  margin-top: 4px;
  color: #111827;
  font-size: 14px;
}

.privacy-footer {
  padding: 34px 24px;
  border-top: 1px solid #e7e7e7;
  background: #fff;
  text-align: center;
}

.privacy-footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: 0;
}

.privacy-footer p {
  margin: 0;
  color: #667085;
  font-size: 12px;
}

@media (max-width: 1320px) {
  body {
    min-width: 1024px;
  }

  .topbar {
    padding-left: 22px;
  }

  .conversation-empty {
    width: 88%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(210px, 1fr));
  }

  .campaign-modal {
    width: calc(100vw - 40px);
  }
}

@media (max-width: 720px) {
  body {
    min-width: 0;
  }

  .privacy-header {
    padding: 0 18px;
  }

  .privacy-main {
    width: calc(100vw - 28px);
    padding-top: 18px;
  }

  .privacy-hero,
  .privacy-quick {
    grid-template-columns: 1fr;
  }

  .privacy-hero {
    padding: 26px 20px;
  }

  .privacy-hero h1 {
    font-size: 32px;
  }

  .privacy-card {
    padding: 24px 20px;
  }

  .privacy-info div,
  .privacy-contact-grid {
    grid-template-columns: 1fr;
  }
}
